 /* ==========================================================================
     SECTION 1 STYLES (Prefix: s1-)
     ========================================================================== */
  .s1-top-bar {
    background-color: #cbbba4;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 8px 0;
  }
  .s1-top-bar i {
    font-size: 13px;
  }

  .s1-brand-logo {
    font-family: 'Marcellus', serif;
    font-size: 32px;
    letter-spacing: 4px;
    color: #b58150;
    text-decoration: none;
  }

  .s1-nav-link {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #333 !important;
    text-transform: uppercase;
    padding: 8px 16px !important;
  }
  .s1-nav-link:hover {
    color: #b58150 !important;
  }

  .s1-search-input {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding-left: 0;
    font-size: 13px;
    width: 140px;
  }
  .s1-search-input:focus {
    box-shadow: none;
    border-color: #b58150;
  }

  .s1-icon-link {
    color: #333;
    font-size: 18px;
    text-decoration: none;
  }
  .s1-cart-badge {
    font-size: 12px;
    font-weight: 500;
    margin-left: 2px;
  }

  .s1-hero-slide {
    min-height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
  }
  .s1-bg-1 {
    background-image: url('../images/slider-01.png');
  }
  .s1-bg-2 {
    background-image: url('../images/slider-01.png');
  }

  .s1-hero-heading {
    font-family: 'Marcellus', serif;
    font-size: 42px;
    letter-spacing: 2px;
    color: #111;
    text-transform: uppercase;
  }

  .s1-hero-subtext {
    color: #777;
    font-size: 15px;
    font-weight: 300;
    max-width: 380px;
    line-height: 1.6;
  }

  .s1-btn-discover {
    border: 1px solid #000;
    border-radius: 0;
    padding: 10px 36px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    background: transparent;
    transition: all 0.3s ease;
  }
  .s1-btn-discover:hover {
    background: #000;
    color: #fff;
  }

  .s1-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #777;
    background-color: transparent;
    opacity: 0.7;
    margin: 0 5px;
  }
  .s1-indicators .active {
    background-color: #333;
    border-color: #333;
    opacity: 1;
  }

  .s1-floating-toolbar {
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .s1-widget-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-decoration: none;
  }
  .s1-widget-btn.s1-red {
    background: #ff3b5c;
    color: #fff;
  }

  /* ==========================================================================
     SECTION 2 STYLES (Prefix: s2-)
     ========================================================================== */
  .s2-promo-wrapper {
    padding: 3rem 0;
  }

  .s2-card {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    padding: 35px;
    overflow: visible;
  }

  /* Separate Background ../images for Each Card */
  .s2-card-moisturizer {
    background-image: url('../images/banner-image-1.jpg');
  }

  .s2-card-conditioner {
    background-image: url('../images/banner-image-2.jpg');
  }

  .s2-corner-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 85px;
    height: 85px;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
  }

  .s2-content-box {
    position: relative;
    z-index: 2;
    max-width: 55%;
  }

  .s2-heading {
    font-family: 'Marcellus', serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .s2-subtext {
    font-size: 13px;
    color: #666;
    font-weight: 300;
    margin-bottom: 22px;
  }

  .s2-discover-btn {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid #111;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
    display: inline-block;
  }

  .s2-discover-btn:hover {
    color: #b58150;
    border-color: #b58150;
  }

  .s2-product-img {
    position: absolute;
    right: 6%;
    bottom: -22px;
    width: 175px;
    height: 175px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    z-index: 3;
    transition: transform 0.3s ease;
  }

  .s2-card:hover .s2-product-img {
    transform: translateY(-5px);
  }

  /* Responsive Rules */
  @media (max-width: 991px) {
    .s2-content-box { max-width: 60%; }
    .s2-product-img { width: 140px; height: 140px; right: 4%; bottom: -15px; }
  }

  @media (max-width: 575px) {
    .s2-card { padding: 25px 20px; min-height: 230px; }
    .s2-heading { font-size: 18px; }
    .s2-product-img { width: 110px; height: 110px; bottom: -10px; }
  }
  
  
  .s3-wrapper {
    padding: 4rem 0;
    background-color: #ffffff;
  }

  .s3-title {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: #111111;
    text-transform: uppercase;
  }

  .s3-subtitle {
    font-size: 13px;
    color: #777777;
    font-weight: 300;
  }

  /* Product Card Container */
  .s3-product-card {
    position: relative;
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease;
  }

  /* Image Box with Fixed Height and Hover Trigger */
  .s3-img-box {
    position: relative;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
  }

  .s3-product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
  }

  .s3-product-card:hover .s3-product-img {
    transform: scale(1.05);
  }

  /* Heart Wishlist Icon */
  .s3-wishlist-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #888888;
    font-size: 16px;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease, color 0.3s ease;
    z-index: 2;
  }

  .s3-wishlist-btn:hover {
    color: #b58150;
  }

  .s3-product-card:hover .s3-wishlist-btn {
    opacity: 1;
  }

  /* Add to Cart Hover Button */
  .s3-add-cart-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid #111111;
    padding-bottom: 3px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
  }

  .s3-add-cart-btn:hover {
    color: #b58150;
    border-color: #b58150;
  }

  .s3-product-card:hover .s3-add-cart-btn {
    opacity: 1;
  }

  /* Typography for Name & Price */
  .s3-item-name {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #222222;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .s3-item-price {
    font-family: 'Marcellus', serif;
    font-size: 16px;
    color: #444444;
    margin-bottom: 0;
  }
  
  
  .s4-wrapper {
    padding: 3rem 0;
  }

  /* 1. Left Large Banner (From Nature) */
  .s4-banner-large {
    position: relative;
    min-height: 520px;
    height: 100%;
    background-image: url('../images/image-06.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 20px;
  }

  .s4-large-content {
    text-align: center;
    position: relative;
    z-index: 2;
  }

  /* 2. Top Right Card (Bath Products) */
  .s4-card-top {
    position: relative;
    min-height: 245px;
    background-image: url('../images/image-08.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 35px;
  }

  /* 3. Bottom Right Card (Treatments) */
  .s4-card-bottom {
    position: relative;
    min-height: 245px;
    background-image: url('../images/image-07.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 35px;
  }

  /* Common Typography & Buttons */
  .s4-heading {
    font-family: 'Marcellus', serif;
    font-size: 24px;
    letter-spacing: 3px;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .s4-subtext {
    font-size: 13px;
    color: #555555;
    font-weight: 300;
    margin-bottom: 20px;
  }

  .s4-discover-btn {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid #111111;
    padding-bottom: 3px;
    display: inline-block;
    transition: color 0.3s ease, border-color 0.3s ease;
  }

  .s4-discover-btn:hover {
    color: #b58150;
    border-color: #b58150;
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .s4-banner-large {
      min-height: 380px;
    }
  }

  @media (max-width: 767px) {
    .s4-card-bottom {
      justify-content: center;
      text-align: center;
    }
  }
  
  /* 1. Feature Highlights Row */
  .s5-features-wrapper {
    padding: 4rem 0;
    background-color: #ffffff;
  }

  .s5-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .s5-feature-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .s5-feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .s5-feature-desc {
    font-size: 13px;
    color: #888888;
    font-weight: 300;
    margin-bottom: 0;
  }

  /* 2. Testimonial Container Box Section */
  .s5-testimonial-section {
    padding: 2rem 0 4rem 0;
    background-color: #ffffff;
  }

  .s5-testimonial-card {
    background-color: #c8b49c;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
  }

  /* Decorative Quote Graphic inside Card */
  .s5-quote-icon {
    position: absolute;
    bottom: -15px;
    left: 4%;
    font-family: 'Marcellus', serif;
    font-size: 150px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.22);
    pointer-events: none;
    user-select: none;
  }

  .s5-testimonial-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    max-width: 780px;
    margin: 0 auto 15px auto;
    line-height: 1.6;
  }

  .s5-testimonial-author {
    font-size: 13px;
    color: #ffffff;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 30px;
  }

  /* Indicators */
  .s5-indicators {
    position: relative;
    margin-bottom: 0;
  }

  .s5-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    background-color: transparent;
    opacity: 0.6;
    margin: 0 4px;
  }

  .s5-indicators .active {
    background-color: #ffffff;
    opacity: 1;
  }

  @media (max-width: 767px) {
    .s5-feature-item {
      justify-content: center;
      text-align: center;
      flex-direction: column;
      gap: 10px;
    }
    .s5-testimonial-quote {
      font-size: 13px;
    }
    .s5-quote-icon {
      font-size: 90px;
    }
    .s5-testimonial-card {
      padding: 3rem 1.5rem;
    }
  }
  
  .s6-wrapper {
    padding: 4rem 0;
    background-color: #ffffff;
  }

  .s6-title {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: #111111;
    text-transform: uppercase;
  }

  .s6-subtitle {
    font-size: 13px;
    color: #777777;
    font-weight: 300;
  }

  /* Product Card */
  .s6-product-card {
    position: relative;
    text-align: center;
    padding: 10px;
  }

  /* Image Container */
  .s6-img-box {
    position: relative;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
  }

  .s6-product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
  }

  .s6-product-card:hover .s6-product-img {
    transform: scale(1.05);
  }

  /* Heart Wishlist Icon */
  .s6-wishlist-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #888888;
    font-size: 16px;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease, color 0.3s ease;
    z-index: 2;
  }

  .s6-wishlist-btn:hover {
    color: #b58150;
  }

  .s6-product-card:hover .s6-wishlist-btn {
    opacity: 1;
  }

  /* Add to Cart Hover Button */
  .s6-add-cart-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid #111111;
    padding-bottom: 3px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
  }

  .s6-add-cart-btn:hover {
    color: #b58150;
    border-color: #b58150;
  }

  .s6-product-card:hover .s6-add-cart-btn {
    opacity: 1;
  }

  /* Typography */
  .s6-item-name {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #222222;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .s6-item-category {
    font-size: 12px;
    color: #888888;
    font-weight: 300;
    margin-bottom: 6px;
  }

  .s6-item-price {
    font-family: 'Marcellus', serif;
    font-size: 16px;
    color: #444444;
    margin-bottom: 0;
  }
  
  .s7-wrapper {
    padding: 3rem 0;
  }

  /* Left Image Side */
  .s7-bg-left {
    min-height: 520px;
    height: 100%;
    background-image: url('../images/image-14.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* Right Beige Content Side */
  .s7-content-right {
    background-color: #c8b49c;
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .s7-card-img {
    width: 260px;
    height: 280px;
    object-fit: cover;
    margin-bottom: 25px;
  }

  .s7-sub-tag {
    font-size: 11px;
    letter-spacing: 4px;
    color: #b56c54;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .s7-title {
    font-family: 'Marcellus', serif;
    font-size: 26px;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 15px;
  }

  .s7-description {
    font-size: 13px;
    color: #ffffff;
    font-weight: 300;
    max-width: 380px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
  }

  .s7-outline-btn {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 12px 35px;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .s7-outline-btn:hover {
    background-color: #ffffff;
    color: #c8b49c;
    border-color: #ffffff;
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .s7-bg-left {
      min-height: 350px;
    }
    .s7-content-right {
      padding: 40px 20px;
    }
  }
  
  /* --- SECTION 8: INSTAGRAM GALLERY --- */
  .s8-wrapper {
    padding: 4rem 0 2rem 0;
    background-color: #ffffff;
  }

  .s8-tagline {
    font-size: 11px;
    letter-spacing: 4px;
    color: #b58150;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
  }

  .s8-title {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: #111111;
    text-transform: uppercase;
  }

  .s8-subtitle {
    font-size: 13px;
    color: #777777;
    font-weight: 300;
  }

  .s8-insta-item {
    position: relative;
    overflow: hidden;
    height: 320px;
    display: block;
  }

  .s8-insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .s8-insta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .s8-insta-item:hover .s8-insta-img {
    transform: scale(1.08);
  }

  .s8-insta-item:hover .s8-insta-overlay {
    opacity: 1;
  }

  /* --- SECTION 9: AS SEEN IN --- */
  .s9-wrapper {
    padding: 3rem 0 5rem 0;
    background-color: #ffffff;
  }

  .s9-title {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: #111111;
    text-transform: uppercase;
  }

  .s9-subtitle {
    font-size: 13px;
    color: #777777;
    font-weight: 300;
  }

  .s9-logos-box {
    border: 1px solid #eeeeee;
    padding: 40px 20px;
  }

  .s9-logo-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
  }

  /* Divider border between logo items */
  .s9-logo-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #eeeeee;
  }

  .s9-brand-logo {
    max-height: 75px;
    max-width: 80%;
    object-fit: contain;
    filter: opacity(0.85);
    transition: opacity 0.3s ease;
  }

  .s9-brand-logo:hover {
    opacity: 1;
  }

  @media (max-width: 767px) {
    .s9-logo-col:not(:last-child)::after {
      display: none;
    }
    .s9-logo-col {
      border-bottom: 1px solid #eeeeee;
    }
    .s9-logo-col:last-child {
      border-bottom: none;
    }
  }
  
/*------------------------Shop CSS---------------------//

  .shop-section {
    padding: 50px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
  }

  /* --- LEFT SIDEBAR FILTERS --- */
  .shop-filter-title {
    font-family: 'Marcellus', serif;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 25px;
  }

  .shop-filter-title:first-child {
    margin-top: 0;
  }

  .shop-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .shop-cat-list li {
    margin-bottom: 6px;
  }

  .shop-cat-list a {
    font-size: 12px;
    color: #777777;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .shop-cat-list a:hover {
    color: #111111;
  }

  /* Working Range Slider */
  .shop-price-range-wrap {
    position: relative;
    margin: 20px 0 15px 0;
  }

  .shop-range-input {
    position: relative;
  }

  .shop-range-input input[type="range"] {
    position: absolute;
    width: 100%;
    height: 4px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
  }

  .shop-range-input input[type="range"]::-webkit-slider-thumb {
    height: 12px;
    width: 6px;
    background: #111111;
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
  }

  .shop-slider-track {
    width: 100%;
    height: 2px;
    background: #e5e5e5;
    position: relative;
  }

  .shop-slider-progress {
    height: 100%;
    left: 0%;
    right: 0%;
    position: absolute;
    background: #111111;
  }

  .shop-price-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .shop-price-box {
    border: 1px solid #e5e5e5;
    padding: 4px 8px;
    font-size: 11px;
    color: #555555;
    width: 55px;
    text-align: center;
  }

  .shop-check-group {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #777777;
    margin-bottom: 8px;
    cursor: pointer;
  }

  .shop-check-group input[type="checkbox"] {
    accent-color: #111111;
    cursor: pointer;
  }

  /* --- TOP TOOLBAR --- */
  .shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }

  .shop-results-count {
    font-size: 12px;
    color: #888888;
  }

  .shop-sort-select {
    border: 1px solid #e5e5e5;
    font-size: 12px;
    color: #555555;
    padding: 6px 12px;
    outline: none;
    background: #ffffff;
  }

  /* --- PRODUCT CARDS & HOVER BUTTONS --- */
  .shop-card {
    margin-bottom: 40px;
    position: relative;
  }

  .shop-card-img-wrap {
    background-color: #f9f9f9;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
  }

  .shop-card-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
  }

  /* Hover Overlay Buttons */
  .shop-hover-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .shop-card-img-wrap:hover .shop-hover-overlay {
    opacity: 1;
    visibility: visible;
  }

  .shop-card-img-wrap:hover .shop-card-img {
    transform: scale(1.05);
  }

  .shop-btn-addcart {
    width: 85%;
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    padding: 12px 0;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
  }

  .shop-btn-addcart:hover {
    background-color: #333333;
    border-color: #333333;
  }

  .shop-btn-quickview {
    width: 85%;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    padding: 12px 0;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
  }

  .shop-btn-quickview:hover {
    background-color: #000000;
    color: #ffffff;
  }

  .shop-card-details {
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .shop-card-title {
    font-family: 'Marcellus', serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 3px;
    font-weight: 600;
  }

  .shop-card-cat {
    font-size: 11px;
    color: #999999;
    margin-bottom: 6px;
    display: block;
  }

  .shop-card-price {
    font-size: 12px;
    color: #111111;
    font-weight: 500;
  }

  .shop-wishlist-btn {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
  }

  .shop-wishlist-btn:hover {
    color: #e74c3c;
  }

  @media (max-width: 767px) {
    .shop-card-img-wrap {
      height: 220px;
    }
  }
  
/*------------------------Breadcrumbs CSS---------------------/*/


  .shop-breadcrumb-wrap {
    padding: 20px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
  }

  .shop-breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
  }

  .shop-breadcrumb-item {
    display: flex;
    align-items: center;
    color: #999999;
  }

  .shop-breadcrumb-item a {
    color: #999999;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .shop-breadcrumb-item a:hover {
    color: #111111;
  }

  .shop-breadcrumb-item + .shop-breadcrumb-item::before {
    content: "/";
    padding: 0 10px;
    color: #cccccc;
  }

  .shop-breadcrumb-item.active {
    color: #111111;
  }
  
/* ==========================================================
   REPLACE ONLY THE PRODUCT DETAIL CSS BLOCK
   Start from:
   /*------------------------Shop Details---------------------//
   and replace everything UNTIL:
   /*------------------------Cart CSS---------------------//
   ========================================================== */

.pd-section {
  padding: 50px 0 80px;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  color: #111111;
}

/* PRODUCT GALLERY */
.pd-gallery-wrap {
  display: flex;
  gap: 15px;
}

.pd-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 80px;
  flex-shrink: 0;
}

.pd-thumb {
  width: 80px;
  height: 90px;
  object-fit: contain;
  background-color: #f9f9f9;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 6px;
  transition: border-color .2s ease;
}

.pd-thumb.active,
.pd-thumb:hover {
  border-color: #111111;
}

.pd-main-img-wrap {
  flex: 1;
  height: 480px;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow: hidden;
}

.pd-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* PRODUCT INFO */
.pd-title {
  font-family: 'Marcellus', serif;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.pd-price {
  font-size: 14px;
  color: #555555;
  margin-bottom: 18px;
  font-weight: 500;
}

.pd-short-desc {
  font-size: 12px;
  color: #777777;
  line-height: 1.8;
  margin-bottom: 25px;
}

.pd-meta {
  font-size: 11px;
  color: #888888;
  margin-bottom: 25px;
  line-height: 2;
}

.pd-meta span {
  color: #111111;
  letter-spacing: 1px;
}

.pd-social-share a {
  color: #555555;
  margin-left: 10px;
  font-size: 12px;
  text-decoration: none;
  transition: color .2s ease;
}

.pd-social-share a:hover {
  color: #b58150;
}

/* QUANTITY / CART */
.pd-action-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.pd-qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  height: 42px;
}

.pd-qty-btn {
  width: 32px;
  height: 100%;
  border: none;
  background: none;
  color: #555555;
  font-size: 14px;
  cursor: pointer;
}

.pd-qty-input {
  width: 35px;
  border: none;
  outline: none;
  background: transparent;
  text-align: center;
  font-size: 12px;
}

.pd-btn-addcart {
  height: 42px;
  padding: 0 35px;
  border: 1px solid #000000;
  background: #ffffff;
  color: #000000;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s ease;
}

.pd-btn-addcart:hover {
  background: #000000;
  color: #ffffff;
}

.pd-btn-addcart:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.pd-wishlist-link {
  display: inline-block;
  margin-top: 5px;
  color: #777777;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.pd-wishlist-link:hover {
  color: #111111;
}

/* TABS */
.pd-tabs-wrap {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
}

.pd-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 50px;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-bottom: 1px solid #eeeeee;
}

.pd-tab-link {
  display: inline-block;
  padding-bottom: 11px;
  border-bottom: 2px solid transparent;
  color: #999999;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.pd-tab-link.active {
  color: #111111;
  border-bottom-color: #111111;
}

.pd-tab-content {
  display: none;
  max-width: 900px;
  margin: 0 auto;
  color: #777777;
  font-size: 12px;
  line-height: 1.9;
  text-align: center;
}

.pd-tab-content.active {
  display: block;
}

.pd-info-list {
  max-width: 650px;
  margin: 0 auto;
  border-top: 1px solid #eeeeee;
}

.pd-info-list > div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 12px 0;
  border-bottom: 1px solid #eeeeee;
  text-align: left;
}

.pd-info-list span {
  color: #999999;
}

.pd-info-list strong {
  color: #333333;
  font-weight: 500;
}

/* PRODUCT SECTIONS */
.pd-products-section {
  margin-top: 70px;
}

.pd-products-section-last {
  margin-bottom: 10px;
}

.pd-products-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.pd-section-title {
  margin: 0;
  font-family: 'Marcellus', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pd-view-all-link {
  color: #777777;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.pd-view-all-link:hover {
  color: #111111;
}

/* RELATED PRODUCT CARD */
.pd-related-card {
  height: 100%;
}

.pd-related-image-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #f9f9f9;
}

.pd-related-image-link {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.pd-related-image {
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: contain;
  transition: transform .35s ease;
}

.pd-related-card:hover .pd-related-image {
  transform: scale(1.04);
}

.pd-related-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: #777777;
  font-size: 13px;
  text-decoration: none;
  opacity: 0;
  transition: all .25s ease;
}

.pd-related-card:hover .pd-related-wishlist {
  opacity: 1;
}

.pd-related-wishlist:hover {
  color: #b58150;
}

.pd-related-actions {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .25s ease;
}

.pd-related-card:hover .pd-related-actions {
  opacity: 1;
  transform: translateY(0);
}

.pd-related-cart,
.pd-related-view {
  display: flex;
  min-height: 40px;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.pd-related-cart {
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
}

.pd-related-cart:hover {
  border-color: #333333;
  background: #333333;
  color: #ffffff;
}

.pd-related-view {
  border: 1px solid #111111;
  background: #ffffff;
  color: #111111;
}

.pd-related-view:hover {
  background: #111111;
  color: #ffffff;
}

.pd-related-content {
  padding-top: 14px;
  text-align: center;
}

.pd-related-category {
  display: block;
  margin-bottom: 6px;
  color: #999999;
  font-size: 10px;
}

.pd-related-title {
  margin: 0 0 7px;
  font-family: 'Marcellus', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.5;
  text-transform: uppercase;
}

.pd-related-title a {
  color: #111111;
  text-decoration: none;
}

.pd-related-title a:hover {
  color: #b58150;
}

.pd-related-price {
  color: #444444;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .pd-related-image-wrap {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .pd-gallery-wrap {
    flex-direction: column-reverse;
  }

  .pd-thumbnails {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
  }

  .pd-thumb {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
  }

  .pd-main-img-wrap {
    height: 340px;
  }

  .pd-tabs-nav {
    gap: 22px;
  }

  .pd-products-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .pd-related-image-wrap {
    height: 240px;
  }

  .pd-related-actions {
    opacity: 1;
    transform: none;
  }

  .pd-related-wishlist {
    opacity: 1;
  }
}

@media (max-width: 575px) {
  .pd-action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .pd-qty-box {
    width: max-content;
  }

  .pd-btn-addcart {
    width: 100%;
  }

  .pd-tabs-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .pd-related-image-wrap {
    height: 210px;
  }

  .pd-related-actions {
    right: 8px;
    bottom: 8px;
    left: 8px;
    gap: 5px;
  }

  .pd-related-cart,
  .pd-related-view {
    min-height: 36px;
    padding: 7px 5px;
    font-size: 8px;
    letter-spacing: .7px;
  }
}

  
/*------------------------Cart CSS---------------------//

 .cart-section {
    padding: 50px 0 80px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #111111;
  }

  .cart-title {
    font-family: 'Marcellus', serif;
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
  }

  /* Cart Table */
  .cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
  }

  .cart-table th {
    font-family: 'Marcellus', serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 15px 10px;
    border-bottom: 1px solid #111111;
    text-align: left;
  }

  .cart-table td {
    padding: 20px 10px;
    border-bottom: 1px solid #eeeeee;
    vertical-align: middle;
    font-size: 13px;
  }

  .cart-product-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .cart-product-img {
    width: 70px;
    height: 80px;
    object-fit: cover;
    background-color: #f9f9f9;
  }

  .cart-product-name {
    font-family: 'Marcellus', serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #111111;
    text-decoration: none;
    font-weight: 600;
  }

  .cart-product-cat {
    font-size: 11px;
    color: #999999;
    display: block;
    margin-top: 3px;
  }

  .cart-remove-btn {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s ease;
  }

  .cart-remove-btn:hover {
    color: #111111;
  }

  /* Quantity Control Box */
  .cart-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    height: 38px;
  }

  .cart-qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 100%;
    font-size: 12px;
    color: #555555;
    cursor: pointer;
  }

  .cart-qty-input {
    width: 30px;
    border: none;
    text-align: center;
    font-size: 12px;
    outline: none;
    background: transparent;
  }

  /* Coupon & Actions Row */
  .cart-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
  }

  .cart-coupon-box {
    display: flex;
    gap: 10px;
  }

  .cart-coupon-input {
    border: 1px solid #e5e5e5;
    padding: 0 15px;
    height: 42px;
    font-size: 11px;
    outline: none;
    width: 200px;
  }

  .cart-btn-outline {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    padding: 0 25px;
    height: 42px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .cart-btn-outline:hover {
    background-color: #000000;
    color: #ffffff;
  }

  /* Cart Totals Box */
  .cart-totals-card {
    background-color: #f9f9f9;
    padding: 30px;
  }

  .cart-totals-title {
    font-family: 'Marcellus', serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
  }

  .cart-totals-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 15px;
    color: #555555;
  }

  .cart-totals-row.total {
    border-top: 1px solid #e5e5e5;
    padding-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
  }

  .cart-btn-checkout {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    padding: 14px 0;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 15px;
    text-align: center;
    display: block;
    text-decoration: none;
  }

  .cart-btn-checkout:hover {
    background-color: #333333;
    border-color: #333333;
    color: #ffffff;
  }

  @media (max-width: 767px) {
    .cart-table th:nth-child(2),
    .cart-table td:nth-child(2) {
      display: none;
    }
  }
  
/*------------------------Shop CSS---------------------//


  
/*------------------------Footer CSS---------------------//

 /* --- NEWSLETTER & GIFT CARD SECTION --- */
  .ft-promo-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
  }

  .ft-promo-col {
    padding: 0 40px;
  }

  .ft-promo-divider {
    border-right: 1px solid #e2e2e2;
  }

  .ft-promo-title {
    font-family: 'Marcellus', serif;
    font-size: 15px;
    letter-spacing: 2px;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .ft-promo-desc {
    font-size: 14px;
    color: #888888;
    font-weight: 300;
    margin-bottom: 25px;
  }

  /* Newsletter Form Input */
  .ft-newsletter-form {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
  }

  .ft-newsletter-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #111111;
    padding: 8px 60px 8px 0;
    font-size: 13px;
    color: #333333;
    outline: none;
    background: transparent;
  }

  .ft-newsletter-input::placeholder {
    color: #aaaaaa;
  }

  .ft-newsletter-btn {
    position: absolute;
    right: 0;
    bottom: 8px;
    background: none;
    border: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #111111;
    cursor: pointer;
    padding: 0;
  }

  .ft-gift-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 15px;
  }

  /* --- MAIN FOOTER --- */
  .ft-main {
    padding: 70px 0 60px 0;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
  }

  .ft-heading {
    font-family: 'Marcellus', serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 600;
  }

  .ft-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .ft-list li {
    margin-bottom: 10px;
    font-size: 13px;
    color: #888888;
    font-weight: 300;
  }

  .ft-list a {
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .ft-list a:hover {
    color: #111111;
  }

  .ft-social-links {
    margin-top: 25px;
    display: flex;
    gap: 18px;
  }

  .ft-social-links a {
    color: #888888;
    font-size: 14px;
    transition: color 0.2s ease;
  }

  .ft-social-links a:hover {
    color: #111111;
  }

  /* --- BOTTOM COPYRIGHT BAR --- */
  .ft-bottom-bar {
    background-color: #f7f3ed;
    padding: 15px 0;
  }

  .ft-copyright {
    font-size: 11px;
    letter-spacing: 3px;
    color: #b58150;
    text-transform: uppercase;
    margin: 0;
  }

  .ft-payment-icons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
  }

  .ft-pay-card {
    background: #000000;
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 2px;
    display: inline-block;
    text-transform: uppercase;
  }

  @media (max-width: 767px) {
    .ft-promo-divider {
      border-right: none;
      border-bottom: 1px solid #e2e2e2;
      padding-bottom: 40px;
      margin-bottom: 40px;
    }
    .ft-payment-icons {
      justify-content: center;
      margin-top: 10px;
    }
    .ft-bottom-bar .row {
      text-align: center;
    }
  }
  
  
/* ==========================================================
   ZELYN WISHLIST PAGE
   Scoped only to .wl-* classes
   Safe to paste into universal style.css
   ========================================================== */

.wl-section {
  padding: 35px 0 80px;
  background: #fff;
}

.wl-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
  margin-bottom: 35px;
  border-bottom: 1px solid #ececec;
}

.wl-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #a7a7a7;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.wl-title {
  margin: 0 0 8px;
  color: #111;
  font-family: inherit;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.wl-subtitle {
  margin: 0;
  color: #8a8a8a;
  font-size: 13px;
  font-weight: 300;
}

.wl-continue-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #222;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.wl-continue-link:hover {
  color: #b58150;
}

/* CARD */

.wl-card {
  height: 100%;
  background: #fff;
}

.wl-image-wrap {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: #f7f6f3;
}

.wl-image-link {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.wl-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform .4s ease;
}

.wl-card:hover .wl-image {
  transform: scale(1.04);
}

/* REMOVE ICON */

.wl-remove {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: #555;
  font-size: 12px;
  text-decoration: none;
  transition: .25s ease;
}

.wl-remove:hover {
  border-color: #222;
  background: #222;
  color: #fff;
}

/* STOCK */

.wl-stock-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  display: inline-block;
  padding: 6px 9px;
  background: #fff;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.wl-stock-badge.is-in-stock {
  color: #5a7557;
}

.wl-stock-badge.is-out-stock {
  color: #a34d4d;
}

/* HOVER ACTIONS */

.wl-actions {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 4;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}

.wl-card:hover .wl-actions {
  opacity: 1;
  transform: translateY(0);
}

.wl-action-primary,
.wl-action-secondary {
  display: flex;
  min-height: 42px;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid #111;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: .2s ease;
}

.wl-action-primary {
  background: #111;
  color: #fff;
}

.wl-action-primary:hover {
  background: #b58150;
  border-color: #b58150;
  color: #fff;
}

.wl-action-secondary {
  background: #fff;
  color: #111;
}

.wl-action-secondary:hover {
  background: #111;
  color: #fff;
}

.wl-action-primary.is-disabled {
  cursor: not-allowed;
  opacity: .55;
}

/* DETAILS */

.wl-card-body {
  padding: 18px 3px 5px;
  text-align: center;
}

.wl-category {
  display: inline-block;
  margin-bottom: 7px;
  color: #999;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.wl-category:hover {
  color: #b58150;
}

.wl-product-title {
  margin: 0 0 9px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.5;
  text-transform: uppercase;
}

.wl-product-title a {
  color: #222;
  text-decoration: none;
}

.wl-product-title a:hover {
  color: #b58150;
}

.wl-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.wl-price {
  color: #444;
  font-size: 15px;
}

.wl-old-price {
  color: #aaa;
  font-size: 12px;
  text-decoration: line-through;
}

.wl-remove-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: #999;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.wl-remove-text:hover {
  color: #b34f4f;
}

/* EMPTY STATE */

.wl-empty {
  max-width: 620px;
  margin: 15px auto 0;
  padding: 75px 30px;
  border: 1px solid #ececec;
  text-align: center;
}

.wl-empty-icon {
  display: flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #b58150;
  font-size: 28px;
}

.wl-empty-title {
  margin: 0 0 12px;
  color: #222;
  font-family: inherit;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.wl-empty-text {
  max-width: 430px;
  margin: 0 auto 26px;
  color: #888;
  font-size: 13px;
  line-height: 1.8;
}

/* BUTTONS */

.wl-primary-btn,
.wl-secondary-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: .2s ease;
}

.wl-primary-btn {
  border: 1px solid #111;
  background: #111;
  color: #fff;
}

.wl-primary-btn:hover {
  border-color: #b58150;
  background: #b58150;
  color: #fff;
}

.wl-secondary-btn {
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #222;
}

.wl-secondary-btn:hover {
  border-color: #222;
  color: #222;
}

.wl-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid #ececec;
}

/* RESPONSIVE */

@media (max-width: 991.98px) {
  .wl-image-wrap {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .wl-section {
    padding: 25px 0 55px;
  }

  .wl-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .wl-title {
    font-size: 24px;
  }

  .wl-image-wrap {
    height: 300px;
  }

  .wl-actions {
    opacity: 1;
    transform: none;
  }

  .wl-bottom-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wl-primary-btn,
  .wl-secondary-btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .wl-image-wrap {
    height: 340px;
  }

  .wl-empty {
    padding: 55px 20px;
  }
}



/* ==========================================================
   ZELYN TRACK ORDER PAGE
   Scoped only to .trk-* classes.
   Safe to paste at the END of your universal style.css.
   ========================================================== */

.trk-section {
  padding: 35px 0 80px;
  background: #ffffff;
}

.trk-heading {
  max-width: 680px;
  margin: 0 auto 35px;
  text-align: center;
}

.trk-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #b58150;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.trk-title {
  margin: 0 0 10px;
  font-family: 'Marcellus', serif;
  color: #111111;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.trk-subtitle {
  margin: 0;
  color: #888888;
  font-size: 13px;
  line-height: 1.8;
}

.trk-search-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #eeeeee;
  background: #ffffff;
}

.trk-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 15px;
}

.trk-field label {
  display: block;
  margin-bottom: 8px;
  color: #333333;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.trk-field input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #e4e4e4;
  border-radius: 0;
  outline: none;
  background: #ffffff;
  color: #333333;
  font-size: 12px;
  transition: border-color .2s ease;
}

.trk-field input:focus {
  border-color: #111111;
}

.trk-field input::placeholder {
  color: #b2b2b2;
}

.trk-submit-btn {
  display: inline-flex;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s ease;
}

.trk-submit-btn:hover {
  border-color: #b58150;
  background: #b58150;
}

.trk-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 15px;
  border: 1px solid #ecd7d7;
  background: #fffafa;
  color: #9f5555;
  font-size: 12px;
}

/* RESULT */

.trk-result {
  max-width: 1050px;
  margin: 45px auto 0;
}

.trk-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eeeeee;
}

.trk-result-label {
  display: block;
  margin-bottom: 6px;
  color: #999999;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.trk-order-number {
  margin: 0;
  font-family: 'Marcellus', serif;
  color: #111111;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.trk-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.trk-status-pending {
  background: #f5f1e8;
  color: #9a7a3a;
}

.trk-status-confirmed,
.trk-status-processing {
  background: #eef3f7;
  color: #52708c;
}

.trk-status-shipped {
  background: #eef1f8;
  color: #556f9b;
}

.trk-status-delivered {
  background: #eef6ef;
  color: #52785a;
}

.trk-status-cancelled,
.trk-status-returned {
  background: #faeeee;
  color: #9b5555;
}

/* META */

.trk-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 25px;
  background: #eeeeee;
  border: 1px solid #eeeeee;
}

.trk-meta-item {
  padding: 18px;
  background: #ffffff;
}

.trk-meta-item span {
  display: block;
  margin-bottom: 6px;
  color: #999999;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trk-meta-item strong {
  color: #333333;
  font-size: 12px;
  font-weight: 500;
}

/* PROGRESS */

.trk-progress-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 45px 0;
}

.trk-progress-line {
  position: absolute;
  top: 13px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: #e3e3e3;
}

.trk-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.trk-step-dot {
  display: flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  border: 1px solid #d7d7d7;
  border-radius: 50%;
  background: #ffffff;
  color: #ffffff;
  font-size: 9px;
}

.trk-step span {
  color: #aaaaaa;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trk-step.is-done .trk-step-dot {
  border-color: #111111;
  background: #111111;
}

.trk-step.is-done span {
  color: #444444;
}

.trk-step.is-active .trk-step-dot {
  box-shadow: 0 0 0 5px #f4f1ed;
}

.trk-special-status {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 35px 0;
  padding: 18px 20px;
  border: 1px solid #eadede;
  background: #fffafa;
  color: #9a5555;
}

.trk-special-status > i {
  font-size: 20px;
}

.trk-special-status strong,
.trk-special-status span {
  display: block;
}

.trk-special-status strong {
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trk-special-status span {
  font-size: 12px;
}

/* SHIPPING INFO */

.trk-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 35px 0;
}

.trk-info-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid #eeeeee;
}

.trk-info-icon {
  display: flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f7f3ed;
  color: #b58150;
  font-size: 14px;
}

.trk-info-card h3 {
  margin: 0 0 9px;
  color: #222222;
  font-family: 'Marcellus', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.trk-info-card p {
  margin: 0 0 4px;
  color: #777777;
  font-size: 11px;
  line-height: 1.6;
}

.trk-info-card strong {
  color: #333333;
  font-weight: 500;
}

/* ITEMS */

.trk-items-section {
  margin-top: 35px;
  border-top: 1px solid #eeeeee;
  padding-top: 28px;
}

.trk-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.trk-section-heading h3 {
  margin: 0;
  color: #111111;
  font-family: 'Marcellus', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.trk-section-heading > span {
  color: #999999;
  font-size: 10px;
}

.trk-items-list {
  border-top: 1px solid #eeeeee;
}

.trk-order-item {
  display: grid;
  grid-template-columns: 85px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #eeeeee;
}

.trk-item-image {
  display: flex;
  width: 85px;
  height: 95px;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
}

.trk-item-image img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.trk-item-details h4 {
  margin: 0 0 7px;
  font-family: 'Marcellus', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.trk-item-details h4 a {
  color: #222222;
  text-decoration: none;
}

.trk-item-details h4 a:hover {
  color: #b58150;
}

.trk-item-details span {
  display: block;
  margin-bottom: 3px;
  color: #999999;
  font-size: 10px;
}

.trk-item-price {
  color: #333333;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

/* TOTALS */

.trk-totals {
  width: min(100%, 380px);
  margin: 28px 0 0 auto;
}

.trk-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  color: #777777;
  font-size: 11px;
}

.trk-totals strong {
  color: #333333;
  font-weight: 500;
}

.trk-total-final {
  margin-top: 6px;
  padding-top: 14px !important;
  border-top: 1px solid #dddddd;
  color: #111111 !important;
  font-size: 13px !important;
}

.trk-total-final strong {
  color: #111111;
  font-size: 14px;
  font-weight: 600;
}

/* HISTORY */

.trk-history {
  margin-top: 45px;
  padding-top: 28px;
  border-top: 1px solid #eeeeee;
}

.trk-history-list {
  position: relative;
  max-width: 720px;
}

.trk-history-item {
  position: relative;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 15px;
  padding-bottom: 22px;
}

.trk-history-item:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 14px;
  bottom: 0;
  left: 5px;
  width: 1px;
  background: #e4e4e4;
}

.trk-history-dot {
  position: relative;
  z-index: 2;
  width: 11px;
  height: 11px;
  margin-top: 4px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #b58150;
  box-shadow: 0 0 0 1px #b58150;
}

.trk-history-content strong {
  display: block;
  margin-bottom: 4px;
  color: #333333;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trk-history-content p {
  margin: 0 0 5px;
  color: #777777;
  font-size: 11px;
}

.trk-history-content span {
  color: #aaaaaa;
  font-size: 9px;
}

/* RESPONSIVE */

@media (max-width: 991.98px) {
  .trk-form {
    grid-template-columns: 1fr 1fr;
  }

  .trk-submit-wrap {
    grid-column: 1 / -1;
  }

  .trk-submit-btn {
    width: 100%;
  }

  .trk-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .trk-section {
    padding: 25px 0 55px;
  }

  .trk-title {
    font-size: 24px;
  }

  .trk-search-card {
    padding: 20px;
  }

  .trk-form {
    grid-template-columns: 1fr;
  }

  .trk-submit-wrap {
    grid-column: auto;
  }

  .trk-result-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .trk-progress-wrap {
    display: block;
    margin: 35px 0;
  }

  .trk-progress-line {
    display: none;
  }

  .trk-step {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: 13px;
    text-align: left;
  }

  .trk-step-dot {
    margin: 0;
  }

  .trk-info-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .trk-meta-grid {
    grid-template-columns: 1fr;
  }

  .trk-order-item {
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }

  .trk-item-image {
    width: 70px;
    height: 80px;
  }

  .trk-item-price {
    grid-column: 2;
  }

  .trk-totals {
    width: 100%;
  }
}

/* HEADER MOBILE / DESKTOP FIX */

.z-header-main-row {
  flex-wrap: nowrap;
}

.z-header-logo {
  display: inline-flex;
  align-items: center;
}

.z-header-logo img {
  width: 200px;
  max-width: 100%;
  height: auto;
}

.z-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.z-header-actions .s1-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 !important;
}


/* MOBILE */
@media (max-width: 767.98px) {

  .z-header-logo img {
    width: 125px;
  }

  .z-header-actions {
    gap: 12px;
  }

  .z-header-actions .s1-icon-link {
    font-size: 17px;
  }

  .z-header-actions .s1-cart-badge {
    font-size: 10px;
  }

  header .navbar {
    margin-top: 10px !important;
  }
}

