  /* ============================================
   PRODUCT TITLE & PRICE SECTION
   ============================================ */

   .pdtitle-section {
    margin: 0 0 16px 0;
    padding: 0;
  }
  
  .pdtitle-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  
  .pdtitle-stars {
    display: flex;
    gap: 3px;
  }
  
  .pdtitle-stars i {
    color: #FFA500;
    font-size: 1rem;
  }
  
  .pdtitle-stars .fa-star-o,
  .pdtitle-stars .fa-star-half-o {
    color: #DDD;
  }
  
  .pdtitle-rating-text {
    font-size: 0.875rem;
    color: #5b6c5d;
  }
  
  .pdtitle-rating-text strong {
    color: #2c3e2f;
    font-weight: 700;
  }
  
  .pdtitle-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e2f;
    line-height: 1.3;
    margin: 0 0 5px 0;
  }
  
  .pdtitle-variant {
    color: #8B9862;
  }
  
  .pdtitle-price-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 5px;
  }
  
  .pdtitle-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e2f;
  }
  
  .pdtitle-price-old {
    font-size: 1.25rem;
    color: #999;
    text-decoration: line-through;
  }
  
  .pdtitle-discount-badge {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
  }
  
  .pdtitle-tax-note {
    font-size: 0.8125rem;
    color: #848688;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1.4;
  }
  
  @media (max-width: 768px) {
    .pdtitle-name {
      font-size: 1.5rem;
    }
    .pdtitle-price {
      font-size: 1.75rem;
    }
  }
  
    /* ===== DESKTOP & GENERAL STYLES ===== */
    
    /* Variant button styling */
    .variant-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      box-sizing: border-box;
      min-width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid #e6e6e6;
      cursor: pointer;
      margin: 4px 6px 4px 0;
      padding: 4px;
      font-size: 0.65rem;
      line-height: 1.1;
      color: #222;  /* Dark text for size buttons */
      text-align: center;
      white-space: normal;
      word-break: break-word;
      transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
    }
  
    .variant-btn::before {
      content: none !important;
    }
    
    .color-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
    }
    
    .size-btn {
      min-width: 48px;
      height: 44px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 8px 12px;
      background: #fff !important;  /* Always white background */
      color: #222 !important;  /* Always dark text */
    }
    
    .variant-btn:hover {
      border-color: #c9d9a1;
      box-shadow: 0 8px 18px rgba(0,0,0,0.06);
    }
    
    .variant-btn.selected {
      border-color: #95652E !important;
      border-width: 3px !important;
      box-shadow: 0 8px 18px rgba(149, 101, 46, 0.2) !important;
      transform: translateY(-1px);
    }

    .size-btn.selected {
      background: #cfe0a8 !important;  /* Light green fill */
      color: #213017 !important;  /* Dark green text */
    }
    
    .variant-btn.selected::after {
      content: "✓" !important;
      position: absolute;
      top: 4px;
      right: 6px;
      font-size: 0.9rem;
      color: #213017;
      font-weight: bold;
      text-shadow: 0 0 2px rgba(0,0,0,0.5);
      z-index: 1;
    }

    .color-btn.selected::after {
      color: #FFFFFF !important;
      text-shadow: 0 0 3px rgba(0,0,0,0.8), 0 0 5px rgba(0,0,0,0.5);  /* Strong shadow for visibility */
    }

    .size-btn.selected::after {
      color: #213017 !important;
      text-shadow: none;
      top: 3px;
      right: 5px;
    }
    
    .variant-btn.disabled {
      opacity: 0.45;
      pointer-events: none;
    }
    
    .attribute-selector-container {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 6px;
    }
    
    /* Gallery Layout */
    .product-gallery-wrap {
      display: flex;
      gap: 12px;
      width: 100%;
      align-items: flex-start;
    }
  
    .gallery-thumbnails {
      max-height: 550px;
     
      overflow-y: auto;
      overflow-x: hidden;
      scrollbar-width: thin;
      flex-shrink: 0;
      padding-right: 0px;
    }
  
    .gallery-thumbnails::-webkit-scrollbar {
      width: 4px;
    }
  
    .gallery-thumbnails::-webkit-scrollbar-thumb {
      background: #ccc;
      border-radius: 4px;
    }
  
    .main-image-container {
      flex: 1;
      min-width: 0;
      position: relative;
    }
  
    .main-media-container {
      position: relative;
      width: 100%;
      max-height: 550px;
      overflow: hidden;
      background: #ffffff;
      border-radius: 8px;
    }
  
    .thumb {
      margin-bottom: 8px;
      cursor: pointer;
    }
  
    .thumb-img {
      width: 60px !important;
      height: 60px !important;
      object-fit: cover !important;
      border: 2px solid #ddd;
      border-radius: 6px;
      cursor: pointer;
      transition: border-color .2s ease, transform .12s ease;
      display: block;
    }
  
    .thumb-img:hover,
    .thumb-img.active {
      border-color: #007bff;
      transform: scale(1.05);
    }
  
    .video-play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      color: rgba(255, 255, 255, 0.9);
      font-size: 24px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    
    /* Main image styling */
    .main-product-img, 
    #mainProductImage {
      width: 100% !important;
      height: auto !important;
      max-height: 550px !important;
      object-fit: contain !important;
      background: #ffffff !important;
    }
  
    #mainProductVideo {
      width: 100% !important;
      height: auto !important;
      max-height: 550px !important;
      object-fit: contain !important;
    }
  
    /* Column padding */
    .row.align-items-start > [class*='col-'] {
      padding-left: 8px;
      padding-right: 8px;
    }
  
    .col-md-6 { 
      padding-left: 8px !important;
      padding-right: 8px !important;
    }

/* ============================================
   PINCODE WIDGET - CONNECTED INPUT & BUTTON
   ============================================ */

   .pincode-check-widget {
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    position: relative;
    z-index: 10;
  }
  
  .pincode-check-widget .card,
  .pincode-check-widget .card-body {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .pincode-check-widget h6 {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #2c3e2f !important;
    margin: 0 0 10px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }
  
  .pincode-check-widget h6 i {
    color: #9ca3af !important;
    font-size: 1rem !important;
  }
  
  .pincode-check-widget .input-group {
    display: flex !important;
    gap: 0 !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    position: relative;
    z-index: 11;
  }
  
  .pincode-check-widget .input-group-append {
    display: flex !important;
    margin: 0 !important;
  }
  
  .pincode-check-widget #pincode-input {
    flex: 1 !important;
    height: 38px !important;
    font-size: 0.875rem !important;
    padding: 0 14px !important;
    border-radius: 8px 0 0 8px !important;
    border: 1.5px solid #d1d5db !important;
    border-right: none !important;
    background: #ffffff !important;
    color: #1f2937 !important;  /* ✅ FIXED: Dark text color */
    box-shadow: none !important;
    margin: 0 !important;
    position: relative;
    z-index: 12;
    pointer-events: auto !important;  /* ✅ Ensure clicks work */
    cursor: text !important;
  }
  
  .pincode-check-widget #pincode-input::placeholder {
    color: #9ca3af !important;  /* ✅ Visible placeholder */
    opacity: 1 !important;
  }
  
  .pincode-check-widget #pincode-input:focus {
    outline: none !important;
    border-color: #9ca885 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(156, 168, 133, 0.1) !important;
  }
  
  .pincode-check-widget #check-pincode-btn {
    height: 38px !important;
    padding: 0 22px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    border-radius: 0 8px 8px 0 !important;
    border: 1.5px solid #9ca885 !important;
    color: #ffffff !important;
    box-shadow: none !important;
    margin: 0 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    position: relative;
    z-index: 12;
  }
  
  .pincode-check-widget #check-pincode-btn:hover {
    background: #8a9673 !important;
    border-color: #8a9673 !important;
    transform: translateY(-1px);
  }
  
  .pincode-check-widget #check-pincode-btn:active {
    transform: translateY(0);
  }
  
  .pincode-check-widget small {
    font-size: 0.75rem !important;
    color: #6b7280 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
  }
  
  .pincode-check-widget .alert {
    border-radius: 8px !important;
    padding: 12px !important;
    margin: 10px 0 0 0 !important;
    font-size: 0.8125rem !important;
  }
  
  .pincode-check-widget #pincode-result {
    position: relative;
    z-index: 10;
  }
  
  @media (max-width: 768px) {
    .pincode-check-widget #pincode-input,
    .pincode-check-widget #check-pincode-btn {
      height: 40px !important;
      font-size: 0.875rem !important;
    }
    
    .pincode-check-widget #pincode-input {
      padding: 0 12px !important;
    }
    
    .pincode-check-widget #check-pincode-btn {
      padding: 0 18px !important;
    }
  }
  
    /* ===== MOBILE OPTIMIZATIONS ===== */
    @media (max-width: 768px) {
      /* Tighter spacing for mobile */
      .section-content.padding-y {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
      }
      
      .col-md-6 {
        padding-left: 8px !important;
        padding-right: 8px !important;
        margin-bottom: 16px !important;
      }
      
      /* Product title */
      .content-body .title {
        font-size: 1.35rem !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
        margin-top: 0 !important;
      }
      
      /* Price section */
      .content-body .mb-2 {
        margin-bottom: 12px !important;
      }
      
      .price.h4 {
        font-size: 1.5rem !important;
        margin-bottom: 4px !important;
      }
      
      .price-old {
        font-size: 1rem !important;
      }
      
      /* Variant labels */
      .content-body label {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        margin-bottom: 8px !important;
        display: block !important;
      }
      
      /* Variant swatches - smaller on mobile */
      .variant-btn {
        min-width: 44px !important;
        height: 44px !important;
        margin: 4px 6px 4px 0 !important;
        font-size: 0.7rem !important;
        padding: 4px !important;
      }
      
      .color-btn {
        width: 44px !important;
        height: 44px !important;
      }
      
      .size-btn {
        min-width: 38px !important;
        height: 38px !important;
        padding: 6px 10px !important;
        font-size: 0.85rem !important;
        border-radius: 10px !important;
      }
      
      .variant-btn.selected::after {
        font-size: 0.75rem !important;
        top: 2px !important;
        right: 4px !important;
      }
      
      /* Attribute container */
      .attribute-selector-container {
        gap: 4px !important;
        margin-top: 4px !important;
        margin-bottom: 5px !important;
      }
      
      /* Stock status */
      #stock-status {
        font-size: 0.95rem !important;
        margin-bottom: 12px !important;
      }
      
      /* Product sections */
      .content-body h2.title,
      .content-body h6.title {
        font-size: 1.1rem !important;
        margin-top: 16px !important;
        margin-bottom: 8px !important;
        font-weight: 700 !important;
      }
      
      .content-body p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
      }
      
      .content-body hr {
        margin: 16px 0 !important;
      }
      
      /* Product icons */
      .product-icon-text {
        margin-top: 12px !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
      }
      
      .product-icon {
        width: 32px !important;
        height: 32px !important;
        flex-shrink: 0 !important;
      }
      
      .product-icon-text h6 {
        font-size: 0.85rem !important;
        margin: 0 !important;
        line-height: 1.3 !important;
      }
      
      /* Gallery */
      .product-gallery-wrap { 
        flex-direction: column; 
      }
      
      .gallery-thumbnails {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
        max-height: none !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        margin-bottom: 12px !important;
        gap: 8px !important;
        padding-right: 0 !important;
        padding-bottom: 8px !important;
      }
      
      .thumb { 
        flex: 0 0 auto !important;
        margin-bottom: 0 !important;
      }
      
      .thumb-img {
        width: 52px !important;
        height: 52px !important;
        border-radius: 8px !important;
      }
      
      .main-image-container { 
        width: 100% !important;
        margin: 0 auto !important;
      }
      
      .main-media-container {
        max-height: 380px !important;
        border-radius: 12px !important;
        margin-bottom: 16px !important;
      }
      
      /* Share and wishlist */
      .share-tag,
      .heart-tag {
        width: 36px !important;
        height: 36px !important;
      }
      
      .share-tag i,
      .heart-tag i {
        font-size: 16px !important;
      }
      
      /* Rating stars */
      .rating-star {
        font-size: 0.85rem !important;
        margin-bottom: 8px !important;
      }
      
      .rating-star i {
        font-size: 0.85rem !important;
      }
      
      .rating-star span {
        font-size: 0.85rem !important;
      }
      
      /* Card padding */
      .card {
        padding: 12px !important;
        margin-bottom: 12px !important;
      }
      
      .content-body {
        padding: 0 !important;
      }
      
      /* Reviews */
      .section-heading h3 {
        font-size: 1.2rem !important;
        margin-bottom: 12px !important;
      }
      
      .box.mb-3 {
        padding: 12px !important;
        margin-bottom: 12px !important;
      }
      
      .icontext img {
        width: 36px !important;
        height: 36px !important;
      }
      
      .icontext h6 {
        font-size: 0.95rem !important;
      }
      
      .icontext .date {
        font-size: 0.75rem !important;
      }
      
      /* Sticky cart button */
      .sticky-cart-btn {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: #fff !important;
        padding: 12px 16px !important;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1) !important;
        z-index: 999 !important;
      }

      .sticky-cart-btn .d-flex {
        display: flex;
        gap: 12px;
        width: 100%;
      }
      
      .sticky-cart-btn .btn {
        font-size: 1rem !important;
        padding: 12px 20px !important;
        border-radius: 10px !important;
      }
    }
  
  
    /* Wishlist button styling */
  .heart-tag .wishlist-link.add-to-wishlist-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: inherit;
    font: inherit;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .heart-tag .wishlist-link.add-to-wishlist-btn:focus {
    outline: none;
  }
  
  .heart-tag .wishlist-link.add-to-wishlist-btn:hover i {
    transform: scale(1.1);
    transition: transform 0.2s;
  }
  
  /* ===== BUY NOW BUTTON STYLES ===== */
  
  .btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%) !important;
    border: none !important;
    color: #000 !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3) !important;
    transition: all 0.2s ease !important;
  }
  
  .btn-warning:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4) !important;
    color: #000 !important;
  }
  
  .btn-warning:active {
    transform: translateY(0) !important;
  }
  
  /* Desktop button group */
  .d-md-flex.gap-2 {
    gap: 12px !important;
  }
  
  .d-md-flex.gap-2 .btn {
    flex: 1 !important;
    min-width: 160px !important;
  }
  
  /* Mobile sticky buttons */
  .sticky-cart-btn .d-flex.gap-2 {
    gap: 10px !important;
  }
  
  .sticky-cart-btn .flex-fill {
    flex: 1 !important;
  }
  
  @media (max-width: 768px) {
    .btn-warning {
      font-size: 0.95rem !important;
      padding: 12px 16px !important;
    }
    
    .btn-outline-primary {
      font-size: 0.95rem !important;
      padding: 12px 16px !important;
    }
  }
  
/* ============================================
   MATERIAL & IMPACT SECTION - FIGMA EXACT MATCH
   Prefix: pdmi (product-detail-material-impact)
   ============================================ */

   .pdmi-section {
    margin: 28px 0 36px 0;
    padding: 0;
  }
  
  .pdmi-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;  /* 24px from Figma */
    font-weight: 700;
    color: #A66D4E;  /* Exact color from Figma */
    margin: 0 0 24px 0;
    padding: 0;
    text-align: left;
    letter-spacing: -0.01em;
  }
  
  .pdmi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
  }
  
  .pdmi-column {
    text-align: center;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* REMOVED: Circular background - icons displayed directly */
  .pdmi-icon-circle {
    width: auto;
    height: auto;
    margin: 0 auto 16px auto;
    background: transparent;  /* No background */
    border-radius: 0;  /* No circular shape */
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;  /* No border */
    box-shadow: none;  /* No shadow */
    flex-shrink: 0;
  }
  
  .pdmi-icon {
    width: 48px;  /* Adjusted size to match Figma layout */
    height: 48px;
    object-fit: contain;
  }
  
  .pdmi-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;  /* 16px from Figma */
    font-weight: 700;  /* SemiBold */
    color: #95652E;  /* Black text from Figma */
    margin: 0 0 10px 0;
    padding: 0;
    letter-spacing: 0;
    line-height: 1;
  }
  
  .pdmi-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;  /* 14px */
    font-weight: 400;
    color: #000000;  /* Black text from Figma */
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-align: center;
    max-width: 280px;
  }
  
  /* Mobile Responsive */
  @media (max-width: 991px) {
    .pdmi-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .pdmi-column {
      flex-direction: row;
      text-align: left;
      align-items: flex-start;
      gap: 14px;
    }
    
    .pdmi-icon-circle {
      margin: 0;
    }
    
    .pdmi-icon {
      width: 44px;
      height: 44px;
    }
    
    .pdmi-text {
      text-align: left;
      padding: 0;
      max-width: none;
    }
  }
  
  @media (max-width: 768px) {
    .pdmi-section {
      margin: 20px 0 28px 0;
    }
    
    .pdmi-heading {
      font-size: 1.25rem;  /* 20px on mobile */
      margin-bottom: 20px;
    }
    
    .pdmi-grid {
      gap: 20px;
    }
    
    .pdmi-column {
      gap: 12px;
    }
    
    .pdmi-icon {
      width: 40px;
      height: 40px;
    }
    
    .pdmi-label {
      font-size: 0.9375rem;  /* 15px */
      margin-bottom: 6px;
    }
    
    .pdmi-text {
      font-size: 0.8125rem;  /* 13px */
      line-height: 1.4;
    }
  }
  
  @media (max-width: 480px) {
    .pdmi-heading {
      font-size: 1.125rem;  /* 18px */
    }
    
    .pdmi-icon {
      width: 36px;
      height: 36px;
    }
    
    .pdmi-label {
      font-size: 0.875rem;  /* 14px */
    }
    
    .pdmi-text {
      font-size: 0.75rem;  /* 12px */
    }
  }
  
    /* ============================================
     PRODUCT ACTION BUTTONS - LEFT COLUMN (FIGMA)
     Prefix: pd (product-detail)
     ============================================ */
  
     .pd-action-buttons {
      max-width: 90%;
      width: 90%;
      margin: 10px 70px;
    }
  
    .pd-button-group {
      display: flex;
      gap: 12px;
      width: 100%;
    }
  
    .pd-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
      text-decoration: none;
      white-space: nowrap;
      min-height: 35px;
      padding: 10px 32px;
    }
  
  .pd-btn i {
    font-size: 1.125rem;
  }
  
  .pd-btn span {
    font-size: 1rem;
  }
  
  /* Add to Cart Button - Green */
  .pd-btn-cart {
    background: #FDFFFB;
    color: #262323;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 14px 32px;
   /*  border-radius: 125px; */
    border-radius: 125px;
    border: 1.5px solid #827F7F;
    min-width: 160px;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  
  .pd-btn-cart:hover {
    background: #95652E;  /* Brown background */
    border-color: #95652E;
    color: #FFFFFF;  /* White text */
  }

  .pd-btn-cart:hover .pd-btn-icon {
    filter: brightness(0) invert(1);  /* Makes icon white */
  }
  
  .pd-btn-cart:active {
    transform: translateY(1px);
    background: #7A4F23;  /* Slightly darker brown on click */
  }
  
  .pd-btn-cart:active {
    transform: translateY(0);
  }
  
  /* Buy Now Button - Yellow/Orange */
  .pd-btn-buy {
    background: linear-gradient(180deg, #90AD46 0%, #2B430D 100%);  /* Top to bottom gradient */
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 14px 32px;
    /* border-radius: 85px; */
    border-radius: 85px;
    border: none;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(144, 173, 70, 0.3);
  }
  
  .pd-btn-buy:hover {
    background: linear-gradient(180deg, #7A9639 0%, #1F3209 100%);
    color: #FFFFFF;
  }

  .pd-btn-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }
  
  .pd-btn-buy:active {
    transform: translateY(0);
  }
  
  /* Out of Stock Message */
  .pd-out-of-stock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(244, 67, 54, 0.1);
    color: #F44336;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  
  .pd-out-of-stock i {
    font-size: 1.25rem;
  }
  
  /* Secure Checkout */
  .pd-secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    color: #5B6C5D;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
  }
  
  .pd-secure-checkout i {
    font-size: 1rem;
    color: #7A9639;
  }
  
  /* Mobile - Keep Sticky Buttons */
  @media (max-width: 768px) {
    /* Hide desktop buttons on mobile */
    .pd-action-buttons {
      display: none;
    }
    
    /* Keep existing sticky mobile buttons */
    .sticky-cart-btn {
      display: block !important;
    }
  }
  
  /* Tablet & Desktop */
  @media (min-width: 769px) {
    /* Hide mobile sticky buttons on desktop */
    .sticky-cart-btn {
      display: none !important;
    }
    
    /* Show desktop buttons in left column */
    .pd-action-buttons {
      display: block;
    }
  }
  
  /* Larger screens - single column buttons */
  @media (max-width: 1024px) and (min-width: 769px) {
    .pd-button-group {
      flex-direction: column;
      gap: 12px;
    }
    
    .pd-btn {
      width: 100%;
    }
  }
  
/* ============================================
   WHY YOU'LL LOVE IT SECTION - ACTUALLY CORRECT
   NO borders on icons, just the icons themselves
   ============================================ */

   .pdwyl-section {
    background: #FFFBF5;
    border-radius: 12px;
    padding: 15px 15px;
    margin: 20px 0 20px 0;
  }
  
  .pdwyl-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  /* Heart Icon - NO circle wrapper, just the icon */
  .pdwyl-icon-heart {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .pdwyl-icon-heart img {
    width: 36px;  /* Icon size with built-in circle */
    height: 36px;
    object-fit: contain;
  }
  
  .pdwyl-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;  /* 24px */
    font-weight: 700;  /* Bold */
    color: #95652E;
    margin: 0;
    padding: 0;
    line-height: 1;
  }
  
  .pdwyl-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .pdwyl-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
    margin: 0;
  }
  
  /* Checkbox - NO square border, just the checkmark icon */
  .pdwyl-checkbox {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .pdwyl-checkbox img {
    width: 20px;  /* Checkmark icon size */
    height: 20px;
    object-fit: contain;
  }
  
  .pdwyl-text {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;  /* 18px */
    font-weight: 500;  /* SemiBold - NOT Bold! */
    color: #2A2323;
    line-height: 1.4;
    margin: 0;
    padding: 0;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .pdwyl-section {
      padding: 20px;
      margin: 20px 0 24px 0;
      border-radius: 10px;
    }
    
    .pdwyl-header {
      gap: 10px;
      margin-bottom: 16px;
    }
    
    .pdwyl-icon-heart img {
      width: 32px;
      height: 32px;
    }
    
    .pdwyl-heading {
      font-size: 1.25rem;
    }
    
    .pdwyl-list {
      gap: 14px;
    }
    
    .pdwyl-item {
      gap: 10px;
    }
    
    .pdwyl-checkbox img {
      width: 18px;
      height: 18px;
    }
    
    .pdwyl-text {
      font-size: 1rem;
      line-height: 1.45;
    }
  }
  
  @media (max-width: 480px) {
    .pdwyl-section {
      padding: 16px;
      margin: 16px 0 20px 0;
    }
    
    .pdwyl-icon-heart img {
      width: 28px;
      height: 28px;
    }
    
    .pdwyl-heading {
      font-size: 1.125rem;
    }
    
    .pdwyl-checkbox img {
      width: 16px;
      height: 16px;
    }
    
    .pdwyl-text {
      font-size: 0.9375rem;
    }
  }
  
  
  /* ============================================
     PRICE SUMMARY BOX - NO HIDDEN CHARGES
     Prefix: pdps (product-detail-price-summary)
     ============================================ */
  
     .pdps-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(135deg, #F0F8E8 0%, #E8F5DD 100%);
      border: 1.5px solid #C9E4B5;
      border-radius: 12px;
      padding: 14px 18px;
      margin: 24px 0 16px 0;
      gap: 12px;
    }
    
    .pdps-left {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
    }
    
    .pdps-check-icon {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .pdps-check-icon i {
      color: #6B9654;
      font-size: 1.25rem;
    }
    
    .pdps-no-charges {
      font-size: 0.9375rem;
      font-weight: 700;
      color: #2c3e2f;
      letter-spacing: -0.01em;
    }
    
    .pdps-right {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    
    .pdps-save-badge {
      background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
      color: white;
      font-size: 0.6875rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      white-space: nowrap;
    }
    
    .pdps-old-price {
      font-size: 0.875rem;
      color: #848688;
      text-decoration: line-through;
      font-weight: 400;
    }
    
    .pdps-final-price {
      font-size: 1.125rem;
      font-weight: 700;
      color: #6B9654;
      letter-spacing: -0.02em;
    }

  
    @media (max-width: 768px) {
      .pdps-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 14px;
        gap: 10px;
      }
      
      .pdps-left {
        width: 100%;
      }
      
      .pdps-no-charges {
        font-size: 0.875rem;
      }
      
      .pdps-right {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
      }
      
      .pdps-save-badge {
        font-size: 0.625rem;
        padding: 3px 8px;
      }
      
      .pdps-old-price {
        font-size: 0.8125rem;
      }
      
      .pdps-final-price {
        font-size: 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .pdps-box {
        padding: 10px 12px;
      }
      
      .pdps-no-charges {
        font-size: 0.8125rem;
      }
      
      .pdps-final-price {
        font-size: 0.9375rem;
      }
    }
    
  /* ============================================
     DELIVERY & COD INFO ROW
     Prefix: pddi (product-detail-delivery-info)
     ============================================ */
  
     .pddi-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin: 0 0 24px 0;
      padding: 0;
    }
    
    .pddi-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0;
    }
    
    .pddi-icon {
      flex-shrink: 0;
      font-size: 1.125rem;
      color: #6B9654;
      margin-left: 5px;
    }
    
    .pddi-icon-red {
      color: #E53935;
      font-size: 1.25rem;
    }
    
    .pddi-text {
      font-size: 0.875rem;
      color: #2c3e2f;
      line-height: 1.4;
      font-weight: 500;
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
      .pddi-row {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 20px;
      }
      
      .pddi-icon {
        font-size: 1rem;
      }
      
      .pddi-icon-red {
        font-size: 1.125rem;
      }
      
      .pddi-text {
        font-size: 0.8125rem;
      }
    }
    
    @media (max-width: 480px) {
      .pddi-row {
        gap: 12px;
      }
      
      .pddi-icon {
        font-size: 0.9375rem;
      }
      
      .pddi-icon-red {
        font-size: 1rem;
      }
      
      .pddi-text {
        font-size: 0.75rem;
      }
    }
  
/* ============================================
   PURESTORA PROMISE SECTION - USING BACKGROUND IMAGE
   Background is a vector SVG exported from Figma
   ============================================ */

   .pdpp-section {
    position: relative;
    background-image: url('/static/images/icons/purestora-promise-bg.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 28px 32px;
    margin: 28px 0 32px 0;
    min-height: 200px;
    width: 100%;
  }
  
  .pdpp-content {
    display: flex;
    align-items: center;
    gap: 0px;
    position: relative;
    z-index: 1;
  }
  
  .pdpp-icon {
    flex-shrink: 0;
    margin-left: 10px;
    margin-right: 30px;
  }
  
  .pdpp-logo {
    width: 86px;
    height: 82px;
    object-fit: contain;
    display: block;
  }
  
  .pdpp-text {
    flex: 1;
    padding-right: 10px;
  }
  
  .pdpp-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #171D4D;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1.3;
  }
  
  .pdpp-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #191919;
    line-height: 1.67;
    margin: 0 0 20px 0;
    padding: 0;
  }

  /* Mobile - KEEP SAME LAYOUT AS DESKTOP */
  @media (max-width: 768px) {
    .pdpp-section {
      padding: 16px 12px;
      margin: 20px 0;
      min-height: auto;
      background-size: cover;
      background-position: center;
    }
    
    .pdpp-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
    
    .pdpp-icon {
      margin: 0 auto;
      display: flex;
      justify-content: center;
      width: 100%;
    }
    
    .pdpp-logo {
      width: 60px;
      height: 58px;
    }
    
    .pdpp-text {
      padding: 0;
      text-align: center;
      width: 100%;
    }
    
    .pdpp-title {
      font-size: 1.125rem;
      margin-bottom: 8px;
    }
    
    .pdpp-description {
      font-size: 0.8125rem;
      line-height: 1.5;
      margin-bottom: 0;
    }
  }
  
  @media (max-width: 480px) {
    .pdpp-section {
      padding: 14px 10px;
      margin: 16px 0;
    }
    
    .pdpp-logo {
      width: 50px;
      height: 48px;
    }
    
    .pdpp-title {
      font-size: 1rem;
      margin-bottom: 6px;
    }
    
    .pdpp-description {
      font-size: 0.75rem;
      line-height: 1.45;
    }
  }
  

    /* ============================================
     PRODUCT DETAILS SECTION
     Prefix: pddet (product-detail-details)
     ============================================ */
  
  .pddet-section {
    margin: 32px 0;
    padding: 0;
  }
  
  .pddet-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .pddet-icon-wrap {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #B4C99D 0%, #9FB46A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(159, 180, 106, 0.2);
  }
  
  .pddet-icon {
    color: white;
    font-size: 1.25rem;
  }
  
  .pddet-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1E3A5F;
    margin: 0;
    padding: 0;
    letter-spacing: -0.02em;
  }
  
  .pddet-description {
    font-size: 0.9375rem;
    color: #2c3e2f;
    line-height: 1.7;
    margin-bottom: 24px;
    padding: 0;
  }
  
  .pddet-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
  }
  
  .pddet-table tbody tr {
    border-bottom: 1px solid #e6e6e6;
  }
  
  .pddet-table tbody tr:last-child {
    border-bottom: none;
  }
  
  .pddet-table tbody tr:nth-child(even) {
    background-color: #F9FAFB;
  }
  
  .pddet-table tbody tr:nth-child(odd) {
    background-color: white;
  }
  
  .pddet-label {
    padding: 14px 18px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #2c3e2f;
    width: 35%;
    vertical-align: top;
    border-right: 1px solid #e6e6e6;
  }
  
  .pddet-value {
    padding: 14px 18px;
    font-size: 0.9375rem;
    color: #5b6c5d;
    line-height: 1.6;
    width: 65%;
    vertical-align: top;
  }
  
  /* ============================================
     RETURNS & SUPPORT SECTION
     Prefix: pdrs (product-detail-returns-support)
     ============================================ */
  
  .pdrs-section {
    margin: 32px 0 40px 0;
    padding: 0;
  }
  
  .pdrs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .pdrs-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
  }
  
  .pdrs-icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #D4A574 0%, #C09563 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(192, 149, 99, 0.2);
  }
  
  .pdrs-icon {
    width: 75px;
    height: 70px;
    flex-shrink: 0;
    margin-top: 20px;
    margin-bottom: 5px;
  }
  
  .pdrs-content {
    flex: 1;
  }
  
  .pdrs-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #95652E;
    margin: 0 0 8px 0;
  }
  
  .pdrs-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #191919;
    line-height: 1.6;
    margin: 0;
  }
  
  .pdrs-link {
    color: #6B9654;
    text-decoration: underline;
    transition: color 0.2s ease;
  }
  
  .pdrs-link:hover {
    color: #8B6B47;
    text-decoration: none;
  }
  
  .pdrs-email {
    color: #6B9654;
    font-weight: 600;
  }
  
  .pdrs-email:hover {
    color: #8B9862;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .pddet-section {
      margin: 28px 0;
    }
    
    .pddet-header {
      gap: 10px;
      margin-bottom: 16px;
    }
    
    .pddet-icon-wrap {
      width: 40px;
      height: 40px;
      border-radius: 10px;
    }
    
    .pddet-icon {
      font-size: 1.125rem;
    }
    
    .pddet-title {
      font-size: 1.25rem;
    }
    
    .pddet-description {
      font-size: 0.875rem;
      margin-bottom: 20px;
    }
    
    .pddet-label {
      font-size: 0.875rem;
      padding: 12px 14px;
      width: 40%;
    }
    
    .pddet-value {
      font-size: 0.875rem;
      padding: 12px 14px;
      width: 60%;
    }
    
    /* Returns & Support - Stack on mobile */
    .pdrs-row {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .pdrs-item {
      gap: 14px;
    }
    
    .pdrs-icon-wrap {
      width: 48px;
      height: 48px;
    }
    
    .pdrs-icon {
      font-size: 1.25rem;
    }
    
    .pdrs-heading {
      font-size: 1rem;
      margin-bottom: 6px;
    }
    
    .pdrs-text {
      font-size: 0.8125rem;
    }
  }
  
  @media (max-width: 480px) {
    .pddet-icon-wrap {
      width: 36px;
      height: 36px;
    }
    
    .pddet-icon {
      font-size: 1rem;
    }
    
    .pddet-title {
      font-size: 1.125rem;
    }
    
    .pddet-label {
      font-size: 0.8125rem;
      padding: 10px 12px;
    }
    
    .pddet-value {
      font-size: 0.8125rem;
      padding: 10px 12px;
    }
    
    .pdrs-icon-wrap {
      width: 44px;
      height: 44px;
    }
    
    .pdrs-icon {
      font-size: 1.125rem;
    }
    
    .pdrs-heading {
      font-size: 0.9375rem;
    }
    
    .pdrs-text {
      font-size: 0.75rem;
    }
  }

  .content-body {
    padding: 16px !important;
  }

  .sticky-cart-btn .btn-outline-primary {
    background: #FDFFFB !important;
    color: #262323 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    border: 1.5px solid #827F7F !important;
    border-radius: 125px !important;  /* PILL SHAPE - matches desktop */
    padding: 12px 20px !important;
  }

  .sticky-cart-btn .btn-outline-primary:hover {
    background: #95652E !important;
    border-color: #95652E !important;
    color: #FFFFFF !important;
  }
  
  .sticky-cart-btn .btn-warning {
    background: linear-gradient(180deg, #90AD46 0%, #2B430D 100%) !important;
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 85px !important;  /* PILL SHAPE - matches desktop */
    padding: 12px 20px !important;
    box-shadow: 0 4px 12px rgba(144, 173, 70, 0.3) !important;
  }
  
  .sticky-cart-btn .btn-warning:hover {
    background: linear-gradient(180deg, #7A9639 0%, #1F3209 100%) !important;
    color: #FFFFFF !important;
  }

  /* Mobile Sticky Buttons - Match Desktop Exactly */
@media (max-width: 768px) {
  .sticky-cart-btn .btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
  }
  
  .sticky-cart-btn .btn-outline-primary {
    background: #FDFFFB !important;
    color: #262323 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    border: 1.5px solid #827F7F !important;
    border-radius: 125px !important;
    padding: 12px 20px !important;
  }
  
  .sticky-cart-btn .btn-warning {
    background: linear-gradient(180deg, #90AD46 0%, #2B430D 100%) !important;
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 125px !important;
    padding: 12px 20px !important;
    box-shadow: 0 4px 12px rgba(144, 173, 70, 0.3) !important;
  }
}