  :root {
    --background: #FFFFFF;   
    --primary: #046A38;      
    --text: #2E2E2E;         
    --secondary: #C4B7A6;   
    --highlight: #B3A580;    
    --light-bg: #F8F9FA;     
  }

  body {
    background-color: var(--background);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    margin: 0;
    padding: 0;
  }

  .breadcrumb-container {
    padding: 15px 0;
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--secondary);
  }

  .breadcrumb {
    display: flex;
    list-style: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding: 0 15px;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    margin: 0 10px;
    color: var(--secondary);
  }

  .breadcrumb-item a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .breadcrumb-item a:hover {
    color: var(--highlight);
  }

  .breadcrumb-item.active {
    color: var(--primary);
    font-weight: 500;
  }

  .product-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 700px;
    background-color: var(--background);
  }

  .product-image {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-in;
  }

  .img-zoom-lens {
    position: absolute;
    border: 2px solid var(--primary);
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.3);
    cursor: none;
    display: none;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .img-zoom-result {
    position: absolute;
    right: -350px;
    top: 0;
    border: 1px solid var(--secondary);
    width: 400px;
    height: 400px;
    background-color: var(--background);
    display: none;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-repeat: no-repeat;
  }

  .thumbnail-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 700px;
    overflow-y: auto;
  }

  .thumbnail {
    width: 80px;
    height: 80px;
    border: 1px solid var(--secondary);
    padding: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .thumbnail:hover, .thumbnail.active {
    border-color: var(--primary);
  }

  .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-details-card {
    border: none;
    border-radius: 0;
    padding: 20px;
    background-color: var(--background);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .product-price {
    margin: 15px 0;
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: bold;
  }

  .size-dropdown {
    width: 120px;
    margin: 10px 0;
    border-radius: 0;
    border-color: var(--secondary);
  }

  .custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 200px;
  }

  .custom-select select {
    appearance: none;
    -webkit-appearance: none;
    padding: 10px 35px 10px 15px;
    background-color: var(--background);
    border: 1px solid var(--secondary);
    border-radius: 0;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
  }

  .custom-select::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text);
  }

  .purchase-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }

  .btn-add-to-bag {
    flex: 1;
    background-color: var(--background);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 0;
    padding: 12px 0;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }

  .btn-add-to-bag:hover {
    background-color: var(--primary);
    color: var(--background);
  }

  .btn-buy-now {
    flex: 1;
    background-color: var(--primary);
    color: var(--background);
    border: none;
    border-radius: 0;
    padding: 12px 0;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }

  .btn-buy-now:hover {
    background-color: var(--highlight);
    color: var(--text);
  }

  .section-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin: 40px 0 20px;
    color: var(--text);
    letter-spacing: 2px;
  }

  h2.section-title {
    margin-bottom: 60px;
  }

  .accordion-button {
    background-color: transparent;
    padding: 15px 0;
    border-bottom: 1px solid var(--secondary);
    color: var(--text);
  }

  .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: var(--primary);
  }

  .accordion-body {
    padding: 15px 0;
  }

  .info-badge {
    background-color: transparent;
    border: 1px solid var(--secondary);
    border-radius: 0;
    color: var(--text);
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 8px 15px;
  }

  .wishlist-icon {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
  }

  .wishlist-icon:hover {
    color: var(--highlight);
  }

  .product-specs .row {
    border-bottom: 1px solid var(--light-bg);
    padding: 8px 0;
  }

  .product-specs .col-6:first-child {
    font-weight: 500;
    color: var(--text);
  }

  .product-specs .col-6:last-child {
    color: var(--secondary);
  }

  .fragrance-note {
    display: inline-block;
    background-color: #01b75f ;
    color: var(--text);
    padding: 5px 15px;
    margin: 5px;
    border-radius: 20px;
    font-size: 0.85rem;
  }

  .size-option {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }

  .size-option label {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .size-option input[type="radio"] {
    display: none;
  }

  .size-option input[type="radio"]:checked + label {
    border-color: var(--primary);
    background-color: rgba(4, 106, 56, 0.05);
  }

  .size-option label span:first-child {
    font-weight: bold;
    font-size: 1.1rem;
  }

  .size-option label span:last-child {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: bold;
  }

  .gift-option {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid var(--secondary);
    background-color: var(--light-bg);
  }

  .gift-option-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .gift-option-title i {
    color: var(--highlight);
  }

  .zoom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(46, 46, 46, 0.9);
    justify-content: center;
    align-items: center;
  }

  .zoom-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
  }

  .zoom-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--background);
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
  }

  .zoom-close:hover {
    color: var(--highlight);
  }

  .similar-products-container {
    background-color: var(--light-bg);
    padding: 40px 0;
    position: relative;
  }

  .product-carousel {
    position: relative;
    padding: 10px 40px;
  }

  .similar-products-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 15px 0;
    margin: 0 -10px;
  }

  .similar-product-card {
    background-color: var(--background);
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 10px rgba(4, 106, 56, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
  }

  .similar-product-card:hover {
    box-shadow: 0 8px 20px rgba(4, 106, 56, 0.15);
    transform: translateY(-5px);
  }

  .similar-product-card .product-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background);
  }

  .similar-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .similar-product-card:hover img {
    transform: scale(1.05);
  }

  .btn-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .similar-product-card:hover .btn-wishlist {
    opacity: 1;
  }

  .product-title {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 48px;
  }

  .similar-product-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary);
  }

  .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--background);
    border: 1px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(4, 106, 56, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    color: var(--primary);
  }

  .carousel-control:hover {
    background-color: var(--primary);
    color: var(--background);
  }

  .carousel-control.prev {
    left: 0;
  }

  .carousel-control.next {
    right: 0;
  }

  .offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--primary), var(--highlight));
    color: var(--background);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(4, 106, 56, 0.2);
  }

  .offer-badge.categories {
    background: linear-gradient(135deg, var(--highlight), var(--primary));
  }

  .offer-badge.brand {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
  }

  .offer-badge.product {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
  }

  .price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
  }

  .current-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
  }

  .original-price {
    font-size: 1.2rem;
    color: var(--secondary);
    text-decoration: line-through;
  }

  .discount-percent {
    background: var(--primary);
    color: var(--background);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: bold;
  }

  .savings-text {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 2px;
  }

  .offer-details {
    background: var(--light-bg);
    padding: 8px;
    margin: 8px 0;
    border-radius: 4px;
    border-left: 3px solid var(--primary);
  }

  .offer-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
  }

  .offer-description {
    font-size: 0.75rem;
    color: var(--text);
    line-height: 1.3;
  }

  .offer-validity {
    font-size: 0.7rem;
    color: var(--highlight);
    font-weight: 500;
    margin-top: 4px;
  }

  .limited-time {
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  .countdown-timer {
    background: var(--text);
    color: var(--background);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-top: 4px;
    text-align: center;
  }

  .timer-digit {
    background: var(--primary);
    padding: 2px 4px;
    border-radius: 2px;
    margin: 0 1px;
  }

  @media (max-width: 1200px) {
    .img-zoom-result {
      right: -320px;
      width: 350px;
      height: 350px;
    }
  }

  @media (max-width: 992px) {
    .img-zoom-lens,
    .img-zoom-result {
      display: none !important;
    }
    .product-image img {
      cursor: zoom-in;
    }
  }

  @media (max-width: 767px) {
    .product-image-container {
      height: 500px;
    }
    .thumbnail-container {
      flex-direction: row;
      height: auto;
      overflow-x: auto;
      overflow-y: hidden;
      margin-top: 15px;
    }
  }

  @media (max-width: 768px) {
    .similar-products-slider {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
    }
    .similar-product-card {
      flex: 0 0 auto;
      width: 80%;
      scroll-snap-align: center;
    }
    .carousel-control {
      width: 30px;
      height: 30px;
      font-size: 0.8rem;
    }
  }
