/** Shopify CDN: Minification failed

Line 269:2 Unexpected "{"
Line 269:3 Expected identifier but found "%"
Line 269:57 Unexpected "{"
Line 269:58 Expected identifier but found "%"
Line 276:2 Unexpected "{"
Line 276:3 Expected identifier but found "%"
Line 276:58 Unexpected "{"
Line 276:59 Expected identifier but found "%"

**/
*{ font-family: "Poppins", sans-serif;}
body{ font-family: "Poppins", sans-serif;}
@font-face {
  font-family: 'Inkfree';
  src: url('{{ "Inkfree.woff" | asset_url }}') format('woff'),
       url('{{ "Inkfree.ttf" | asset_url }}') format('truetype');
}


a{font-family: "Poppins", sans-serif;}
.product-card-atc {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 10px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.product-card-atc:hover {
  background: #333;
}

.footer-item-sec ul li{margin-bottom:10px;}
.footer-item-sec ul a{font-size:20px;}
.footer-item-sec ul li:last-child{margin-bottom:0px;}

/* Make product cards equal height */
.card-wrapper {
  height: 100%;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Fix image height */
.card__media img {
  height: 250px; /* adjust as needed */
  object-fit: cover;
}

/* Fix title height */
.card__heading {
  min-height: 48px; /* adjust depending on 1-2 lines */
}

/* Keep Add to Cart button aligned at bottom */
.card__content .card__information {
  flex-grow: 1;
}

.blog-view-all-btn a {
  background: #000000;
  color: #ffffff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}
.blog-btn-sec{text-align:center; padding-bottom:30px; background:#f4f1ef;}
.privacy-policy-sec{padding:50px 0;}
.wrapper-privacy-policy{display:grid; width:75%; margin:auto; }

.cus-blog-card{background:#fff; padding:10px;}


.wholesale-section{
  background:#fff;
  padding:40px 0;
}

.wholesale-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    align-items: anchor-center;
    background: #754c09;
}

.wholesale-image{
  width:50%;
  background:#000;
}

.wholesale-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.wholesale-content{
  width:50%;
  padding:60px 50px;
  color:#000;
}

.wholesale-content h2{
  font-size:38px;
  margin-bottom:20px;
  color:#fff;
}

.wholesale-content p{
  font-size:16px;
  line-height:1.6;
  margin-bottom:20px;
  color:#fff;

}

.wholesale-content a{
  color:#fff;
  text-decoration:underline;
}

.wholesale-btn{
  display:inline-block;
  padding:12px 28px;
  background:#000;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  border:1px solid #000;
  font-weight:600;
  margin-top:10px;
}

.wholesale-btn:hover{
  background:#fff;
  color:#000;
  border:1px solid #000;
}



/* Footer Css */
.contact-box {
  padding: 20px 0;
  font-family: "Poppins", sans-serif;
  color: #ffffff; /* all text white */
}

.contact-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff; /* white heading */
  position: relative;
}

/* underline accent (slightly lighter white) */
.contact-box h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-details p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff; /* white text */
}

/* make links white too */
.contact-details a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
  color:#c5a46d !important;
}

.footer-item-sec {
  padding: 20px 0;
  font-family: "Poppins", sans-serif;
  color: #ffffff; /* white text */
}

.footer-item-sec h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
  font-family: "Poppins", sans-serif;
}

/* subtle underline accent */
.footer-item-sec h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

.footer-item-sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-item-sec ul li {
  margin-bottom: 10px;
}

.footer-item-sec ul li a {
  color: #ffffff; /* white links */
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.footer-item-sec ul li a:hover {
  color: #c5a46d; /* optional gold accent on hover */
  text-decoration: underline;
}


/* Card */
.category-card {
  background: #fff;
  border-radius: 15px;
  border:1px solid #ccc;

  overflow: hidden;
  {% comment %} box-shadow: 0 8px 20px rgba(0,0,0,0.08); {% endcomment %}
  transition: all 0.35s ease;
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  {% comment %} box-shadow: 0 18px 35px rgba(0,0,0,0.15); {% endcomment %}
}

/* Image */
.category-box {
  display: block;
  overflow: hidden;
  padding:25px;
}

.category-box img {
  width: 100%;  
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Zoom effect */
.category-card:hover img {
  transform: scale(1.08);
}


/* Tablet (iPad) Scrollable Menu */
@media screen and (max-width: 1024px) {

  /* #header-component :is(.header-menu,.dropdown-localization) {
    display: flex !important;
} */
}



/* Responsive */
@media (max-width:900px){
  .wholesale-container{
            width: 90%;
    flex-direction:column;
  }

  .wholesale-image,
  .wholesale-content{
    width:100%;
  }

  .wholesale-content{
    padding:40px 25px;
  }
}


