/*! CSS Used from: 

:root {
  --af-primary: #c41e2a;
  --af-primary-dark: #a01822;
  --af-primary-light: #e84550;
  --af-secondary: #1a1a2e;
  --af-dark: #0f0f1a;
  --af-light: #f8f9fa;
  --af-gray: #6c757d;
  --af-gray-light: #e9ecef;
  --af-gold: #d4a843;
  --af-white: #ffffff;
  --af-shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --af-shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --af-shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --af-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --af-radius: 20px;
  --af-radius-sm: 12px;
  --af-radius-lg: 24px;
  --af-radius-xl: 50px;
}



.af-gap-5 {
  gap: 40px;
}
.af-grid {
  display: grid;
}
.af-grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.af-stats {
  background: #1a1a2e;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.af-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.af-stat-item {
  text-align: center;
  color: var(--af-white);
  position: relative;
  z-index: 1;
}
.af-stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #c41e2a;
  margin-bottom: 8px;
}
.af-stat-label {
  font-size: 15px;
  opacity: 0.8;
  color: white;
}
@media (max-width: 1024px) {
  .af-grid-cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .af-grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}


/*  */

/*! CSS Used from: https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css */
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}
.fas {
  font-family: "Font Awesome 6 Free";
}
.fa-lock:before {
  content: "\f023";
}
.fa-shield-alt:before {
  content: "\f3ed";
}
.fa-shipping-fast:before {
  content: "\f48b";
}
.fas {
  font-weight: 900;
}


.af-gap-4 {
  gap: 24px;
}
.af-grid {
  display: grid;
}
.af-grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.af-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  background: #ffffff;
  border-radius: 10px;
  transition: var(--af-transition);
}
.af-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--af-shadow-md);
}
.af-feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    #c41e2a 0%,
    #e84550 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
}
.af-feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.af-feature-desc {
  font-size: 14px;
  color: var(--af-gray);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .af-grid-cols-3 {
    grid-template-columns: 1fr;
  }
}
/*! CSS Used fontfaces */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2)
      format("woff2"),
    url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.ttf)
      format("truetype");
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2)
      format("woff2"),
    url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.ttf)
      format("truetype");
}


.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


/* testimonial css */



.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.af-gap-3 {
  gap: 16px;
}
.af-grid {
  display: grid;
}
.af-grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.af-section-subtitle {
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #5A4033;
  margin-bottom: 12px;
}
.af-section-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--af-secondary);
  margin-bottom: 16px;
}
.af-section-desc2 {
  font-size: 16px;
  color: var(--af-gray);
  max-width: 600px;
  margin: 0 auto;
}
.af-testimonials {
  /*background: linear-gradient(*/
  /*  135deg,*/
  /*  var(--af-secondary) 0%,*/
  /*  var(--af-dark) 100%*/
  /*);*/
  background: #ffffff;
  color: black;
  /*padding: 80px 0;*/
  position: relative;
  overflow: hidden;
  margin-top: -50px;
}
.af-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.af-testimonial-card {
  background: rgb(121 79 79 / 5%);

  backdrop-filter: blur(10px);
  border-radius: var(--af-radius);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--af-transition);
  position: relative;
  z-index: 1;
}
.af-testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}
.af-testimonial-quote {
  font-size: 48px;
  color: var(--af-primary);
  line-height: 1;
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
}
.af-testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.9;
}
.af-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.af-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--af-primary) 0%,
    var(--af-primary-light) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--af-white);
}
.af-author-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.af-author-info span {
  font-size: 13px;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .af-grid-cols-3 {
    grid-template-columns: 1fr;
  }
}
/*! CSS Used fontfaces */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}


/* cta */

/*! CSS Used from: https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css */
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}
.fas {
  font-family: "Font Awesome 6 Free";
}
.fa-headset:before {
  content: "\f590";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-map-marker-alt:before {
  content: "\f3c5";
}
.fas {
  font-weight: 900;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.af-gap-3 {
  gap: 16px;
}
.af-grid {
  display: grid;
}
.af-grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.af-py-4 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.af-promo-card {
  border-radius: var(--af-radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 40px;
  text-decoration: none;
  color: inherit;
  transition: var(--af-transition);
}
.af-promo-card:hover {
  transform: scale(1.02);
}
.af-promo-red {
  background: linear-gradient(135deg, #c41e2a 0%, #8b1320 100%);
  color: var(--af-white);
}
.af-promo-dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  color: var(--af-white);
}
.af-promo-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--af-radius-xl);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}
.af-promo-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.af-promo-desc {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.5;
}
.af-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--af-white);
  color: var(--af-secondary);
  padding: 12px 24px;
  border-radius: var(--af-radius-xl);
  font-weight: 600;
  font-size: 14px;
  transition: var(--af-transition);
}
.af-promo-btn:hover {
  transform: translateX(4px);
}
.af-promo-img {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 45%;
  z-index: 1;
}
.af-promo-img img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .af-grid-cols-2 {
    grid-template-columns: 1fr;
  }
}
/*! CSS Used fontfaces */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2)
      format("woff2"),
    url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.ttf)
      format("truetype");
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2)
      format("woff2"),
    url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.ttf)
      format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}



/* category styles */

.category-card{
    background: var(--af-white);
    border-radius: var(--af-radius);
    overflow: hidden;
    box-shadow: var(--af-shadow-sm);
    transition: var(--af-transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.category-image-wrapper{
    height: 160px;
    background: linear-gradient(135deg, #f8f5f2 0%, #e8e0d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.category-title{
    padding: 20px 0px;
    text-align: center;
}





.af-section-title{
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--af-secondary);
    margin-bottom: 16px;
}

.af-section-desc {
    font-size: 12px;
    color: var(--af-gray);
    max-width: 250px;
    /*margin: 0 auto;*/
}



.af-section-header {
    /*text-align: center;*/
    margin-bottom: 0px;
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
}

.af-section-header2{
    /*text-align: center;*/
    /*margin-bottom: 40px;*/
      margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .af-section-header {
         margin-bottom: 40px;
        display: flex;
        justify-content: space-between;
        /*margin-top: 70px;*/
        /*flex-direction: column;*/
    }
    
    .af-section-header2 {
         margin-bottom: 40px;
        display: flex;
        justify-content: space-between;
        margin-top: 70px;
        flex-direction: column;
    }
    
    .product-section {
        max-width: 1450px !important;
        /* margin: auto; */
        padding: 0px 0px !important;
    }
    
    .af-section-subtitle{
        font-size: 15px;

    }
    
    .af-section-desc {
        font-size: 12px;
        color: var(--af-gray);
        max-width: 600px;
        /*margin: 0 auto;*/
    }
}

/* full width section  */

/*.nx-full-banner-section{*/
/*    position:relative;*/
/*    width:100%;*/
/*    min-height:700px;*/
/*    display:flex;*/
/*    align-items:center;*/
/*    padding:120px 7%;*/
/*    overflow:hidden;*/
/*    background:*/
/*    linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),*/
/*    url('https://images.unsplash.com/photo-1556911220-bff31c812dba?q=80&w=1600&auto=format&fit=crop') center center/cover no-repeat;*/
/*    border-radius:0;*/
/*}*/

/*.nx-full-banner-overlay{*/
/*    position:absolute;*/
/*    inset:0;*/
/*    background:linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 100%);*/
/*    z-index:1;*/
/*}*/

/*.nx-full-banner-content{*/
/*    position:relative;*/
/*    z-index:2;*/
/*    max-width:650px;*/
/*    color:#fff;*/
/*}*/

/*.nx-banner-tag{*/
/*    display:inline-block;*/
/*    padding:10px 18px;*/
/*    background:rgba(255,255,255,0.12);*/
/*    border:1px solid rgba(255,255,255,0.18);*/
/*    backdrop-filter:blur(10px);*/
/*    border-radius:50px;*/
/*    font-size:14px;*/
/*    font-weight:600;*/
/*    letter-spacing:1px;*/
/*    margin-bottom:25px;*/
/*}*/

/*.nx-full-banner-content h1{*/
/*    font-size:72px;*/
/*    line-height:1.1;*/
/*    font-weight:800;*/
/*    margin:0 0 25px;*/
/*    letter-spacing:-2px;*/
/*}*/

/*.nx-full-banner-content p{*/
/*    font-size:18px;*/
/*    line-height:1.8;*/
/*    color:rgba(255,255,255,0.88);*/
/*    max-width:550px;*/
/*    margin-bottom:35px;*/
/*}*/

/*.nx-banner-buttons{*/
/*    display:flex;*/
/*    gap:18px;*/
/*    flex-wrap:wrap;*/
/*}*/

/*.nx-btn-primary,*/
/*.nx-btn-secondary{*/
/*    text-decoration:none;*/
/*    padding:16px 32px;*/
/*    border-radius:60px;*/
/*    font-size:15px;*/
/*    font-weight:700;*/
/*    transition:0.3s ease;*/
/*    display:inline-flex;*/
/*    align-items:center;*/
/*    justify-content:center;*/
/*}*/

/*.nx-btn-primary{*/
/*    background:#ffffff;*/
/*    color:#111;*/
/*}*/

/*.nx-btn-primary:hover{*/
/*    transform:translateY(-3px);*/
/*}*/

/*.nx-btn-secondary{*/
/*    border:1px solid rgba(255,255,255,0.35);*/
/*    color:#fff;*/
/*    background:rgba(255,255,255,0.08);*/
/*    backdrop-filter:blur(8px);*/
/*}*/

/*.nx-btn-secondary:hover{*/
/*    background:#fff;*/
/*    color:#111;*/
/*}*/

/*@media(max-width:991px){*/

/*    .nx-full-banner-section{*/
/*        min-height:600px;*/
/*        padding:90px 6%;*/
/*    }*/

/*    .nx-full-banner-content h1{*/
/*        font-size:54px;*/
/*    }*/

/*    .nx-full-banner-content p{*/
/*        font-size:16px;*/
/*    }*/
/*}*/

/*@media(max-width:767px){*/

/*    .nx-full-banner-section{*/
/*        min-height:520px;*/
/*        padding:80px 20px;*/
/*        text-align:center;*/
/*        justify-content:center;*/
/*    }*/

/*    .nx-full-banner-content{*/
/*        max-width:100%;*/
/*    }*/

/*    .nx-full-banner-content h1{*/
/*        font-size:38px;*/
/*        line-height:1.2;*/
/*        letter-spacing:-1px;*/
/*    }*/

/*    .nx-full-banner-content p{*/
/*        font-size:15px;*/
/*        line-height:1.7;*/
/*        margin-bottom:28px;*/
/*    }*/

/*    .nx-banner-buttons{*/
/*        justify-content:center;*/
/*        gap:14px;*/
/*    }*/

/*    .nx-btn-primary,*/
/*    .nx-btn-secondary{*/
/*        width:100%;*/
/*        padding:15px 20px;*/
/*    }*/
/*}*/
.gift-steps{
    width:100%;
}

.gift-step{
    display:flex;
    min-height:700px;
}

.gift-step.reverse{
    flex-direction:row-reverse;
}

.step-content,
.step-image{
    width:50%;
}

.step-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.step-content{
    background:#d9c7b5;
    color:#fff;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:90px;
}

.step-content.dark{
    background:#a88452;
}

.step-number{
    font-size:18px;
    letter-spacing:2px;
    margin-bottom:20px;
    text-transform:uppercase;
    color:#fff;
}

.step-content h2{
    font-size:72px;
    line-height:1.05;
    margin-bottom:35px;
    font-family:"Cormorant Garamond", serif;
    font-weight:400;
    color:#fff;
}

.step-content p{
    max-width:520px;
    font-size:28px;
    line-height:1.6;
    margin-bottom:40px;
    color:#fff;
}

.step-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:200px;
    height:58px;

    border:1px solid rgba(255,255,255,.8);
    border-radius:40px;

    color:#fff;
    text-decoration:none;
    font-weight:700;
    letter-spacing:1px;

    transition:.35s;
}

.step-btn:hover{
    background:#fff;
    color:#000;
}

@media(max-width:992px){

    .gift-step,
    .gift-step.reverse{
        flex-direction:column;
    }

    .step-content,
    .step-image{
        width:100%;
    }

    .step-image{
        height:420px;
    }

    .step-content{
        padding:60px 35px;
    }

    .step-content h2{
        font-size:48px;
    }

    .step-content p{
        font-size:20px;
    }
}


/* half widht banner */

.vx-half-banner-main{
    width:100%;
    display:flex;
    align-items:center;
    overflow:hidden;
    border-radius:28px;
    background: #7a0a22;
    min-height:420px;
}

.vx-half-banner-left{
    width:50%;
    padding:60px;
    color:#fff;
}

.vx-mini-tag{
    display:inline-block;
    font-size:13px;
    letter-spacing:2px;
    color:#cfcfcf;
    margin-bottom:18px;
}

.vx-half-banner-left h2{
    font-size: 30px;
    line-height:1.05;
    font-weight:800;
    margin:0 0 22px;
}

.vx-half-banner-left p{
    font-size:18px;
    line-height:1.8;
    color:#cfcfcf;
    max-width:520px;
    margin-bottom:32px;
}

.vx-banner-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.vx-banner-btns a{
    text-decoration:none;
    padding:16px 34px;
    border-radius:60px;
    font-size:15px;
    font-weight:700;
    transition:0.3s ease;
}

.vx-banner-btns a:first-child{
    background:#fff;
    color:#111;
}

.vx-banner-btns a:last-child{
    border:1px solid rgba(255,255,255,0.15);
    background: #5f5f65;
    color:#fff;
}

.vx-banner-btns a:hover{
    transform:translateY(-3px);
}

.vx-half-banner-right{
    width:50%;
    height:420px;
}

.vx-half-banner-right img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

@media(max-width:991px){

    .vx-half-banner-main{
        flex-direction:column;
    }

    .vx-half-banner-left,
    .vx-half-banner-right{
        width:100%;
    }

    .vx-half-banner-left{
        padding:45px 30px;
    }

    .vx-half-banner-left h2{
        font-size:42px;
    }

    .vx-half-banner-right{
        height:320px;
    }
}

@media(max-width:767px){

    .vx-half-banner-left{
        padding:35px 22px;
    }

    .vx-half-banner-left h2{
        font-size:32px;
        line-height:1.2;
    }

    .vx-half-banner-left p{
        font-size:15px;
        line-height:1.7;
    }

    .vx-banner-btns{
        gap:12px;
    }

    .vx-banner-btns a{
        width:100%;
        text-align:center;
        padding:14px 20px;
    }

    .vx-half-banner-right{
        height:240px;
    }
}

/* product media query for mobile device */


/* =========================
   Mobile Responsive CSS
   ========================= */

@media only screen and (max-width: 767px){

.product-card{
    border-radius:16px;
    overflow:hidden;
}

.product-image-wrapper{
    position:relative;
    padding:10px;
}

.product-image{
    width:100%;
    height:220px;
    object-fit:contain;
    display:block;
}

.product-badges{
    position:absolute;
    top:10px;
    left:10px;
    display:flex;
    gap:6px;
    z-index:2;
}

.product-badge{
    font-size:10px;
    padding:4px 8px;
    border-radius:20px;
    line-height:1;
}

.product-actions{
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:8px;
}

.action-btn{
    width:34px;
    height:34px;
    border-radius:50%;
    font-size:14px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-content{
    padding:12px;
}

.product-category{
    font-size:11px;
    margin-bottom:6px;
}

.product-title{
    font-size:14px;
    line-height:1.4;
    margin-bottom:8px;
    min-height:40px;
}

.product-rating{
    font-size:12px;
    margin-bottom:10px;
}

.product-rating span{
    font-size:11px;
}

.product-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    /*flex-direction: column;*/
}

.product-price{
    display:flex;
    flex-direction:column;
    gap:2px;
}

.new-price{
    font-size:16px;
    font-weight:700;
}

.old-price{
    font-size:12px;
    text-decoration:line-through;
    opacity:0.6;
}

.buy-btn{
    padding:8px 14px;
    font-size:13px;
    border-radius:8px;
    white-space:nowrap;
}

/*.swiper-slide{*/
/*    width:100% !important;*/
/*}*/

.af-testimonials{
    margin-top: 1px;
}

}



.red-btn{
    background: #5A2B82;
    color:#ffffff;
    border:none;
    padding:12px 24px;
    border-radius: 12px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:0.3s ease;
}





/* NEW CUSTOM CSS  */



/* TESTIMONIALS SECTION */
/* ==============================
   TESTIMONIAL / INSTAGRAM TITLES
================================ */

.social-review-section .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    margin-bottom: 35px;
}

.social-review-section .section-title h2 {
    margin: 0;
    padding: 0;

    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;

    color: #21153f;
    text-align: center;
    white-space: nowrap;
}


/* LEFT + RIGHT GOLD LINES */
.social-review-section .section-title span {
    position: relative;

    width: 100px;
    height: 2px;
    flex: 0 0 100px;

    background: #d99a63;
}


/* STAR/DIAMOND NEXT TO LEFT SIDE OF TITLE */
.social-review-section .section-title span:first-child::after {
    content: "✦";

    position: absolute;
    right: -8px;
    top: 50%;

    transform: translateY(-50%);

    color: #d99a63;
    background: #fff9f8;

    font-size: 13px;
    line-height: 1;

    padding: 0 3px;
}


/* STAR/DIAMOND NEXT TO RIGHT SIDE OF TITLE */
.social-review-section .section-title span:last-child::before {
    content: "✦";

    position: absolute;
    left: -8px;
    top: 50%;

    transform: translateY(-50%);

    color: #d99a63;
    background: #fff9f8;

    font-size: 13px;
    line-height: 1;

    padding: 0 3px;
}


/* IMPORTANT: REMOVE ANY OTHER STAR */
.social-review-section .section-title span:first-child::before,
.social-review-section .section-title span:last-child::after {
    content: none !important;
}

.social-review-section{

    max-width:1200px;
    margin-top:70px;
    margin-bottom:70px;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:18px;
}


.instagram-box{

    background:#fff9f8;

    border:1px solid #f0e5e2;

    border-radius:24px;

    padding:20px;

    position:relative;
}

.review-box {
    width: 100%;
    margin: 0 auto;

    background: #fff9f8;
    border: 1px solid #f0e5e2;
    border-radius: 24px;
    padding: 20px;
    position: relative;
}


.section-title{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    margin-bottom:35px;
}

.section-title h2{

    font-size:32px;

    font-weight:700;

    color:#2b1638;

    letter-spacing:1px;
}

.section-title span{

    width:55px;

    height:2px;

    background:#d9a26d;

    position:relative;
}

.section-title span::after{

    content:"✦";

    position:absolute;

    right:-10px;

    top:-11px;

    color:#d9a26d;

    font-size:14px;
}

.reviews{

    display:grid;

    grid-template-columns:repeat(3,1fr);
}

.review-item{

    text-align:center;

    padding:0 20px;

    border-right:1px solid #ececec;
}

.review-item:last-child{

    border-right:none;
}

.review-item img{

    width:58px;

    height:58px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:12px;
    
    margin-left:60px;
}

.stars{

    color:#FDBB19;

    font-size:16px;

    letter-spacing:2px;

    margin-bottom:10px;
}

.review-item p{

    font-size:14px;

    color:#444;

    line-height:1.7;

    min-height:85px;
}

.review-item h4{

    margin-top:15px;

    font-size:14px;

    font-weight:600;

    color:#222;
}

.dots{

    display:flex;

    justify-content:center;

    gap:8px;

    margin-top:20px;
}

.dots span{

    width:8px;

    height:8px;

    border-radius:50%;

    background:#d4c9c5;
}

.dots .active{

    background:#7b3f98;
}


.instagram-images{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:15px;
}

.instagram-images img{

    width:100%;

    height:180px;

    object-fit:cover;

    border-radius:14px;
}

.instagram-btn{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    background:#5a2b82;

    color:#fff;

    text-decoration:none;

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 26px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

.instagram-btn img{

    width:18px;
}

@media(max-width:991px){

.social-review-section{

grid-template-columns:1fr;
}

.reviews{

grid-template-columns:1fr;
}

.review-item{

border-right:none;

border-bottom:1px solid #eee;

padding:25px 0;
}

.instagram-images{

grid-template-columns:repeat(2,1fr);
}

.instagram-btn{

position:static;

transform:none;

margin:25px auto 0;
}

}




/* WHY CHOOSE US SECTION */

.why-choose-section{

    max-width:1450px;
    margin:70px auto;
    padding:0 20px;
}


.why-container{

    display:grid;
    grid-template-columns:repeat(6,1fr);

    background:#fffaf8;

    border:1px solid #efe3df;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,.04);

    padding:35px 0;
}

.why-item{

    text-align:center;

    padding:0 22px;

    border-right:1px solid #eee;

}

.why-item:last-child{

    border-right:none;
}

.why-item img{

    width:62px;
    height:62px;
    object-fit:contain;
    margin:auto;
    margin-bottom:18px;
}


/* ==============================
   WHY CHOOSE ICONS
============================== */
.personalized-icon,
.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.personalized-icon {
    width: 78px;
    min-width: 78px;
    height: 78px;
}

.why-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 12px;
}

.personalized-icon svg {
    width: 70px;
    height: 70px;
}

.why-icon svg {
    width: 72px;
    height: 72px;
}

.personalized-icon svg,
.why-icon svg {
    stroke-linecap: round;
    stroke-linejoin: round;
    overflow: visible;

    transition: transform .3s ease;
}

.personalized-item:hover svg,
.why-item:hover svg {
    transform: translateY(-4px) scale(1.05);
}

.why-item h4{

    font-size:22px;
    font-weight:700;
    color:#2d2235;
    line-height:1.4;
    margin-bottom:14px;
}

.why-item p{

    color:#666;
    font-size:16px;
    line-height:1.7;
}

@media(max-width:1200px){

.why-container{

grid-template-columns:repeat(3,1fr);

}

.why-item{

border-bottom:1px solid #eee;
padding:35px 25px;
}

}

@media(max-width:768px){

.why-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:480px){

.why-container{

grid-template-columns:1fr;

}

}




/* PERSONALISED GIFTS SECTION CSS */
/* ========================================
   PERSONALIZED GIFTS
======================================== */

.personalized-section {
    width: 100%;
    max-width: 1720px;
    margin: 10px auto;
    padding: 0 30px;
}


/* TITLE */

.personalized-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    position: relative;
    z-index: 2;

    /* title ko niche */
    transform: translateY(14px);

    margin-bottom: -24px;
   
}

.personalized-section {
    margin-top: 60px !important;
}

.personalized-title h2 {
    margin: 0;
    padding: 0 24px;

    /* REMOVE THIS */
    background: transparent;

    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .3px;
    color: #21143f;
    white-space: nowrap;
}

.personalized-title > span {
    width: 110px;
    height: 2px;
    background: #dc9a63;
    position: relative;
}

.personalized-title > span {
    width: 80px;
    height: 2px;
    background: #dc9a63;
    position: relative;
}

.personalized-title > span:first-child::after {
    content: "✦";
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-52%);
    color: #dc9a63;
    font-size: 12px;
}

.personalized-title > span:last-child::before {
    content: "✦";
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-52%);
    color: #dc9a63;
    font-size: 12px;
}


/* MAIN BOX */

.personalized-box {
    background: #fffaf8;
    border: 1px solid #f0e3de;
    border-radius: 32px;

    min-height: 260px;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr))
        10px;

    align-items: center;

    padding: 48px 26px 30px;
    box-shadow: 0 10px 30px rgba(42, 21, 55, 0.05);
}


/* ITEM */

.personalized-item {
    min-height: 150px;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 10px 26px;

    border-right: 1px solid #eadfdc;
}


/* ICON */

.personalized-icon svg {
    width: 68px;
    height: 68px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .3s ease;
}

.personalized-item:hover .personalized-icon svg {
    transform: translateY(-4px) scale(1.04);
}


/* TEXT */

.personalized-content {
    flex: 1;
}

.personalized-content h4 {
    margin: 0 0 12px;

    color: #21143f;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.personalized-content p {
    margin: 0;

    color: #625a61;

    font-size: 15px;
    line-height: 1.55;

    max-width: 180px;
}


/* CTA */

.gift-btn {
    min-height: 200px;
    margin-left: 26px;

    padding: 28px 24px;

    border-radius: 25px;

    background: #4d1765;
    color: #fff;

    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    font-size: 22px;
    line-height: 1.45;
    font-weight: 700;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.gift-btn .arrow {
    font-size: 32px;
    font-weight: 300;
    transition: transform .3s ease;
}

.gift-btn:hover {
    background: #351047;
    color: #fff;
    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(77, 23, 101, .18);
}

.gift-btn:hover .arrow {
    transform: translateX(6px);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1200px) {

    .personalized-title h2 {
        font-size: 24px;
    }

    .personalized-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .personalized-item {
        border-bottom: 1px solid #eadfdc;
    }

    .personalized-item:nth-child(2) {
        border-right: none;
    }

    .personalized-item:nth-child(3),
    .personalized-item:nth-child(4) {
        border-bottom: none;
    }

    .personalized-item:nth-child(4) {
        border-right: none;
    }

    .gift-btn {
        grid-column: 1 / -1;

        min-height: auto;
        margin: 25px 0 0;

        justify-content: center;
        gap: 30px;

        text-align: center;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .personalized-section {
        margin: 50px auto;
        padding: 0 15px;
    }

    .personalized-title {
        margin-bottom: -16px;
        gap: 10px;
    }

    .personalized-title h2 {
        padding: 0 10px;

        font-size: 17px;
        text-align: center;

        white-space: normal;
    }

    .personalized-title > span {
        width: 30px;
        min-width: 30px;
    }

    .personalized-box {
        grid-template-columns: 1fr;

        padding: 45px 20px 20px;

        border-radius: 22px;
    }

    .personalized-item {
        min-height: auto;

        padding: 22px 5px;

        border-right: none;
        border-bottom: 1px solid #eadfdc !important;
    }

    .personalized-item:nth-child(4) {
        border-bottom: none !important;
    }

    .personalized-icon {
        width: 60px;
        min-width: 60px;
        height: 60px;
    }

    .personalized-icon svg {
        width: 55px;
        height: 55px;
    }

    .personalized-content h4 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .personalized-content p {
        font-size: 14px;
        max-width: none;
    }

    .gift-btn {
        grid-column: auto;

        margin: 20px 0 0;
        padding: 20px 25px;

        min-height: 90px;

        border-radius: 18px;

        font-size: 19px;

        justify-content: space-between;
        text-align: left;
    }

}





/* OUR CATEGORIES CSS */
.our-categories{
    padding: 40px 0;
    background:#fff;
}


.category-section{
    margin-top: 80px;
    margin-bottom: 70px;
}
/* =========================
   SHOP BY CATEGORY TITLE
========================= */

.category-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    margin-bottom: 35px;
}

.category-section-title h2 {
    margin: 0;
    padding: 0;

    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;

    color: #21153f;
    text-align: center;
    white-space: nowrap;
}

/* GOLD LINES */
.category-section-title span {
    position: relative;

    width: 100px;
    height: 2px;
    flex: 0 0 100px;

    background: #d99a63;
}

/* LEFT STAR — next to heading */
.category-section-title span:first-child::after {
    content: "✦";

    position: absolute;
    right: -8px;
    top: 50%;

    transform: translateY(-50%);

    color: #d99a63;
    background: #fff;

    font-size: 13px;
    line-height: 1;
    padding: 0 3px;
}

/* RIGHT STAR — next to heading */
.category-section-title span:last-child::before {
    content: "✦";

    position: absolute;
    left: -8px;
    top: 50%;

    transform: translateY(-50%);

    color: #d99a63;
    background: #fff;

    font-size: 13px;
    line-height: 1;
    padding: 0 3px;
}

/* REMOVE ANY EXTRA OUTER STARS */
.category-section-title span:first-child::before,
.category-section-title span:last-child::after {
    content: none !important;
}

.categorySwiper{
    padding:20px 45px;
}

.categorySwiper .swiper-slide{
    display:flex;
    justify-content:center;
}



.category-icon img{
    width:48px;
    height:48px;
    object-fit:contain;
}

.category-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    text-decoration:none;
    padding:12px 8px;
}
.category-icon {
    width: 112px;
    height: 112px;

    margin: 0 auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff9f6;
    border: 1px solid #f0d9ce;

    box-shadow: 0 8px 22px rgba(74, 26, 83, 0.06);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.category-icon svg {
    width: 67px;
    height: 67px;

    overflow: visible;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform .3s ease;
}

.category-item {
    display: block;
    text-decoration: none;
    text-align: center;
}

.category-item h4 {
    margin: 0;

    color: #21143f;

    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
}

.category-item:hover .category-icon {
    transform: translateY(-5px);

    border-color: #e7b590;

    box-shadow: 0 12px 26px rgba(74, 26, 83, .10);
}

.category-item:hover .category-icon svg {
    transform: scale(1.06);
}

@media (max-width: 767px) {

    .category-icon {
        width: 90px;
        height: 90px;
    }

    .category-icon svg {
        width: 55px;
        height: 55px;
    }

    .category-item h4 {
        font-size: 14px;
    }

}

.swiper-button-next,
.swiper-button-prev{
    color:#6F3A78;
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size:22px;
}



/* PERFECT PICKS FOR NAY SEASON SECTION CSS */

.occasion-section{

    max-width:1350px;
    margin-top:70px;
    padding:0 20px;

}

.occasion-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;

}

.occasion-card{

    text-decoration:none;
    color:#222;
    border-radius:22px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.05);

    transition:.35s;

}

.occasion-card:hover{

    transform:translateY(-8px);

}

.occasion-image{

    height:230px;

}

.occasion-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

}




.occasion-icon img{

    width:36px;

}

.occasion-content h3{

    font-size:19px;
    color:#2d2136;
    margin-bottom:6px;
    font-weight:700;

}

.occasion-content p{

    font-size:17px;
    color:#2d2136;
    font-weight:500;

}

.occasion-content{
    position:relative;
    padding:60px 20px 28px;
    text-align:center;
}

.occasion-icon{
    position:absolute;
    left:50%;
    top:-52px;
    transform:translateX(-50%);

    width:92px;
    height:92px;
    border-radius:50%;
    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    border:2px solid #f2dfd5;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    transition:.3s;
}

.occasion-card:hover .occasion-icon{
    transform:translateX(-50%) scale(1.08);
}

.occasion-icon svg{
    width:34px;
    height:34px;
    stroke:#9b4b61;
    stroke-width:1.7;
}

.occasion-card:hover .occasion-icon img{

    filter:brightness(0) invert(1);

}

.occasion-card:hover h3{

    color:#5b2b82;

}

@media(max-width:1200px){

.occasion-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.occasion-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:500px){

.occasion-grid{

grid-template-columns:1fr;

}

}







.section-heading{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-bottom:35px;
}

.section-heading h2{
    font-size:22px;
    font-weight:700;
    color:#2d173a;
    text-transform:uppercase;
    margin:0;
}

.section-heading span{
    width:70px;
    height:2px;
    background:#d8a16d;
    position:relative;
}

/* Left line star */
.section-heading span:first-child::after{
    content:"✦";
    position:absolute;
    right:-8px;
    top:50%;
    transform:translateY(-50%);
    color:#d8a16d;
    font-size:11px;
}

/* Right line star */
.section-heading span:last-child::before{
    content:"✦";
    position:absolute;
    left:-8px;
    top:50%;
    transform:translateY(-50%);
    color:#d8a16d;
    font-size:11px;
}







/* CHAT TOGGLE BUTTON CSS */

.chat-toggle-button{
    background: #6F3A78 !important;
    border: 1px solid #6F3A78 !important;
    color: #fff !important;
    display: none;
}

.chat-toggle-button:hover{
    background:#5B2E63 !important;
}



var categorySwiper = new Swiper(".categorySwiper", {

    loop:true,

    speed:700,

    spaceBetween:25,

    autoplay:{
        delay:2500,
        disableOnInteraction:false,
    },

    navigation:{
        nextEl:".swiper-button-next",
        prevEl:".swiper-button-prev",
    },

    breakpoints:{

        0:{
            slidesPerView:2
        },

        576:{
            slidesPerView:3
        },

        768:{
            slidesPerView:4
        },

        992:{
            slidesPerView:6
        },

        1200:{
            slidesPerView:8
        }

    }

});



/* FOOTER CSS ICONS */

.bg-gray-3{
    background: #5A2B82 !important;
}

.social-icon{
    width:18px;
    height:18px;
    filter: brightness(0) invert(1);
}

.social-transition{
    transition: all .3s ease;
}

.social-transition:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(90,43,130,.35);
}






/* BUILD A BOX PAGE CSS */


/* ==========================================================
   BUILD A HAMPER — PREMIUM OVERRIDE
========================================================== */

/* =========================================
   FINAL STEPPER
========================================= */

#step-rail {
    width: min(900px, calc(100% - 40px));
    margin: 28px auto 40px !important;
    padding: 18px 28px !important;

    display: flex;
    align-items: center;

    background: #fff;
    border: 1px solid #eadfeb;
    border-radius: 18px;

    box-shadow: 0 8px 30px rgba(63, 31, 70, 0.06);
}

#step-rail li {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* NUMBER CIRCLE */

#step-rail .step-dot {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    flex: 0 0 34px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    border-radius: 50% !important;

    background: #f2e8f5 !important;
    border: 1px solid #decce4 !important;

    color: #795884 !important;

    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 34px !important;

    opacity: 1 !important;
    visibility: visible !important;

    box-shadow: none !important;
}


/* CURRENT STEP */

#step-rail .step-dot.active {
    background: #5f2b86 !important;
    border-color: #5f2b86 !important;

    color: #fff !important;

    box-shadow: 0 5px 14px rgba(95, 43, 134, .25) !important;
}


/* COMPLETED */

#step-rail .step-dot.completed {
    background: #8f244b !important;
    border-color: #8f244b !important;

    color: #fff !important;
}


/* UPCOMING */

#step-rail .step-dot.upcoming {
    background: #f2e8f5 !important;
    border-color: #decce4 !important;

    color: #795884 !important;
}


/* LABELS */

#step-rail .step-label {
    color: #98899b !important;

    font-size: 10px !important;
    font-weight: 600 !important;

    letter-spacing: .08em;
    text-transform: uppercase;

    white-space: nowrap;
}

#step-rail .step-label.active {
    color: #352039 !important;
    font-weight: 700 !important;
}

#step-rail .step-label.completed {
    color: #5f2b86 !important;
}


/* CONNECTOR */

#step-rail li > span.w-6 {
    flex: 1;

    width: auto !important;
    height: 1px !important;

    min-width: 25px;
    max-width: 55px;

    margin: 0 8px;

    background: #dfd1e3 !important;
}


/* MOBILE */

@media (max-width: 767px) {

    #step-rail {
        width: calc(100% - 24px);
        padding: 14px;
        overflow-x: auto;
    }

    #step-rail li {
        flex: none;
    }

    #step-rail .step-dot {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        flex-basis: 30px !important;
        line-height: 30px !important;
    }
}


/* active underline */

#step-rail li:has(.step-dot.bg-stamp-600)::before {
    content: "";

    position: absolute;

    width: 38px;
    height: 2px;

    left: 50%;
    bottom: -18px;

    transform: translateX(-50%);

    border-radius: 10px;

    background: #5A2B82;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    #step-rail {
        width: calc(100% - 74px) !important;

        padding: 14px !important;

        overflow-x: auto;
        justify-content: flex-start !important;
    }

    #step-rail li {
        flex: none !important;
    }

    #step-rail li .step-dot {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        flex-basis: 28px !important;
    }

    #step-rail .step-label {
        font-size: 8px !important;
    }

    #step-rail li > span.w-6 {
        width: 25px !important;
        min-width: 25px !important;
    }
}

/* At real mobile widths (≤480px) the rail's own content — 4 dots +
   3 connectors + full label text at 8px, each label using
   white-space:nowrap — adds up to well over the rail's available inner
   width (confirmed by measuring the actual rule set above: dots 28px,
   connectors 25px, labels like "CHOOSE BOX" ~60-65px, needing roughly
   430px+ against ~270-320px actually available at 320-414px viewports).
   overflow-x:auto alone can't reconcile that gap for a component meant
   to show all 4 steps continuously, so the label text is visually
   hidden (not display:none, so screen readers still read it) at this
   width, leaving just the numbered dots + connectors — which do fit
   comfortably (~220px of content) without needing to scroll. Tablet
   (481-767px) keeps the existing label+dot layout above unchanged. */
@media (max-width: 480px) {
    #step-rail li {
        position: relative;
    }

    #step-rail .step-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

/* ==========================================================
   SECTION TITLE
========================================================== */

#step-1 > h1 {
    position: relative;

    text-align: center;

    font-size: 42px !important;
    line-height: 1.15;

    color: #000 !important;

    font-weight: 700;

    margin-bottom: 12px !important;
}

#step-1 > h1::before {
    content: "BUILD YOUR PERFECT HAMPER";

    display: block;

    margin-bottom: 10px;

    color: #5A2B82;

    font-size: 42px;
    font-weight: 700;

    letter-spacing: .18em;
}

#step-1 > h1::after {
    display: none !important;
}

#step-1 > p {
    max-width: 620px;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 38px !important;

    text-align: center;

    color: #7d727f !important;

    font-size: 13px !important;
    line-height: 1.7;
}


/* ==========================================================
   BOX GRID
========================================================== */

#step-1 .grid {
    gap: 20px !important;
    padding-bottom: 0 !important;
}


/* ==========================================================
   PREMIUM PRODUCT CARD
========================================================== */

.box-card {
    min-height: 490px;

    border: 1px solid #eee4ea !important;
    border-radius: 20px !important;

    background: #fff !important;

    box-shadow:
        0 6px 20px rgba(47,28,51,.04),
        0 20px 50px rgba(47,28,51,.035) !important;

    isolation: isolate;
}

.box-card:hover {
    transform: translateY(-8px);

    border-color: rgba(95,43,134,.32) !important;

    box-shadow:
        0 15px 30px rgba(69,35,76,.08),
        0 30px 65px rgba(69,35,76,.10) !important;
}


/* ==========================================================
   IMAGE AREA — MUCH MORE PRODUCT FOCUSED
========================================================== */

.box-card > div:nth-of-type(2) {
    position: relative;

    min-height: 235px !important;

    padding: 35px !important;

    background:
        radial-gradient(
            circle at 50% 48%,
            #ffffff 0%,
            #fff8f5 48%,
            #f9eef3 100%
        ) !important;

    border: 0 !important;

    overflow: hidden;
}

/* circle behind product */
.box-card > div:nth-of-type(2)::before {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(255,255,255,.8);

    box-shadow:
        inset 0 0 0 1px rgba(143,36,75,.035),
        0 12px 35px rgba(83,46,72,.04);
}

.box-card img {
    position: relative;
    z-index: 2;

    width: 175px !important;
    height: 175px !important;

    filter: drop-shadow(0 18px 16px rgba(44,24,49,.12));
}

.box-card:hover img {
    transform: translateY(-7px) scale(1.08) !important;
}


/* ==========================================================
   BADGE
========================================================== */

.box-card .absolute.top-3.right-3 {
    top: 16px !important;
    right: 16px !important;
}

.box-card .absolute.top-3.right-3 span {
    display: inline-flex;
    align-items: center;

    padding: 6px 10px !important;

    background: rgba(255,255,255,.88) !important;

    border: 1px solid rgba(95,43,134,.12);

    color: #672f82 !important;

    backdrop-filter: blur(6px);

    box-shadow: 0 5px 15px rgba(53,29,59,.05);

    font-size: 8px !important;
}


/* ==========================================================
   CARD BODY
========================================================== */

.box-card > .p-5 {
    padding: 22px 22px 20px !important;
}

.box-card h3 {
    font-size: 18px !important;
    line-height: 1.3;

    color: #302234 !important;
}

.box-card h3 + p {
    min-height: 38px;

    margin-top: 6px !important;
    margin-bottom: 16px !important;

    color: #817782 !important;

    font-size: 11px !important;
}


/* ==========================================================
   SPECIFICATIONS — LESS "ADMIN PANEL"
========================================================== */

.box-card .space-y-2 {
    padding: 12px 0 !important;

    background: transparent !important;

    border: 0 !important;
    border-top: 1px solid #f0e8ec !important;
    border-bottom: 1px solid #f0e8ec !important;

    border-radius: 0 !important;
}

.box-card .space-y-2 > div {
    padding: 4px 0 !important;
}

.box-card .space-y-2 span:first-child {
    color: #9b919c !important;

    font-size: 10px !important;
}

.box-card .space-y-2 span:last-child {
    color: #554957 !important;

    font-size: 10px !important;
    font-weight: 600 !important;
}

.box-card .text-green-600 {
    color: #8f244b !important;
}


/* Remove ugly second separator */
.box-card .border-t.my-5 {
    display: none;
}


/* ==========================================================
   PRICE / CTA AREA
========================================================== */

.box-card > .p-5 > .flex.items-center.justify-between {
    margin-top: 17px;

    align-items: center !important;
}

.box-card .text-xs.text-gray-500 {
    color: #a094a1 !important;

    font-size: 8px !important;
    font-weight: 600;

    letter-spacing: .12em;
}

.box-card .text-2xl.font-bold {
    margin-top: 3px;

    color: #302234 !important;

    font-size: 22px !important;
}


/* SELECT BUTTON — FIX THE INVISIBLE BUTTON */

.box-card .bg-amber-600 {
    min-width: 92px;

    padding: 11px 15px !important;

    background: #5f2b86 !important;

    color: #fff !important;

    border: 0 !important;

    border-radius: 9px !important;

    box-shadow: 0 7px 16px rgba(95,43,134,.20) !important;

    opacity: 1 !important;
}

.box-card:hover .bg-amber-600 {
   

    color: #fff !important;

    transform: translateX(2px);
}


/* Add arrow after Select */
.box-card .bg-amber-600::after {
    content: " →";
}


/* ==========================================================
   FEATURE FIRST CARD
========================================================== */

.box-card:first-child {
    border-color: rgba(143,36,75,.25) !important;
}

.box-card:first-child::before {
    content: "POPULAR";

    position: absolute;

    top: 16px;
    left: 16px;

    z-index: 5;

    padding: 6px 10px;

    border-radius: 20px;

    background: #8f244b;

    color: white;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .12em;
}


/* ==========================================================
   SECOND ROW — DON'T LEAVE IT LOOKING BROKEN
========================================================== */

@media (min-width: 1024px) {

    #step-1 .grid {
        align-items: stretch;
    }

    #step-1 .box-card:nth-last-child(2):nth-child(3n + 1) {
        grid-column-start: 1;
    }
}


/* ==========================================================
   STEP 2 / 3 / 4 WRAPPER ATMOSPHERE
========================================================== */

#step-2,
#step-3,
#step-4 {
    padding-top: 35px;
    padding-bottom: 65px;
}


/* ==========================================================
   STEP 2 SIDEBAR — PREMIUM SUMMARY
========================================================== */

#step-2 aside > div {
    background:
        linear-gradient(
            160deg,
            #fff9f7 0%,
            #fbf5fc 100%
        ) !important;

    border: 1px solid #eadfea !important;

    border-radius: 20px !important;

    box-shadow:
        0 10px 25px rgba(59,33,65,.06),
        0 25px 60px rgba(59,33,65,.06) !important;
}

#gauge-fill {
    background: linear-gradient(
        90deg,
        #5f2b86,
        #8f244b
    ) !important;
}


/* ==========================================================
   PRODUCT CARDS STEP 2
========================================================== */

#products-grid > div {
    border-radius: 18px !important;
    overflow: hidden;

    box-shadow: 0 8px 25px rgba(53,31,58,.055) !important;
}

#products-grid > div:hover {
    transform: translateY(-6px) !important;

    box-shadow: 0 18px 40px rgba(70,35,78,.11) !important;
}

.product-add-btn {
    background: #5f2b86 !important;
    color: #ffffff;
}

/* ==========================================================
   PRODUCT PAGINATION (#products-pagination)
   Scoped deliberately to hardcoded colors instead of Tailwind
   utility classes: amber-*, kraft-*, sage-*, stamp-* and
   arbitrary-value classes like min-w-[44px] are not present in
   this project's compiled CSS (confirmed by inspecting the
   served bundle), so the active page button was rendering with
   its intended amber background missing while text-white (which
   IS compiled) still applied — invisible white-on-white text.
   Colors below reuse the same purple accent already hardcoded
   for .product-add-btn/#step-rail above, for visual consistency.
========================================================== */
#products-pagination .pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #decce4;
    background: #ffffff;
    color: #795884;
    font-size: 14px;
    font-weight: 500;
    transition: background-color .15s, color .15s, border-color .15s;
}

#products-pagination .pagination-btn:hover:not(:disabled) {
    background: #f2e8f5;
}

#products-pagination .pagination-btn-active {
    background: #5f2b86;
    border-color: #5f2b86;
    color: #ffffff;
    font-weight: 700;
}

#products-pagination .pagination-btn-active:hover {
    background: #5f2b86;
}

#products-pagination .pagination-btn:disabled {
    opacity: .4;
    pointer-events: none;
}

#products-pagination .pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 44px;
    color: #98899b;
    user-select: none;
}



/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 767px) {

    #step-1 {
        padding: 30px 16px 35px;

        border-radius: 18px;
    }

    #step-1 > h1 {
        font-size: 29px !important;
    }

    #step-1 > p {
        font-size: 12px !important;
    }

    .box-card {
        min-height: auto;
    }

    .box-card > div:nth-of-type(2) {
        min-height: 215px !important;
    }

    #step-rail {
        margin-bottom: 25px !important;
    }

    /* #step-1 already gets 16px side padding above (via its own rule)
       once .page-wrapper's padding is zeroed on mobile — #step-2/3/4
       (Add gifts / Card / Review) never got the same treatment, so their
       content (product grid, pagination, cart sidebar, review list) sat
       flush against the screen edges. Match #step-1's mobile gutter. */
    #step-2,
    #step-3,
    #step-4 {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}





.header-user-btn {
    width: 36px;
    height: 36px;
}

.header-top-icon {
    width: 33px;
    height: 30px;
    display: block;
    transition: transform .25s ease;
}

.header-user-btn:hover .header-top-icon {
    transform: translateY(-2px);
}



.instagram-btn i {
    font-size: 20px;
    color: #fff;
}





/* =========================================================
   FINAL WEBSITE X-OVERFLOW FIX
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip !important;
}


/* Header itself */
.warpingers-header {
    width: 100% !important;
    max-width: 100% !important;
}


/* =========================================================
   IMPORTANT:
   Remove 100vw behaviour from mega menu
========================================================= */

.warpingers-mega-menu {
    left: 50% !important;
    right: auto !important;

    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: -50vw !important;

    transform: translate(0, 8px) !important;
}


/* Open state */
.warpingers-mega-parent:hover > .warpingers-mega-menu {
    transform: translate(0, 0) !important;
}


/* Mega inner */
.mega-menu-inner {
    width: calc(100% - 40px) !important;
    max-width: 1800px !important;

    margin-left: auto !important;
    margin-right: auto !important;
}


/* Prevent grid children from forcing width */
.mega-column,
.mega-group {
    min-width: 0 !important;
    max-width: 100% !important;
}


/* Long text must wrap */
.mega-group a {
    max-width: 100% !important;

    overflow-wrap: break-word;
    word-break: normal;
}


/* =========================================================
   NAV
========================================================= */

.warpingers-header .layout-wrapper,
.warpingers-header #nav-wrap,
.warpingers-header .nav-wrap,
.warpingers-header .header-menu-nav {
    max-width: 100% !important;
}


/* =========================================================
   CUSTOM STUDIO
========================================================= */

/*.custom-studio-dropdown {*/
/*    max-width: calc(100vw - 30px) !important;*/
/*}*/


/* =========================================================
   IMAGES / SVG SAFETY
========================================================= */

img,
svg {
    max-width: 100%;
}


/* Don't allow sections to accidentally exceed viewport */
section,
header,
footer,
main {
    max-width: 100%;
}




/* HEADER CSS */

/* ============================================================
    HEADER
   COMPLETE FINAL CSS
============================================================ */


/* ============================================================
   1. HEADER BASE
============================================================ */

.warpingers-header {
    position: relative !important;
    z-index: 9 !important;

    width: 100% !important;
    max-width: 100% !important;

    background: #ffffff;

    overflow: visible !important;
}


.warpingers-header * {
    box-sizing: border-box;
}


.warpingers-header .layout-wrapper {
    position: relative !important;

    width: 100% !important;
    max-width: 1400px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    overflow: visible !important;
}


/* ============================================================
   2. NAV WRAPPER
============================================================ */

.warpingers-header #nav-wrap,
.warpingers-header .nav-wrap {

    position: static !important;

    width: 100% !important;
    max-width: 100% !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    overflow: visible !important;

    overflow-x: visible !important;
    overflow-y: visible !important;
}


/* ============================================================
   3. MAIN UL
============================================================ */

.warpingers-header .header-menu-nav {

    position: relative !important;
    z-index: 10000 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: flex-start !important;

    flex-direction: row !important;

    flex-wrap: nowrap !important;

    width: 100% !important;
    max-width: 100% !important;

    min-height: 55px;

    padding: 0 !important;

    margin: 0 !important;

    list-style: none !important;

    overflow: visible !important;
}


/* ============================================================
   4. MAIN LI
============================================================ */

.warpingers-header .header-menu-nav > .first-dropdown-li {

    position: relative;
    z-index: 10001;

    display: flex !important;

    align-items: center !important;

    flex: 0 0 auto !important;

    width: auto !important;

    margin: 0 !important;

    padding: 0 !important;

    list-style: none !important;

    overflow: visible !important;
}


/* Gift Essentials needs full header positioning */

.warpingers-header
.header-menu-nav
> .warpingers-mega-parent {

    position: static !important;
}


/* ============================================================
   5. MAIN NAV LINKS
============================================================ */

.warpingers-header .first-list {

    position: relative;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: auto !important;

    min-width: 0 !important;

    height: auto !important;

    padding: 8px 0 !important;

    margin: 0 14px !important;

    color: #17131b;

    font-family: "DM Sans", sans-serif;

    font-size: 15px !important;

    font-weight: 400;

    line-height: 1.3;

    white-space: nowrap !important;

    text-decoration: none !important;

    overflow: visible !important;
}


/* Vertical separator */

.warpingers-header
.header-menu-nav
> .first-dropdown-li:not(:last-child)::before {

    content: "";

    position: absolute;

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 1px;
    height: 23px;

    background: #e5e0dd;
}


/* ============================================================
   6. MAIN NAV UNDERLINE
============================================================ */

.warpingers-header .first-list::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 2px;

    height: 2px;

    background: #6b2e8f;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform .2s ease;
}


.warpingers-header .first-list:hover::after,
.warpingers-header .first-list.active-border-bottom::after {

    transform: scaleX(1);
}


/* ============================================================
   7. FORCE OUR CHEVRONS TO CORRECT SIZE
============================================================ */

.warpingers-header .mega-chevron,
.warpingers-header .custom-studio-chevron {

    display: block !important;

    width: 13px !important;
    height: 13px !important;

    min-width: 13px !important;
    min-height: 13px !important;

    max-width: 13px !important;
    max-height: 13px !important;

    margin: 0 0 0 5px !important;

    padding: 0 !important;

    position: static !important;

    flex: 0 0 13px !important;

    stroke: currentColor;

    transform: none;

    transition: transform .2s ease;

    overflow: visible !important;
}


.warpingers-mega-parent:hover .mega-chevron,
.custom-studio-parent:hover .custom-studio-chevron {

    transform: rotate(180deg);
}


/* ============================================================
   8. GIFT ESSENTIALS TRIGGER
============================================================ */

.warpingers-header .mega-trigger {

    display: inline-flex !important;

    align-items: center !important;

    gap: 2px;
    position: relative !important;
}


/* ============================================================
   9. GIFT ESSENTIALS MEGA MENU
============================================================ */

.warpingers-mega-menu {

    position: absolute !important;

    top: 100% !important;

    /* .header-menu-nav (the actual containing block, since the trigger
       <li> is forced static) sits inside .layout-wrapper, which is
       capped at max-width:1400px and centered — so width:100% was
       only ever 100% of that 1400px box, not the viewport. left:50% +
       margin-left:-50vw is the standard full-bleed fix: 50vw is always
       exactly half the TRUE viewport width, so it re-centers on the
       real viewport regardless of where the containing block sits. */

    left: 50% !important;
    right: auto !important;

    width: 100vw !important;
    max-width: 100vw !important;

    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    margin-left: -50vw !important;

    padding: 0 !important;

    background: #fffdfb !important;

    border-top: 1px solid #eee4df;
    border-bottom: 1px solid #eee4df;

    box-shadow:
        0 18px 45px rgba(30, 20, 40, .10);

    opacity: 0 !important;

    visibility: hidden !important;

    pointer-events: none !important;

    transform: translate(0, 8px) !important;

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;

    overflow: visible !important;

    z-index: 1200 !important;
}



/* Point 24: bridge only the actual trigger-to-panel gap. The parent stays
   static so the mega panel can span the nav; attaching this bridge to the
   positioned trigger avoids covering the entire navigation row.
   Height widened from 12px to 40px: the trigger link is vertically
   centered inside a taller 55px nav row, so a thin bridge left a dead
   zone above/below it that the cursor could slip through on slow moves. */
.warpingers-mega-parent > .mega-trigger::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 40px;
    z-index: 1199;
}

/* ============================================================
   10. SHOW MEGA MENU
============================================================ */

.warpingers-mega-parent:hover > .warpingers-mega-menu {

    opacity: 1 !important;

    visibility: visible !important;

    pointer-events: auto !important;

    transform: translate(0, 0) !important;
}


/* Safety net: keeps the panel open while the cursor is anywhere inside it,
   independent of the parent <li>'s hover state. Scoped to the panel only,
   so it can't overlap or block any other nav item. */
.warpingers-mega-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(0, 0) !important;
}


/* ============================================================
   11. MEGA MENU INNER
============================================================ */

.mega-menu-inner {

    position: relative;

    width: calc(100% - 40px) !important;

    max-width: 1800px !important;

    margin: 0 auto !important;

    padding: 25px 0 27px !important;

    display: grid !important;

    grid-template-columns:
        repeat(7, minmax(0, 1fr)) !important;

    align-items: start !important;

    column-gap: 0 !important;

    row-gap: 0 !important;

    height: auto !important;

    max-height: none !important;

    overflow: visible !important;
}


/* ============================================================
   12. MEGA COLUMNS
============================================================ */

.mega-menu-inner > .mega-column {

    display: block !important;

    min-width: 0 !important;

    width: auto !important;

    height: auto !important;

    padding: 0 20px !important;

    margin: 0 !important;

    border-right: 1px solid #eee6e2;

    overflow: visible !important;
}


.mega-menu-inner > .mega-column:first-child {

    padding-left: 0 !important;
}


.mega-menu-inner > .mega-column:last-child {

    padding-right: 0 !important;

    border-right: 0;
}


/* ============================================================
   13. MEGA GROUP
============================================================ */

.mega-column .mega-group {

    display: block !important;

    width: 100% !important;

    margin: 0 0 20px !important;

    padding: 0 !important;

    float: none !important;

    clear: both !important;
}


.mega-column .mega-group:last-child {

    margin-bottom: 0 !important;
}


/* ============================================================
   14. MEGA CATEGORY TITLE
============================================================ */

.mega-column
.mega-group
> a.mega-title {

    position: relative;

    display: block !important;

    width: fit-content !important;

    max-width: 100% !important;

    margin: 0 0 10px !important;

    padding: 0 0 7px !important;

    color: #21163b !important;

    font-family: "DM Sans", sans-serif;

    font-size: 13px !important;

    font-weight: 700 !important;

    line-height: 1.35 !important;

    white-space: normal !important;

    text-decoration: none !important;
}


/* Gold underline */

.mega-column
.mega-group
> a.mega-title::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 28px;
    height: 2px;

    background: #d99463;

    border-radius: 10px;

    transition: width .2s ease;
}


.mega-column
.mega-group
> a.mega-title:hover {

    color: #7d3e59 !important;
}


.mega-column
.mega-group
> a.mega-title:hover::after {

    width: 42px;
}


/* ============================================================
   15. MEGA SUB LINKS
============================================================ */

.mega-column
.mega-group
> a:not(.mega-title) {

    position: relative;

    display: block !important;

    width: fit-content !important;

    max-width: 100% !important;

    margin: 0 0 6px !important;

    padding: 0 !important;

    color: #716b75 !important;

    background: transparent !important;

    font-family: "DM Sans", sans-serif;

    font-size: 12px !important;

    font-weight: 400 !important;

    line-height: 1.4 !important;

    white-space: normal !important;

    text-decoration: none !important;

    float: none !important;

    transition:
        color .2s ease,
        padding-left .2s ease;
}


.mega-column
.mega-group
> a:not(.mega-title)::before {

    content: "›";

    position: absolute;

    left: 0;

    opacity: 0;

    color: #d58b5e;

    transform: translateX(-4px);

    transition: .2s ease;
}


.mega-column
.mega-group
> a:not(.mega-title):hover {

    color: #84425c !important;

    padding-left: 10px !important;
}


.mega-column
.mega-group
> a:not(.mega-title):hover::before {

    opacity: 1;

    transform: translateX(0);
}

/* ============================================================
   CUSTOM STUDIO DROPDOWN - FIXED
============================================================ */

.custom-studio-parent {
    position: relative !important;
    overflow: visible !important;
}


/* DROPDOWN */

.custom-studio-dropdown {
    position: absolute !important;

    /* No gap = no hover disappearing */
    top: 100% !important;
    left: 0 !important;

    display: block !important;

    width: 245px !important;
    min-width: 245px !important;
    max-width: 245px !important;

    height: auto !important;

    margin: 0 !important;
    padding: 8px !important;

    background: #ffffff !important;

    border: 1px solid #eadfd9 !important;
    border-radius: 7px !important;

    box-shadow: 0 16px 40px rgba(30, 20, 40, .14);

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    /* Small visual animation only */
    transform: translateY(5px) !important;

    transition:
        opacity .18s ease,
        visibility .18s ease,
        transform .18s ease !important;

    overflow: visible !important;

    z-index: 9999999 !important;
}


/* SHOW DROPDOWN */

.custom-studio-parent:hover > .custom-studio-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}


/* ============================================================
   CUSTOM STUDIO LINKS
============================================================ */

.custom-studio-dropdown > a {
    position: relative;

    display: block !important;

    width: 100% !important;
    height: auto !important;

    margin: 0 !important;
    padding: 11px 13px !important;

    color: #504a54 !important;
    background: transparent !important;

    font-family: "DM Sans", sans-serif;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;

    white-space: nowrap !important;
    text-decoration: none !important;

    border-radius: 5px !important;

    float: none !important;

    transition:
        color .2s ease,
        background .2s ease,
        padding-left .2s ease !important;
}


.custom-studio-dropdown > a + a {
    border-top: 1px solid #f3ece8;
}


.custom-studio-dropdown > a:hover {
    color: #7c3e58 !important;
    background: #fff6f1 !important;
    padding-left: 18px !important;
}


/* Gold top accent */

.custom-studio-dropdown::before {
    content: "";

    position: absolute;

    left: 50%;
    top: -1px;

    transform: translateX(-50%);

    width: 45px;
    height: 2px;

    background: #d99463;

    border-radius: 10px;
}


/* IMPORTANT:
   No hover bridge needed because dropdown touches
   the Custom Studio parent directly.
*/
.custom-studio-parent::after {
    display: none !important;
}

/* ============================================================
   20. 1366 / 1440 LAPTOP
============================================================ */

@media (max-width: 1450px) {

    .warpingers-header .layout-wrapper {

        max-width: 1320px !important;
    }


    .warpingers-header .first-list {

        margin-left: 9px !important;
        margin-right: 9px !important;

        font-size: 14px !important;
    }


    .mega-menu-inner {

        width: calc(100vw - 40px) !important;

        padding-top: 22px !important;
        padding-bottom: 23px !important;
    }


    .mega-menu-inner > .mega-column {

        padding-left: 14px !important;
        padding-right: 14px !important;
    }


    .mega-column
    .mega-group
    > a.mega-title {

        font-size: 12px !important;
    }


    .mega-column
    .mega-group
    > a:not(.mega-title) {

        font-size: 11.5px !important;
    }


    .mega-column .mega-group {

        margin-bottom: 16px !important;
    }
}


/* ============================================================
   21. SMALLER LAPTOP
============================================================ */

@media (max-width: 1200px) {

    .warpingers-header .first-list {

        margin-left: 6px !important;
        margin-right: 6px !important;

        font-size: 13px !important;
    }


    .mega-menu-inner {

        width: calc(100vw - 24px) !important;
    }


    .mega-menu-inner > .mega-column {

        padding-left: 10px !important;
        padding-right: 10px !important;
    }


    .mega-column
    .mega-group
    > a.mega-title {

        font-size: 11.5px !important;
    }


    .mega-column
    .mega-group
    > a:not(.mega-title) {

        font-size: 11px !important;
    }
}


/* ============================================================
   22. MOBILE / TABLET
============================================================ */

@media (max-width: 991px) {

    /*
       Desktop mega menus disabled.
       Existing Martvill mobile navigation can handle mobile.
    */

    .warpingers-mega-menu,
    .custom-studio-dropdown {

        display: none !important;
    }


    .mega-chevron,
    .custom-studio-chevron {

        display: none !important;
    }
}





/* ANNOUNCEMENT BAR CSS */

/* =========================================================
   SINGLE LINE TOP BAR
========================================================= */

@media (min-width: 768px) {
    .warpingers-topbar {
        width: 100%;
        height: 40px;
        background: #612b83 !important;
        color: #fff;
        overflow: hidden;
    }
}

/* MAIN ROW */

.warpingers-topbar-inner {
    width: 100%;
    max-width: 1400px;
    height: 40px;

    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LEFT CONTACT
========================================================= */

.warpingers-top-contact {
    display: flex;
    align-items: center;

    gap: 28px;

    flex-shrink: 0;
}


.warpingers-top-contact a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #fff !important;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    text-decoration: none;
}


.warpingers-top-contact a:hover {
    color: #f1c27d !important;
}


.warpingers-top-contact svg {
    width: 16px !important;
    height: 16px !important;

    min-width: 16px;

    color: #fff;

    fill: currentColor;
}


/* =========================================================
   RIGHT ANNOUNCEMENTS
========================================================= */

.warpingers-top-announcements {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 22px;

    min-width: 0;
}


.top-announcement-item {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #fff;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;

    line-height: 1;

    white-space: nowrap;
}


.top-announcement-item strong {
    color: #fff;
    font-weight: 700;
}


.announcement-star {
    color: #efb15f;

    font-size: 10px;

    flex-shrink: 0;
}


/* DIVIDER */

.top-announcement-divider {
    display: block;

    width: 1px;
    height: 16px;

    background: rgba(255, 255, 255, .35);

    flex-shrink: 0;
}


/* =========================================================
   1200 - 1400
========================================================= */

@media (max-width: 1400px) {

    .warpingers-topbar-inner {
        padding-left: 25px;
        padding-right: 25px;

        gap: 20px;
    }

    .warpingers-top-contact {
        gap: 18px;
    }

    .warpingers-top-announcements {
        gap: 15px;
    }

    .warpingers-top-contact a,
    .top-announcement-item {
        font-size: 11px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    /* Email hide first to create space */

    .warpingers-top-contact a:nth-child(2) {
        display: none;
    }

    .top-announcement-item {
        font-size: 10px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .warpingers-topbar {
        height: 80px;
    }

    .warpingers-topbar-inner {
        height: 35px;

        justify-content: center;

        padding: 0 12px;
    }


    /* Phone/email mobile pe hide */

    .warpingers-top-contact {
        display: none;
    }


    /* Only shipping announcement */

    .warpingers-top-announcements {
        width: 100%;

        justify-content: center;
    }

    .top-announcement-divider,
    .top-announcement-item:nth-of-type(2) {
        display: none;
    }

    .top-announcement-item {
          display: none;
    }
    
    .burger pointer{
        
    }

}






#iz2a {
  border-radius: 12px;
}

a.process-goto span {
    color: #fff !important;
    font-weight: 700;
}

a.process-goto svg path {
    fill: #fff !important;
}



/* WHITE LOGO IN FOOTER CSS */

.footer-logo-white {
    filter: brightness(0) invert(1);
}


.product-rating {
    display: none !important;
}


/* Product title css */

p.text-center.font-bold.text-sm.md\:text-22.text-gray-12.uppercase.dm-bold {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 28px !important;
    font-weight: 700 !important;
    color: #21153f !important;
    white-space: nowrap;
}

p.text-center.font-bold.text-sm.md\:text-22.text-gray-12.uppercase.dm-bold::before {
    content: "──────── ✦";
    color: #d99a63;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -1px;
}

p.text-center.font-bold.text-sm.md\:text-22.text-gray-12.uppercase.dm-bold::after {
    content: "✦ ────────";
    color: #d99a63;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -1px;
}



.product-section {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 70px 20px;
}


/* =========================================================
   PRODUCT CARDS - FINAL CSS
   Equal Height + Full Title + Price & Buy Now Same Row
========================================================= */


/* =========================================================
   1. MAKE ALL GRID ITEMS STRETCH
========================================================= */

.product-section .grid,
.product-tab .c-tab__content .grid {
    align-items: stretch !important;
}


/* =========================================================
   2. SWIPER / GRID ITEM SAME HEIGHT
========================================================= */

.product-section .swiper-slide,
.product-tab .swiper-slide {
    height: auto !important;
    display: flex !important;
    align-items: stretch !important;
}


/* =========================================================
   3. PRODUCT CARD SAME HEIGHT
========================================================= */

.product-section .product-card,
.product-tab .product-card {
    width: 100% !important;
    height: 100% !important;

    display: flex !important;
    flex-direction: column !important;
}


/* =========================================================
   4. SAME IMAGE HEIGHT
========================================================= */

.product-section .product-image-wrapper,
.product-tab .product-image-wrapper {
    width: 100% !important;

    height: 280px !important;
    min-height: 280px !important;

    flex: 0 0 280px !important;

    position: relative !important;
    overflow: hidden !important;
}


/* IMAGE LINK FILLS IMAGE AREA */

.product-section .product-image-wrapper > a,
.product-tab .product-image-wrapper > a {
    display: block !important;

    width: 100% !important;
    height: 100% !important;
}


/* ACTUAL IMAGE */

.product-section .product-image,
.product-tab .product-image {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
}


/* =========================================================
   5. PRODUCT CONTENT
   IMPORTANT: KEEP THIS GRID — DO NOT CHANGE TO FLEX
========================================================= */

.product-section .product-content,
.product-tab .product-content {
    width: 100% !important;

    flex: 1 1 auto !important;

    display: grid !important;

    grid-template-columns: minmax(0, 1fr) auto !important;

    /*
       ROW 1 = Category
       ROW 2 = Product title
       ROW 3 = Rating
       ROW 4 = Flexible empty space
       ROW 5 = Price + Buy Now
    */

    grid-template-rows:
        auto
        minmax(84px, auto)
        auto
        1fr
        auto !important;

    column-gap: 12px !important;

    align-items: start !important;
}


/* =========================================================
   6. CATEGORY
========================================================= */

.product-section .product-category,
.product-tab .product-category {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;

    min-height: 22px !important;

    margin: 0 !important;
}


/* =========================================================
   7. PRODUCT TITLE LINK
========================================================= */

.product-section .product-content > a,
.product-tab .product-content > a {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;

    display: block !important;

    width: 100% !important;
    min-width: 0 !important;

    overflow: visible !important;
}


/* =========================================================
   8. FULL PRODUCT TITLE
========================================================= */

.product-section .product-title,
.product-tab .product-title {
    display: block !important;

    width: 100% !important;

    min-height: 84px !important;
    height: auto !important;
    max-height: none !important;

    margin: 0 !important;

    white-space: normal !important;

    overflow: visible !important;

    text-overflow: unset !important;

    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;

    line-height: 1.4 !important;

    word-break: normal !important;
    overflow-wrap: break-word !important;
}


/* =========================================================
   9. RATING
========================================================= */

.product-section .product-rating,
.product-tab .product-rating {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;

    min-height: 24px !important;

    margin: 0 !important;

    align-self: start !important;
}


/* =========================================================
   10. PRICE AREA
   LEFT SIDE OF FINAL ROW
========================================================= */

.product-section .product-bottom,
.product-tab .product-bottom {
    grid-column: 1 !important;
    grid-row: 5 !important;

    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    align-self: center !important;

    display: block !important;
}


/* PRICE */

.product-section .product-price,
.product-tab .product-price {
    display: flex !important;

    align-items: center !important;

    flex-wrap: nowrap !important;

    gap: 6px !important;

    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    white-space: nowrap !important;
}


/* =========================================================
   11. BUY NOW
   RIGHT SIDE OF SAME FINAL ROW
========================================================= */

.product-section .product-content > .buy-now,
.product-tab .product-content > .buy-now {
    grid-column: 2 !important;
    grid-row: 5 !important;

    position: static !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    inset: auto !important;

    transform: none !important;

    float: none !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    align-self: center !important;
    justify-self: end !important;

    width: auto !important;
    min-width: max-content !important;
    max-width: none !important;

    height: auto !important;

    margin: 0 !important;

    white-space: nowrap !important;
}


/* =========================================================
   12. FORCE BUTTON IF THEME .action-btn OVERRIDES IT
========================================================= */

.product-section button.action-btn.add-to-cart.buy-btn.buy-now,
.product-tab button.action-btn.add-to-cart.buy-btn.buy-now {
    grid-column: 2 !important;
    grid-row: 5 !important;

    position: static !important;

    inset: auto !important;

    transform: none !important;

    float: none !important;

    width: auto !important;
    min-width: max-content !important;
    max-width: none !important;

    margin: 0 !important;

    align-self: center !important;
    justify-self: end !important;
}


/* =========================================================
   13. MOBILE
========================================================= */

@media (max-width: 767px) {

    .product-section .product-image-wrapper,
    .product-tab .product-image-wrapper {
        height: 250px !important;
        min-height: 250px !important;
        flex-basis: 250px !important;
    }


    .product-section .product-content,
    .product-tab .product-content {
        grid-template-columns: minmax(0, 1fr) auto !important;

        grid-template-rows:
            auto
            auto
            auto
            1fr
            auto !important;

        column-gap: 8px !important;
    }


    .product-section .product-title,
    .product-tab .product-title {
        min-height: 0 !important;
    }

}

/* HOVER CORRECTION CSS */

/* =====================================================
   HEADER MENU - PURPLE HOVER + ACTIVE
===================================================== */

/* REMOVE OLD/THEME RED BORDER EFFECT */
.warpingers-header .header-menu-nav .custom-bottom-border {
    border-bottom-color: transparent !important;
}


/* HOVER = PURPLE */
.warpingers-header .header-menu-nav .custom-bottom-border:hover {
    border-bottom-color: #5a1a78 !important;
}


/* ACTIVE = PURPLE */
.warpingers-header .header-menu-nav .custom-bottom-border.active-border-bottom {
    border-bottom-color: #5a1a78 !important;
}


/* ACTIVE + HOVER = STILL PURPLE */
.warpingers-header .header-menu-nav .custom-bottom-border.active-border-bottom:hover {
    border-bottom-color: #5a1a78 !important;
}


/* =====================================================
   IF THE THEME CREATES THE LINE USING ::AFTER
===================================================== */

.warpingers-header .header-menu-nav .custom-bottom-border::after {
    background-color: #5a1a78 !important;
    border-color: #5a1a78 !important;
}


/* HOVER */
.warpingers-header .header-menu-nav .custom-bottom-border:hover::after {
    background-color: #5a1a78 !important;
    border-color: #5a1a78 !important;
}


/* ACTIVE */
.warpingers-header .header-menu-nav .active-border-bottom::after {
    background-color: #5a1a78 !important;
    border-color: #5a1a78 !important;
}


/* =====================================================
   ALSO CATCH THEME PSEUDO ELEMENTS
===================================================== */

.warpingers-header .header-menu-nav li:hover > a::before,
.warpingers-header .header-menu-nav li:hover > a::after,
.warpingers-header .header-menu-nav li > a.active-border-bottom::before,
.warpingers-header .header-menu-nav li > a.active-border-bottom::after {
    background-color: #5a1a78 !important;
    border-color: #5a1a78 !important;
}






/* MOBILE CSS */

/* =========================================================
   FINAL MOBILE LAYOUT
   FULL WIDTH + PRODUCT SELLER 1 CARD PER ROW
========================================================= */

@media screen and (max-width: 767px) {

    /* =====================================
       REMOVE NARROW PARENT WIDTH
    ===================================== */

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .main-body,
    .page-wrapper,
    main {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        padding-left: 0 !important;
        padding-right: 0 !important;
    }


    /* =====================================
       ALL HOMEPAGE SECTIONS WIDER
    ===================================== */

    .product-section,
    .occasion-section,
    .category-section,
    .personalized-section,
    .social-review-section {
        width: calc(100% - 12px) !important;
        max-width: calc(100% - 12px) !important;

        margin-left: 6px !important;
        margin-right: 6px !important;

        padding-left: 6px !important;
        padding-right: 6px !important;

        box-sizing: border-box !important;
    }


    /* =====================================
       PRODUCT SELLER
    ===================================== */

    .product-section {
        width: calc(100% - 8px) !important;
        max-width: none !important;

        margin-left: 4px !important;
        margin-right: 4px !important;

        padding-left: 4px !important;
        padding-right: 4px !important;
    }


    .product-section .product-tab,
    .product-section .c-tabs,
    .product-section .c-tab,
    .product-section .c-tab__content,
    .product-tab,
    .product-tab .c-tab__content {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        padding-left: 0 !important;
        padding-right: 0 !important;
    }


    /* =====================================
       CRITICAL:
       ONLY ONE PRODUCT PER ROW
    ===================================== */

    .product-section .grid,
    .product-tab .grid,
    .product-tab .c-tab__content .grid,
    .c-tab__content > .grid {
        display: grid !important;

        grid-template-columns: minmax(0, 1fr) !important;

        width: 100% !important;
        max-width: 100% !important;

        gap: 14px !important;
    }


    /* =====================================
       SWIPER ITEM FULL WIDTH
    ===================================== */

    .product-section .swiper-slide,
    .product-tab .swiper-slide,
    .c-tab__content .swiper-slide {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;

        height: auto !important;

        display: block !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    /* =====================================
       PRODUCT CARD FULL WIDTH
    ===================================== */

    .product-section .product-card,
    .product-tab .product-card,
    .c-tab__content .product-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        height: auto !important;

        margin: 0 !important;

        box-sizing: border-box !important;
    }


    /* =====================================
       PRODUCT IMAGE BIGGER
    ===================================== */

    .product-section .product-image-wrapper,
    .product-tab .product-image-wrapper {
        width: 100% !important;

        height: 260px !important;
        min-height: 260px !important;

        overflow: hidden !important;
    }


    .product-section .product-image-wrapper > a,
    .product-tab .product-image-wrapper > a {
        width: 100% !important;
        height: 100% !important;

        display: block !important;
    }


    .product-section .product-image,
    .product-tab .product-image {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
    }


    /* =====================================
       PRODUCT CONTENT
    ===================================== */

    .product-section .product-content,
    .product-tab .product-content {
        width: 100% !important;

        padding: 14px !important;

        box-sizing: border-box !important;
    }


    /* CATEGORY */
    .product-section .product-category,
    .product-tab .product-category {
        min-height: 0 !important;
        margin-bottom: 6px !important;
    }


    /* FULL PRODUCT TITLE */
    .product-section .product-title,
    .product-tab .product-title {
        width: 100% !important;

        min-height: 0 !important;
        height: auto !important;

        white-space: normal !important;
        overflow: visible !important;
        text-overflow: unset !important;

        display: block !important;

        -webkit-line-clamp: unset !important;
        -webkit-box-orient: unset !important;

        margin-bottom: 10px !important;
    }


    /* =====================================
       PRICE + BUY BUTTON
    ===================================== */

    .product-section .product-bottom,
    .product-tab .product-bottom {
        width: 100% !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        margin-top: 10px !important;
    }


    .product-section .buy-now,
    .product-tab .buy-now {
        width: auto !important;

        margin: 0 !important;

        white-space: nowrap !important;
    }


    /* =====================================
       PERFECT PICKS
       KEEP 2 CARDS PER ROW
    ===================================== */

    .occasion-grid {
        width: 100% !important;

        display: grid !important;

        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        gap: 10px !important;
    }

    .occasion-card {
        width: 100% !important;
        min-width: 0 !important;
    }


    /* =====================================
       SHOP BY CATEGORY
       3 ITEMS PER ROW
    ===================================== */

    .category-grid {
        width: 100% !important;

        display: grid !important;

        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

        gap: 12px 6px !important;
    }


    /* =====================================
       PERSONALIZED GIFTS
    ===================================== */

    .personalized-section,
    .personalized-box {
        width: calc(100% - 8px) !important;
        max-width: none !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* =====================================
       REVIEWS + INSTAGRAM
    ===================================== */

    .social-review-section {
        width: calc(100% - 8px) !important;
        max-width: none !important;

        margin-left: auto !important;
        margin-right: auto !important;

        grid-template-columns: 1fr !important;
    }

    .review-box,
    .instagram-box {
        width: 100% !important;
        max-width: 100% !important;

        box-sizing: border-box !important;
    }

}










/* ==========================================================
   FINAL MOBILE FIX
   PERFECT PICKS + REVIEWS + INSTAGRAM ONLY
========================================================== */

@media screen and (max-width: 767px) {

    /* ======================================================
       PERFECT PICKS FOR EVERY OCCASION
    ====================================================== */

    .occasion-section {
        width: calc(100% - 16px) !important;
        max-width: none !important;
        margin: 30px 8px !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    /* TITLE */
    .occasion-section .section-heading {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        margin: 0 0 18px !important;
    }

    .occasion-section .section-heading h2 {
        margin: 0 !important;
        padding: 0 !important;

        font-size: 16px !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
        text-align: center !important;

        white-space: nowrap !important;
        color: #21153f !important;
    }

    .occasion-section .section-heading span {
        width: 30px !important;
        flex: 0 0 30px !important;
        height: 1.5px !important;
    }


    /* 2 PERFECT PICKS PER ROW */
    .occasion-section .occasion-grid {
        width: 100% !important;

        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        gap: 12px !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    .occasion-section .occasion-card {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;

        margin: 0 !important;

        border-radius: 16px !important;
        overflow: visible !important;
    }


    /* IMAGE */
    .occasion-section .occasion-image {
        width: 100% !important;
        height: 175px !important;

        overflow: hidden !important;
        border-radius: 14px 14px 0 0 !important;
    }

    .occasion-section .occasion-image img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        display: block !important;
    }


    /* ROUND ICON */
    .occasion-section .occasion-icon {
        width: 58px !important;
        height: 58px !important;

        margin: -29px auto 8px !important;

        position: relative !important;
        z-index: 2 !important;
    }

    .occasion-section .occasion-icon svg {
        width: 25px !important;
        height: 25px !important;
    }


    /* CARD TEXT */
    .occasion-section .occasion-card h3 {
        font-size: 14px !important;
        line-height: 1.3 !important;

        margin: 8px 4px 3px !important;

        text-align: center !important;
    }

    .occasion-section .occasion-card p {
        font-size: 12px !important;
        line-height: 1.3 !important;

        margin: 0 4px 12px !important;

        text-align: center !important;
    }



    /* ======================================================
       REVIEWS + INSTAGRAM WRAPPER
    ====================================================== */

    .social-review-section {
        width: calc(100% - 16px) !important;
        max-width: none !important;

        margin: 35px 8px !important;
        padding: 0 !important;

        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 24px !important;

        box-sizing: border-box !important;
    }


    /* BOTH BOXES */
    .social-review-section .review-box,
    .social-review-section .instagram-box {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 18px 12px !important;

        border-radius: 18px !important;

        box-sizing: border-box !important;
        overflow: hidden !important;

        position: relative !important;
    }



    /* ======================================================
       REVIEW / INSTAGRAM HEADINGS
    ====================================================== */

    .social-review-section .section-title {
        width: 100% !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 7px !important;

        margin: 0 0 20px !important;
        padding: 0 !important;
    }


    .social-review-section .section-title h2 {
        margin: 0 !important;
        padding: 0 !important;

        font-size: 15px !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;

        text-align: center !important;

        white-space: nowrap !important;

        color: #21153f !important;
    }


    /* GOLD LINES */
    .social-review-section .section-title span {
        position: relative !important;

        width: 26px !important;
        flex: 0 0 26px !important;

        height: 1.5px !important;

        background: #d99a63 !important;
    }


    /* LEFT DIAMOND */
    .social-review-section .section-title span:first-child::after {
        content: "" !important;

        position: absolute !important;

        width: 7px !important;
        height: 7px !important;

        right: -3px !important;
        top: 50% !important;

        background: #d99a63 !important;

        transform:
            translateY(-50%)
            rotate(45deg) !important;
    }


    /* RIGHT DIAMOND */
    .social-review-section .section-title span:last-child::before {
        content: "" !important;

        position: absolute !important;

        width: 7px !important;
        height: 7px !important;

        left: -3px !important;
        top: 50% !important;

        background: #d99a63 !important;

        transform:
            translateY(-50%)
            rotate(45deg) !important;
    }


    /* REMOVE OLD EXTRA STAR */
    .social-review-section .section-title span::after {
        font-size: 0 !important;
    }

    .social-review-section
    .section-title
    span:first-child::after {
        font-size: initial !important;
    }



    /* ======================================================
       CUSTOMER REVIEWS
    ====================================================== */

    .social-review-section .reviews {
        width: 100% !important;

        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 0 !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    .social-review-section .review-item {
        width: 100% !important;

        display: grid !important;

        grid-template-columns: 55px 1fr !important;
        grid-template-rows: auto auto auto !important;

        column-gap: 12px !important;

        text-align: left !important;

        padding: 15px 4px !important;

        border-right: 0 !important;
        border-bottom: 1px solid #eee5e2 !important;

        box-sizing: border-box !important;
    }


    .social-review-section .review-item:last-child {
        border-bottom: 0 !important;
    }


    /* CUSTOMER IMAGE */
    .social-review-section .review-item img {
        grid-column: 1 !important;
        grid-row: 1 / 4 !important;

        width: 50px !important;
        height: 50px !important;

        margin: 0 !important;

        border-radius: 50% !important;

        object-fit: cover !important;
    }


    /* STARS */
    .social-review-section .review-item .stars {
        grid-column: 2 !important;
        grid-row: 1 !important;

        margin: 0 0 5px !important;

        font-size: 13px !important;
        line-height: 1 !important;

        text-align: left !important;
    }


    /* REVIEW TEXT */
    .social-review-section .review-item p {
        grid-column: 2 !important;
        grid-row: 2 !important;

        min-height: 0 !important;

        margin: 0 !important;

        font-size: 12px !important;
        line-height: 1.55 !important;

        text-align: left !important;
    }


    /* CUSTOMER NAME */
    .social-review-section .review-item h4 {
        grid-column: 2 !important;
        grid-row: 3 !important;

        margin: 6px 0 0 !important;

        font-size: 12px !important;
        line-height: 1.3 !important;

        text-align: left !important;
    }


    /* REVIEW DOTS */
    .social-review-section .dots {
        margin-top: 12px !important;
    }



    /* ======================================================
       INSTAGRAM
    ====================================================== */

    .social-review-section .instagram-box {
        padding-bottom: 22px !important;
        overflow: visible !important;
    }


    .social-review-section .instagram-images {
        width: 100% !important;

        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 8px !important;

        margin: 0 !important;
    }


    .social-review-section .instagram-images img {
        width: 100% !important;
        height: 135px !important;

        display: block !important;

        object-fit: cover !important;

        border-radius: 10px !important;
    }


    /* INSTAGRAM BUTTON */
    .social-review-section .instagram-btn {
        position: static !important;

        transform: none !important;

        width: fit-content !important;

        margin: 16px auto 0 !important;

        padding: 10px 16px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 7px !important;

        font-size: 11px !important;

        white-space: nowrap !important;
    }

}




@media screen and (max-width: 767px) {

    .occasion-card .occasion-content {
        padding: 0px 0px 12px !important;
        margin: 0 !important;
        min-height: 0 !important;
        height: auto !important;
    }

}



/* HIDE OLD TOP HEADER COMPLETELY ON MOBILE */
/*@media screen and (max-width: 767px) {*/
/*    .warpingers-topbar-inner,*/
/*    .warpingers-topbar {*/
/*        display: none !important;*/
/*    }*/
/*}*/






/* MOBILE NAVBAR CSS */

/* ========================================
   WRAPINGERS MOBILE HAMBURGER
======================================== */
/* DESKTOP */
@media (min-width: 768px) {

    /*.wrap-mobile-nav,*/
    /*.wrap-mobile-menu {*/
    /*    display: none !important;*/
    /*}*/

    

}









/* other pages css */

/* ==========================================================
 PREMADE PAGE CSS  hidehidehide
========================================================== */


/* ==========================================================
   TABLET + MOBILE   
========================================================== */

@media (max-width: 767px) {

    /* .desktop-header {*/
    /*    display: none !important;*/
    /*}*/

    /* ======================================================
       1. BASIC PAGE FIX
    ====================================================== */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }


    /* ======================================================
       2. PRODUCT PAGE WIDTH
       Mobile pe maximum available width use karo
    ====================================================== */

    .product-container,
    .product-list-container,
    .product-listing,
    .products-wrapper,
    .product-wrapper {
        width: 100% !important;
        max-width: 100% !important;

        margin-left: auto !important;
        margin-right: auto !important;

        padding-left: 10px !important;
        padding-right: 10px !important;
    }


    /* Tailwind/container parent agar width rok raha ho */

    main .container,
    main .mx-auto {
        max-width: 100% !important;
    }


    /* ======================================================
       3. BREADCRUMB
       Exact markup:
       nav > #category-path
    ====================================================== */

    nav[aria-label="Breadcrumb"] {
        width: 100% !important;

        margin-top: 18px !important;
        margin-bottom: 14px !important;

        padding-left: 10px !important;
        padding-right: 10px !important;

        overflow: hidden;
    }


    #category-path {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 11px !important;
        line-height: 16px !important;

        white-space: nowrap !important;

        list-style: none !important;
    }


    #category-path > li {
        display: flex !important;
        align-items: center !important;

        flex-shrink: 0 !important;

        white-space: nowrap !important;

        font-size: 11px !important;
        line-height: 16px !important;
    }


    #category-path a {
        display: inline-block;

        font-size: 11px !important;
        line-height: 16px !important;

        white-space: nowrap !important;
    }


    /* Home icon */

    #category-path > li:first-child svg {
        width: 11px !important;
        height: 13px !important;

        margin-right: 5px !important;

        flex-shrink: 0;
    }


    /* "/" separators */

    #category-path p {
        margin: 0 !important;

        padding-left: 6px !important;
        padding-right: 6px !important;

        font-size: 11px !important;

        flex-shrink: 0;
    }


    /* Search Results ko wrap hone se roko */

    #search_result_path {
        min-width: 0 !important;
        flex-shrink: 1 !important;
    }


    #search_result_path a {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap !important;
    }


    /* ======================================================
       4. FILTER / SORT BAR
    ====================================================== */

    .filter-wrapper,
    .filter-sort-wrapper,
    .product-filter,
    .product-filter-header {

        width: 100% !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        flex-wrap: nowrap !important;

        gap: 6px !important;

        margin-top: 0 !important;
        margin-bottom: 14px !important;
    }


    /* Filter button */

    .filter-wrapper button,
    .product-filter button,
    .product-filter-header button {

        height: 38px !important;
        min-height: 38px !important;

        padding-left: 10px !important;
        padding-right: 10px !important;

        border-radius: 5px !important;

        font-size: 11px !important;

        white-space: nowrap !important;
    }


    /* Sort dropdown */

    .filter-wrapper select,
    .product-filter select,
    .product-filter-header select {

        height: 38px !important;

        min-width: 0 !important;
        max-width: 160px !important;

        padding-left: 8px !important;
        padding-right: 22px !important;

        font-size: 11px !important;

        border-radius: 5px !important;

        background-color: #fff !important;
    }


    /* Grid/list icons */

    .filter-wrapper svg,
    .product-filter svg,
    .product-filter-header svg {
        flex-shrink: 0;
    }


    /* ======================================================
       5. PRODUCT GRID
       IMPORTANT: 2 wide products per row
    ====================================================== */

    .grid.grid-cols-2,
    .grid-cols-2 {

        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        width: 100% !important;
        max-width: 100% !important;

        column-gap: 10px !important;
        row-gap: 25px !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* Product grid direct children */

    .grid.grid-cols-2 > *,
    .grid-cols-2 > * {

        width: 100% !important;
        max-width: 100% !important;

        min-width: 0 !important;
        min-height: 0 !important;

        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* ======================================================
       6. PRODUCT IMAGE
    ====================================================== */

    .rev-img.product-hover,
    .product-hover {

        position: relative !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        aspect-ratio: 1 / 1 !important;

        margin: 0 0 9px 0 !important;

        overflow: hidden !important;

        border-radius: 8px !important;
    }


    /* Inner image wrapper */

    .product-hover > div:first-child,
    .rev-img.product-hover > div:first-child {

        width: 100% !important;
        max-width: 100% !important;

        height: 100% !important;

        min-width: 0 !important;
    }


    /* Image anchor */

    .product-hover > div:first-child > a {

        display: block !important;

        width: 100% !important;
        height: 100% !important;
    }


    /* Product actual image */

    .product-hover img {

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        height: 100% !important;

        object-fit: cover !important;

        border-radius: 8px !important;
    }


    /* ======================================================
       7. REMOVE DESKTOP HOVER BUTTONS
    ====================================================== */

    .product-hover .hover-icon {
        display: none !important;
    }


    .product-hover .hidden.md\:block {
        display: none !important;
    }


    /* ======================================================
       8. DISCOUNT BADGE
    ====================================================== */

    .product-hover .absolute.top-2\.5 {

        top: 6px !important;
        left: 6px !important;
    }


    .product-hover .primary-bg-color {

        width: max-content !important;

        height: auto !important;
        min-height: 17px !important;

        margin: 0 !important;

        padding: 3px 6px !important;

        font-size: 8px !important;
        line-height: 11px !important;

        border-radius: 3px !important;

        white-space: nowrap !important;
    }


    /* ======================================================
       9. PRODUCT DETAILS
    ====================================================== */

    .product-hover + div,
    .product-hover ~ div {

        width: 100% !important;
        max-width: 100% !important;

        min-width: 0 !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    /* Category */

    .product-hover ~ div p {

        max-width: 100% !important;
    }


    /* ======================================================
       10. PRODUCT NAME
    ====================================================== */

    .product-hover ~ div a {

        max-width: 100% !important;

        font-size: 12px !important;
        line-height: 17px !important;

        word-break: normal !important;
        overflow-wrap: normal !important;
    }


    /* Long titles clean 2-line style */

    .product-hover ~ div a:not(.add-to-cart) {

        display: -webkit-box !important;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;

        overflow: hidden !important;

        text-overflow: ellipsis !important;
    }


    /* ======================================================
       11. PRICE
    ====================================================== */

    .product-hover ~ div .price,
    .product-hover ~ div [class*="price"] {

        font-size: 13px !important;
        line-height: 19px !important;

        white-space: nowrap;
    }


    .product-hover ~ div del {

        font-size: 12px !important;

        margin-left: 4px;

        opacity: 0.65;
    }


    /* ======================================================
       12. RATINGS
    ====================================================== */

    .product-hover ~ div svg {

        max-width: 13px;
        max-height: 13px;
    }


    /* ======================================================
       13. FIX MASSIVE EMPTY / BLACK GAP
    ====================================================== */

    .grid.grid-cols-2,
    .grid-cols-2,
    .grid.grid-cols-2 > *,
    .grid-cols-2 > *,
    .product-listing,
    .product-list-container,
    .products-wrapper,
    .product-wrapper {

        height: auto !important;
        min-height: 0 !important;
    }


    .product-hover,
    .product-hover + div,
    .product-hover ~ div {

        min-height: 0 !important;
    }


    /* Product cards should never get viewport height */

    .grid.grid-cols-2 > div,
    .grid-cols-2 > div {

        height: auto !important;

        min-height: 0 !important;

        max-height: none !important;
    }


    /* ======================================================
       14. PAGINATION
    ====================================================== */

    .pagination,
    .pagination-wrapper {

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;

        gap: 4px !important;

        margin-top: 30px !important;
        margin-bottom: 25px !important;

        overflow-x: auto !important;

        scrollbar-width: none;
    }


    .pagination::-webkit-scrollbar,
    .pagination-wrapper::-webkit-scrollbar {
        display: none;
    }


    /* ======================================================
       15. FOOTER SEPARATION
    ====================================================== */

    footer {
        margin-top: 30px !important;
    }

}


/* ==========================================================
   NORMAL MOBILE
   481px and below
========================================================== */

@media (max-width: 480px) {

    /*
     * IMPORTANT:
     * Only 8px side space.
     *
     * Example 294px viewport:
     * 294 - 16 = 278px available
     * minus 10px gap
     * = roughly 134px per product
     *
     * Much wider than current screenshot.
     */

    .product-container,
    .product-list-container,
    .product-listing,
    .products-wrapper,
    .product-wrapper {

        padding-left: 8px !important;
        padding-right: 8px !important;
    }


    /* Breadcrumb */

    nav[aria-label="Breadcrumb"] {

        padding-left: 8px !important;
        padding-right: 8px !important;

        margin-top: 16px !important;
        margin-bottom: 13px !important;
    }


    #category-path,
    #category-path > li,
    #category-path a {

        font-size: 10.5px !important;
    }


    #category-path p {

        padding-left: 5px !important;
        padding-right: 5px !important;
    }


    /* Product grid */

    .grid.grid-cols-2,
    .grid-cols-2 {

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        column-gap: 10px !important;
        row-gap: 24px !important;
    }


    /* Product image */

    .product-hover,
    .rev-img.product-hover {

        width: 100% !important;

        height: auto !important;

        aspect-ratio: 1 / 1 !important;

        margin-bottom: 8px !important;
    }


    .product-hover img {

        width: 100% !important;
        height: 100% !important;
    }


    /* Title */

    .product-hover ~ div a {

        font-size: 11.5px !important;
        line-height: 16px !important;
    }


    /* Prices */

    .product-hover ~ div .price,
    .product-hover ~ div [class*="price"] {

        font-size: 12.5px !important;
    }


    .product-hover ~ div del {

        font-size: 11.5px !important;
    }

}


/* ==========================================================
   VERY SMALL MOBILE
   Still keep TWO products
========================================================== */

@media (max-width: 360px) {

    .product-container,
    .product-list-container,
    .product-listing,
    .products-wrapper,
    .product-wrapper {

        padding-left: 6px !important;
        padding-right: 6px !important;
    }


    nav[aria-label="Breadcrumb"] {

        padding-left: 6px !important;
        padding-right: 6px !important;
    }


    .grid.grid-cols-2,
    .grid-cols-2 {

        column-gap: 8px !important;
        row-gap: 22px !important;
    }


    #category-path,
    #category-path > li,
    #category-path a {

        font-size: 10px !important;
    }


    #category-path p {

        padding-left: 4px !important;
        padding-right: 4px !important;
    }


    .product-hover ~ div a {

        font-size: 11px !important;
        line-height: 15px !important;
    }

}



/* =====================================================
   MOBILE PRODUCT RESULTS - FULL WIDTH FIX
===================================================== */

@media (max-width: 767px) {

    /* Main product section */
    #item-filter-container-desktop {
        width: 100% !important;
        max-width: 100% !important;

        padding-left: 10px !important;
        padding-right: 10px !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    /* AJAX loaded product results */
    #loadHtml {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        padding-left: 0 !important;
        padding-right: 0 !important;
    }


    /* Any immediate wrapper inside AJAX */
    #loadHtml > div {
        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    /* Product grid */
    #loadHtml .grid {
        width: 100% !important;
        max-width: 100% !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        column-gap: 12px !important;
        row-gap: 24px !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    /* Each product */
    #loadHtml .grid > div {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }


    /* Product image */
    #loadHtml .product-hover {
        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        aspect-ratio: 1 / 1 !important;
    }


    #loadHtml .product-hover > div {
        width: 100% !important;
        height: 100% !important;
    }


    #loadHtml .product-hover img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
    }

     #search_top_nav {
        margin-bottom: 20px !important;
    }
}




/* ABOUT PAGE CSS */

/* =========================================================
   ABOUT US PAGE - MOBILE RESPONSIVE
   Paste at END of CSS
========================================================= */

@media (max-width: 767px) {

    /* ==========================================
       PAGE SAFETY
    ========================================== */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    .page-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }


    /* ==========================================
       MAIN ABOUT SECTION
       #iw9ry contains:
       LEFT CONTENT + RIGHT IMAGE
    ========================================== */

    #iw9ry {
        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 14px !important;

        gap: 0 !important;
    }


    /* LEFT CONTENT */

    #i43e76 {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* ==========================================
       BREADCRUMB
    ========================================== */

    #imem {
        width: 100% !important;

        margin-top: 18px !important;
        margin-bottom: 16px !important;

        padding: 0 !important;
    }

    #imem ol {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        white-space: nowrap !important;
    }

    #imem li {
        display: flex !important;
        align-items: center !important;

        font-size: 11px !important;
        line-height: 16px !important;

        white-space: nowrap !important;
    }

    #imem a {
        font-size: 11px !important;
        white-space: nowrap !important;
    }

    #imem svg {
        width: 11px !important;
        height: 13px !important;

        margin-right: 6px !important;
        margin-top: 0 !important;

        flex-shrink: 0;
    }

    #imem p {
        margin: 0 !important;

        padding-left: 8px !important;
        padding-right: 8px !important;
    }


    /* ==========================================
       ABOUT WRAPINGERS HEADING
    ========================================== */

    #iyxi {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 27px !important;
        line-height: 34px !important;

        white-space: normal !important;
        overflow: visible !important;

        letter-spacing: -0.5px;
    }

    #iyxi span {
        white-space: normal !important;
    }


    /* Purple Wrapingers word */

    #imgif {
        white-space: nowrap !important;
    }


    /* ==========================================
       HEADING BORDER
    ========================================== */

    #id6ahw {
        width: 100% !important;

        margin-top: 8px !important;
        margin-bottom: 0 !important;
    }


    /* ==========================================
       ABOUT TEXT
    ========================================== */

    #iy3h {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 18px 0 0 !important;

        font-size: 14px !important;
        line-height: 23px !important;

        text-align: left !important;

        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    #iy3h span,
    #iy3h strong {
        font-size: inherit !important;
        line-height: inherit !important;
    }


    /* First useless BR before paragraph */
    #iy3h > br:first-child {
        display: none !important;
    }


    /* ==========================================
       IMPORTANT:
       REMOVE MASSIVE EMPTY SPACE CAUSED BY
       MULTIPLE <br><br><br><br><br><br><br>
       AT END OF PARAGRAPH
    ========================================== */

    #iy3h > br:nth-last-child(-n+7) {
        display: none !important;
    }


    /* Section shouldn't create giant height */

    .bdg-sect {
        min-height: 0 !important;
        height: auto !important;
    }


    /* Empty section after content */

    #i43e76 > section.bdg-sect:empty {
        display: none !important;
    }


    /* ==========================================
       ABOUT IMAGE
       #iz2a
    ========================================== */

    #iz2a {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        max-height: none !important;

        object-fit: cover !important;

        margin: 28px 0 0 !important;

        border-radius: 10px !important;
    }


    /* ==========================================
       REMOVE EMPTY ROW
    ========================================== */

    #i673i:empty {
        display: none !important;
    }


    /* ==========================================
       CTA SECTION
    ========================================== */

    #ia0rix {
        width: 100% !important;
        max-width: 100% !important;

        padding: 0 14px !important;
        margin: 0 !important;
    }


    /* Empty wrappers */

    #iqhvfb {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #ia5m3m:empty,
    #ilkobe:empty,
    #iynu9g:empty {
        display: none !important;
    }


    /* Empty heading wrapper shouldn't consume space */

    #ih6m9b {
        width: 100% !important;

        padding: 0 !important;
        margin: 0 !important;

        min-height: 0 !important;
        height: auto !important;
    }


    /* Purple/yellow little line */

    #iy51in {
        width: 90px !important;
        height: 3px !important;

        margin: 6px auto 0 !important;
    }


    /* ==========================================
       HAVE ANY QUERIES
    ========================================== */

    #ia0rij {
        width: 100% !important;

        margin: 52px 0 0 !important;
        padding: 0 !important;

        font-size: 14px !important;
        line-height: 21px !important;

        text-align: center !important;
    }


    /* ==========================================
       GET IN TOUCH BUTTON WRAPPER
    ========================================== */

    #ia0rij + div {
        width: 100% !important;

        margin-top: 18px !important;
        margin-bottom: 35px !important;

        padding: 0 !important;
    }


    /* BUTTON */

    #ia0rij + div .process-goto {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 190px !important;
        max-width: 100% !important;

        height: 46px !important;

        margin: 0 auto !important;
        padding: 0 20px !important;

        font-size: 14px !important;

        border-radius: 3px !important;
    }


    /* ==========================================
       CHAT
       Don't let it destroy mobile width
    ========================================== */

    .chat-view-container {
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;

        left: 10px !important;
        right: 10px !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    #iw9ry {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    #ia0rix {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }


    /* Heading */

    #iyxi {
        font-size: 25px !important;
        line-height: 31px !important;

        letter-spacing: -0.6px !important;
    }


    /* Main copy */

    #iy3h {
        font-size: 13px !important;
        line-height: 21px !important;

        padding-top: 16px !important;
    }


    /* Image */

    #iz2a {
        margin-top: 24px !important;
        border-radius: 9px !important;
    }


    /* CTA */

    #ia0rij {
        margin-top: 45px !important;
        font-size: 13px !important;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    #iw9ry,
    #ia0rix {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    #iyxi {
        font-size: 23px !important;
        line-height: 29px !important;
    }

    #iy3h {
        font-size: 12.5px !important;
        line-height: 20px !important;
    }

}



/* CONTACT PAGE CSS */

/* =========================================================
   CONTACT PAGE - FINAL MOBILE RESPONSIVE
   FULL WIDTH VERSION
========================================================= */

@media (max-width: 767px) {

    /* =========================================
       GLOBAL
    ========================================= */

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .page-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }


    /* =========================================
       MAIN CONTACT GRID
       THIS IS THE MAIN CULPRIT
    ========================================= */

    #ifk9 {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    #ie3j {
        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        padding-left: 12px !important;
        padding-right: 12px !important;

        gap: 0 !important;
    }


    /* =========================================
       LEFT COLUMN
    ========================================= */

    #i5jk {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    #i6n37 {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* =========================================
       BREADCRUMB
    ========================================= */

    #i6n37 .mt-20 {
        margin-top: 28px !important;
    }

    #i6n37 nav {
        width: 100% !important;

        margin: 0 0 16px !important;
        padding: 0 !important;
    }

    #i6n37 nav ol {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        white-space: nowrap !important;
    }

    #i6n37 nav li {
        display: flex !important;
        align-items: center !important;

        font-size: 11px !important;
        line-height: 16px !important;

        white-space: nowrap !important;
    }

    #i6n37 nav a {
        font-size: 11px !important;
        white-space: nowrap !important;
    }

    #i6n37 nav svg {
        width: 11px !important;
        height: 13px !important;

        margin: 0 6px 0 0 !important;
    }

    #i6n37 nav p {
        margin: 0 !important;
        padding: 0 7px !important;
    }


    /* =========================================
       GET IN TOUCH
    ========================================= */

    #iv0vc {
        display: flex !important;
        align-items: center !important;
        flex-wrap: wrap !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        gap: 7px !important;
    }


    #iia7g,
    #ieeak {
        display: block !important;

        width: auto !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    #iv0vc p {
        margin: 0 !important;
        padding: 0 !important;

        font-size: 31px !important;
        line-height: 38px !important;

        white-space: nowrap !important;
    }


    #ihu8b {
        color: #642b8f !important;
    }


    /* underline */

    #iwwrv {
        width: 100% !important;
        max-width: 100% !important;

        margin: 9px 0 0 !important;
    }


    /* =========================================
       INTRO
    ========================================= */

    #iwjhg {
        width: 100% !important;
        max-width: 100% !important;

        margin: 18px 0 0 !important;
        padding: 0 !important;
    }


    #i2wdn {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        font-size: 14px !important;
        line-height: 22px !important;
    }


    /*
       Desktop manually forces a line break.
       Mobile width is now enough, let browser wrap.
    */

    #i2wdn br {
        display: none !important;
    }


    /* =========================================
       CONTACT INFORMATION AREA
       IMPORTANT FULL WIDTH FIX
    ========================================= */

    #i6uxw {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        height: auto !important;
        min-height: 0 !important;

        margin: 28px 0 0 !important;
        padding: 0 !important;
    }


    #iegke {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        height: auto !important;
        min-height: 0 !important;

        margin: 0 !important;

        padding: 22px 16px !important;

        border-radius: 10px !important;
    }


    /* =========================================
       CONTACT CARD HEADING
    ========================================= */

    #iyxqs,
    #i5xny,
    #ivthu,
    #i9udb {
        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    #i3iqm {
        margin: 0 !important;
        padding: 0 !important;

        font-size: 15px !important;
        line-height: 22px !important;
    }


    #i3iqm br {
        display: none !important;
    }


    #islh2 {
        margin: 6px 0 20px !important;
        padding: 0 !important;

        font-size: 16px !important;
        line-height: 22px !important;
    }


    /* =========================================
       ALL CONTACT ROWS
    ========================================= */

    #i8b9g,
    #iwe8p,
    #ihxw8,
    #iyptk {

        display: flex !important;
        align-items: center !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        height: auto !important;
        min-height: 0 !important;

        margin: 0 0 16px !important;
        padding: 0 !important;

        gap: 14px !important;
    }


    #iyptk {
        align-items: flex-start !important;
        margin-bottom: 0 !important;
    }


    /* =========================================
       EMPTY DIVS
    ========================================= */

    #ip87f,
    #ikkkq,
    #i093w,
    #ih8cs,
    #iqfkw,
    #i0bic {

        display: none !important;

        width: 0 !important;
        height: 0 !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* =========================================
       ICON WRAPPERS
    ========================================= */

    #i7yhb,
    #i5le6,
    #ihxw8 > div:nth-child(2),
    #i8jf9 {

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        flex: 0 0 52px !important;

        width: 52px !important;
        min-width: 52px !important;

        height: 52px !important;
        min-height: 52px !important;

        margin: 0 !important;
        padding: 0 !important;

        border-radius: 5px !important;

        overflow: hidden !important;
    }


    /* icons */

    #i4nzf,
    #iy44j,
    #ik23i,
    #izb5k {

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        height: 100% !important;

        object-fit: contain !important;

        margin: 0 !important;
    }


    /* =========================================
       CONTACT TEXT COLUMNS
    ========================================= */

    #i6op6,
    #i3emb,
    #ixdrh {

        display: flex !important;
        align-items: center !important;

        flex: 1 1 auto !important;

        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;

        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    #ith08,
    #i8ylh,
    #ilkxg {

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 13px !important;
        line-height: 20px !important;
    }


    #i93j5 {
        white-space: nowrap !important;
    }


    #ic739 {
        display: inline-block !important;

        max-width: 100% !important;

        font-size: 13px !important;

        overflow-wrap: anywhere !important;
    }


    #i8r6f {
        display: block !important;

        width: 100% !important;

        font-size: 13px !important;
        line-height: 20px !important;

        white-space: normal !important;
    }


    /* =========================================
       ADDRESS
    ========================================= */

    #ifd56 {
        display: flex !important;
        align-items: flex-start !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        gap: 14px !important;
    }


    #iw6pw {
        flex: 1 1 auto !important;

        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 2px 0 0 !important;

        font-size: 13px !important;
        line-height: 20px !important;

        word-break: normal !important;
        overflow-wrap: normal !important;
    }


    /* =========================================
       MASSIVE BLACK / EMPTY GAP FIX
    ========================================= */

    #i5jk,
    #i6n37,
    #iwjhg,
    #i6uxw,
    #iegke,
    #iqfkw,
    #i0bic {

        min-height: 0 !important;
        height: auto !important;

        max-height: none !important;
    }


    /* =========================================
       MAIN RIGHT IMAGE
    ========================================= */

    #i77dl {

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        max-height: none !important;

        object-fit: cover !important;

        margin: 22px 0 0 !important;

        border-radius: 10px !important;
    }


    /* =========================================
       SUPPORT SECTION
    ========================================= */

    .page-wrapper > div > section.bdg-sect,
    #ifk9 + section.bdg-sect {

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        margin: 0 !important;

        padding: 28px 12px 35px !important;
    }


    section.bdg-sect .paragraph {

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        padding-left: 15px !important;
        padding-top: 15px !important;

        font-size: 13px !important;
        line-height: 21px !important;
    }


    section.bdg-sect .paragraph > br:first-child {
        display: none !important;
    }


    #iqeni {
        display: inline-block;

        margin-bottom: 5px;

        font-size: 16px !important;
    }


    /* =========================================
       CHAT
    ========================================= */

    .chat-view-container {

        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;

        left: 10px !important;
        right: 10px !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    /*
       Almost full screen:
       375px viewport = 351px content width
    */

    #ie3j {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }


    #iv0vc p {
        font-size: 29px !important;
        line-height: 35px !important;
    }


    #iegke {
        padding: 20px 14px !important;
    }


    #i77dl {
        margin-top: 20px !important;
    }


    .page-wrapper > div > section.bdg-sect,
    #ifk9 + section.bdg-sect {

        padding-left: 12px !important;
        padding-right: 12px !important;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    #ie3j {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }


    #iv0vc p {
        font-size: 26px !important;
        line-height: 32px !important;
    }


    #iegke {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }


    .page-wrapper > div > section.bdg-sect,
    #ifk9 + section.bdg-sect {

        padding-left: 10px !important;
        padding-right: 10px !important;
    }

}

@media (max-width: 767px) {

    /* Yellow block remove */
    #i5xny {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Heading wrapper */
    #iyxqs {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 0 !important;

        margin: 0 0 14px 0 !important;
        padding: 0 !important;
    }

    /* Text container */
    #ivthu {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    /* Text */
    #i3iqm {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 15px !important;
        line-height: 22px !important;

        text-align: left !important;
    }

    /* Starting <br> remove */
    #i3iqm > br:first-child {
        display: none !important;
    }

    #ikudu {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}



/* TOO MUCH PADDING CSS */

@media (max-width: 767px) {

    /* Browse Collection section */
    section.px-4.my-8.md\:my-10 {
        margin-top: 0px !important;
        margin-bottom: 12px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Header ke neeche gap */
    .af-section-header {
        margin-bottom: 10px !important;
        margin-top: 60px !important;
        padding-bottom: 0 !important;
    }

    /* Slider wrapper ka extra gap */
    .category-slider-wrapper {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Swiper itself */
    .categorySwiper {
        margin-top: 0 !important;
    }
}


@media (max-width: 767px) {
    .process-goto {
        transform: translate(155px, 70px) !important;

        background: #56296A !important;
        color: #fff !important;
        border-color: #56296A !important;
    }
}



/* FOOTER CSS */

/* =========================================================
   WRAPINGERS FOOTER
   FINAL MOBILE RESPONSIVE CSS
   Replace previous mobile footer CSS with this
========================================================= */

@media (max-width: 767px) {

    /* =====================================================
       FOOTER BASE
    ===================================================== */

    section.bg-gray-12.text-white {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;

        background: #5a2b82 !important;
    }


    section.bg-gray-12.text-white footer {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        padding-top: 32px !important;
        padding-right: 18px !important;
        padding-bottom: 30px !important;
        padding-left: 18px !important;
    }


    /* =====================================================
       MAIN FOOTER GRID
    ===================================================== */

    section.bg-gray-12.text-white footer > .flex {
        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        gap: 38px 24px !important;

        align-items: start !important;
        justify-content: stretch !important;
    }


    /* =====================================================
       FIRST SECTION
       LOGO + DESCRIPTION + SOCIALS
       FULL WIDTH
    ===================================================== */

    section.bg-gray-12 footer .order-1 {
        grid-column: 1 / -1 !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: center !important;
    }


    /*
       Logo/content wrapper
       Important: override desktop positioning
    */

    section.bg-gray-12 footer .order-1 > div:first-child {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto !important;
        padding: 0 !important;

        text-align: center !important;
    }


    /* =====================================================
       LOGO - DEAD CENTER
    ===================================================== */

    section.bg-gray-12 footer .footer-logo-white {
        display: block !important;

        position: static !important;

        float: none !important;

        width: 155px !important;
        max-width: 155px !important;

        height: auto !important;

        margin-top: 0 !important;
        margin-right: auto !important;
        margin-bottom: 0 !important;
        margin-left: auto !important;

        padding: 0 !important;

        transform: none !important;

        object-fit: contain !important;
    }


    /* In case logo is inside link */

    section.bg-gray-12 footer .order-1 > div:first-child > a {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;

        margin: 0 auto !important;
        padding: 0 !important;
    }


    section.bg-gray-12 footer .order-1 > div:first-child > a img {
        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* =====================================================
       BRAND DESCRIPTION
    ===================================================== */

    section.bg-gray-12 footer .order-1 > div:first-child > p {
        display: block !important;

        width: 100% !important;
        max-width: 310px !important;

        margin-top: 18px !important;
        margin-right: auto !important;
        margin-bottom: 0 !important;
        margin-left: auto !important;

        padding: 0 !important;

        font-size: 13px !important;
        line-height: 20px !important;

        text-align: center !important;

        word-break: normal !important;
        overflow-wrap: normal !important;
    }


    /* =====================================================
       STAY CONNECTED
    ===================================================== */

    section.bg-gray-12 footer .order-1 > p {
        width: 100% !important;

        margin-top: 25px !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;

        padding: 0 !important;

        font-size: 15px !important;
        line-height: 22px !important;

        text-align: center !important;

        word-break: normal !important;
    }


    /* =====================================================
       SOCIAL ICONS
    ===================================================== */

    section.bg-gray-12 footer .order-1 .border-gray-13 {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;

        margin-top: 14px !important;
        margin-right: auto !important;
        margin-left: auto !important;

        padding: 0 !important;
    }


    section.bg-gray-12 footer .order-1 .border-gray-13 > div {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: auto !important;

        margin: 0 auto !important;
        padding: 0 !important;

        gap: 16px !important;

        flex-wrap: nowrap !important;
    }


    section.bg-gray-12 footer .social-transition {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        flex: 0 0 36px !important;

        width: 36px !important;
        min-width: 36px !important;

        height: 36px !important;
        min-height: 36px !important;

        margin: 0 !important;
        padding: 0 !important;

        border: 1px solid rgba(255,255,255,.16) !important;

        border-radius: 50% !important;
    }


    /* Remove empty area below socials */

    section.bg-gray-12 footer .order-1 > .mt-8 {
        display: none !important;
    }


    /* =====================================================
       USEFUL LINKS
       LEFT COLUMN
    ===================================================== */

    section.bg-gray-12 footer .order-2 {
        grid-column: 1 !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: left !important;

        justify-content: initial !important;
    }


    /* =====================================================
       CATEGORIES
       RIGHT COLUMN
    ===================================================== */

    section.bg-gray-12 footer .order-3 {
        grid-column: 2 !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: left !important;

        justify-content: initial !important;
    }


    /* =====================================================
       LISTS
    ===================================================== */

    section.bg-gray-12 footer ul {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        list-style: none !important;

        text-align: left !important;

        word-break: normal !important;
    }


    /* =====================================================
       SECTION HEADINGS
    ===================================================== */

    section.bg-gray-12 footer .order-2 ul > p,
    section.bg-gray-12 footer .order-3 ul > p,
    section.bg-gray-12 footer .order-4 > p {
        position: relative !important;

        display: block !important;

        width: fit-content !important;

        margin-top: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 17px !important;
        margin-left: 0 !important;

        padding: 0 0 9px !important;

        font-size: 15px !important;
        line-height: 20px !important;

        font-weight: 700 !important;

        text-align: left !important;

        word-break: normal !important;
    }


    /* Small underline */

    section.bg-gray-12 footer .order-2 ul > p::after,
    section.bg-gray-12 footer .order-3 ul > p::after,
    section.bg-gray-12 footer .order-4 > p::after {
        content: "";

        position: absolute;

        left: 0;
        bottom: 0;

        width: 28px;
        height: 2px;

        background: rgba(255,255,255,.65);

        border-radius: 10px;
    }


    /* =====================================================
       FOOTER LINKS
    ===================================================== */

    section.bg-gray-12 footer ul li {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 4px 0 !important;

        font-size: 12px !important;
        line-height: 18px !important;

        text-align: left !important;

        word-break: normal !important;
        overflow-wrap: normal !important;
    }


    section.bg-gray-12 footer ul li a {
        display: block !important;

        width: fit-content !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        text-decoration: none !important;

        word-break: normal !important;
    }


    /* =====================================================
       CONTACT US
       FULL WIDTH
    ===================================================== */

    section.bg-gray-12 footer .order-4 {
        grid-column: 1 / -1 !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: left !important;
    }


    /* Remove desktop margins */

    section.bg-gray-12 footer .order-4 .mt-25p,
    section.bg-gray-12 footer .order-4 .mt-5,
    section.bg-gray-12 footer .order-4 .mt-4 {
        margin-top: 0 !important;
        margin-bottom: 11px !important;
    }


    /* Contact rows */

    section.bg-gray-12 footer .order-4 a.flex {
        display: flex !important;

        align-items: flex-start !important;
        justify-content: flex-start !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        padding: 7px 0 !important;

        gap: 12px !important;

        text-align: left !important;
    }


    /* Contact icon wrapper */

    section.bg-gray-12 footer .order-4 a.flex > div {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        flex: 0 0 22px !important;

        width: 22px !important;
        min-width: 22px !important;

        height: 22px !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* Contact SVG */

    section.bg-gray-12 footer .order-4 svg {
        display: block !important;

        width: 18px !important;
        max-width: 18px !important;

        height: 18px !important;

        margin: 0 !important;
        padding: 0 !important;

        flex-shrink: 0 !important;
    }


    /* Address SVG has desktop width 42 */

    section.bg-gray-12 footer .order-4 svg[width="42"] {
        width: 18px !important;
        max-width: 18px !important;
    }


    /* Contact text */

    section.bg-gray-12 footer .order-4 span {
        display: block !important;

        flex: 1 1 auto !important;

        width: auto !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 12.5px !important;
        line-height: 19px !important;

        text-align: left !important;

        word-break: normal !important;
        overflow-wrap: break-word !important;
    }


    /* Address */

    section.bg-gray-12 footer .rtl-direction-space-location {
        max-width: 290px !important;

        white-space: normal !important;
    }


    /* =====================================================
       REMOVE DESKTOP BREAK-ALL
    ===================================================== */

    section.bg-gray-12 footer .break-all {
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    section.bg-gray-12.text-white footer {
        padding-top: 30px !important;
        padding-right: 18px !important;
        padding-bottom: 28px !important;
        padding-left: 18px !important;
    }


    section.bg-gray-12 footer > .flex {
        gap: 36px 20px !important;
    }


    section.bg-gray-12 footer .footer-logo-white {
        width: 150px !important;
        max-width: 150px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    section.bg-gray-12 footer .order-1 > div:first-child > p {
        max-width: 300px !important;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    section.bg-gray-12.text-white footer {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }


    section.bg-gray-12 footer > .flex {
        gap: 34px 16px !important;
    }


    section.bg-gray-12 footer .footer-logo-white {
        width: 140px !important;
        max-width: 140px !important;
    }


    section.bg-gray-12 footer ul li {
        font-size: 11.5px !important;
    }

}


/* BROWSE COLLECTION CSS */






/* BUY BUTTON CSS */

.buy-btn {
    background: #642B8F !important;
    color: #fff;
}


/*.process-goto {*/
/*    transform: translate(370px, 110px);*/
/*    background: #56296A !important;*/
/*    color: #fff !important;*/
/*    border-color: #56296A !important;*/
/*}*/

/* line 8425 — mobile override */
/*@media (max-width: 767px) {*/
/*    .process-goto {*/
/*        transform: translate(155px, 70px) !important;*/
/*        background: #56296A !important;*/
/*        color: #fff !important;*/
/*        border-color: #56296A !important;*/
/*    }*/
/*}*/








/* BROWSE COLLECTION CSS */


.af-section-subtitle::before {
    content: "──────── ✦" !important;

    width: auto !important;
    height: auto !important;

    background: none !important;

    color: #d89558 !important;

    font-size: 16px !important;
    font-weight: 400 !important;

    letter-spacing: 0 !important;
}

.af-section-subtitle::after {
    content: "✦ ────────" !important;

    color: #d89558 !important;

    font-size: 16px !important;
    font-weight: 400 !important;

    letter-spacing: 0 !important;
}





.af-section-header .red-btn {
    display: none !important;
}






/* NEW BROWSE COLLECTION CSS */

/* =========================================
   BROWSE COLLECTION - CENTER ALIGN
========================================= */

.af-section-header {
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
}


/* Heading + stars + lines */
.af-section-subtitle {
    width: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 8px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    text-align: center !important;

    font-size: 26px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;

    color: #31204a !important;
    text-transform: uppercase !important;
}


/* LEFT LINE + STAR */
.af-section-subtitle::before {
    content: "──────── ✦" !important;

    display: inline-block !important;

    width: auto !important;
    height: auto !important;

    background: none !important;

    color: #d89558 !important;

    font-size: 14px !important;
    font-weight: 400 !important;

    letter-spacing: 0 !important;
}


/* RIGHT STAR + LINE */
.af-section-subtitle::after {
    content: "✦ ────────" !important;

    display: inline-block !important;

    color: #d89558 !important;

    font-size: 14px !important;
    font-weight: 400 !important;

    letter-spacing: 0 !important;
}


/* Hide GO button */
.af-section-header .red-btn,
.af-section-header > a {
    display: none !important;
}


/* MOBILE */
@media (max-width: 767px) {

    .af-section-subtitle {
        gap: 5px !important;

        font-size: 17px !important;
        letter-spacing: 1px !important;

        white-space: nowrap !important;
    }

    .af-section-subtitle::before {
        content: "─── ✦" !important;
        font-size: 10px !important;
    }

    .af-section-subtitle::after {
        content: "✦ ───" !important;
        font-size: 10px !important;
    }
}







/* HEADER ICON CSS  */

/* =========================================
   HEADER ACCOUNT / WISHLIST / CART ALIGNMENT
   ========================================= */

@media (min-width: 768px) {

    /* ACCOUNT */
    .open-login-modal {
        margin-top: 0 !important;
        width: 70px;
    }

    /* WISHLIST */
    a[href*="/myaccount/wishlists"] {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        width: 70px;
    }

    /* CART */
    #testing {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        width: 70px;
    }


    /* SAME ICON BOX FOR ALL 3 */
    .open-login-modal > svg,
    a[href*="/myaccount/wishlists"] [slot="icon"] > .flex,
    #testing button [slot="icon"] > .flex {
        width: 48px !important;
        height: 48px !important;
        margin: 0 auto !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }


    /* ACCOUNT SVG */
    .open-login-modal > svg {
        width: 32px !important;
        height: 32px !important;
    }

    /* WISHLIST + CART SVG */
    a[href*="/myaccount/wishlists"] svg,
    #testing button [slot="icon"] svg {
        width: 40px !important;
        height: 40px !important;
    }


    /* ALL LABELS */
    .open-login-modal > p,
    a[href*="/myaccount/wishlists"] p,
    #testing button [slot="icon"] > p {
        margin-top: 2px !important;
        line-height: 16px !important;
        height: 16px !important;
        white-space: nowrap;
    }


    /* CART BUTTON */
    #testing button {
        width: 70px !important;
    }
}

@media (min-width: 768px) {

    /* Same item width */
    .open-login-modal,
    a[href*="/myaccount/wishlists"],
    #testing button {
        width: 72px !important;
    }

    /* ACCOUNT — currently too big */
    .open-login-modal > svg {
        width: 29px !important;
        height: 29px !important;
    }

    /* WISHLIST */
    a[href*="/myaccount/wishlists"] svg {
        width: 36px !important;
        height: 36px !important;
    }

    /* CART — needs slightly bigger */
    #testing button [slot="icon"] svg {
        width: 38px !important;
        height: 38px !important;
    }

    /* Make every label sit at SAME Y position */
    .open-login-modal,
    a[href*="/myaccount/wishlists"] [slot="icon"],
    #testing button [slot="icon"] {
        position: relative !important;
        height: 58px !important;
    }

    .open-login-modal > p,
    a[href*="/myaccount/wishlists"] p,
    #testing button [slot="icon"] > p {
        position: absolute !important;
        top: 43px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;

        margin: 0 !important;
        width: max-content !important;
        line-height: 15px !important;
        white-space: nowrap !important;
    }
}



/* Showing dropdown - purple hover */
.show-list .Showing:hover,
.show-list .Showing:hover a {
    background-color: #541568 !important;
    color: #fff !important;
}

/* Selected option */
.show-list .Showing.primary-bg-color,
.show-list .Showing.primary-bg-color a {
    background-color: #541568 !important;
    color: #fff !important;
}










/* CSS FOR ACCOUNT PAGE  */

/* =====================================================
   BOXTALES / WRAPINGERS - MY ACCOUNT REDESIGN
   ===================================================== */

@media (min-width: 768px) {

    /* Overall account content */
    .layout-wrapper {
        max-width: 1180px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .layout-wrapper > .flex.justify-start {
        gap: 90px !important;
        align-items: flex-start !important;
    }


    /* =========================
       SIDEBAR
       ========================= */

    #sidenavbar {
        width: 260px !important;
        flex: 0 0 260px !important;
        padding: 14px !important;

        background: #fff !important;
        border: 1px solid #eee7f0 !important;
        border-radius: 14px !important;

        box-shadow:
            0 4px 12px rgba(84, 21, 104, 0.04),
            0 12px 30px rgba(0, 0, 0, 0.04) !important;
    }

    #sidenavbar ul {
        margin-top: 0 !important;
        padding: 0 !important;
    }

    #sidenavbar ul li {
        margin-bottom: 4px !important;
    }

    #sidenavbar ul li a {
        min-height: 46px !important;

        padding: 0 15px !important;
        gap: 13px !important;

        border-radius: 9px !important;

        font-size: 14px !important;
        font-weight: 500 !important;

        transition:
            background-color .2s ease,
            color .2s ease,
            transform .2s ease !important;
    }


    /* Sidebar icons */
    #sidenavbar ul li a i {
        width: 20px !important;
        text-align: center !important;
        font-size: 15px !important;
        color: #898989 !important;
        transition: color .2s ease !important;
    }


    /* Normal item hover */
    #sidenavbar ul li a:hover {
        background: #faf5fb !important;
        color: #541568 !important;
        transform: translateX(2px);
    }

    #sidenavbar ul li a:hover i {
        color: #541568 !important;
    }


    /* REMOVE YELLOW ACTIVE STATE */
    #sidenavbar ul li a.bg-yellow-300 {
        background: linear-gradient(
            135deg,
            #541568 0%,
            #722b89 100%
        ) !important;

        color: #fff !important;

        box-shadow: 0 5px 14px rgba(84, 21, 104, .18) !important;
    }

    #sidenavbar ul li a.bg-yellow-300 i {
        color: #fff !important;
    }


    /* Logout separation */
    #sidenavbar ul li:last-child {
        margin-top: 12px !important;
        padding-top: 12px !important;
        border-top: 1px solid #eee !important;
    }

    #sidenavbar ul li:last-child a:hover {
        background: #f6eef9 !important;
        color: #541568 !important;
    }

    #sidenavbar ul li:last-child a:hover i {
        color: #541568 !important;
    }



    /* =========================
       MAIN ORDER AREA
       ========================= */

    #customer_orders {
        width: auto !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    #customer_orders > section {
        background: #fff !important;

        border: 1px solid #eee7f0 !important;
        border-radius: 14px !important;

        padding: 24px !important;

        box-shadow:
            0 4px 12px rgba(84, 21, 104, .035),
            0 12px 30px rgba(0, 0, 0, .035) !important;
    }


    /* Order History heading */
    #customer_orders > section > p {
        margin: 0 0 20px !important;

        font-size: 22px !important;
        line-height: 1.2 !important;
        font-weight: 600 !important;

        color: #2c2c2c !important;
    }

    #customer_orders > section > p::after {
        content: "";
        display: block;

        width: 42px;
        height: 3px;

        margin-top: 9px;

        border-radius: 20px;
        background: #541568;
    }



    /* =========================
       ORDER TABLE
       ========================= */

    #customer_orders .customer-table {
        margin-top: 0 !important;

        border-collapse: separate !important;
        border-spacing: 0 8px !important;

        background: transparent !important;
    }


    /* Table heading */
    #customer_orders .customer-table thead tr {
        border: none !important;
    }

    #customer_orders .customer-table thead th {
        padding: 11px 14px !important;

        background: #faf7fb !important;

        border-top: 1px solid #eee7f0 !important;
        border-bottom: 1px solid #eee7f0 !important;

        color: #6f6872 !important;

        font-size: 12px !important;
        font-weight: 600 !important;

        text-transform: uppercase;
        letter-spacing: .03em;
    }

    #customer_orders .customer-table thead th:first-child {
        border-left: 1px solid #eee7f0 !important;
        border-radius: 8px 0 0 8px !important;
    }

    #customer_orders .customer-table thead th:last-child {
        border-right: 1px solid #eee7f0 !important;
        border-radius: 0 8px 8px 0 !important;
    }


    /* Order rows */
    #customer_orders .customer-table tbody tr {
        background: #fff !important;

        box-shadow: 0 2px 10px rgba(0, 0, 0, .035);

        transition:
            transform .2s ease,
            box-shadow .2s ease !important;
    }

    #customer_orders .customer-table tbody tr:hover {
        transform: translateY(-1px);

        box-shadow:
            0 5px 18px rgba(84, 21, 104, .08) !important;
    }

    #customer_orders .customer-table tbody td {
        padding: 15px 14px !important;

        border-top: 1px solid #f0edf1 !important;
        border-bottom: 1px solid #f0edf1 !important;

        font-size: 13px !important;
    }

    #customer_orders .customer-table tbody td:first-child {
        border-left: 1px solid #f0edf1 !important;
        border-radius: 9px 0 0 9px;
    }

    #customer_orders .customer-table tbody td:last-child {
        border-right: 1px solid #f0edf1 !important;
        border-radius: 0 9px 9px 0;
    }


    /* Invoice */
    #customer_orders .customer-table tbody td:first-child a > span {
        color: #541568 !important;
        font-weight: 600 !important;
    }


    /* Paid badge */
    #customer_orders .customer-table .bg-green-5 {
        margin-left: 10px !important;

        padding: 4px 8px !important;
        height: auto !important;

        border-radius: 20px !important;

        background: #e9f8ee !important;
        color: #249c4b !important;

        font-size: 10px !important;
        font-weight: 600 !important;
    }


    /* Processing */
    #customer_orders tbody td:nth-child(5) span {
        padding: 5px 11px !important;

        background: #f3eaf6 !important;
        color: #6a267e !important;

        border-radius: 20px !important;

        font-weight: 600 !important;
    }


    /* View button */
    #customer_orders tbody td:last-child a {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        padding: 7px 15px !important;

        background: #541568 !important;
        color: #fff !important;

        border-radius: 7px !important;

        font-size: 11px !important;
        font-weight: 600 !important;

        transition:
            background .2s ease,
            transform .2s ease,
            box-shadow .2s ease !important;
    }

    #customer_orders tbody td:last-child a:hover {
        background: #6d2583 !important;

        transform: translateY(-1px);

        box-shadow: 0 4px 10px rgba(84, 21, 104, .20) !important;
    }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {

    #customer_orders > section {
        background: #fff;
        border: 1px solid #eee7f0;
        border-radius: 12px;

        padding: 16px;
    }

    #customer_orders > section > p {
        font-size: 20px !important;
        font-weight: 600 !important;
        margin-bottom: 15px;
    }

    .collapse-icon {
        border-color: #541568 !important;
        color: #541568 !important;
        border-radius: 8px !important;
    }

    .customer-table {
        min-width: 750px;
    }
}





/* =========================================================
   WISHLIST PAGE - DESKTOP + MOBILE
========================================================= */

#customer_wishlists {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 35px 24px 60px !important;
}

/* Wishlist heading */
#customer_wishlists section:first-child p {
    font-size: 30px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    color: #21153f !important;
    margin-bottom: 25px !important;
}


/* =========================================================
   GRID
========================================================= */

#customer_wishlists .grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch !important;
}


/* =========================================================
   CARD
========================================================= */

#customer_wishlists .swiper-slide {
    width: 100% !important;
    height: auto !important;
    display: flex !important;
}

#customer_wishlists .product-card {
    width: 100% !important;
    height: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    background: #fff !important;
    border: 1px solid #f0e8e5 !important;
    border-radius: 20px !important;
    overflow: hidden !important;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;

    transition: transform .25s ease, box-shadow .25s ease !important;
}

#customer_wishlists .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10) !important;
}


/* =========================================================
   IMAGE
========================================================= */

#customer_wishlists .product-image-wrapper {
    position: relative !important;

    width: 100% !important;
    height: 280px !important;

    overflow: hidden !important;
    background: #f7f7f7 !important;
}

#customer_wishlists .product-image-wrapper > a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

#customer_wishlists .product-image {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    transition: transform .35s ease !important;
}

#customer_wishlists .product-card:hover .product-image {
    transform: scale(1.04);
}


/* =========================================================
   DISCOUNT BADGE
========================================================= */

#customer_wishlists .product-badges {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    z-index: 5 !important;
}

#customer_wishlists .offer-badge {
    display: inline-flex !important;
    align-items: center !important;

    padding: 7px 12px !important;

    background: #21153f !important;
    color: #fff !important;

    border-radius: 30px !important;

    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
}


/* =========================================================
   ACTION ICONS
========================================================= */

#customer_wishlists .product-actions {
    position: absolute !important;

    top: 14px !important;
    right: 14px !important;

    z-index: 6 !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

#customer_wishlists .product-actions .action-btn {
    width: 38px !important;
    height: 38px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;

    border: none !important;
    border-radius: 50% !important;

    background: #fff !important;
    color: #5a1b72 !important;

    font-size: 16px !important;

    box-shadow: 0 4px 14px rgba(0,0,0,.12) !important;

    cursor: pointer !important;
}


/* =========================================================
   CONTENT
========================================================= */

#customer_wishlists .product-content {
    flex: 1 !important;

    display: flex !important;
    flex-direction: column !important;

    padding: 20px !important;
}


/* CATEGORY */

#customer_wishlists .product-category {
    min-height: 20px !important;

    margin-bottom: 8px !important;

    font-size: 12px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;

    color: #777 !important;

    text-transform: uppercase !important;
}


/* PRODUCT LINK */

#customer_wishlists .product-content > a {
    text-decoration: none !important;
}


/* TITLE */

#customer_wishlists .product-title {
    margin: 0 0 10px !important;

    min-height: 54px !important;

    font-size: 18px !important;
    line-height: 1.5 !important;
    font-weight: 700 !important;

    color: #111827 !important;

    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;

    overflow: hidden !important;
}


/* =========================================================
   RATING
========================================================= */

#customer_wishlists .product-rating {
    min-height: 24px !important;
    margin-bottom: 8px !important;

    font-size: 14px !important;
    color: #f5a623 !important;
}

#customer_wishlists .product-rating span {
    color: #999 !important;
    font-size: 12px !important;
}


/* =========================================================
   PRICE
========================================================= */

#customer_wishlists .product-bottom {
    margin-top: auto !important;
    margin-bottom: 12px !important;
}

#customer_wishlists .product-price {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 7px !important;
}

#customer_wishlists .new-price {
    font-size: 21px !important;
    line-height: 1 !important;
    font-weight: 700 !important;

    color: #111827 !important;
}

#customer_wishlists .old-price {
    font-size: 14px !important;

    color: #999 !important;

    text-decoration: line-through !important;
}


/* =========================================================
   BUY NOW
========================================================= */

#customer_wishlists .buy-now {
    width: fit-content !important;

    margin: 0 !important;
    padding: 11px 18px !important;

    border: none !important;
    border-radius: 12px !important;

    background: #5a1b72 !important;
    color: #fff !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;

    cursor: pointer !important;

    transition: .25s ease !important;
}

#customer_wishlists .buy-now:hover {
    background: #421256 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    #customer_wishlists {
        padding: 25px 18px 50px !important;
    }

    #customer_wishlists .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }

    #customer_wishlists .product-image-wrapper {
        height: 240px !important;
    }
}





/* =========================================================
   MOBILE ACCOUNT PAGE FIX
   Sidebar + Wishlist Width + Purple Active Menu
========================================================= */

@media (max-width: 767px) {

    /* -----------------------------------------
       1. ACCOUNT SIDEBAR
       Mobile mein sidebar ko content space
       occupy nahi karne dena
    ----------------------------------------- */

    #sidenavbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;

        width: 260px !important;
        max-width: 85vw !important;
        height: 100vh !important;

        z-index: 99999 !important;

        background: #fff !important;

        flex: none !important;
    }


    /* -----------------------------------------
       2. PARENT LAYOUT
    ----------------------------------------- */

    .layout-wrapper {
        width: 100% !important;
        max-width: 73% !important;

        padding-left: 0px !important;
        padding-right: 11px !important;

        box-sizing: border-box !important;
    }


    .layout-wrapper > .flex {
        width: 100% !important;
        max-width: 100% !important;

        display: block !important;

        gap: 0 !important;
    }


    /* -----------------------------------------
       3. WISHLIST MAIN
    ----------------------------------------- */

    main#customer_wishlists {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;

        flex: none !important;

        margin: 0 !important;
        padding: 20px 0 40px !important;

        box-sizing: border-box !important;
    }


    #customer_wishlists section {
        width: 100% !important;
        max-width: 100% !important;
    }


    /* -----------------------------------------
       4. PRODUCTS WRAPPER
    ----------------------------------------- */

    #customer_wishlists .md\:col-span-5,
    #customer_wishlists .lg\:col-span-4 {
        width: 100% !important;
        max-width: 100% !important;

        padding: 0 !important;
        margin: 0 !important;
    }


    /* -----------------------------------------
       5. ONE PRODUCT PER ROW
    ----------------------------------------- */

    #customer_wishlists .grid {
        display: grid !important;

        grid-template-columns: minmax(0, 1fr) !important;

        width: 100% !important;
        max-width: 100% !important;

        gap: 22px !important;

        padding: 0 !important;
        margin-top: 15px !important;
    }


    #customer_wishlists .swiper-slide {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        height: auto !important;

        margin: 0 !important;
    }


    /* -----------------------------------------
       6. PRODUCT CARD FULL WIDTH
    ----------------------------------------- */

    #customer_wishlists .product-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;

        box-sizing: border-box !important;
    }


    /* IMAGE */

    #customer_wishlists .product-image-wrapper {
        width: 100% !important;

        height: 300px !important;

        overflow: hidden !important;
    }


    #customer_wishlists .product-image-wrapper > a {
        display: block !important;

        width: 100% !important;
        height: 100% !important;
    }


    #customer_wishlists .product-image {
        display: block !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
    }


    /* CONTENT */

    #customer_wishlists .product-content {
        width: 100% !important;

        padding: 18px !important;

        box-sizing: border-box !important;
    }
}


/* =========================================================
   FORCE ACCOUNT ACTIVE MENU PURPLE
========================================================= */

/* Tailwind yellow background override */

#sidenavbar .bg-yellow-300 {
    background-color: #541568 !important;
    color: #ffffff !important;
}


/* Wishlist active item specifically */

#sidenavbar a.bg-yellow-300 {
    background: #541568 !important;
    color: #ffffff !important;
}


/* Icon + text white */

#sidenavbar a.bg-yellow-300 span,
#sidenavbar a.bg-yellow-300 i,
#sidenavbar a.bg-yellow-300 svg {
    color: #ffffff !important;
}


/* Hover also purple instead of yellow */

#sidenavbar a:hover {
    background-color: #6b238b !important;
    color: #ffffff !important;
}






/* WISHLIST ACTIVE URL ISSUE CSS*/

/* =========================================
   SIDEBAR ACTIVE MENU FIX
========================================= */

/* Every sidebar link should occupy full width */
#sidenavbar ul li {
    width: 100% !important;
}

#sidenavbar ul li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    width: 100% !important;
    max-width: 100% !important;

    padding: 14px 20px !important;
    gap: 14px !important;

    box-sizing: border-box !important;

    white-space: nowrap !important;
    overflow: visible !important;

    border-radius: 8px !important;
}


/* ACTIVE / YELLOW TAILWIND ITEM */
#sidenavbar ul li > a.bg-yellow-300 {
    width: 100% !important;

    background: #541568 !important;
    color: #fff !important;

    padding: 14px 20px !important;

    overflow: visible !important;
}


/* Active text */
#sidenavbar ul li > a.bg-yellow-300 span {
    display: inline-block !important;

    width: auto !important;
    max-width: none !important;

    color: #fff !important;

    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: unset !important;
}


/* Active icon */
#sidenavbar ul li > a.bg-yellow-300 i,
#sidenavbar ul li > a.bg-yellow-300 svg {
    color: #fff !important;
    flex-shrink: 0 !important;
}


/* Normal hover */
#sidenavbar ul li > a:not(.bg-yellow-300):hover {
    background: #f6eef9 !important;
    color: #541568 !important;
}


/* Keep ACTIVE purple even on hover */
#sidenavbar ul li > a.bg-yellow-300:hover {
    background: #541568 !important;
    color: #fff !important;
}




















/* =========================================
   PRODUCT SELLER / PRODUCT TAB
   ========================================= */

@media (min-width: 768px) {
    .product-tab .c-tab__content .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 24px !important;
    }
}

@media (min-width: 992px) {
    .product-tab .c-tab__content .grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 24px !important;
    }
}

/* PRODUCT CARD */
.product-tab .product-card {
    background: #fff !important;
    border: none !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;
    transition: transform .25s ease, box-shadow .25s ease !important;

    /* Important */
    display: flex !important;
    flex-direction: column !important;
}

.product-tab .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10) !important;
}


/* =========================================
   SQUARE PRODUCT IMAGE
   ========================================= */

.product-tab .product-image-wrapper {
    position: relative !important;
    width: 100% !important;

    /* Makes image area square */
    aspect-ratio: 1 / 1 !important;

    background: #f7f7f7 !important;
    border-radius: 20px 20px 0 0 !important;
    overflow: hidden !important;
}

.product-tab .product-image {
    width: 100% !important;
    height: 100% !important;

    /* Fill square without distortion */
    object-fit: cover !important;
    object-position: center !important;

    display: block !important;
    transition: transform .35s ease !important;
}

.product-tab .product-card:hover .product-image {
    transform: scale(1.04);
}


/* =========================================
   BADGES
   ========================================= */

.product-tab .product-badges {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    z-index: 5 !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.product-tab .product-badge {
    display: inline-flex !important;
    align-items: center !important;

    padding: 7px 12px !important;
    border-radius: 30px !important;

    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: .02em !important;

    color: #fff !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.product-tab .offer-badge {
    background: #21153f !important;
}

.product-tab .new-badge {
    background: #642B8F !important;
}

.product-tab .featured-badge {
    background: #a68a5b !important;
}

.product-tab .danger-badge {
    background: #b91c1c !important;
}


/* =========================================
   ACTION BUTTONS
   ========================================= */

.product-tab .product-actions {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    z-index: 6 !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

@media screen and (max-width: 767px) {

    .product-tab .product-actions {
        position: absolute !important;
        top: 80px !important;
        right: 20px !important;
        z-index: 6 !important;

        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;

        width: auto !important;
        height: auto !important;
    }

}


.product-tab .action-btn {
    width: 38px !important;
    height: 38px !important;

    border: none !important;
    border-radius: 50% !important;

    background: #fff !important;
    color: #5a1b72 !important;

    box-shadow: 0 4px 14px rgba(0, 0, 0, .12) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


/* =========================================
   PRODUCT CONTENT
   ========================================= */

.product-tab .product-content {
    padding: 22px 28px 24px !important;
}


/* CATEGORY */
.product-tab .product-category {
    margin: 0 0 8px !important;

    font-size: 12px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;

    color: #777 !important;
    text-transform: uppercase !important;
    letter-spacing: .03em !important;
}


/* TITLE */
.product-tab .product-title {
    margin: 0 !important;

    font-size: 22px !important;
    line-height: 1.45 !important;
    font-weight: 700 !important;

    color: #21153f !important;

    /* Keeps cards visually consistent */
    min-height: 64px !important;
}


/* =========================================
   PRICE + BUY BUTTON
   ========================================= */

.product-tab .product-bottom {
    padding: 20px 28px 24px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;
}

.product-tab .new-price {
    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    color: #21153f !important;
}

.product-tab .old-price {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #999 !important;
    text-decoration: line-through !important;
}


/* BUY NOW */
.product-tab .buy-now {
    background: #642B8F !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 11px 20px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background .25s ease, transform .2s ease !important;
}

.product-tab .buy-now:hover {
    background: #4f2374 !important;
    color: #fff !important;
    transform: translateY(-1px);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991px) {

    .product-tab .product-content {
        padding: 18px 22px 20px !important;
    }

    .product-tab .product-bottom {
        padding: 18px 22px 22px !important;
    }

    .product-tab .product-title {
        font-size: 18px !important;
        min-height: 52px !important;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .product-tab .product-content {
        padding: 16px 18px 18px !important;
    }

    .product-tab .product-bottom {
        padding: 16px 18px 20px !important;
    }

    .product-tab .product-title {
        font-size: 16px !important;
        line-height: 1.4 !important;
        min-height: auto !important;
    }

    .product-tab .new-price {
        font-size: 18px !important;
    }

    .product-tab .buy-now {
        padding: 10px 16px !important;
    }
}














/* JS-driven open state. Only controls visibility/interactivity —
   positioning (top/left/transform/width/height) is left entirely to
   the existing CSS rules and is never touched here. */
.warpingers-mega-parent.js-mega-open > .warpingers-mega-menu,
.warpingers-mega-parent.js-mega-open .warpingers-mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
























/* This was a bare, unconditional rule with no @media guard at all, so its
   `display: none !important;` won it the cascade against the earlier
   ".warpingers-header .header-menu-nav { display: flex !important; ... }"
   rule (later source order wins between two !important declarations of
   equal specificity), hiding the entire header-bottom nav menu on every
   screen size, desktop included. Scoping it to the mobile breakpoint
   restores desktop visibility while keeping mobile on its existing
   hamburger/sidenav navigation instead of this menu. */
@media (max-width: 767px) {
    .warpingers-header .header-menu-nav {

        display: none !important;
    }
}

















/* =========================================================
   WRAPINGERS — FINAL MOBILE HEADER
   Burger LEFT | Logo CENTER | User + Cart RIGHT
   CSS ONLY — MOBILE ONLY
========================================================= */

@media screen and (max-width: 767px) {

    /* =========================
       HEADER BAR
    ========================= */

    .warpingers-topbar {
        width: 100% !important;
        height: 64px !important;
        min-height: 64px !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 100000 !important;
       
    }

    .warpingers-topbar > .warpingers-topbar-inner {
        width: 100% !important;
        max-width: none !important;
        height: 64px !important;
        min-height: 64px !important;

        margin: 0 !important;
        padding: 0 !important;

        position: relative !important;
        display: block !important;
        box-sizing: border-box !important;
    }


    /* =========================
       INNER LAYOUT
    ========================= */

    .warpingers-topbar-inner > .layout-wrapper {
        width: 100% !important;
        max-width: none !important;
        height: 64px !important;
        min-height: 64px !important;

        margin: 0 !important;
        padding: 0 !important;

        position: relative !important;
        display: block !important;
        box-sizing: border-box !important;
    }


    /* =====================================================
       LEFT — BURGER
       ===================================================== */

    .warpingers-topbar-inner .burger {
        position: absolute !important;

        left: 18px !important;
        top: 50% !important;

        width: 32px !important;
        height: 32px !important;

        margin: 0 !important;
        padding: 0 !important;

        transform: translateY(-50%) !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        z-index: 100005 !important;
        cursor: pointer !important;
    }

    .warpingers-topbar-inner .burger svg {
        width: 30px !important;
        height: 30px !important;

        display: block !important;
    }

    .warpingers-topbar-inner .burger path {
        fill: #ffffff !important;
        stroke: #ffffff !important;
    }


    /* =====================================================
       CENTER — LOGO
       ===================================================== */

    /* #mobile-topbar-logo only matches the topbar's own logo instance (not
       the sidenav's, which reuses the same classes but a different image/
       id and stays governed by the shared rule below untouched). Sized
       slightly smaller than the shared rule, and nudged ~10px left of dead
       center via the transform below, so the hamburger + logo + full-size
       Account/Wishlist/Cart icons all fit one row without crowding or
       shrinking the icons. */
    .warpingers-topbar-inner
    #mobile-topbar-logo {

        position: absolute !important;

        left: 50% !important;
        top: 50% !important;

        width: 96px !important;
        max-width: 96px !important;

        height: auto !important;
        max-height: 42px !important;

        margin: 0 !important;
        padding: 0 !important;

        transform: translate(calc(-50% - 10px), -50%) !important;

        display: block !important;

        object-fit: contain !important;

        z-index: 100002 !important;
    }

    .warpingers-topbar-inner
    img.w-36.h-11.object-contain.neg-transition-scale {

        position: absolute !important;

        left: 50% !important;
        top: 50% !important;

        width: 120px !important;
        max-width: 120px !important;

        height: auto !important;
        max-height: 52px !important;

        margin: 0 !important;
        padding: 0 !important;

        transform: translate(-50%, -50%) !important;

        display: block !important;

        object-fit: contain !important;

        /* Was forcing the logo to render brightness(0)+invert (i.e. solid
           white), hiding the actual colorful brand mark on mobile. Removed
           so the real logo asset shows as-is; positioning/sizing above is
           unchanged. */

        z-index: 100002 !important;
    }


    /* Logo wrapper — don't let it control positioning */
    .warpingers-topbar-inner
    > .layout-wrapper
    > div:first-child
    > div.md\:hidden {

        position: static !important;

        width: auto !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        display: block !important;
    }


    /* =====================================================
       RIGHT SIDE — USER + CART
       ===================================================== */

    .warpingers-topbar-inner
    > .layout-wrapper
    > div:nth-child(2) {

        position: absolute !important;

        right: 18px !important;
        top: 50% !important;

        width: auto !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        transform: translateY(-50%) !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;

        z-index: 100005 !important;
    }


    /* Mobile icon wrapper */
    .warpingers-topbar-inner
    > .layout-wrapper
    > div:nth-child(2)
    > .md\:hidden {

        width: auto !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        display: block !important;
    }


    .warpingers-topbar-inner
    > .layout-wrapper
    > div:nth-child(2)
    > .md\:hidden
    > div {

        width: auto !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }


    /* =====================================================
       ICON LIST
       ===================================================== */

    .warpingers-topbar-inner
    > .layout-wrapper
    > div:nth-child(2)
    > .md\:hidden
    > div
    > ul {

        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;

        gap: 12px !important;

        margin: 0 !important;
        padding: 0 !important;

        list-style: none !important;
    }


    /* =====================================================
       USER / LOGIN ICON
       ===================================================== */

    .warpingers-topbar-inner
    .open-login-modal {

        width: 34px !important;
        height: 34px !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }


    /* Guest SVG. Excludes .header-top-icon: that class marks the icon
       reused from the desktop header's Account item, which is intentionally
       multi-colored (matches header.blade.php exactly) and must not be
       force-flattened to solid white like the old single-path guest icon
       this rule was originally written for. */
    .warpingers-topbar-inner
    .open-login-modal svg:not(.header-top-icon) {

        width: 30px !important;
        height: 30px !important;

        display: block !important;

        fill: none !important;
        stroke: #ffffff !important;
    }

    .warpingers-topbar-inner
    .open-login-modal svg:not(.header-top-icon) path {

        fill: #ffffff !important;
        stroke: #ffffff !important;
    }


    /* Logged-in avatar */
    .warpingers-topbar-inner
    img.h-9.w-9.rounded-full {

        width: 34px !important;
        height: 34px !important;

        margin: 0 !important;
        padding: 0 !important;

        object-fit: cover !important;

        filter: none !important;
    }


    /* =====================================================
       CART
       ===================================================== */

    .warpingers-topbar-inner #testing {

        position: relative !important;

        width: 34px !important;
        height: 34px !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }


    .warpingers-topbar-inner #testing svg {

        width: 30px !important;
        height: 30px !important;

        display: block !important;

        fill: none !important;
        stroke: #ffffff !important;
    }


    .warpingers-topbar-inner #testing svg path {

        fill: none !important;
        stroke: #ffffff !important;
    }


    /* Cart badge */
    .warpingers-topbar-inner
    #testing #totalCartItem {

        position: absolute !important;

        top: -5px !important;
        right: -7px !important;

        min-width: 17px !important;
        height: 17px !important;

        margin: 0 !important;
        padding: 0 4px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        z-index: 10 !important;

        transform: none !important;
    }


    /* Hide cart text */
    .warpingers-topbar-inner #testing p {
        display: none !important;
    }


    /* =====================================================
       WISHLIST — KEEP HIDDEN
       ===================================================== */

    .warpingers-topbar-inner
    > .layout-wrapper
    > div:nth-child(2)
    > .md\:hidden
    > div
    > ul
    > li:nth-child(2) {

        display: none !important;
    }


    /* =====================================================
       SIDEBAR
       ===================================================== */

    #sidenav {
        position: fixed !important;
        z-index: 999999 !important;
    }

    #overlay {
        position: fixed !important;
        z-index: 999998 !important;
    }

}





/* =========================================================
   MOBILE SIDEBAR — KEEP SIDEBAR LOGO AT TOP
========================================================= */

@media screen and (max-width: 767px) {

    /* Sidebar's own logo must stay in its original top position */
    #sidenav img.w-36.h-11.object-contain.neg-transition-scale {
        position: static !important;
        width: auto !important;
        max-width: 180px !important;
        height: auto !important;
        max-height: 75px !important;
        margin: 0 auto !important;
        transform: none !important;
        display: block !important;
    }

}

/* =========================================================
   MOBILE USER ICON — FINAL POSITION
========================================================= */

@media screen and (max-width: 767px) {

    .warpingers-topbar-inner
    > .layout-wrapper
    > div:nth-child(2)
    > .md\:hidden
    img.h-9.w-9.rounded-full {
        width: 34px !important;
        height: 34px !important;

        margin: 0 !important;
        position: static !important;

        object-fit: cover !important;
        filter: none !important;
    }

    /* Moves the whole circular background + photo together as one unit,
       instead of the rule above shifting only the <img> — the img sitting
       inside a wrapper that didn't move with it is what made the profile
       photo look detached/misaligned from its own bg-gray-100 circle.
       Vertical-only, ~5px down; size/colors of both elements are untouched. */
    .warpingers-topbar-inner
    > .layout-wrapper
    > div:nth-child(2)
    > .md\:hidden
    div.bg-gray-100.h-9.w-9.rounded-full {
        transform: translateY(5px) !important;
    }

}

/* =========================================================
   WRAPPINGERS BRAND CONSISTENCY PASS
   Canonical purple: #541568 (matches the illustrated account
   icons already used across desktop + mobile). Canonical gold
   accent: #d99a63 (already the most-used warm/gold tone in this
   file). Reused here rather than introducing new shades.
========================================================= */

/* ---------------------------------------------------------
   CART DRAWER — CHECKOUT BUTTON
   Was plain black (bg-gray-12, set in header.blade.php's
   Blade conditional, left untouched). Scoped to the drawer's
   own #checkout-display wrapper only.
--------------------------------------------------------- */
#checkout-display.bg-gray-12 {
    background: #541568 !important;
}

#checkout-display.bg-gray-12 a {
    color: #ffffff !important;
}

#checkout-display.bg-gray-12:hover {
    background: #6b238b !important;
}

/* ---------------------------------------------------------
   FOOTER — SOCIAL ICONS
   .primary-bg-hover (used in the markup) has no rule anywhere
   in this file, so hover previously did nothing beyond
   whatever the browser/theme default happened to be. This adds
   an explicit, on-brand hover instead of leaving it undefined.
--------------------------------------------------------- */
a.bg-gray-3.social-transition {
    width: 38px !important;
    height: 38px !important;
}

a.bg-gray-3.social-transition:hover {
    background: #d99a63 !important;
    transform: translateY(-2px);
}

.mt-5.border-gray-13.flex > .flex.gap-7 {
    gap: 14px !important;
}

/* ---------------------------------------------------------
   LOGIN / SIGN UP MODAL
   Scoped to #modal-main only, so nothing outside this specific
   modal is affected.
--------------------------------------------------------- */

/* Active tab underline + label */
#modal-main .c-tabs-nav.active-border {
    border-bottom: 2px solid #541568 !important;
}

#modal-main .login-active-border.active-border .login-active,
#modal-main .register-active-border.active-border .register-active {
    color: #541568 !important;
}

#modal-main .c-tab-nav-marker {
    background: #541568 !important;
}

/* Primary action buttons (Sign In / Create Account / OTP / etc.) */
#modal-main .bg-gray-12 {
    background: #541568 !important;
}

#modal-main .bg-gray-12.primary-bg-hover:hover {
    background: #6b238b !important;
    color: #ffffff !important;
}

/* Input focus state */
#modal-main input:focus {
    border-color: #541568 !important;
    outline: none !important;
    box-shadow: 0 0 0 1px rgba(84, 21, 104, 0.15) !important;
}


/* =========================================================
   MOBILE TOPBAR — WISHLIST / CART ICON VISIBILITY
   Despite thorough tracing (no selector in this file was found
   to explicitly target #mobile-wishlist-icon/#mobile-cart-icon
   or their common ancestors in a way that reproduces the
   reported symptom), the badges were rendering while the icon
   graphics were not — indicating some rule elsewhere in the
   cascade was suppressing the <svg> specifically (not its
   absolutely-positioned sibling badge, which doesn't depend on
   the icon's box). Rather than guess at removing an existing
   rule (risking an unrelated regression), these two icons were
   given unique IDs and are forced visible here with the highest
   practical, narrowly-scoped specificity, so they render
   correctly regardless of whatever the interfering rule turns
   out to be. Nothing else (badges, links, counts, positioning,
   desktop) is touched by this.
========================================================= */
@media screen and (max-width: 767px) {
    #mobile-wishlist-icon,
    #mobile-cart-icon {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
        width: 48px !important;
        height: 50px !important;
        color: initial !important;
    }

    #mobile-wishlist-icon path,
    #mobile-cart-icon path {
        visibility: visible !important;
        opacity: 1 !important;
    }
}







/* =========================================================
   WRAPINGERS - CUSTOMER REVIEWS + INSTAGRAM
   Mobile refinement
   ========================================================= */

.social-review-section {
    width: 100%;
    box-sizing: border-box;
}

.social-review-section *,
.social-review-section *::before,
.social-review-section *::after {
    box-sizing: border-box;
}

/* =========================
   REVIEW BOX
   ========================= */

.social-review-section .review-box {
    width: 100%;
}

.social-review-section .reviews {
    width: 100%;
}

.social-review-section .review-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
}

.social-review-section .review-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #f8edf9;
    border: 1px solid #e7cce9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #541568;
    margin: 0;
}

.social-review-section .review-icon svg {
    width: 21px;
    height: 21px;
    display: block;
}

.social-review-section .review-content {
    flex: 1;
    min-width: 0;
}

.social-review-section .stars {
    margin: 0 0 6px;
    color: #d99a63;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1px;
}

.social-review-section .review-item p {
    margin: 0 0 7px;
    font-size: 13px;
    line-height: 1.6;
    color: #333;
}

.social-review-section .review-item h4 {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #541568;
    font-weight: 600;
}

.social-review-section .dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
}

.social-review-section .dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d8d8d8;
    display: block;
}

.social-review-section .dots span.active {
    width: 9px;
    height: 9px;
    background: #541568;
}


/* =========================
   INSTAGRAM
   ========================= */

.social-review-section .instagram-box {
    width: 100%;
}

.social-review-section .instagram-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}

.social-review-section .instagram-images img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.social-review-section .instagram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: 8px;
    background: #541568;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
    text-align: center;
    transition: background .2s ease;
}

.social-review-section .instagram-btn:hover {
    background: #6b238b;
    color: #fff;
}

.social-review-section .instagram-btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}


/* =========================================================
   MOBILE ONLY
   ========================================================= */

@media screen and (max-width: 767px) {

    .social-review-section {
        width: 100% !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    /* Section headings */

    .social-review-section .section-title {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin-bottom: 16px;
    }

    .social-review-section .section-title span {
        flex: 1;
        max-width: 45px;
        height: 1px;
        background: #d99a63;
    }

    .social-review-section .section-title h2 {
        flex: 0 0 auto;
        margin: 0;
        font-size: 15px !important;
        line-height: 1.25;
        white-space: nowrap;
        text-align: center;
        color: #541568;
        letter-spacing: .4px;
    }


    /* =========================
       CUSTOMER REVIEW CARD
       ========================= */

    .social-review-section .review-box {
        width: 100% !important;
        padding: 18px 14px 16px !important;
        border-radius: 16px !important;
        overflow: hidden;
    }

    .social-review-section .reviews {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .social-review-section .review-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 13px 0 !important;
        margin: 0 !important;
    }

    .social-review-section .review-item:first-child {
        padding-top: 4px !important;
    }

    .social-review-section .review-item:not(:last-child) {
        border-bottom: 1px solid rgba(84, 21, 104, .10);
    }

    .social-review-section .review-icon {
        flex: 0 0 38px !important;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        margin: 1px 0 0 !important;
        border-radius: 50% !important;
        background: #f8edf9 !important;
        border: 1px solid #e7cce9 !important;
        color: #541568 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .social-review-section .review-icon svg {
        width: 19px !important;
        height: 19px !important;
        display: block !important;
    }

    .social-review-section .review-content {
        flex: 1 !important;
        min-width: 0 !important;
    }

    .social-review-section .stars {
        font-size: 12px !important;
        letter-spacing: .8px !important;
        margin-bottom: 6px !important;
    }

    .social-review-section .review-item p {
        font-size: 12.5px !important;
        line-height: 1.55 !important;
        margin-bottom: 6px !important;
    }

    .social-review-section .review-item h4 {
        font-size: 12px !important;
    }

    .social-review-section .dots {
        margin-top: 13px !important;
        display: none !important;
    }


    /* =========================
       INSTAGRAM CARD
       ========================= */

    .social-review-section .instagram-box {
        width: 100% !important;
        margin-top: 18px !important;
        padding: 18px 14px 16px !important;
        border-radius: 16px !important;
        overflow: hidden;
    }

    .social-review-section .instagram-images {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px !important;
    }

    .social-review-section .instagram-images img {
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
        object-fit: cover !important;
        border-radius: 9px !important;
    }

    .social-review-section .instagram-btn {
        min-height: 42px !important;
        margin-top: 12px !important;
        padding: 9px 12px !important;
        font-size: 11.5px !important;
        border-radius: 8px !important;
    }
}


/* =========================
   VERY SMALL PHONES
   ========================= */

@media screen and (max-width: 360px) {

    .social-review-section {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .social-review-section .review-box,
    .social-review-section .instagram-box {
        padding-left: 11px !important;
        padding-right: 11px !important;
    }

    .social-review-section .section-title h2 {
        font-size: 13px !important;
    }

    .social-review-section .section-title span {
        max-width: 30px;
    }

    .social-review-section .review-item {
        gap: 10px !important;
    }
}



/* =========================================================
   CUSTOMER REVIEWS - ICON ABOVE STARS
   ========================================================= */

@media screen and (min-width: 768px) {

    .social-review-section .review-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0 !important;
        padding: 0 24px !important;
    }

    .social-review-section .review-icon {
        width: 54px !important;
        height: 54px !important;
        min-width: 54px !important;
        margin: 0 auto 12px !important;
        flex: 0 0 auto !important;
    }

    .social-review-section .review-content {
        width: 100% !important;
        text-align: center !important;
    }

    .social-review-section .stars {
        margin: 0 0 9px !important;
        text-align: center !important;
    }

    .social-review-section .review-item p {
        text-align: center !important;
    }

    .social-review-section .review-item h4 {
        text-align: center !important;
    }
}



/* =========================================================
   INSTAGRAM GRID - DESKTOP 4 SIDE BY SIDE
   ========================================================= */

@media screen and (min-width: 768px) {

    .social-review-section .instagram-images {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .social-review-section .instagram-images img {
        width: 100% !important;
        height: 180px !important;
        aspect-ratio: auto !important;
        object-fit: cover !important;
        display: block !important;
        border-radius: 10px !important;
    }

}


/* =========================================================
   INSTAGRAM GRID - MOBILE 2 x 2
   ========================================================= */

@media screen and (max-width: 767px) {

    .social-review-section .instagram-images {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px !important;
    }

    .social-review-section .instagram-images img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        object-fit: cover !important;
        border-radius: 9px !important;
    }

}




.swal2-html-container a.bg-gray-12 {
    background-color: #541568 !important;
}



/*QUANTITY HIDE FOR END USER*/
#stock_qtyV {
    display: none !important;
}



@media screen and (max-width: 767px) {

    /* MOBILE HEADER — OFF WHITE */
    .warpingers-topbar {
        background: #FFF9F5 !important;
    }

    /* MOBILE BURGER — PURPLE */
    .warpingers-topbar-inner .burger path {
        fill: #7C3AED !important;
        stroke: #7C3AED !important;
    }

}


/*BUILD A BOX CARDS MOBILE CSS*/

/* Greeting cards — 2 cards per row on mobile */
@media screen and (max-width: 767px) {
    #step-3 .grid.grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    #step-3 .greeting-card-option {
        width: 100% !important;
    }

    #step-3 .greeting-card-option .p-4 {
        padding: 10px !important;
    }

    #step-3 .greeting-card-option .p-4 span:first-child {
        font-size: 12px !important;
        line-height: 1.3 !important;
    }
}


/*CATEGORY HOME PAGE MOBILE CSS */

@media (max-width: 767px) {

    .ps-cat-section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        overflow: hidden !important;
    }

    .ps-cat-section-header {
        width: 100% !important;
        margin-bottom: 10px !important;
    }

    .ps-cat-section-header h2 {
        font-size: 12px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .ps-cat-view-all {
        display: none !important;
    }

    .ps-cat-slider-wrapper {
        width: 100% !important;
        overflow: hidden !important;
        padding-top: 8px !important;
    }

    .ps-cat-swiper {
        width: 100% !important;
        overflow: hidden !important;
    }

    /*
     * IMPORTANT:
     * Don't specify slide width.
     * Let Swiper calculate it.
     */

    .ps-cat-swiper .swiper-slide {
        box-sizing: border-box !important;
        flex-shrink: 0 !important;
    }

    .ps-cat-card {
        width: 100% !important;
        height: 300px !important;
        position: relative !important;
        overflow: visible !important;
    }

    .ps-cat-image-wrapper {
        width: 100% !important;
        height: 180px !important;
        min-height: 180px !important;
        overflow: hidden !important;
        border-radius: 25px 25px 0 0 !important;
    }

    .ps-cat-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .ps-cat-icon {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        min-height: 56px !important;

        position: absolute !important;
        top: 152px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        border-radius: 50% !important;
        background: #fff !important;

        z-index: 10 !important;
    }

    .ps-cat-icon svg {
        width: 23px !important;
        height: 23px !important;
    }

    .ps-cat-content {
        width: 100% !important;
        padding: 32px 4px 0 !important;
        text-align: center !important;
        overflow: hidden !important;
    }

    .ps-cat-title {
        width: 100% !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
        text-align: center !important;

        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 3 !important;

        overflow: hidden !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
    }

    .ps-cat-subtitle {
        width: 100% !important;
        margin-top: 5px !important;

        font-size: 12px !important;
        line-height: 1.3 !important;
        text-align: center !important;

        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}

@media (max-width: 767px) {

    .ps-cat-card-link {
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .ps-cat-card {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        padding: 0 !important;
        margin: 0 !important;

        /* only enough height for image + icon + text */
        padding-bottom: 12px !important;

        box-sizing: border-box !important;
    }

    .ps-cat-content {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        padding-top: 34px !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .ps-cat-title {
        margin-bottom: 0 !important;
    }

    .ps-cat-subtitle {
        margin-bottom: 0 !important;
    }

    .ps-cat-swiper .swiper-slide {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }
}