/*!
Theme Name: Mocco
Theme URI: https://www.moccotheme.com/
Author: Mocco Themes
Author URI: https://www.moccothemes.com/
Description: Mocco Theme is a WordPress theme with multiple design layouts. Fully customizable, responsive and user-friendly theme. Perfectly fits for Blogs, eCommerce, Company websites and Portfolio.
Version: 1.0.2
Tested up to: 6.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: mocco
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*------------------ MAIN THEME STYLES ------------------*/

/********** Root **********/
:root {
  --theme-post-card-line-color: rgba(0, 0, 0, 0.2);

  --theme-green-color: #75f3bf;
  --theme-blue-color: #98cced;
  --theme-yellow-color: #f2e861;
  --theme-red-color: rgb(238, 135, 135);

  /***** Theme Colors *****/
  --theme-primary-color: #e7deda;
  --theme-accent-color: #e7deda;
  --theme-headings-color: #444;
  --theme-font-color: #555;
  --theme-link-color: #333;
  --theme-link-hover-color: rgba(0, 0, 0, 0.4);
  --theme-button-text-color: #333;
  --theme-button-text-hover-color: #333;
  --theme-button-border-color: #e7deda;
  --theme-button-border-hover-color: #333;
  --theme-button-background-color: #e7deda;
  --theme-button-background-hover-color: transparent;
  --theme-input-border-color: rgba(0, 0, 0, 0.1);
  --theme-input-border-active-color: #e7deda;
  --theme-header-main-color: #ffffff;
  --theme-header-menu-link-color: #333;
  --theme-header-menu-link-hover-color: #897b73;
  --theme-header-menu-link-active-color: #897b73;
  --theme-header-menu-underline-color: #897b73;
  --theme-header-icons-color: #333;
  --theme-header-icons-hover-color: rgba(0, 0, 0, 0.4);
  --theme-header-icons-badge-color: #333;
  --theme-header-icons-badge-background-color: #e7deda;
  --theme-header-bottom-color: #e7deda;
  /* --theme-header-bottom-color: #75abf2; */
  --theme-top-bar-background-color: #e7deda;
  --theme-top-bar-title-color: #333;
  --theme-top-bar-title-hover-color: #c1c1c1;
  --theme-top-bar-subtitle-color: #333;
  --theme-top-bar-subtitle-hover-color: #c1c1c1;
  --style-05-menu-background-color: #fafafa;
  --style-05-menu-item-color: #333;
  --style-05-menu-item-hover-color: #333;
  --style-05-menu-item-hover-background-color: #e7deda;
  --theme-blog-post-card-style-2-border-color: transparent;
  --theme-blog-post-card-style-2-border-hover-color: #bfbfbf;
  --theme-blog-post-card-style-2-link-color: #333;
  --theme-blog-post-card-style-2-link-hover-color: #999;
  --theme-blog-post-card-style-3-post-meta-color: #333;
  --theme-blog-post-card-style-3-post-meta-background-color: #fff;
  --theme-shop-general-sale-badge-background-color: rgb(238, 135, 135);
  --theme-shop-general-sale-badge-text-color: #fff;
  --theme-footer-background-color: #e7deda;

  /***** Sizes *****/
  --theme-header-logo-desktop-width: 150px;
  --theme-header-logo-mobile-width: 150px;
  --mocco-header-main-padding-top: 10px;
  --mocco-header-main-padding-bottom: 10px;
  --mocco-header-main-padding-top-mobile: 5px;
  --mocco-header-main-padding-bottom-mobile: 5px;
  --theme-blog-archive-layout-gutter: 30px;
  --theme-blog-archive-mobile-layout-gutter: 15px;
  --theme-blog-post-card-style-1-image-height: 350px;
  --theme-blog-post-card-style-2-image-height: 300px;
  --theme-blog-post-card-style-2-image-border-radius: 10px;
  --theme-blog-post-card-style-2-post-card-border-radius: 10px;
  --theme-blog-post-card-style-3-image-height: 350px;
  --theme-blog-post-card-style-3-image-border-radius: 8px;
  --mocco-single-product-summary-spacing-top: 50px;
  --theme-shop-archive-gutter: 15px;
  --theme-shop-archive-gutter-mobile: 15px;
  --theme-shop-single-product-image-height: 400px;
  --theme-shop-single-product-image-gap: 15px;
  --theme-shop-single-product-image-height-mobile: 400px;
  --theme-shop-single-product-image-gap-mobile: 15px;
}

/********** Document Stylings **********/
* {
  box-sizing: border-box;
  transition: 0.3s all;
  outline: none;
}
html {
  scroll-behavior: smooth;
}
body,
p,
a,
i,
input,
button,
span,
address,
table,
dl,
.search-submit {
  font-family: 'Montserrat', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--theme-headings-color);
  font-family: 'Jost', sans-serif;
  margin: 0;
}
h1 {
  font-size: 2rem;
  line-height: 2.25rem;
}
h2 {
  font-size: 1.75rem;
  line-height: 2rem;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
}
h4 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}
h5 {
  font-size: 1.15rem;
  line-height: 1.35rem;
}
h6 {
  font-size: 1rem;
  line-height: 1.25rem;
}
p,
address,
li,
span {
  color: var(--theme-font-color);
  letter-spacing: 0.1px;
  margin: 0;
}
p {
  line-height: 1.5rem;
  margin: 0.5rem 0;
}
a {
  text-decoration: none;
  color: var(--theme-link-color);
}
a:hover {
  color: var(--theme-link-hover-color);
}
::selection {
  background: var(--theme-font-color);
  color: var(--theme-primary-color);
}
em {
  font-style: italic;
}
b,
strong {
  font-weight: 700;
}
pre,
pre p {
  font-family: monospace;
}
ol,
ul {
  margin: 0.5rem 0;
  padding-inline-start: 2rem;
}
ul.menu,
ul.submenu,
.header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
li {
  margin: 0.25rem 0;
}
ul.menu li,
ul.submenu li,
.header ul li {
  margin: 0;
}

.button {
  width: fit-content;
  background-color: var(--theme-primary-color);
  color: var(--theme-font-color);
  border: var(--theme-primary-color);
}

input,
textarea,
select {
  --webkit-appearance: none;
  border: none;
  background: none;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid var(--theme-input-border-color);
  padding: 0.4rem 0.75rem;
  border-radius: 0.35rem;
  --webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-size: 1rem;
}
input.submit,
button,
button.shipping-calculator-calc-button,
.woocommerce .button,
.woocommerce .submit,
.mocco-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 0.35rem;
  border: 1px solid var(--theme-button-border-color);
  background: var(--theme-button-background-color);
  color: var(--theme-button-text-color);
  --webkit-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
  box-sizing: border-box;
}
input.submit:hover,
input.submit:focus,
button:hover,
button:focus,
.mocco-button:hover,
.mocco-button:focus {
  border-color: var(--theme-button-border-hover-color);
  background: var(--theme-button-background-hover-color) !important;
  color: var(--theme-button-text-hover-color) !important;
}
input:focus,
textarea:focus {
  border-color: var(--theme-input-border-active-color);
}
form p {
  line-height: 1.5rem;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1rem;
}
/*** Input Fields ***/
input[type='file']::file-selector-button {
  border: 1px solid var(--theme-input-border-color);
  border-radius: 0.35em;
  background-color: var(--theme-primary-color);
  transition: 0.3s;
  color: var(--theme-font-color);
  padding: 0.4rem 0.75rem;
}

input[type='file']::file-selector-button:hover {
  background-color: transparent;
  border: 1px solid var(--theme-input-border-color);
}

/********** Layout Classes **********/
.container-sm {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.container-md {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.container-lg {
  width: 100%;
  padding: 0 30px;
}
.container-fl {
  width: 100%;
}
.grid {
  display: grid;
}
.row {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
/********** Header **********/
/**** Top Bar ****/
.top-bar {
  padding: 1rem 0;
  background-color: var(--theme-top-bar-background-color, #ff6161);
  display: flex;
  justify-content: center;
}
.top-bar-content {
  text-align: center;
}
.top-bar-content p {
  margin: 0;
}
.top-bar-content h3 {
  margin-bottom: 0.5rem;
}
.top-bar-content a h3 {
  color: var(--theme-top-bar-title-color, #fff);
}
.top-bar-content a:hover h3 {
  color: var(--theme-top-bar-title-hover-color, #333);
}
.top-bar-content a p {
  color: var(--theme-top-bar-subtitle-color, #fff);
}
.top-bar-content a:hover p {
  color: var(--theme-top-bar-subtitle-hover-color, #333);
}

/**** Header ****/
.header p {
  margin: 0;
}
.header-sticky {
  position: sticky;
  top: 0;
  right: 0;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0);
  transition: 0.3s all;
  z-index: 5;
}
.header-shadow {
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
/*** Header Top ***/
.header-main {
  padding-top: var(--mocco-header-main-padding-top);
  padding-bottom: var(--mocco-header-main-padding-bottom);
  background-color: var(--theme-header-main-color);
}
.header-main .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
}
.header-main .grid .menu {
  display: inline-flex;
  gap: 1rem;
}
.menu .menu-item a {
  color: var(--theme-header-menu-link-color);
  font-family: 'Jost', sans-serif;
}
.menu .menu-item a:hover {
  color: var(--theme-header-menu-link-hover-color);
}
.menu .current-menu-item a {
  color: var(--theme-header-menu-link-active-color);
}
.header-main .grid .header-logo {
  justify-self: center;
  max-width: var(--theme-header-logo-desktop-width);
}
.header-main .grid .header-logo a {
  display: block;
}
.header-main .grid .header-logo a img {
  width: 100%;
}
.header-main .grid .header-icons {
  display: inline-flex;
  gap: 1rem;
  justify-self: end;
  align-items: center;
  font-size: 1.25rem;
}
.header-main .grid .header-icons i {
  color: var(--theme-header-icons-color);
}
.header-main .grid .header-icons i:hover {
  color: var(--theme-header-icons-hover-color);
}
.header-main .grid .header-icons .icon {
  display: block;
  cursor: pointer;
  width: 20px;
}
.header-main .grid .header-icons .icon img {
  width: 100%;
}
.header-main .grid .hamburger {
  display: none;
  z-index: 10;
}
.header-main .grid .hamburger .bar {
  display: block;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #333;
}
.header-main .grid .hamburger .bar:last-child {
  margin-bottom: 0;
}
/*** Header Bottom ***/
.header-bottom .menu {
  display: inline-flex;
  gap: 1rem;
  z-index: 9;
}
.header-bottom .menu#menu-main-menu {
  gap: 3rem;
}
.header-bottom .menu.mobile-menu {
  display: none;
}

/***** Header First - Style 01 *****/
/*** Header Bottom ***/
.header-first.header-bottom {
  background-color: var(--theme-header-bottom-color);
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}
/***** Header Second - Style 02 *****/
/*** Header Top ***/
.header-second.header-main .grid .header-logo {
  justify-self: start;
  max-width: var(--theme-header-logo-desktop-width);
}
.header-second.header-main .grid .header-top-menu-container {
  display: flex;
  justify-content: center;
}
/*** Header Bottom ***/
.header-second.header-bottom {
  background-color: var(--theme-header-bottom-color);
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}
/***** Header Third - Style 03 *****/
/*** Header Bottom ***/
.header-third.header-bottom {
  display: none;
}
/***** Header Fourth - Style 04 *****/
/*** Header Top ***/
.header-fourth.header-main .grid .header-logo {
  justify-self: start;
  max-width: var(--theme-header-logo-desktop-width);
}
.header-fourth.header-main .grid .header-top-menu-container {
  display: flex;
  justify-content: center;
}
/*** Header Bottom ***/
.header-fourth.header-bottom {
  display: none;
}

/*** Multilevel Menu ***/
.menu .menu-item-has-children {
  position: relative;
}
.menu .menu-item-has-children > a::after {
  content: '';
  background: url('assets/icons/chevron-down-icon.png');
  background-size: cover;
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 5px;
}
.menu .menu-item-has-children .sub-menu {
  visibility: hidden;
  opacity: 0%;
  display: flex;
  flex-direction: column;

  min-width: 200px;
  width: fit-content;
  padding: 0.75rem;
  background-color: #fff;
  border-radius: 0.25rem;

  position: absolute;
  top: 0;
  left: 0;
  text-align: left;

  --webkit-box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.1);
  transition: 0.3s all;
}
.menu .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 100%;
  top: 125%;
  left: 0;
}
.menu .menu-item-has-children .sub-menu li:hover {
  background: var(--theme-accent-color);
  border-radius: 0.25rem;
}
.menu .menu-item-has-children .sub-menu li > a {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
}
.menu .menu-item-has-children .sub-menu .menu-item-has-children > a:after {
  content: '';
  background: url('assets/icons/chevron-right-icon.png');
  background-size: cover;
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 5px;
}
.menu .menu-item-has-children .sub-menu .menu-item-has-children .sub-menu {
  visibility: collapse;
  opacity: 0;
  top: -25%;
  left: 70%;
  min-width: 200px;
}
.menu
  .menu-item-has-children
  .sub-menu
  .menu-item-has-children:hover
  .sub-menu {
  left: 100%;
  visibility: visible;
  opacity: 100%;
}

/***** Header Fourth - Menu Style 05 *****/
.header-fifth.header-bottom {
  background-color: var(--theme-header-bottom-color);
}

.header-fifth.header-wrapper {
  display: grid;
  padding: 0 2rem;
  width: 100%;
  grid-template-columns: 300px 1fr 300px;
  align-items: center;
}
.header-fifth.header-wrapper .categories-menu-wrapper {
  width: 300px;
  padding: 1rem 0;
  height: fit-content;
  background-color: var(--theme-header-bottom-color);
  border-right: 1px solid #fff;
  position: relative;
}
.header-fifth.header-wrapper .categories-menu-wrapper:hover {
  background-color: #333;
}

.header-fifth.header-wrapper .categories-menu-wrapper p {
  color: var(--theme-header-menu-link-color);
  cursor: default;
}
.header-fifth.header-wrapper .categories-menu-wrapper:hover p,
.header-fifth.header-wrapper .categories-menu-wrapper:hover p i {
  color: #fff;
}

.header-fifth.header-wrapper .categories-menu-wrapper p {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.header-fifth.header-wrapper .categories-menu-wrapper .categories-menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
  position: absolute;
  top: 100%;
  width: 100%;
  padding: 1rem;
  background: var(--style-05-menu-background-color);
  visibility: collapse;
  opacity: 0;
}
.header-fifth.header-wrapper .categories-menu-wrapper:hover {
  overflow: visible;
}
.header-fifth.header-wrapper .categories-menu-wrapper:hover .categories-menu {
  display: flex;
  visibility: visible;
  opacity: 100%;
  gap: 0;
}
.header-fifth.header-wrapper
  .categories-menu-wrapper
  .categories-menu
  > .menu-item {
  width: 100%;
  padding: 0.5em;
}
.header-fifth.header-wrapper
  .categories-menu-wrapper
  .categories-menu
  > .menu-item
  a {
  color: var(--style-05-menu-item-color);
}
.header-fifth.header-wrapper
  .categories-menu-wrapper
  .categories-menu
  > .menu-item:hover
  a {
  color: var(--style-05-menu-item-hover-color);
}
.header-fifth.header-wrapper
  .categories-menu-wrapper
  .categories-menu
  > .menu-item:hover,
.header-fifth.header-wrapper
  .categories-menu-wrapper
  .categories-menu
  > .menu-item-has-children
  .sub-menu
  li:hover {
  background: var(--style-05-menu-item-hover-background-color);
}
.header-fifth.header-wrapper
  .categories-menu-wrapper
  .categories-menu
  > .menu-item-has-children::after {
  content: '';
  background: url('assets/icons/chevron-right-icon.png');
  background-size: cover;
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.header-fifth.header-wrapper
  .categories-menu-wrapper
  .categories-menu
  > .menu-item-has-children
  > a::after {
  display: none;
}
.header-fifth.header-wrapper
  .categories-menu-wrapper
  .categories-menu
  > .menu-item-has-children
  > .sub-menu {
  top: 0;
  left: 90%;
  min-width: 250px;
}
.header-fifth.header-wrapper
  .categories-menu-wrapper
  .categories-menu
  > .menu-item-has-children:hover
  > .sub-menu {
  top: 0;
  left: 100%;
}
.header-fifth.header-wrapper .menus-wrapper {
  display: flex;
  justify-content: center;
  padding: 0 2rem;
}

/******* Menu Underline Effects *******/
/**** Hover Underline Thik ****/
.hover-underline-thik > li > a {
  position: relative;
}
.hover-underline-thik > li > a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--theme-header-menu-underline-color);
  bottom: -3px;
  left: 0;
  border-radius: 1rem;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
.hover-underline-thik > li > a:hover::before,
.hover-underline-thik .current-menu-item a::before {
  transform-origin: left;
  transform: scaleX(1);
}
/**** Hover Underline Thin ****/
.hover-underline-thin > li > a {
  position: relative;
}
.hover-underline-thin > li > a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--theme-header-menu-underline-color);
  bottom: -3px;
  left: 0;
  border-radius: 1rem;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
.hover-underline-thin > li > a:hover::before,
.hover-underline-thin .current-menu-item a::before {
  transform-origin: left;
  transform: scaleX(1);
}

/********** Footer **********/
.footer-main {
  width: 100%;
  background: var(--theme-footer-background-color);
  padding: 1rem 2rem;
  text-align: center;

  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
}
.footer-main .footer-copyright {
  justify-self: start;
}
.footer-main .menu {
  display: inline-flex;
  gap: 1rem;
  justify-self: center;
  align-items: center;
}
.footer-main .footer-info {
  justify-self: end;
}
.footer-main p {
  margin: 0;
}

#footer {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: var(--theme-footer-background-color);
}
.footer-grid {
  align-items: center;
  margin-bottom: 1rem;
}
.copyright-section {
  width: 100%;
}

/********** Page **********/
.page-content {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.page-content .main {
  flex: 1;
}
.page-content .page-title {
  width: 100%;
  text-align: center;
}

/********** Single Post **********/
.post-content {
  padding: 30px 200px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.post-content .main {
  flex: 1;
}
.post-content .post-meta {
  width: 100%;
  display: grid;
  gap: 1rem;
}
.post-content .post-meta h1 {
  text-transform: uppercase;
}
.post-content .post-meta .date-category {
  display: flex;
  gap: 0.5rem;
  justify-self: end;
  align-items: center;
  flex-wrap: wrap;
}
.post-content .post-featured-image {
  width: 100%;
}
.post-content .post-featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/***** Post Comments *****/
.post-content .comment-area {
  max-width: 1080px;
  margin: 0 auto;
  padding: 50px 0px;
}
.comment-form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.5rem;
}
.comment-form > p,
.comment-form > div {
  margin-bottom: 0 !important;
}

.post-content
  .comment-area
  #comments
  .comment-respond
  .comment-form
  p
  textarea {
  width: 100%;
}
.post-content .comment-area #comments .comment-respond .comment-reply-title {
  margin-bottom: 0.25rem;
}
.comments-area .comments-title {
  margin-bottom: 1rem;
}
.comment-list {
  margin-bottom: 1rem;
}
.comment-list li {
  margin-bottom: 0.5rem;
}
.comment-list .comment .comment-body {
  background: #f8f8f8;
  padding: 15px;
  border-radius: 1rem;
  display: grid;
  gap: 0.5rem;
}
.comment-list .comment.parent .comment-body {
  margin-bottom: 0.25rem;
}
.comment-list .comment .children {
  width: 98%;
  margin-left: 2%;
}
.comment-list .comment .comment-body .comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.comment-list .comment .comment-body .comment-meta .comment-author {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* order: 2; */
}
.comment-list .comment .comment-body .comment-meta .comment-author img {
  border-radius: 2rem;
}
.comment-list .comment .comment-body .comment-meta .comment-author b {
  font-family: 'Montserrat', sans-serif;
}
.comment-list .comment .comment-body .reply a {
  display: block;
  width: fit-content;
  padding: 0.5rem 1rem;
  border-radius: 0.35rem;
  border: 1px solid var(--theme-button-border-color);
  background: var(--theme-button-background-color);
  color: var(--theme-button-text-color);
  --webkit-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
}
.comment-list .comment .comment-body .reply a:hover,
.comment-list .comment .comment-body .reply a:focus {
  border-color: var(--theme-button-border-hover-color);
  background: var(--theme-button-background-hover-color);
  color: var(--theme-button-text-hover-color);
}

/***** Recommended Posts *****/
.recommended-posts-block {
  padding: 30px 50px;
}
.recommended-posts-block > h2 {
  margin-bottom: 3rem;
  text-transform: uppercase;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 0.5rem;
}
.recommended-posts-block > h2::after {
  content: '';
  height: 1px;
  width: 15%;
  background-color: #777;
  justify-self: center;
}
.recommended-posts-block .grid {
  display: grid;
  gap: 1rem;
}

/********** Sidebar **********/
.sidebar {
  width: 25%;
}
.sidebar .widget {
  margin-bottom: 1.5rem;
}
.sidebar .widget h2 {
  margin-bottom: 0.5rem;
}

/********** 404 **********/
.page-404 {
  text-align: center;
}

/********** Search Form **********/
.searchform input {
  all: unset;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #f2f2f2;
  padding: 0.4rem 0.75rem;
  border-radius: 0.35rem;
  --webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.searchform input:focus {
  border-color: var(--theme-accent-color);
}
.searchform input#searchsubmit {
  all: unset;
  font-family: 'Montserrat', sans-serif;
  padding: 0.5rem 1rem;
  border-radius: 0.35rem;
  border: 1px solid var(--theme-accent-color);
  background: var(--theme-accent-color);
  color: #fff;
  --webkit-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
}
.searchform input#searchsubmit:hover,
.searchform input#searchsubmit:focus {
  background: transparent;
  color: var(--theme-accent-color);
}

/********** Search Page **********/
.search-page .search-page-title {
  width: 100%;
}
.search-page .search-page-title h2,
.search-page .search-page-title p {
  margin-bottom: 0.75rem;
}

/********** Search Popup **********/
.search-popup {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 20;

  opacity: 0%;
  visibility: hidden;
}
.search-popup.active {
  opacity: 100%;
  visibility: visible;
}

.search-popup input#searchsubmit:hover,
.search-popup input#searchsubmit:focus {
  color: #fff;
}

.search-popup .search-close {
  position: absolute;
  cursor: pointer;
  width: 25px;
  height: 25px;
  top: 2%;
  right: 2%;
  font-size: 2rem;
}
.search-popup .search-close img {
  width: 100%;
}
.search-popup form input {
  color: #fff;
  text-transform: uppercase;
}

/********** Mobile Tabs **********/
.mobile-tabs {
  display: none;
  position: sticky;
  bottom: 0%;
  left: 0;
  z-index: 4;
  font-size: 1.25rem;
  width: 100%;
  background: #fff;
  padding: 1rem 0;
  --webkit-box-shadow: 0px -5px 15px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px -5px 15px -5px rgba(0, 0, 0, 0.1);
}
.mobile-tabs .menu {
  display: inline-flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}
.mobile-tabs .menu .mobile-tab-icon {
  width: 20px;
}
.mobile-tabs .menu .mobile-tab-icon a {
  display: block;
}
.mobile-tabs .menu .mobile-tab-icon a img,
.mobile-tabs .menu .mobile-tab-icon .search-mobile-tab img {
  width: 100%;
  object-fit: cover;
}
.search-mobile-tab {
  cursor: pointer;
}

/********** Archive Posts **********/
.archive-layout {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.archive-layout .main {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  flex: 1;
}
.archive-layout .archive-title {
  text-transform: uppercase;
  width: 100%;
}
.archive-layout .grid {
  display: grid;
  gap: var(--theme-blog-archive-layout-gutter);
  flex: 1;
  align-items: start;
}
.archive-layout .grid .post-card {
  width: 100%;
}
.post-card p {
  margin: 0;
}

/****** 1 Column ******/
.grid-1 {
  grid-template-columns: 1fr;
}
/****** 2 Columns ******/
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
/****** 3 Columns ******/
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
/****** 4 Columns ******/
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
/****** 5 Columns ******/
.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
/****** 6 Columns ******/
.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

/******* Post Cards Styles ******/
/*** Style 01 ***/
.post-card-style-1 a:first-child {
  margin-bottom: 0.25rem;
}
.post-card-style-1 p,
.post-card-style-1 h5 {
  margin-bottom: 0.5rem;
}
.post-card-style-1 a {
  display: block;
  width: fit-content;
  margin-bottom: 0.5rem;
}
.post-card-style-1 h2 {
  text-transform: uppercase;
}
.post-card-style-1 .post-thumbnail-container {
  display: block;
  width: 100%;
  height: var(--theme-blog-post-card-style-1-image-height);
  overflow: hidden;
}
.post-card-style-1 .post-thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card-style-1 .post-thumbnail-container:hover img {
  transform: scale(1.05);
}
.post-card-style-1 .line {
  height: 1px;
  background-color: var(--theme-post-card-line-color);
}

/*** Style 02 ***/
.post-card-style-2 {
  padding: 0.75rem 0.75rem 1.5rem 0.75rem;
  border: 1px solid var(--theme-blog-post-card-style-2-border-color);
  border-radius: var(--theme-blog-post-card-style-2-post-card-border-radius);
}
.post-card-style-2:hover {
  border: 1px solid var(--theme-blog-post-card-style-2-border-hover-color);
}
.post-card-style-2 .post-card-title {
  width: fit-content;
}
.post-card-style-2 .post-thumbnail-container,
.post-card-style-2 .post-card-title {
  display: block;
  margin-bottom: 0.5rem;
}
.post-card-style-2 .post-thumbnail-container img {
  width: 100%;
  height: var(--theme-blog-post-card-style-2-image-height);
  border-radius: var(--theme-blog-post-card-style-2-image-border-radius);
  object-fit: cover;
}
.post-card-style-2 .post-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-card-style-2 .post-card-meta a {
  color: var(--theme-blog-post-card-style-2-link-color);
}
.post-card-style-2 .post-card-meta a:hover {
  color: var(--theme-blog-post-card-style-2-link-hover-color);
}

/*** Style 03 ***/
.post-card-style-3 .post-thumbnail-container {
  position: relative;
  overflow: hidden;
  transition: 0.7s ease-in-out;
}
.post-card-style-3 .post-thumbnail-container img {
  width: 100%;
  height: var(--theme-blog-post-card-style-3-image-height);
  object-fit: cover;
  border-radius: var(--theme-blog-post-card-style-3-image-border-radius);
}
.post-card-style-3 .post-thumbnail-container:hover img {
  transform: scale(1.05);
}
.post-card-style-3 .post-thumbnail-container:hover .post-card-meta {
  bottom: -15%;
}
.post-card-style-3 .post-thumbnail-container .post-card-meta {
  display: flex;
  justify-content: start;
  gap: 0.5rem;
  position: absolute;
  bottom: 1.25rem;
  left: 1rem;
}
.post-card-style-3 .post-thumbnail-container .post-card-meta div {
  padding: 0.35rem 0.5rem;
  background: var(--theme-blog-post-card-style-3-post-meta-background-color);
  color: var(--theme-blog-post-card-style-3-post-meta-color);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post-card-style-3 .post-thumbnail-container,
.post-card-style-3 .post-card-title,
.post-card-style-3 .post-card-excerpt {
  display: block;
  margin-bottom: 0.5rem;
}
.post-card-style-3 .post-card-excerpt {
  margin-bottom: 0.75rem;
}
.post-card-style-3 .post-card-read-more {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: fit-content;
}

/********** Pagination **********/
.navigation.pagination {
  text-align: center;
  width: 100%;
}
.navigation.pagination .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.navigation.pagination .nav-links .page-numbers,
.navigation.pagination .nav-links span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 2rem;
}
.navigation.pagination .nav-links .page-numbers:hover,
.navigation.pagination .nav-links .page-numbers.current {
  background-color: var(--theme-accent-color);
  color: #fff;
}

/********** Search Result **********/
.search-result .search-result-title {
  margin-bottom: 2rem;
}
.search-result .search-result-title h1 {
  margin-bottom: 1rem;
}
.search-result .search-result-title p {
  margin-bottom: 0.5rem;
}
.search-result .grid {
  display: grid;
  gap: 1rem;
}

/********** Responsive **********/

@media (max-width: 1199px) {
  .container-sm {
    max-width: 890px;
    margin: 0 auto;
  }
  .container-md {
    max-width: 960px;
    margin: 0 auto;
  }
  .container-lg {
    max-width: 100%;
    padding: 0 30px;
  }
  .container-fl {
    max-width: 100%;
  }

  /***** Archive *****/
  .archive-layout {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
  /***** Page *****/
  .page-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  /***** Post *****/
  .post-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .container-sm {
    max-width: 720px;
  }
  .container-md {
    max-width: 860px;
  }
  .container-lg {
    width: 100%;
    padding: 0 15px;
  }
  .container-fl {
    max-width: 100%;
  }

  /***** Archive *****/
  .archive-layout {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
  .archive-layout .grid {
    gap: var(--theme-blog-archive-mobile-layout-gutter);
  }
  .archive-layout .grid-2,
  .archive-layout .grid-3,
  .archive-layout .grid-4,
  .recommended-posts-block .grid-2,
  .recommended-posts-block .grid-3,
  .recommended-posts-block .grid-4,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .mobile-grid-1 {
    grid-template-columns: 1fr;
  }
  .mobile-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mobile-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .mobile-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .mobile-grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .mobile-grid-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  /***** Page *****/
  .page-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  /***** Post *****/
  .post-content,
  .recommended-posts-block {
    padding: 30px 15px;
    gap: 0.85rem;
  }
  .post-content .post-meta {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .post-content .post-meta .date-category {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .container-sm {
    max-width: 90%;
  }
  .container-md {
    max-width: 100%;
  }
  .container-lg {
    width: 100%;
    padding: 15px;
  }
  .container-fl {
    width: 100%;
  }

  /***** Archive *****/
  .archive-layout .grid-2,
  .archive-layout .grid-3,
  .archive-layout .grid-4,
  .recommended-posts-block .grid-2,
  .recommended-posts-block .grid-3,
  .recommended-posts-block .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  /* Archive Styles */
  /* Style 2 */
  .post-card-style-2 {
    padding: 0;
    border: none;
  }

  /***** Page *****/
  .page-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  /***** Post *****/
  .post-content,
  .recommended-posts-block {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /***** Header *****/
  /* Header Top */
  .header-main {
    padding-top: var(--mocco-header-main-padding-top-mobile);
    padding-bottom: var(--mocco-header-main-padding-bottom-mobile);
  }
  .header-main .grid {
    grid-template-columns: 2fr 1fr;
  }
  .header-main .grid .header-logo {
    justify-self: start;
    max-width: var(--theme-header-logo-mobile-width);
  }
  .header-main .grid .header-top-menu-container,
  .header-main .grid .menu {
    display: none;
  }
  .header-main .grid .header-icons .hamburger {
    display: block;
  }
  /* Header Bottom */
  .header-bottom .menu {
    display: none;
  }
  .header-bottom .menu.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 0px 30px;
    height: 100%;
    width: 90%;
    position: fixed;
    top: 0;
    right: -200%;
    gap: 1rem;
    font-size: 1.15rem;
    background-color: #fff;
    box-shadow: -10px 0px 15px -3px rgba(0, 0, 0, 0.1);
    transition: 0.4s all;
    text-align: left;
    padding-top: 5rem;
  }
  .header-bottom .menu.mobile-menu .menu-item {
    text-transform: none;
  }
  .header-bottom .menu.mobile-menu.active {
    right: 0;
  }
  /* Hamburger */
  .header-main .grid .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .header-main .grid .hamburger.active .bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  .header-main .grid .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /*** Header Style 01 ***/
  /* Header Bottom */
  .header-first.header-bottom {
    padding: 0;
    height: 0;
  }

  /*** Header Style 02 ***/
  /* Header Top */
  .header-second.header-main .grid .header-top-menu-container {
    display: none;
  }
  /* Header Bottom */
  .header-second.header-bottom {
    padding: 0;
    height: 0;
  }

  /*** Header Style 03 ***/
  /* Header Bottom */
  .header-third.header-bottom {
    padding: 0;
    height: 0;
    display: block;
  }

  /*** Header Style 04 ***/
  /* Header Top */
  .header-fourth.header-main .grid .header-top-menu-container {
    display: none;
  }
  /* Header Bottom */
  .header-fourth.header-bottom {
    padding: 0;
    height: 0;
    display: block;
  }

  /*** Header Style 05 ***/
  /* Header Top */
  /* Header Bottom */
  .categories-menu-wrapper {
    display: none;
  }

  /***** Footer *****/
  .footer-main {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .footer-main .menu {
    display: flex;
    flex-direction: column;
  }

  /***** Sidebar *****/
  .sidebar {
    width: 100%;
  }

  /***** Mobile Tabs *****/
  .mobile-tabs {
    display: block;
  }

  /***** Multilevel Menu Mobile *****/
  .menu .menu-item-has-children .sub-menu .menu-item-has-children > a:after {
    display: none;
  }
  .menu .menu-item-has-children .sub-menu .menu-item-has-children .sub-menu {
    width: 100%;
    max-width: 100%;
    visibility: collapse;
    right: 0;
    opacity: 100;
  }
  .menu
    .menu-item-has-children
    .sub-menu
    .menu-item-has-children:hover
    .sub-menu {
    top: 0;
    right: 0;
  }
  .menu .menu-item-has-children .sub-menu .menu-item-has-children.active {
    visibility: visible;
  }

  .header-first.header-bottom .menu.mobile-menu.active {
    justify-content: start;
  }
  .menu .menu-item-has-children .sub-menu li {
    padding: 0;
  }
  .menu .menu-item-has-children {
    width: 100%;
    position: relative;
  }
  .menu .menu-item-has-children > a::after {
    content: none;
  }
  .menu .menu-item-has-children .sub-menu {
    position: relative;
    top: 0 !important;
    width: 100%;
    height: 0;
    overflow: hidden;
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #f2f2f2;
    border-radius: 0.5rem;
    transition: 0.3s all;
    padding: 0 0.75rem;
    --webkit-box-shadow: none;
    box-shadow: none;
    visibility: visible;
    opacity: 100%;
    right: 0;
  }
  .menu .menu-item-has-children.active .sub-menu {
    height: fit-content;
    padding: 0.75rem;
  }

  .menu .menu-item-has-children {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
    align-items: center;
  }
  .menu .menu-item-has-children > a {
    width: fit-content;
    grid-column: 1/3;
  }
  .menu .menu-item-has-children > .toggle-menu-btn {
    width: fit-content;
    justify-self: end;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .menu .menu-item-has-children > .submenu {
    grid-column: 1/4;
    display: none;
    background-color: #fafafa;
    padding: 1rem 0.5rem 1rem 1rem;
  }
  .menu .menu-item-has-children > .toggle-menu-btn.active {
    background-color: #f1f1f1;
  }
  .menu .menu-item-has-children > .toggle-menu-btn.active > i {
    transform: rotate(180deg);
  }
  .menu .menu-item-has-children.active > .submenu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-main .menu {
    order: 1;
    margin-bottom: 1rem;
  }
  .footer-main .footer-copyright {
    order: 2;
  }
  .footer-main .footer-info {
    order: 3;
  }
  .footer-main .footer-copyright,
  .footer-main .menu,
  .footer-main .footer-info {
    justify-self: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .copyright-section {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .container-sm {
    max-width: 90%;
  }
  .container-md {
    max-width: 100%;
    padding: 10px;
  }
  .container-lg {
    width: 100%;
    padding: 0 15px;
  }
  .container-fl {
    width: 100%;
  }

  /***** Header *****/
  .header-main {
    padding-top: var(--mocco-header-main-padding-top-mobile);
    padding-bottom: var(--mocco-header-main-padding-bottom-mobile);
  }

  /***** Archive *****/
  .archive-layout {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
  .archive-layout .grid-2,
  .archive-layout .grid-3,
  .archive-layout .grid-4,
  .recommended-posts-block .grid-2,
  .recommended-posts-block .grid-3,
  .recommended-posts-block .grid-4 {
    grid-template-columns: 1fr;
  }

  /***** Page *****/
  .page-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  /***** Post *****/
  .post-content,
  .recommended-posts-block {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .comment-list .comment .comment-body .comment-meta .comment-author {
    order: 2;
  }
  .post-content .comment-area #comments .comment-respond .comment-form p input,
  .post-content
    .comment-area
    #comments
    .comment-respond
    .comment-form
    p
    textarea {
    width: 100%;
  }
  .post-content
    .comment-area
    #comments
    .comment-respond
    .comment-form
    p
    #wp-comment-cookies-consent {
    width: 15px;
  }
  .post-content
    .comment-area
    #comments
    .comment-respond
    .comment-form
    p
    #submit {
    width: fit-content;
  }
}

/* <h3>
Establish Your Own Store
</h3>
<p>
With a range of innovative eCommerce features for a successful and high-conversion business, Mocco is made to help you enhance the appearance of your online store and website. Choose from a variety of website demos, pick the one that best suits your needs, and get started building the website of your dreams.</p> */

/* <h3>Extremely quick loading</h3>
<p>In just a few minutes, easily create shop websites. Compared to comparable WordPress businesses, load times are faster by over 95%, and buyers may click "add to cart" with just one click. Because of Mocco's modern, high-quality, and faster-loading product pages, you will be able to convert 76% more visitors.</p> */

.infinite-scroll .pagination {
  display: none;
}
