/*
Theme Name: Kitokya Theme
Text Domain: kitokya-theme
Version: 3.27
Description: A premium, professional, and modern WordPress theme designed exclusively for Kitokya e-commerce by Yapacdev. All rights reserved to Kitokya.
Tags: premium, responsive, modern, e-commerce, clean design
Author: Yapacdev
Author URI: https://yapacdev.com
*/

/* FONTS */

@font-face {
    font-family: 'Teachers';
    src: url('./assets/fonts/teachers/Teachers-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Teachers';
    src: url('./assets/fonts/teachers/Teachers-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Teachers';
    src: url('./assets/fonts/teachers/Teachers-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Teachers';
    src: url('./assets/fonts/teachers/Teachers-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Teachers';
    src: url('./assets/fonts/teachers/Teachers-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}


/* Italic */

@font-face {
    font-family: 'Teachers';
    src: url('./assets/fonts/teachers/Teachers-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Teachers';
    src: url('./assets/fonts/teachers/Teachers-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Teachers';
    src: url('./assets/fonts/teachers/Teachers-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Teachers';
    src: url('./assets/fonts/teachers/Teachers-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Teachers';
    src: url('./assets/fonts/teachers/Teachers-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* GLOBALS */

:root{
--sand:#ECE2CE;
--sand-deep:#E2D3B4;
--ink:#1C1310;
--terracotta:#C1471F;
--brick:#8E2A16;
--gold:#E7B227;
--gold-dim:#C99A2A;
--bronze:#5C3418;
--bronze-deep:#331B0C;
--pink:#D4176E;
--line: rgba(28,19,16,0.16);

--display: 'Teachers', serif;
--mono: 'Space Mono', monospace;
--body: 'Inter', sans-serif;
}

*{margin:0; padding:0; box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
background:var(--sand);
color:var(--ink);
font-family:var(--body);
font-weight:400;
overflow-x:hidden;
}
a{color:inherit; text-decoration:none;}
img{display:block; max-width:100%;}
button{font-family:inherit; cursor:pointer;}
::selection{background:var(--gold); color:var(--ink);}

h1, h2, h3, h4 {
        font-family: var(--display);
}
h1 {
    font-family: var(--display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(30px, 4.6vw, 54px);
    margin-bottom: 50px;
}

.eyebrow{
font-family:var(--mono);
font-size:11px;
letter-spacing:.16em;
text-transform:uppercase;
color:var(--brick);
}

/* ---------- utility strip ---------- */
.utility{
background:var(--ink);
color:var(--sand);
font-family:var(--mono);
font-size:11px;
letter-spacing:.08em;
text-align:center;
padding:8px 12px;
text-transform:uppercase;
}


/* ---------- header ---------- */
#header{
  position: sticky; top: 0; z-index: 50;
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}
.nav-wrap{
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 40px;
  position: relative;
}
.nav-left, .nav-right{
  display: flex; gap: 28px; align-items: center;
  font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
}
.nav-left a, .nav-right a{ position: relative; padding-bottom: 2px; }
.nav-left a::after, .nav-right a::after{
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--terracotta); transition: width .25s ease;
}
.nav-left a:hover::after, .nav-right a:hover::after{ width: 100%; }
 
.logo{
  font-family: 'Fraunces', serif;
  font-weight: 400; font-style: italic;
  font-size: 28px;
  letter-spacing: .01em;
  display: flex; align-items: center; gap: 8px;
  transform: rotate(-1deg);
}
.logo svg{ width: 22px; height: 14px; transform: translateY(-6px); }
 
/* ---------- hamburger toggle (mobile only) ---------- */
.menu-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 2;
}
.menu-toggle span{
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .28s ease, opacity .2s ease;
}
.menu-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity: 0; }
.menu-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
 
/* ---------- mobile-only cart icon next to hamburger ---------- */
.mobile-cart{
  display: none;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  position: relative;
}
.mobile-cart .cart-count{
  font-family: var(--mono);
  font-size: 10px;
  background: var(--terracotta);
  color: var(--sand);
  min-width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  top: -6px; right: -8px;
  line-height: 1;
}
 
/* ---------- mobile nav overlay ---------- */
.mobile-nav{
  width: 85vw;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--sand);
  transform: translateX(100vw);
  transition: transform .35s ease;
  overflow-y: clip;
}
.mobile-nav.open{
  transform: translateX(15vw);
}
.mobile-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30vw;
    height: 100vh;
    width: 30vw;
    background: #00000036;
    z-index: 88888;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease-in-out;
}
.mobile-nav.open::before {
    opacity: 1;
    transition: opacity .3s ease-in-out .2s;
}
.mobile-nav-inner{
  min-height: 100%;
  padding: 110px 32px 48px;
  display: flex;
  flex-direction: column;
}
.mobile-nav-links{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav-links a{
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 34px;
  color: var(--sand);
  padding: 12px 0;
  border-bottom: 1px solid rgba(236,226,206,.12);
  transition: color .2s ease;
}
.mobile-nav-links a:hover{ color: var(--gold); }
 
.mobile-nav-secondary a{
  font-family: var(--mono);
  font-style: normal;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 0;
}
 
.mobile-nav-divider{
  height: 1px;
  background: rgba(236,226,206,.15);
  margin: 28px 0;
}
 
.mobile-nav-footer{
  margin-top: auto;
  padding-top: 40px;
}
.mobile-nav-footer .eyebrow{ color: var(--gold); }
 
body.nav-open{
  overflow: hidden;
}
 
/* ---------- breakpoint ---------- */
@media (max-width: 860px){
  .nav-left, .nav-right{ display: none; }
  .nav-wrap{
    padding: 14px 20px;
    justify-content: space-between;
  }
  .menu-toggle{ display: flex; order: 1; }
  .logo{ order: 2; font-size: 24px; }
  .mobile-cart{ display: flex; order: 3; }
}
 
@media (min-width: 861px){
  .mobile-nav{ display: none; }
}

/* ---------- footer ---------- */
footer{
background:var(--ink); color:var(--sand);
padding:90px 40px 30px;
}
.footer-grid{
max-width:1280px; margin:0 auto;
display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr;
gap:40px;
padding-bottom:70px;
border-bottom:1px solid rgba(236,226,206,.15);
}
.footer-logo{
font-family:var(--display); font-style:italic; font-size:28px; margin-bottom:18px;
}
.footer-grid p{ font-size:13px; line-height:1.7; opacity:.65; max-width:280px; }
.footer-col h5{
font-family:var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase;
opacity:.55; margin-bottom:18px;
}
.footer-col ul{ list-style:none; display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14px; opacity:.85; transition:opacity .2s; }
.footer-col a:hover{ opacity:1; color:var(--gold); }
.footer-bottom{
max-width:1280px; margin:0 auto; padding-top:26px;
display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
font-family:var(--mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; opacity:.5;
}

@media (max-width:900px){
.footer-grid{ grid-template-columns:1fr 1fr; }
}

  
a:hover {
  color: gray;
}
ul {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}
.ff-default .ff-el-form-control:focus {
    background-color: transparent;
    border-color: #898989;
}
input, textarea {
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 1px;
  outline: none;
  height: 2.75rem;
  width: 100%;
  padding: 10px 15px;

  font-size: 14px;
  transition: all 0.15s ease-in;
}
select {
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 1px;
  outline: none;
  padding: 5px 15px;
  font-size: 14px;
  transition: all 0.15s ease-in;
}
input:focus, textarea:focus{
  outline: none;
  border-color: #666;
}
input[type="radio"]{
  padding: 12px;
  accent-color: #434343;
}
select:focus {
  outline: none;
  border-color: #888;
}
h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* CONTAINER SIZE */

.container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 95vw;
  }
}


/* General Reset */

.feature-container {
  padding: 16px 0;
}

.feature-container h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.feature-container ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 3 items per row by default */
  gap: 3px; /* Space between grid items */
  list-style: none;
  padding: 0;
}

.feature {
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.feature__link {
  text-decoration: none;
  color: inherit;
}

.feature__image {
  position: relative;
}
.feature__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(0 0 0 / 10%);
}
.feature__image img {
  width: 100%;
  height: 340px;
  display: block;
  object-fit: cover;
}

.feature__title p {
  font-size: 18px;
  font-weight: bold;
  margin: 8px 0;
  color: #000;
}

.feature__text {
  z-index: 200;
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  padding: 12px 6px;
  bottom: 0;
  left: 0;
  right: 0;
}

.feature__text p {
  color: var(--bg-website);
}

/* Responsive Design for Tablet and Smaller Devices */
@media (max-width: 768px) {
  .feature-container ul {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
  }
}

/* Further Responsive Design for Mobile */
@media (max-width: 400px) {
  .feature-container ul {
    grid-template-columns: 1fr; /* 1 item per row */
  }
}




/* - search - */

#search-wrapper {
  position: fixed;
  width: 100%;
  height: 0;
  overflow: hidden;
  bottom: -100px;
  left: 0;
  opacity: 0;
  z-index: 9999;
  transition: opacity 0.4s ease-in-out 0s;
}

#search-wrapper.visible {
  height: 100%;
  bottom: 0;
  opacity: 1;
}

#search-wrapper.visible .white {
  margin-top: 0;
}

#search-wrapper #search-overlay {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

#search-wrapper .white {
  background: #fff;
  margin-top: -100px;
  transition: all 0.5s ease-in-out 0s;
  z-index: 9;
  position: relative;
}

#search-wrapper #product-search {
  overflow: hidden;
  transition: all 0.4s ease-in-out 0s;
  max-height: 50vh;
}
.products-search-form {
  margin: 0 0.75rem;
  position: relative;
  padding-left: 10px;
}

.products-search-form:before {
  display: inline-block;
  font-family: "FontAwesome";
  content: "\f105";
  color: #ddd;
  position: absolute;
  left: 0;
  top: 20px;
}

.products-search-form input[type="text"]#search {
  border: 1px solid #fff;
  color: #1f1f1f;
  padding-left: 14px;
  margin: 0;
  height: 60px;
}

.products-search-form input[type="text"]#search:focus {
  border: 1px solid #fff !important;
}

.products-search-form .close-icon {
  top: 24px;
}

.products-search-form .close-icon:before,
.products-search-form .close-icon:after {
  background-color: #777;
}
/* Product image hover swap */
.woocommerce ul.products li.product {
    position: relative;
}

.woocommerce ul.products li.product img {
    transition: opacity 0.3s ease;
}
.woocommerce ul.products li.product .button {
    display: none;
}


.woocommerce ul.products li.product .product-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.woocommerce ul.products li.product:hover .product-hover-image {
    opacity: 1;
}

.close-icon {
  display: block;
  content: "";
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.close-icon:hover {
  opacity: 1;
}

.close-icon:before,
.close-icon:after {
  position: absolute;
  left: 7px;
  content: "";
  height: 16px;
  width: 2px;
  background-color: #fff;
}

.close-icon:before {
  transform: rotate(45deg);
}

.close-icon:after {
  transform: rotate(-45deg);
}
/* Container for the search results grid */
#search-response {
    padding-bottom: 1px;
}
#search-response .search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin-top: 10px;
    max-height: 85vh;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 30px;
}
.sub-menu .menu-item:first-of-type {
    padding-left: 15px;
}
/* Individual search result item */
.search-result-item {
  background-color: #fff;
  padding: 15px;
  transition: transform 0.3s ease-in-out;
}

.search-result-item:hover {
  transform: scale(1.025); /* Slightly zoom the item on hover */
}

.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button-over-image--top-left {
    top: initial;
    left: initial;
    right: 0;
    bottom: 57px;
}
/* Product image */
.search-result-item-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
    max-width: 200px;
    margin-bottom: 10px;
}
/* Product title */
.search-result-item-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

.search-result-item-title a {
  text-decoration: none;
  color: #333;
}

.search-result-item-title a:hover {
  color: #555;
}

/* Product price */
.search-result-item-price {
  font-size: 14px;
  color: #606060; /* Red color for the price */
  font-weight: bold;
}


/* Custom scrollbar */
#search-response .search-results-grid::-webkit-scrollbar {
  width: 6px; /* Set the width of the scrollbar */
}

#search-response .search-results-grid::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Light gray background for the track */
  border-radius: 10px; /* Rounded corners for the track */
}

#search-response .search-results-grid::-webkit-scrollbar-thumb {
  background-color: #888; /* Gray color for the thumb */
  border-radius: 10px; /* Rounded corners for the thumb */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

#search-response .search-results-grid::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Darker gray when hovering over the thumb */
}
#cart .woocommerce-mini-cart::-webkit-scrollbar {
  width: 6px; /* Set the width of the scrollbar */
}

#cart .woocommerce-mini-cart::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Light gray background for the track */
  border-radius: 10px; /* Rounded corners for the track */
}

#cart .woocommerce-mini-cart::-webkit-scrollbar-thumb {
  background-color: #888; /* Gray color for the thumb */
  border-radius: 10px; /* Rounded corners for the thumb */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

#cart .woocommerce-mini-cart::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Darker gray when hovering over the thumb */
}



/* Hide submenus by default */
div.nav-item-wrapper{
  position: relative;
  align-self: normal;
}
div.nav-item-wrapper:hover .icon-sub-menu {
  display: block;
}


.icon-sub-menu{
  position: absolute;
  right: 0px;
  top: 22px;
  width: 340px;
  display: none;
  background: var(--ink);
  border: 1px solid var(--bronze);
  box-shadow: 0 18px 40px rgba(28,19,16,.28);
  padding: 0;
  overflow: hidden;
}
 
.icon-sub-menu .menu-link{
  color: var(--sand);
  font-family: var(--body);
  font-size: 14px;
  transition: color .2s ease;
}
.icon-sub-menu .menu-link:hover{
  color: var(--gold);
}
 
/* ---------- account dropdown: signed-in / signed-out row ---------- */
.upper-signing{
  background: var(--bronze-deep);
  padding: 18px 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sand);
  opacity: .9;
}
.upper-signing ul li{
  border-left: 1px solid rgba(236,226,206,.25);
  color: var(--sand);
}
.upper-signing ul li:first-child{
  border-left: none;
}
.upper-signing a{
  color: var(--sand);
  text-decoration: none;
  transition: color .2s ease;
}
.upper-signing a:hover{
  color: var(--gold);
}
.upper-signing svg{
  color: var(--sand);
  opacity: .8;
}
 
/* ---------- account / cart body ---------- */
.lower-signing{
  padding: 10px 0 14px;
}
.icon-sub-menu li.menu-item{
  padding: 12px 20px !important;
  transition: background .2s ease;
}
.icon-sub-menu li.menu-item:hover{
  background: rgba(236,226,206,.05);
}
 
/* ---------- cart preview ---------- */
.menu-cart-preview{
  padding: 20px 20px 4px;
}
.menu-cart-preview::before{
  content: "Your Bag";
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
 
.woocommerce-mini-cart{
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  max-height: 320px;
  overflow-y: auto;
}
.woocommerce-mini-cart::-webkit-scrollbar{ width: 4px; }
.woocommerce-mini-cart::-webkit-scrollbar-thumb{ background: rgba(236,226,206,.25); }
 
.woocommerce-mini-cart-item{
  position: relative;
  align-items: center;
  border-bottom: 1px solid rgba(236,226,206,.12);
}
.woocommerce-mini-cart-item:last-child{
  border-bottom: none;
}
.woocommerce-mini-cart-item img{
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 1px solid rgba(236,226,206,.18);
}
.woocommerce-mini-cart-item a:not(.remove){
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--sand);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}
.woocommerce-mini-cart-item a:not(.remove):hover{
  color: var(--gold);
}
.woocommerce-mini-cart-item .quantity{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--sand);
  opacity: .65;
}
.woocommerce-mini-cart-item .quantity .woocommerce-Price-amount{
  color: var(--sand);
  opacity: .9;
}
.woocommerce-mini-cart-item a.remove{
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: start;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--sand) !important;
  background: transparent;
  opacity: .55;
  font-size: 14px;
  transition: opacity .2s ease, background .2s ease;
}
.woocommerce-mini-cart-item a.remove:hover{
  opacity: 1;
  background: rgba(236,226,206,.1);
  color: var(--gold) !important;
}
 
.woocommerce-mini-cart__total{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  margin: 0;
  border-top: 1px solid rgba(236,226,206,.18);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: .85;
}
.woocommerce-mini-cart__total .amount{
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
}
.woocommerce-mini-cart__buttons a.wc-forward{
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 10px;
  border: 1px solid var(--sand);
  text-decoration: none;
  transition: all .2s ease;
}
.woocommerce-mini-cart__buttons a.wc-forward:hover{
  background: var(--sand);
  color: var(--ink);
}
.woocommerce-mini-cart__buttons a.wc-forward.checkout{
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--sand);
}
.woocommerce-mini-cart__buttons a.wc-forward.checkout:hover{
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
 
/* empty cart state */
.woocommerce-mini-cart__empty-message{
  font-family: var(--body);
  font-size: 13px;
  color: var(--sand);
  opacity: .6;
  padding: 10px 20px 24px;
  margin: 0;
}

/* ---------- newsletter ---------- */
  .newsletter{
    background:var(--terracotta);
    color:var(--sand);
    padding:100px 40px;
    text-align:center;
  }
  .newsletter h2{
    font-family:var(--display); font-style:italic; font-weight:500;
    font-size:clamp(30px,4.6vw,54px);
    max-width:720px; margin:0 auto 18px;
  }
  .newsletter p{ opacity:.9; max-width:460px; margin:0 auto 34px; font-size:14px; }



.ff-t-container.ff-column-container.ff_columns_total_2 {
    display: flex;
    max-width: 440px;
    gap: 0;
    margin: 0 auto;
    border: 1px solid var(--sand);
}

.ff-t-cell.ff-t-column-1 , .ff-t-cell.ff-t-column-2, .ff-el-group, .ff-el-input--content, 
.ff-el-group.ff-text-left.ff_submit_btn_wrapper.ff_submit_btn_wrapper_custom
{
    display: contents !important;
}
input#ff_2_email {
    flex: 1;
    background: transparent;
    border-radius: none;
    border: none;
    padding: 16px 18px;
    color: var(--sand);
    font-family: var(--body);
    font-size: 14px;
    background: none;
}
button.ff-btn.ff-btn-submit.ff-btn-md {
    background: var(--sand);
    color: var(--ink);
    border: none;
    padding: 0 26px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0 !important;
}

input#ff_2_email::placeholder {
    color:rgba(236,226,206,.6);
}
div#fluentform_2_success {
    max-width: 535px;
    margin: auto;
    font-size: 14px;
    font-family: var(--mono);
}

/* Delivery and returns */
.delivery-wrapper {
  box-sizing: border-box;
  width: 400px;
  font-size: .9rem;
  border: 1px solid #dcdcdc; /* Replace with appropriate grey color */
  margin-top: 18px;
}

.delivery-wrapper .row:not(:empty) {
  padding: 12px 16px 0;
  display: flex;
  align-items: center;
}

.delivery-wrapper .row.noIcon {
  margin-left: 36px;
}

.delivery-wrapper .terms {
  padding-block: 16px;
  margin-left: 60px;
  text-decoration: underline;
}

.delivery-wrapper .shippingLabel:not(:empty) {
  padding: 8px 16px;
  border-bottom: 1px solid rgb(238, 238, 238);
}

.delivery-wrapper .deliveryMessage {
  padding: 16px 16px 0;
  display: flex;
    gap: 5px;
}
.delivery-wrapper .deliveryMessage svg {
   flex: 48px;
}

.delivery-wrapper .iconContainer {
  display: flex;
  justify-content: center;
  min-width: 36px;
  box-sizing: border-box;
  padding-right: 12px;
}

.delivery-wrapper .icon {
  display: inline-block;
}

.delivery-wrapper .termsLinkText {
  text-decoration: underline;
}

.delivery-wrapper .termsLinkText > span {
  margin-left: 4px;
}

.delivery-wrapper .shippingRestrictions:not(:empty) {
  padding: 12px 16px 16px;
  border-top: 1px solid rgb(238, 238, 238);
  display: none;
}

.delivery-wrapper .shippingRestrictions > button {
  font-family: "futura-pt-n7", futura-pt, Tahoma, Geneva, Verdana, Arial, sans-serif;
  padding: 0;
  background-color: transparent;
  border: 0;
  line-height: 1.7;
  letter-spacing: 0.8px;
  color: #333333; /* Replace with appropriate grey color */
  font-size: 12px;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
}

/* WOO COMMERCE */
.woocommerce ul.products li.product {
    float: left;
    margin: 0;
    padding: 0;
    position: relative;
    width: auto;
    margin-left: 0;
}
.woocommerce ul.products {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    gap: 20px 15px;
}
@media (max-width: 550px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px 10px;
    }
}
.woocommerce ul.products::before{
    content: none;
}

.woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
    width: 100%;
    margin: 0;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt{
  background-color: #000;
  color: white;
  font-size: 12px;
  font-weight: 400;
  border-radius: 5px;
  text-transform: uppercase;
  margin-top: 10px;
  padding: 10px 20px !important;
  transition: background-color 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  outline-offset: 2px;
  outline-width: 1px;
  outline-color: white;
  outline-style: none;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover{
    background-color: #333;
}
..woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
    padding: .2rem 0;
    margin: 0;
    font-size: 1em;
}

/* Wishlist */

.wishlist_table thead tr th, .wishlist_table tfoot td td {
    background: none;
    border: none;
}
.woocommerce table.shop_table.wishlist_table tr td {
    background: none;;
}

.yith-add-to-wishlist-button-block {
    margin: 0;
}

.woocommerce table.shop_table{
    border-collapse: collapse;
    border: none;
}
.woocommerce table.shop_table td {
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding: 15px 10px;

    
}
.woocommerce table.shop_table td.product-thumbnail a {
    width: 135px !important;
    max-width: none;
}

.woocommerce .woocommerce-breadcrumb a {
    font-size: .85rem !important;
    color: #767676;
}
.woocommerce .woocommerce-breadcrumb {
    font-size: .85rem !important;
    color: var(--bronze-deep);
    text-transform: capitalize;
}
.woocommerce div.product .product_title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.woocommerce-product-gallery {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.woocommerce-product-gallery .flex-control-thumbs {
    /* order: 1; */ /* Ensure thumbnails appear first */
    flex: 0 0 75px; /* Set width of the thumbnails container */
    display: flex;
    flex-direction: column; /* Stack thumbnails vertically */
    gap: 10px; /* Add spacing between thumbnails */
    max-height: 499px; /* Limit height if needed */
    overflow-y: auto; /* Scroll if too many thumbnails */
    margin-right: 10px !important;; /* Add spacing between thumbnails and the main image */
}

.woocommerce-product-gallery__wrapper {
    flex: 1; /* Allow the main image to take the remaining space */
}
.woocommerce div.product div.images .flex-control-thumbs li {
    width: 100%;
}

@media (max-width: 760px) {
    .woocommerce-product-gallery {
        flex-direction: column;
    }
    .woocommerce-product-gallery .flex-control-thumbs {
        flex: auto;
        flex-direction: row;
        gap: 8px;
        max-height: 499px;
        margin-right: 0;
        margin-top: 8px !important;
    }
}
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--single.yith-wcwl-add-to-wishlist-button--anchor {
    justify-content: center;
    background-color: #ebebeb;
    color: #343434;
    gap: 10px;
    padding: 5px;
    margin-left:8px;
    font-size: 15px;
    margin-bottom: 1rem;
    border-radius: 4px;
    width: 56px;
     transition: .3 ease-in-out all;
}
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--single.yith-wcwl-add-to-wishlist-button--anchor:hover {
     background-color: #ddd;
   
}
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--single.yith-wcwl-add-to-wishlist-button--anchor span{
   display: none;
}
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--single.yith-wcwl-add-to-wishlist-button--anchor svg.yith-wcwl-add-to-wishlist-button-icon {
    color: #343434;

}


.woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 0.6em;
    font-size: .9rem;
    color: #49494c;
}
.woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 0.6em;
    font-size: .9rem;
    color: #49494c;
}
.woocommerce div.product p.price {
   color: #ff5722;
}
.woocommerce .star-rating span::before {
    color: goldenrod;
}
.woocommerce .woocommerce-product-details__short-description p {
    margin-bottom: 8px;
}
.woocommerce .woocommerce-product-gallery__image a img {
    max-height: 600px;
    object-position: center;
    object-fit: cover;
}
.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th {
    border: 0;
    line-height: 1.5em;
    vertical-align: middle;
    display: block;
}
.woo_sc_price_btn_popup.woo_sc_btn_popup.woo_sc_btn_span {
    display: none !important;
}
#woo_sc_show_popup {
    display: inline-block; 
    color: #686868;
    background-color: transparent;
    padding: 0;
    font-size: .9rem;
    cursor: pointer;
}
#woo_sc_show_popup:hover {
    transform: scale(1);
    box-shadow: none;
}
.woo_sc_modal_content {
    background-color: #fff;
    margin: 0;
    top: 50%;
    left: initial;
    right: 0;
    transform: translate(0%, -50%);
    padding: 30px 16px;
    border: none;
    border-radius: 0;
    width: 55%;
    height: 100%;
    box-shadow: 0 4px 12px 0 rgb(67 67 67 / 30%);
    -webkit-animation-name: animateRight;
    animation-name: animateRight;
}
@media (min-width: 768px) {
    .woo_sc_scroll_content {
        max-height: 90vh;
    }
    .woo_sc_modal_close {
        right: 14px;
        top: 6px;
        color: #414141;
        font-size: 24px;
    }
   .woo_sc_modal_close:hover {
        color: #222;
    }
}
@media (max-width: 768px) {
   .woo_sc_modal_content {
        width: 100%;

    }
}
@media (min-width: 768px) {

}
@keyframes animateRight {
    0% {
        right: -1000px;
        opacity: 0
    }

    to {
        right: 0;
        opacity: 1
    }
}

.woocommerce div.product form.cart .button {
    vertical-align: middle;
    text-transform: none;
    float: left;
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
    border: none;
    font-weight: 400;
    border-radius: 4px;
    font-size: 15px;
    width: 275px;
}
.woocommerce div.product form.cart .button:hover {
    background-color: #222;
}
.woocommerce div.product form.cart {
    margin-bottom: .75em;
}
.woocommerce div.product .stock{
    color: #585858;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 1px solid #cfc8d8;
    background-color: #e9e6ed;
    color: #515151;
    display: inline-block;
    position: relative;
    z-index: 0;
    border-radius: 4px 4px 0 0;
    margin: 0px 2px;
    padding: 0 1.5em;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: var(--bg-website);
    color: #515151;
    z-index: 2;
    border-bottom-color: var(--bg-website);
}
.woocommerce ul.products li.product .onsale, .woocommerce span.onsale {
    background-color: #ffffffdb;
    color: #ff5722;
    font-weight: 600;
    border-radius: 0;
    min-height: 1px;
    min-width: 1px;
    line-height: normal;
    padding: 5px 10px;
    font-size: 14px;
    display: inline-block;
    margin: 5px;
    top: initial;
    left: initial
}
/* cart*/

#cart .icon-sub-menu {
    width: 400px;
    right: 0px;
}
ul.cart_list, ul.product_list_widget {
    list-style: none outside;
    padding: 0;
    margin: 0;
    height: 50vh;
    overflow: overlay;
}

ul.cart_list li, ul.product_list_widget li {
    padding: 18px 0 !important;
    border-bottom: 1px #d9d9d9 solid;
    font-size: .9rem;
    margin: 0;
    list-style: none;
}

ul.cart_list li::after, ul.cart_list li::before, ul.product_list_widget li::after, ul.product_list_widget li::before {
    content: " ";
    display: table;
}

ul.cart_list li::after, ul.product_list_widget li::after {
    clear: both;
}

 ul.product_list_widget li a {
    font-weight: 700;
    display: inline-block !important;
}
 ul.product_list_widget li a.remove {
    display: block;
    float: right;
    font-size: 1.5em;
    margin-left: 16px;
    height: 1em;
    width: 1em;
    text-align: center;
    line-height: 1;
    border-radius: 100%;
    color: var(--wc-red) !important;
    text-decoration: none;
    font-weight: 700;
    border: 0;
}
 ul.product_list_widget li a.remove:hover {
    color: #fff !important;
    background: var(--wc-red);
}
ul.cart_list li img, ul.product_list_widget li img {
    float: left !important;
    margin-right: 6px !important;
    width: 50px !important; 
    height: auto;
    box-shadow: none;
}

ul.cart_list li dl, ul.product_list_widget li dl {
    margin: 0;
    padding-left: 1em;
    border-left: 2px solid rgba(0, 0, 0, .1);
}

ul.cart_list li dl::after, ul.cart_list li dl::before, ul.product_list_widget li dl::after, ul.product_list_widget li dl::before {
    content: " ";
    display: table;
}

ul.cart_list li dl::after, ul.product_list_widget li dl::after {
    clear: both;
}

ul.cart_list li dl dd, ul.cart_list li dl dt, ul.product_list_widget li dl dd, ul.product_list_widget li dl dt {
    display: inline-block;
    float: left;
    margin-bottom: 1em;
}

ul.cart_list li dl dt, ul.product_list_widget li dl dt {
    font-weight: 700;
    padding: 0 0 .25em;
    margin: 0 4px 0 0;
    clear: left;
}

ul.cart_list li dl dd, ul.product_list_widget li dl dd {
    padding: 0 0 .25em;
}

ul.cart_list li dl dd p:last-child, ul.product_list_widget li dl dd p:last-child {
    margin-bottom: 0;
}

ul.cart_list li .star-rating, ul.product_list_widget li .star-rating {
    float: none;
}
.woocommerce ul.products li.product .price {
    color: #2b2422;
}
.widget_shopping_cart .total {
    border-top: 3px double #e9e6ed;
    padding: 4px 0 0;
}

.widget_shopping_cart .total strong {
    min-width: 40px;
    display: inline-block;
}

.widget_shopping_cart .cart_list li {
    padding-left: 2em;
    position: relative;
    padding-top: 0;
}

.widget_shopping_cart .cart_list li a.remove {
    position: absolute;
    top: 0;
    left: 0;
}

.widget_shopping_cart .buttons::after, .widget_shopping_cart .buttons::before {
    content: " ";
    display: table;
}

.widget_shopping_cart .buttons::after {
    clear: both;
}

.widget_shopping_cart .buttons a {
    margin-right: 5px;
    margin-bottom: 5px;
}
.cart-preview-dropdown {
    width: 95%;
    margin: 0 auto;
}
.cart-preview-dropdown span.quantity {
    float: right !important;
}
.cart-preview-dropdown .woocommerce-mini-cart__empty-message {
    font-style: italic;
    text-align: center;
    margin: 20px 50px;
    font-weight: 100;
    color: gray;
    letter-spacing: 0.2px;
}
.cart-preview-dropdown .woocommerce-mini-cart__total.total {
    margin: 1rem 0;
    font-size: .95rem;
}
.cart-preview-dropdown .woocommerce-mini-cart__buttons.buttons {
    display: grid;
    gap: 10px;
}
.cart-preview-dropdown .woocommerce-mini-cart__buttons.buttons .button {
    padding: 10px 20px;
    transition: background-color 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.woocommerce .woocommerce-form-login .woocommerce-form__label-for-checkbox {
    display: inline-flex;
}
.woocommerce .woocommerce-form-login .woocommerce-form__label-for-checkbox input {
    min-width: 22px;
}
.woocommerce .woocommerce-form-login .woocommerce-form__label-for-checkbox span {
    white-space: nowrap;
    line-height: normal;
    align-content: space-evenly;
    padding-left: 12px;
    font-size: .9rem;
}

/* Dashboard */
/* Style the welcome message */
.welcome-message {
    font-size: 18px; /* Adjust the font size */
    font-weight: bold;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f4f4f4; /* Light background */
    border-radius: 5px; /* Rounded corners */
    display: flex;
    align-items: center;
}

/* Style the user avatar (image) */
.user-avatar {
    width: 58px;  /* Avatar size */
    height: 58px; /* Avatar size */
    border-radius: 50%;  /* Make it circular */
    margin-right: 10px; /* Space between avatar and text */
}

/* Style for the greeting text */
.welcome-message .greeting {
    margin-right: 5px;
    font-size: 20px;
    color: #0073e6; /* Customize greeting color */
}

/* Style for the username */
.welcome-message .username {
    font-size: 22px;
    color: #333; /* Customize username color */
}

li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link {
    background-color: #f4f4f4;
    color: #161616;
    padding: 15px;
    margin-bottom: 6px;
    flex: 1;
}
li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link.is-active {
    background-color: #e7e7e7;

}
.woocommerce-Address .woocommerce-Address-title a {
    text-decoration: underline;
    color: gray;
} 
.woocommerce-Address address {
    background-color: #ebebeb;
    padding: 18px;
    border-radius: 4px;
}
/* Trust badges */
.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping if space is constrained */
  justify-content: center;
  margin-top: 20px;
}

.badge {
  text-align: center;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #f9f9f9;
  max-width: 300px; /* Max width for each badge */
  flex: 1 1 30%; /* Allow badges to scale within available space */
  box-sizing: border-box; /* Ensures padding and border don't affect the size */
  transition: transform 0.3s;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.badge .fas {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 10px;
}

.badge h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #333;
}

.badge p {
  font-size: 14px;
  color: #777;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .badge {
    flex: 1 1 45%; /* Two badges per row on medium screens */
  }
  nav.woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
      padding-top: 50px;
  }
}

@media (max-width: 480px) {
  .badge {
    flex: 1 1 100%; /* Full width for each badge on small screens */
  }
}

#wps_wpr_order_notice {
    font-family: monospace;
}

.woocommerce-checkout #payment ul.payment_methods li input {
    float: left;
    height: 2.75rem;
    width: 1.75rem;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    margin-top: 7px;
}
.woocommerce ul#shipping_method li  {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.woocommerce ul#shipping_method li input {
    float: left;
    margin: 3px .75em 0 0;
    height: 2.75rem;
    width: 1.5rem;
	
}

.woocommerce ul#shipping_method li label {
    margin-top: 7px;
}
.woocommerce ul#shipping_method li label .woocommerce-Price-amount {
   display: block;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: rgb(129 110 153 / 5%);
    border-radius: 5px;
}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    float: right;
    display: inline-block;
    background-color: #30366b;
    color: white;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    text-transform: uppercase;
    margin-top: 10px;
    padding: 14px 20px;
    transition: background-color 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.woocommerce-privacy-policy-text {
    font-size: .9rem;
    color: #383838;
}
#add_payment_method #payment ul.payment_methods li img, .woocommerce-cart #payment ul.payment_methods li img, .woocommerce-checkout #payment ul.payment_methods li img {
    width: 70px !important;
}
#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
    border-radius: 5px;
}
.woocommerce table.shop_table tr td:last-child {
  text-align: end;
}
.woocommerce ul.products li.product a img {
    width: 100%;
    height: 475px;
    object-position: top;
    display: block;
    object-fit: cover;
    margin: 0 0 0.5em;
    box-shadow: none;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding-block: 0 2px;
    text-transform: uppercase;
}
.woocommerce .woocommerce-result-count {
    margin: 0 0 1em;
    font-size: 0.85rem;
}
.woocommerce h1.page-title {
    font-weight: 600;
    font-size: 38px;
    padding-top: 12px;
    margin-bottom: 14px;
}
.woocommerce .term-description {
    font-size: 14px;
    margin-bottom: 48px;
}
.woocommerce .includes_tax {
	display: block;
    font-size: 13px;
    color: #535353;
}