 /* Product Page Styles - Flipkart Design */

 /* Import Roboto Font (Flipkart's font) */
 @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

 /* Breadcrumbs - Flipkart Style */
 .breadcrumbs {
     background-color: #f1f3f6;
     padding: 12px 0;
     border: none;
     border-bottom: none;
     box-shadow: none;
     margin-top: 112px !important;
     /* Header (56px) + Nav (56px) = 112px */
     margin-bottom: 0 !important;
     position: relative;
     z-index: 1;
 }

 .breadcrumbs .container {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 12px;
     padding: 0 16px;
     font-family: 'Roboto', sans-serif;
 }

 .breadcrumbs a {
     color: #878787;
     text-decoration: none;
     transition: color 0.2s;
 }

 .breadcrumbs a:hover {
     color: #0a4409;
     text-decoration: none;
 }

 .breadcrumbs i {
     font-size: 8px;
     color: #878787;
 }

 .breadcrumbs span {
     color: #212121;
     font-weight: 500;
 }

 /* Product Main Section - Flipkart Style */
 .product-main {
     background-color: #f1f3f6;
     padding: 0;
     min-height: 100vh;
     width: 100%;
     max-width: 100%;
     overflow: visible !important;
     position: relative;
     font-family: 'Roboto', sans-serif;
 }

 .product-container {
     background-color: transparent;
     border-radius: 0;
     padding: 0;
     margin-bottom: 0;
     border: none;
     box-shadow: none;
     width: 100%;
     /* max-width: 1400px; */
     margin: 0 auto;
     overflow: visible !important;
     box-sizing: border-box;
     position: relative;
     height: auto !important;
 }

 .product-main>.container {
     width: 100%;
     max-width: 100%;
     padding: 0;
     margin: 0 auto;
     box-sizing: border-box;
     overflow: visible !important;
     position: relative;
     height: auto !important;
 }

 .product-content {
     display: grid !important;
     grid-template-columns: 37.3% 62.7% !important;
     gap: 0 !important;
     margin-bottom: 0 !important;
     position: relative !important;
     align-items: start !important;
     width: 100% !important;
     max-width: 100% !important;
     overflow: visible !important;
     box-sizing: border-box !important;
     min-height: calc(100vh - 112px) !important;
     height: auto !important;
 }

 /* Product Right Column - Contains both product-info and product-details-section */
 .product-right-column {
     display: flex;
     flex-direction: column;
     gap: 0;
     min-width: 0;
     max-width: 100%;
     overflow-x: hidden;
     overflow-y: visible;
     box-sizing: border-box;
     position: relative;
     /* Normal flow for scrolling */
     padding-left: 0 !important;
     /* No left padding - product-info handles its own padding */
     margin-top: 0 !important;
     padding-top: 0 !important;
     background: white !important;
 }

 /* Product Images Wrapper - Sticky Outer Container - Flipkart Style */
 .product-images-wrapper {
     position: -webkit-sticky;
     position: sticky;
     top: 112px;
     /* Align with breadcrumbs start */
     align-self: start;
     height: fit-content;
     max-height: calc(100vh - 112px);
     overflow-y: auto;
     /* Allow internal scrolling if image gallery is too tall */
     z-index: 100;
     background: white;
     padding: 0;
     /* border-right: 1px solid #f0f0f0; */
     width: 100%;
 }

 /* Hide scrollbar for images wrapper */
 .product-images-wrapper::-webkit-scrollbar {
     display: none;
 }

 /* Product Images - Flipkart Style */
 .product-images {
     display: flex;
     gap: 20px;
     align-items: flex-start;
     margin-bottom: 0;
     margin-top: 0 !important;
     width: 100%;
     max-width: 100%;
     /* overflow: hidden; Removed to allow zoom panel to be visible */
     box-sizing: border-box;
     padding: 0 24px 24px 24px !important;
     /* No top padding - matches Flipkart exactly */
     position: relative;
     background: white;
 }

 /* Thumbnails on far left (vertical) - Flipkart Style */
 .thumbnail-gallery-vertical {
     display: flex;
     flex-direction: column;
     gap: 11px;
     overflow-y: hidden;
     /* Hide scrollbar, handled by buttons */
     max-height: 402px;
     /* 6 items * (56px + 11px gap) approx */
     padding-right: 0;
     flex-shrink: 0;
     scroll-behavior: smooth;
     transition: all 0.3s;
 }

 .thumbnail-wrapper {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
 }

 .thumb-arrow {
     width: 24px;
     height: 24px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     color: #878787;
     border: 1px solid #e0e0e0;
     border-radius: 50%;
     background: #fff;
     font-size: 12px;
     transition: all 0.2s;
     user-select: none;
     z-index: 2;
 }

 .thumb-arrow:hover {
     background: #f0f0f0;
     color: #0a4409;
     border-color: #0a4409;
 }

 .thumb-arrow.disabled {
     opacity: 0.3;
     pointer-events: none;
     cursor: default;
     display: none !important;
 }

 .thumbnail-gallery-vertical::-webkit-scrollbar {
     width: 0;
     display: none;
 }

 .thumbnail-item {
     width: 56px;
     height: 56px;
     box-sizing: border-box;
     border: 2px solid #f0f0f0;
     border-radius: 0;
     overflow: hidden;
     cursor: pointer;
     flex-shrink: 0;
     transition: border-color 0.2s;
     background: white;
 }

 .thumbnail-item:hover {
     border-color: #0a4409;
 }

 .thumbnail-item.active {
     border-color: #0a4409;
     border-width: 2px;
 }

 .thumbnail-item img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     padding: 4px;
 }

 /* Main image container - Outer container - Flipkart Style */
 .main-image-container {
     position: relative;
     width: 100%;
     max-width: 100%;
     height: 450px;
     border: none;
     border-radius: 0;
     /* overflow: hidden; Removed for zoom */
     background: #fff;
     cursor: zoom-in;
     flex: 1;
     box-sizing: border-box;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Main image wrapper - Inner container (like Flipkart) */
 .main-image-wrapper {
     position: relative;
     width: 100%;
     height: 100%;
     max-width: 100%;
     max-height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     /* overflow: hidden; Removed for zoom */
     box-sizing: border-box;
     padding: 20px;
 }

 .main-image {
     width: 100%;
     height: 100%;
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
     transition: transform 0.3s;
     display: block;
 }

 /* ============================================================
   ZOOM: Lens on image + Result panel beside it (Flipkart style)
   ============================================================ */

 /* The image wrapper must be position:relative so the lens is absolutely positioned inside it */
 .main-image-wrapper {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     height: 100%;
 }

 /* The zoom lens — small square that follows the cursor over the image */
 .image-zoom-lens {
     display: none;
     position: absolute;
     border: 2px solid rgba(255, 193, 7, 0.9);
     background: rgba(255, 235, 59, 0.25);
     cursor: crosshair;
     pointer-events: none;
     z-index: 15;
     width: 130px;
     height: 130px;
     box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
 }

 /* The large result panel — positioned absolutely beside the image area */
 .zoom-result-panel {
     display: none;
     position: absolute;
     left: 100%;
     /* to the right of main-image-container (which must be position:relative) */
     top: 0;
     width: 500px;
     height: 500px;
     border: 1px solid #e0e0e0;
     background: #fff;
     background-repeat: no-repeat;
     background-size: 400% 400%;
     /* magnification: 4x */
     z-index: 100;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
     border-radius: 4px;
     overflow: hidden;
     /* Slight offset so it doesn't overlap the main-image edge */
     margin-left: 8px;
 }

 /* Show both when hovering the image area — display is managed by JS */

 /* Keep old .image-zoom invisible (it was the hover-overlay; we replaced it) */
 .image-zoom {
     display: none !important;
 }

 /* Wishlist - Flipkart Style (Top Right of Image Area) */
 .product-wishlist {
     position: absolute;
     top: 32px;
     right: 32px;
     z-index: 20;
 }

 .wishlist-btn {
     background: white;
     border: none;
     font-size: 22px;
     color: #878787;
     cursor: pointer;
     padding: 10px;
     border-radius: 50%;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
 }

 .wishlist-btn:hover {
     color: #ff6161;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
     transform: scale(1.05);
 }

 .wishlist-btn.active {
     color: #ff6161;
 }

 .wishlist-btn.active i.fa-heart {
     font-weight: 900;
 }

 /* Product Info - Flipkart Style */
 .product-info {
     display: flex;
     flex-direction: column;
     gap: 8px;
     position: relative;
     background: white;
     padding: 24px !important;
     /* Match Flipkart - equal padding all around */
     border-bottom: 1px solid #f0f0f0;
     margin-top: 0 !important;
     margin-bottom: 0 !important;
 }

 /* Top Right Actions */
 .product-top-actions {
     position: absolute;
     top: 24px !important;
     /* Match product-info padding-top */
     right: 24px !important;
     /* Match product-info padding-right */
     display: flex;
     align-items: center;
     gap: 16px;
     z-index: 10;
 }

 .compare-checkbox {
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 13px;
     color: #212121;
     cursor: pointer;
     user-select: none;
     font-family: 'Roboto', sans-serif;
 }

 .compare-checkbox input[type="checkbox"] {
     width: 15px;
     height: 15px;
     cursor: pointer;
     accent-color: #0a4409;
 }

 .share-dropdown-wrapper {
     position: relative;
     display: inline-block;
 }

 .share-btn {
     width: 32px;
     height: 32px;
     border: none;
     border-radius: 50%;
     background: transparent;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #212121;
     transition: all 0.2s;
     font-size: 18px;
 }

 .share-btn:hover {
     background: #f0f0f0;
 }

 /* Share Dropdown - Flipkart Style */
 .share-dropdown {
     position: absolute;
     top: 100%;
     right: 0;
     margin-top: 8px;
     background: #ffffff;
     border-radius: 8px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
     padding: 12px 0;
     min-width: 180px;
     z-index: 1000;
     display: none;
     opacity: 0;
     transform: translateY(-10px);
     transition: opacity 0.2s ease, transform 0.2s ease;
 }

 .share-dropdown-wrapper.active .share-dropdown {
     display: block;
     opacity: 1;
     transform: translateY(0);
 }

 .share-option {
     display: flex;
     align-items: center;
     padding: 12px 20px;
     text-decoration: none;
     color: #212121;
     transition: background-color 0.2s;
     cursor: pointer;
 }

 .share-option:hover {
     background-color: #f5f5f5;
 }

 .share-icon {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 12px;
     font-size: 18px;
     color: #ffffff;
 }

 .facebook-icon {
     background-color: #1877f2;
 }

 .twitter-icon {
     background-color: #1da1f2;
 }

 .email-icon {
     background-color: #666666;
 }

 .share-option span {
     font-size: 14px;
     font-weight: 400;
     color: #212121;
     font-family: 'Roboto', sans-serif;
 }

 /* Product Title - Flipkart Style */
 .product-title {
     font-size: 18px;
     font-weight: 400;
     color: #212121;
     line-height: 1.3 !important;
     /* Tighter line-height like Flipkart */
     margin: 0 0 8px 0 !important;
     /* Tight spacing below like Flipkart */
     padding: 0 120px 0 0 !important;
     /* Make room for Compare/Share buttons */
     font-family: 'Roboto', sans-serif;
     position: relative;
     z-index: 1;
 }

 /* Rating Section - Flipkart Style */
 .product-rating {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-top: 0 !important;
     margin-bottom: 8px !important;
     width: fit-content;
     background: transparent !important;
     padding: 0 !important;
     flex-wrap: nowrap;
 }

 /* Green badge wrapper - contains rating value and star icon */
 .product-rating .rating-badge {
     background: #388e3c;
     color: white;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 2px;
     padding: 2px 8px;
     border-radius: 3px;
     font-size: 14px;
     font-weight: 500;
     font-family: 'Roboto', sans-serif;
     line-height: 1.4;
     white-space: nowrap;
     flex-shrink: 0;
 }

 /* Rating value inside badge */
 .product-rating .rating-badge .rating-value {
     background: transparent !important;
     color: white !important;
     padding: 0 !important;
     margin: 0 !important;
     font-size: 14px !important;
     font-weight: 500 !important;
     line-height: 1.4 !important;
     display: inline-block;
 }

 /* Star icon inside badge */
 .product-rating .rating-badge .rating-star-icon {
     color: white !important;
     font-size: 12px !important;
     margin: 0 !important;
     padding: 0 !important;
     line-height: 1.4 !important;
     display: inline-block;
     vertical-align: middle;
 }

 /* Rating text is separate, outside green badge */
 .product-rating .rating-text {
     background: transparent !important;
     padding: 0 !important;
     margin: 0 !important;
     color: #878787 !important;
     font-size: 14px !important;
     font-weight: 500 !important;
     line-height: 1.4 !important;
     white-space: nowrap;
 }

 /* Legacy rating-stars - no longer used in main rating display */
 .rating-stars {
     display: none;
     /* Hidden - using badge style instead */
 }

 /* Rating value is now inside .rating-badge */
 /* Legacy .rating-value - now handled by .rating-badge .rating-value */
 .rating-value {
     font-size: 14px;
     font-weight: 500;
     color: white;
     margin-left: 0;
     font-family: 'Roboto', sans-serif;
 }

 .rating-text {
     color: #878787;
     font-size: 14px;
     cursor: pointer;
     font-family: 'Roboto', sans-serif;
     font-weight: 500;
     margin-left: 8px;
     background: transparent !important;
     /* Not part of green badge */
     padding: 0 !important;
     border-radius: 0 !important;
 }

 .rating-text:hover {
     color: #0a4409;
 }

 /* Price Section - Flipkart Style */
 .product-price-section {
     display: flex;
     align-items: baseline;
     gap: 12px;
     flex-wrap: wrap;
     margin-top: 0 !important;
     margin-bottom: 8px !important;
     /* Tight spacing like Flipkart */
 }

 .price-current {
     font-size: 28px;
     font-weight: 500;
     color: #212121;
     font-family: 'Roboto', sans-serif;
     margin: 0 !important;
     padding: 0 !important;
     line-height: 1.2 !important;
 }

 .price-original {
     font-size: 16px;
     color: #878787;
     text-decoration: line-through;
     font-family: 'Roboto', sans-serif;
     margin: 0 !important;
     padding: 0 !important;
     line-height: 1.2 !important;
 }

 .discount-badge {
     background-color: transparent;
     color: #388e3c;
     padding: 0;
     border-radius: 0;
     font-size: 16px;
     font-weight: 500;
     font-family: 'Roboto', sans-serif;
 }

 .extra-offer {
     font-size: 14px;
     color: #388e3c;
     font-weight: 500;
     font-family: 'Roboto', sans-serif;
 }

 /* Protect Promise - Hidden for Flipkart style */
 .protect-promise {
     display: none;
 }

 /* Delivery Info - Flipkart Style */
 .product-delivery {
     display: none;
 }

 /* Available Offers - Flipkart Style */
 .available-offers {
     margin-top: 0 !important;
     margin-bottom: 0 !important;
     padding-top: 0 !important;
     padding-bottom: 0 !important;
     border-bottom: 1px solid #f0f0f0;
 }

 .available-offers .offers-title {
     margin-bottom: 8px !important;
     /* Tight spacing like Flipkart */
 }

 .offers-title {
     font-size: 16px;
     font-weight: 500;
     color: #212121;
     margin: 0 !important;
     padding: 0 !important;
     line-height: 1.3 !important;
     font-family: 'Roboto', sans-serif;
 }

 .offers-list {
     list-style: none;
     padding: 0 !important;
     margin: 0 !important;
     display: flex;
     flex-direction: column;
     gap: 4px !important;
     /* Minimal gap like Flipkart */
 }

 .offers-list .offer-item {
     margin: 0 !important;
     padding: 0 !important;
 }

 .offer-item {
     font-size: 14px;
     color: #212121;
     line-height: 1.6;
     display: flex;
     align-items: flex-start;
     gap: 8px;
     font-family: 'Roboto', sans-serif;
     font-weight: 400;
 }

 .offer-item::before {
     content: '';
     width: 16px;
     height: 16px;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2388b704'%3E%3Cpath d='M12 2L2 7v10c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-10-5z'/%3E%3C/svg%3E");
     background-size: contain;
     flex-shrink: 0;
     margin-top: 2px;
 }

 .offer-item .offer-label {
     font-weight: 600;
     color: #212121;
 }

 .offer-item .offer-title-text {
     font-weight: 400;
     color: #212121;
 }

 .offer-tc {
     color: #0a4409;
     text-decoration: none;
     margin-left: 4px;
     font-weight: 500;
 }

 .offer-tc:hover {
     text-decoration: underline;
 }

 .view-more-offers {
     margin-top: 4px;
 }

 .view-more-offers a {
     color: #0a4409;
     text-decoration: none;
     font-weight: 500;
     font-size: 14px;
     font-family: 'Roboto', sans-serif;
 }

 .view-more-offers a:hover {
     text-decoration: underline;
 }

 /* Purchase Options - Hidden for Flipkart style */
 .purchase-options {
     display: none;
 }

 /* Variations */
 .product-variations {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .variation-group {
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .variation-label {
     font-size: 16px;
     font-weight: 600;
     color: #212121;
 }

 .variation-options {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
 }

 .variation-option {
     padding: 10px 20px;
     border: 2px solid #e0e0e0;
     border-radius: 4px;
     background: white;
     cursor: pointer;
     font-size: 14px;
     transition: all 0.3s;
     min-width: 80px;
     text-align: center;
 }

 .variation-option:hover {
     border-color: var(--mobitez-purple);
 }

 .variation-option.selected {
     border-color: var(--mobitez-orange);
     background-color: rgba(255, 167, 38, 0.1);
     color: var(--mobitez-orange);
     font-weight: 600;
 }

 /* Color Swatches */
 .color-swatch {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     border: 2px solid #e0e0e0;
     cursor: pointer;
     transition: all 0.3s;
     position: relative;
 }

 .color-swatch:hover {
     border-color: var(--mobitez-purple);
     transform: scale(1.1);
 }

 .color-swatch.selected {
     border-color: var(--mobitez-orange);
     border-width: 3px;
 }

 .color-image-swatch {
     width: 60px;
     height: 60px;
     border: 2px solid #e0e0e0;
     border-radius: 8px;
     overflow: hidden;
     cursor: pointer;
     transition: all 0.3s;
     position: relative;
 }

 .color-image-swatch:hover {
     border-color: var(--mobitez-purple);
     transform: scale(1.05);
 }

 .color-image-swatch.selected {
     border-color: var(--mobitez-orange);
     border-width: 3px;
 }

 .color-image-swatch img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* Quantity Selector */
 .quantity-section {
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .quantity-section label {
     font-size: 16px;
     font-weight: 600;
     color: #212121;
 }

 .quantity-selector {
     display: flex;
     align-items: center;
     border: 1px solid #e0e0e0;
     border-radius: 4px;
     overflow: hidden;
 }

 .quantity-btn {
     width: 36px;
     height: 36px;
     border: none;
     background: #f5f5f5;
     cursor: pointer;
     font-size: 18px;
     color: #212121;
     transition: background 0.3s;
 }

 .quantity-btn:hover {
     background: #e0e0e0;
 }

 .quantity-btn:active {
     background: #d0d0d0;
 }

 #quantityInput {
     width: 50px;
     height: 36px;
     border: none;
     text-align: center;
     font-size: 16px;
     font-weight: 600;
     background: white;
 }

 /* Product Actions - Left Side (Under Images) - Flipkart Style */
 .product-actions-left {
     display: flex !important;
     flex-direction: row !important;
     gap: 12px !important;
     padding: 0 24px 24px 24px !important;
     margin-top: 0 !important;
     margin-bottom: 0 !important;
     width: 100% !important;
     /* 100% of parent (product-images-wrapper) */
     max-width: 100% !important;
     /* Don't exceed parent */
     box-sizing: border-box !important;
     position: relative !important;
     z-index: 101 !important;
     /* Ensure buttons are above images */
     background: white !important;
     overflow: hidden !important;
     /* Prevent overflow */
 }

 .product-actions-left .btn-add-cart,
 .product-actions-left .btn-buy-now {
     flex: 1;
     padding: 18px 24px;
     font-size: 16px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.2s;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     text-transform: uppercase;
     letter-spacing: 1px;
     border: none;
     border-radius: 2px;
     font-family: 'Roboto', sans-serif;
 }

 .product-actions-left .btn-add-cart {
     background: #24db65;
     color: white;
     box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
 }

 .product-actions-left .btn-add-cart:hover {
     box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
 }

 .product-actions-left .btn-buy-now {
     background: #FF8400;
     color: white;
     box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
 }

 .product-actions-left .btn-buy-now:hover {
     box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
 }

 .product-actions-left .btn-add-cart i,
 .product-actions-left .btn-buy-now i {
     font-size: 18px;
 }

 /* Product Actions - Flipkart Style (Hidden, kept for compatibility) */
 .product-actions {
     display: none;
 }

 /* Product Details Section - Flipkart Style */
 .product-details-section {
     background: white;
     border-radius: 0;
     padding: 24px;
     margin-top: 0;
 }

 .detail-row {
     display: grid;
     grid-template-columns: 100px 1fr;
     /* Reduced label width from 140px to 100px */
     gap: 16px;
     padding: 16px 0;
     border-bottom: 1px solid #f0f0f0;
     align-items: start;
     /* Align items to top for same line alignment */
 }

 /* Warranty row - no left spacing */
 .detail-row:has(.warranty-info) {
     grid-template-columns: 0 1fr;
     gap: 0;
     padding-left: 0;
 }

 .detail-row:first-child {
     padding-top: 0;
 }

 .detail-row:last-child {
     border-bottom: none;
 }

 .detail-label {
     font-size: 14px;
     font-weight: 400;
     color: #878787;
     font-family: 'Roboto', sans-serif;
     line-height: 1.5;
     /* Match content line-height */
     align-self: start;
     /* Align to top */
     padding-top: 0;
     /* Remove any top padding */
 }

 .detail-content {
     font-size: 14px;
     color: #212121;
     font-family: 'Roboto', sans-serif;
     line-height: 1.6;
     align-self: start;
     /* Align to top */
     padding-top: 0;
     /* Remove any top padding */
 }

 .detail-content>*:first-child {
     margin-top: 0;
     padding-top: 0;
 }

 .detail-content ul,
 .detail-content p {
     margin-top: 0;
     padding-top: 0;
 }

 .detail-link {
     color: #0a4409;
     text-decoration: none;
     font-size: 14px;
     margin-left: 0;
     font-weight: 500;
     display: inline-block;
     margin-top: 4px;
 }

 .detail-link:hover {
     text-decoration: underline;
 }

 /* Warranty Info - Flipkart Style */
 .warranty-info {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     gap: 8px;
     font-size: 14px;
     color: #212121;
 }

 .warranty-logo {
     height: 18px;
     margin-right: 4px;
 }

 /* Warranty Modal */
 .warranty-modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 10000;
     align-items: center;
     justify-content: center;
 }

 .warranty-modal-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(2px);
 }

 .warranty-modal-container {
     position: relative;
     background: #ffffff;
     border-radius: 8px;
     max-width: 600px;
     width: 90%;
     max-height: 90vh;
     overflow-y: auto;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
     z-index: 10001;
     animation: modalSlideIn 0.3s ease-out;
 }

 @keyframes modalSlideIn {
     from {
         opacity: 0;
         transform: translateY(-20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .warranty-modal-header-bar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 24px;
     border-bottom: 1px solid #e0e0e0;
     position: sticky;
     top: 0;
     background: #ffffff;
     z-index: 10;
 }

 .warranty-modal-header-bar h2 {
     margin: 0;
     font-size: 20px;
     font-weight: 600;
     color: #212121;
 }

 .warranty-modal-close {
     background: none;
     border: none;
     font-size: 24px;
     color: #878787;
     cursor: pointer;
     padding: 0;
     width: 32px;
     height: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 4px;
     transition: all 0.2s;
 }

 .warranty-modal-close:hover {
     background: #f5f5f5;
     color: #212121;
 }

 .warranty-modal-content {
     padding: 24px;
 }

 .warranty-modal-header {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 24px;
     padding-bottom: 16px;
     border-bottom: 1px solid #e0e0e0;
 }

 .warranty-modal-brand-logo {
     height: 40px;
     width: auto;
     object-fit: contain;
 }

 .warranty-modal-header h2 {
     margin: 0;
     font-size: 18px;
     font-weight: 600;
     color: #212121;
 }

 .warranty-modal-section {
     margin-bottom: 24px;
 }

 .warranty-modal-section:last-child {
     margin-bottom: 0;
 }

 .warranty-modal-section h3 {
     margin: 0 0 12px 0;
     font-size: 16px;
     font-weight: 600;
     color: #212121;
 }

 .warranty-detail-item {
     padding: 12px 0;
     border-bottom: 1px solid #f5f5f5;
     font-size: 14px;
     color: #212121;
     line-height: 1.5;
 }

 .warranty-detail-item:last-child {
     border-bottom: none;
 }

 .warranty-detail-item strong {
     color: #212121;
     margin-right: 8px;
 }

 .warranty-description {
     font-size: 14px;
     color: #878787;
     line-height: 1.6;
     margin: 0;
 }

 .warranty-support-info {
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .support-item {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px;
     background: #f9f9f9;
     border-radius: 4px;
     font-size: 14px;
 }

 .support-item i {
     color: #0a4409;
     font-size: 16px;
     width: 20px;
     text-align: center;
 }

 .support-item span {
     color: #212121;
 }

 .support-item a {
     color: #0a4409;
     text-decoration: none;
     margin-left: 4px;
 }

 .support-item a:hover {
     text-decoration: underline;
 }

 .warranty-website-link {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 12px 20px;
     background: #24db65;
     color: #ffffff;
     text-decoration: none;
     border-radius: 4px;
     font-size: 14px;
     font-weight: 500;
     transition: background 0.2s;
 }

 .warranty-website-link:hover {
     background: #1a5fc7;
 }

 .warranty-website-link i {
     font-size: 12px;
 }

 /* Terms & Conditions Modal */
 .tc-modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 10000;
     align-items: center;
     justify-content: center;
 }

 .tc-modal-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(2px);
 }

 .tc-modal-container {
     position: relative;
     background: #ffffff;
     border-radius: 8px;
     max-width: 700px;
     width: 90%;
     max-height: 90vh;
     overflow-y: auto;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
     z-index: 10001;
     animation: modalSlideIn 0.3s ease-out;
 }

 .tc-modal-header-bar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 24px;
     border-bottom: 1px solid #e0e0e0;
     position: sticky;
     top: 0;
     background: #ffffff;
     z-index: 10;
 }

 .tc-modal-header-bar h2 {
     margin: 0;
     font-size: 20px;
     font-weight: 600;
     color: #212121;
 }

 .tc-modal-close {
     background: none;
     border: none;
     font-size: 24px;
     color: #878787;
     cursor: pointer;
     padding: 0;
     width: 32px;
     height: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 4px;
     transition: all 0.2s;
 }

 .tc-modal-close:hover {
     background: #f5f5f5;
     color: #212121;
 }

 .tc-modal-content {
     padding: 24px;
 }

 .tc-modal-header {
     margin-bottom: 20px;
     padding-bottom: 16px;
     border-bottom: 1px solid #e0e0e0;
 }

 .tc-offer-title {
     margin: 8px 0 0 0;
     font-size: 16px;
     font-weight: 500;
     color: #212121;
     line-height: 1.4;
 }

 .tc-modal-section {
     margin-bottom: 24px;
 }

 .tc-modal-section:last-child {
     margin-bottom: 0;
 }

 .tc-content {
     font-size: 14px;
     color: #212121;
     line-height: 1.8;
     white-space: pre-wrap;
     word-wrap: break-word;
 }

 .tc-content h3,
 .tc-content h4 {
     font-size: 16px;
     font-weight: 600;
     color: #212121;
     margin: 20px 0 10px 0;
 }

 .tc-content h3:first-child,
 .tc-content h4:first-child {
     margin-top: 0;
 }

 .tc-content p {
     margin: 12px 0;
     color: #212121;
 }

 .tc-content ul,
 .tc-content ol {
     margin: 12px 0;
     padding-left: 24px;
 }

 .tc-content li {
     margin: 8px 0;
     color: #212121;
 }

 .tc-no-content {
     font-size: 14px;
     color: #878787;
     text-align: center;
     padding: 40px 20px;
     margin: 0;
 }

 /* Variations Details Section */
 .variations-details-section {
     display: flex;
     flex-direction: row;
     gap: 0;
     flex-wrap: wrap;
     margin-bottom: 0;
 }

 /* Variation Row - Side by side for Color and Storage */
 .variation-row {
     display: flex;
     flex-direction: row;
     gap: 0;
     width: 100%;
     margin-bottom: 16px;
 }

 .variation-row:last-child {
     margin-bottom: 0;
 }

 /* Individual Variation Item - 50% width each */
 .variation-item {
     flex: 0 0 50%;
     max-width: 50%;
     padding-right: 12px;
     box-sizing: border-box;
 }

 .variation-item:last-child {
     padding-right: 0;
 }

 /* Variation Label - Smaller */
 .variation-label-details {
     font-size: 14px;
     font-weight: 500;
     color: #878787;
     margin-bottom: 8px;
     min-width: 110px;
     padding-right: 10px;
 }

 /* Variation Options in Details Section */
 .variation-options-details {
     display: flex;
     gap: 8px;
     flex-wrap: wrap;
     align-items: center;
 }

 /* Color Options in Details - Smaller */
 .color-option-item {
     width: 45px;
     height: 45px;
     border: 2px solid #e0e0e0;
     border-radius: 2px;
     overflow: hidden;
     cursor: pointer;
     transition: all 0.3s;
     flex-shrink: 0;
 }

 .color-option-item:hover {
     border-color: #0a4409;
 }

 .color-option-item.selected {
     border-color: #0a4409;
     border-width: 2px;
 }

 .color-option-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* Color Variation Box - with image from variation_attributes */
 .color-variation-box {
     width: 56px;
     height: 56px;
     border: 2px solid #e0e0e0;
     border-radius: 4px;
     padding: 0;
     background: #ffffff;
     position: relative;
     cursor: pointer;
     transition: all 0.2s;
     overflow: hidden;
     flex-shrink: 0;
     display: inline-block;
     box-sizing: border-box;
 }

 .color-variation-box .color-variation-image {
     width: 52px;
     height: 52px;
 }

 .color-variation-box:hover {
     border-color: #1a5fc4;
     box-shadow: 0 2px 4px rgba(40, 116, 240, 0.2);
 }

 .color-variation-box.selected {
     border-color: #0a4409;
     border-width: 2px;
     box-shadow: 0 0 0 2px rgba(40, 116, 240, 0.1);
 }

 .color-variation-image {
     width: 52px;
     height: 52px;
     object-fit: contain;
     border-radius: 2px;
     display: block;
 }

 /* Color name tooltip on hover - displays the color name from title attribute */
 .color-variation-box::after {
     content: attr(title);
     position: absolute;
     bottom: calc(100% + 8px);
     left: 50%;
     transform: translateX(-50%);
     background: #212121;
     color: #ffffff;
     padding: 6px 12px;
     border-radius: 4px;
     font-size: 12px;
     font-family: 'Roboto', sans-serif;
     font-weight: 400;
     white-space: nowrap;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.2s ease, transform 0.2s ease;
     z-index: 1000;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
     min-width: 60px;
     text-align: center;
 }

 .color-variation-box:hover::after {
     opacity: 1;
     transform: translateX(-50%) translateY(-2px);
 }

 /* Tooltip arrow pointing down */
 .color-variation-box::before {
     content: '';
     position: absolute;
     top: -6px;
     left: 50%;
     transform: translateX(-50%);
     width: 0;
     height: 0;
     border-left: 6px solid transparent;
     border-right: 6px solid transparent;
     border-top: 6px solid #212121;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.2s ease;
     z-index: 1001;
 }

 .color-variation-box:hover::before {
     opacity: 1;
 }

 /* Color Swatch in Details - Smaller */
 .color-swatch-detail {
     width: 32px;
     height: 32px;
     border-radius: 2px;
     border: 2px solid #e0e0e0;
     cursor: pointer;
     transition: all 0.3s;
     flex-shrink: 0;
 }

 .color-swatch-detail:hover {
     border-color: #0a4409;
 }

 .color-swatch-detail.selected {
     border-color: var(--mobitez-orange);
     border-width: 2px;
 }

 /* Variation Option Buttons in Details (RAM, Storage, etc.) */
 .variation-option-detail {
     padding: 6px 12px;
     border: 2px solid #e0e0e0;
     border-radius: 2px;
     background: white;
     cursor: pointer;
     font-size: 13px;
     transition: all 0.3s;
     min-width: 60px;
     text-align: center;
     color: #212121;
     font-weight: 500;
 }

 .variation-option-detail:hover {
     border-color: #0a4409;
 }

 .variation-option-detail.selected {
     border-color: var(--mobitez-orange);
     background-color: var(--mobitez-orange);
     color: white;
     font-weight: 500;
 }

 /* Delivery Section - Flipkart Style */
 .delivery-input-group {
     display: flex;
     gap: 12px;
     align-items: center;
     margin-bottom: 16px;
 }

 .delivery-pincode-input {
     padding: 12px 16px;
     border: 1px solid #c2c2c2;
     border-radius: 2px;
     font-size: 14px;
     width: 200px;
     font-family: 'Roboto', sans-serif;
 }

 .delivery-pincode-input:focus {
     outline: none;
     border-color: #0a4409;
 }

 .delivery-pincode-input::placeholder {
     color: #878787;
 }

 .delivery-check-btn {
     padding: 12px 24px;
     background: white;
     border: 1px solid #c2c2c2;
     color: #0a4409;
     border-radius: 2px;
     font-size: 14px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.2s;
     font-family: 'Roboto', sans-serif;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .delivery-check-btn:hover {
     border-color: #0a4409;
 }

 .delivery-enter-btn {
     display: none;
 }

 .delivery-info {
     margin-top: 16px;
     padding: 12px 0;
     border-top: 1px solid #f0f0f0;
 }

 .delivery-date-info {
     margin-bottom: 8px;
     display: flex;
     align-items: center;
     font-size: 14px;
     color: #212121;
     font-family: 'Roboto', sans-serif;
 }

 .delivery-date-info span {
     font-weight: 500;
 }

 .delivery-time {
     color: #878787;
     font-size: 12px;
     margin-bottom: 12px;
     font-family: 'Roboto', sans-serif;
 }

 .installation-info {
     color: #212121;
     font-size: 14px;
     margin-bottom: 8px;
     font-family: 'Roboto', sans-serif;
 }

 /* Highlights List - Flipkart Style */
 .highlights-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .highlights-list li {
     padding: 6px 8px 6px 0;
     padding-left: 0;
     position: relative;
     color: #212121;
     font-size: 14px;
     line-height: 1.6;
     font-family: 'Roboto', sans-serif;
     display: flex;
     align-items: flex-start;
     gap: 8px;
 }

 .highlights-list li:before {
     content: '•';
     color: #878787;
     font-size: 16px;
     line-height: 1.4;
     flex-shrink: 0;
 }

 /* Seller Info - Flipkart Style */
 .seller-info {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 12px;
 }

 .seller-name {
     font-weight: 500;
     color: #0a4409;
     font-size: 14px;
     font-family: 'Roboto', sans-serif;
 }

 .seller-rating {
     background: #26a541;
     color: white;
     padding: 4px 8px;
     border-radius: 3px;
     font-size: 12px;
     font-weight: 500;
     display: inline-flex;
     align-items: center;
     gap: 2px;
     font-family: 'Roboto', sans-serif;
 }

 .seller-features {
     list-style: none;
     padding: 0;
     margin: 12px 0 0 0;
 }

 .seller-features li {
     padding: 6px 0;
     color: #212121;
     display: flex;
     align-items: center;
     font-size: 14px;
     font-family: 'Roboto', sans-serif;
     gap: 4px;
 }

 /* Payment Options - Flipkart Style */
 .payment-options-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .payment-options-list li {
     padding: 6px 8px 6px 0;
     color: #212121;
     font-size: 14px;
     font-family: 'Roboto', sans-serif;
     line-height: 1.6;
 }

 .payment-options-list li span {
     font-weight: 600;
     color: #212121;
 }

 /* Product Description - Flipkart Style */
 .product-description-text {
     color: #212121;
     line-height: 1.8;
     margin: 0;
     font-size: 14px;
     font-family: 'Roboto', sans-serif;
 }

 /* Specifications Detail Section - Flipkart Style */
 .specifications-detail-section {
     margin-top: 24px;
     padding-top: 24px;
     border-top: 1px solid #f0f0f0;
 }

 .specifications-header {
     margin-bottom: 20px;
 }

 .specifications-title {
     font-size: 24px;
     font-weight: 500;
     color: #212121;
     margin: 0 0 24px 0;
     padding-left: 24px;
     font-family: 'Roboto', sans-serif;
 }

 .specifications-subsection {
     margin-top: 0;
 }

 .specifications-subsection:first-child {
     margin-top: 0;
 }

 .specifications-separator {
     height: 1px;
     background-color: #e0e0e0;
     margin: 20px 0;
     width: 100%;
 }

 .specifications-subtitle {
     font-size: 16px;
     font-weight: 500;
     color: #212121;
     margin: 0 0 16px 0;
     /* padding-left: 24px; */
     font-family: 'Roboto', sans-serif;
 }

 .specifications-table {
     display: flex;
     flex-direction: column;
     gap: 0;
     border-radius: 2px;
 }

 .specification-row {
     display: grid;
     grid-template-columns: 200px 1fr;
     gap: 24px;
     padding: 16px 24px;
     border-bottom: 1px solid #f0f0f0;
 }

 .specification-row:last-child {
     border-bottom: none;
 }

 .specification-label {
     font-size: 14px;
     font-weight: 400;
     color: #878787;
     font-family: 'Roboto', sans-serif;
 }

 .specification-value {
     font-size: 14px;
     color: #212121;
     line-height: 1.6;
     font-family: 'Roboto', sans-serif;
 }

 .read-more-link {
     display: inline-block;
     margin-top: 16px;
     color: #0a4409;
     text-decoration: none;
     font-size: 14px;
     font-weight: 500;
     font-family: 'Roboto', sans-serif;
 }

 .read-more-link:hover {
     text-decoration: underline;
 }

 /* Specifications with collapsed/expanded state */
 .specifications-table.collapsed .specification-row:nth-child(n+6) {
     display: none;
 }

 .specifications-table.expanded .specification-row {
     display: grid;
 }

 /* Similar Products Section */
 .similar-products-section {
     margin-top: 30px;
     padding-top: 30px;
     border-top: 1px solid #f0f0f0;
     margin-bottom: 30px;
 }

 .similar-products-title {
     font-size: 20px;
     font-weight: 600;
     color: #212121;
     margin: 0 0 20px 0;
 }

 .similar-products-carousel-wrapper {
     position: relative;
     display: flex;
     align-items: center;
     width: 100%;
     max-width: 100%;
     overflow: hidden;
 }

 .similar-products-carousel-wrapper .carousel-arrow {
     position: absolute !important;
     top: 40% !important;
     transform: translateY(-50%) !important;
     background: rgba(255, 255, 255, 0.95) !important;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
     border: none !important;
     z-index: 5 !important;
     width: 40px !important;
     height: 40px !important;
 }

 .similar-products-carousel-wrapper .carousel-arrow.left {
     left: 10px !important;
 }

 .similar-products-carousel-wrapper .carousel-arrow.right {
     right: 10px !important;
 }

 .similar-products-carousel {
     display: flex;
     gap: 16px;
     overflow-x: auto;
     overflow-y: hidden;
     scroll-behavior: smooth;
     scrollbar-width: thin;
     -ms-overflow-style: none;
     flex: 1;
     width: 100%;
     max-width: 100%;
     -webkit-overflow-scrolling: touch;
 }

 .similar-products-carousel::-webkit-scrollbar {
     height: 6px;
 }

 .similar-products-carousel::-webkit-scrollbar-track {
     background: #f1f1f1;
     border-radius: 3px;
 }

 .similar-products-carousel::-webkit-scrollbar-thumb {
     background: #888;
     border-radius: 3px;
 }

 .similar-products-carousel::-webkit-scrollbar-thumb:hover {
     background: #555;
 }

 .similar-products-carousel .carousel-product-card {
     flex: 0 0 240px;
     min-width: 240px;
     max-width: 240px;
     position: relative;
     box-sizing: border-box;
 }

 .similar-products-carousel .carousel-product-card .sponsored-label {
     position: absolute;
     top: 8px;
     right: 8px;
     background: rgba(0, 0, 0, 0.6);
     color: white;
     font-size: 10px;
     font-weight: 500;
     padding: 2px 6px;
     border-radius: 2px;
     z-index: 2;
 }

 .similar-products-carousel .carousel-product-card .assured-badge {
     position: absolute;
     top: 8px;
     left: 8px;
     background: #24db65;
     color: white;
     font-size: 10px;
     font-weight: 500;
     padding: 2px 6px;
     border-radius: 2px;
     z-index: 2;
 }

 .similar-products-carousel .carousel-product-card {
     position: relative;
     padding: 16px;
     background: white;
     border-radius: 8px;
     text-decoration: none;
     color: inherit;
     display: flex;
     flex-direction: column;
     transition: all 0.3s ease;
     border: 1px solid #e0e0e0;
 }

 .similar-products-carousel .carousel-product-card:hover {
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     transform: translateY(-4px);
 }

 .carousel-product-image-container {
     width: 100%;
     height: 200px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 12px;
     background: #f8f8f8;
     border-radius: 4px;
     overflow: hidden;
 }

 .carousel-product-image {
     width: 100%;
     height: 100%;
     object-fit: contain;
 }

 .carousel-product-title {
     font-size: 14px;
     font-weight: 500;
     color: #212121;
     margin-bottom: 8px;
     line-height: 1.4;
     min-height: 20px;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .carousel-product-rating {
     display: flex;
     align-items: center;
     gap: 6px;
     margin-bottom: 8px;
     font-size: 12px;
 }

 .carousel-rating-stars {
     color: #ffa500;
     font-size: 14px;
 }

 .carousel-rating-text {
     color: #878787;
     font-size: 12px;
 }

 .carousel-product-price {
     display: flex;
     align-items: center;
     gap: 8px;
     flex-wrap: wrap;
 }

 .carousel-current-price {
     font-size: 18px;
     font-weight: 600;
     color: #212121;
 }

 .carousel-original-price {
     font-size: 14px;
     color: #878787;
     text-decoration: line-through;
 }

 .carousel-discount {
     font-size: 12px;
     color: #388e3c;
     font-weight: 500;
 }

 /* Buy Together and Save Section */
 .buy-together-section {
     margin-top: 30px;
     padding-top: 30px;
     border-top: 1px solid #f0f0f0;
     display: flex;
     flex-direction: column;
 }

 .buy-together-header {
     margin-bottom: 20px;
 }

 .buy-together-title {
     font-size: 24px;
     font-weight: 500;
     color: #212121;
     margin: 0 0 24px 0;
     padding-left: 24px;
     font-family: 'Roboto', sans-serif;
 }

 .buy-together-products {
     display: flex;
     align-items: flex-start;
     gap: 20px;
     flex-wrap: nowrap;
     margin-bottom: 24px;
     padding: 0;
     overflow-x: auto;
     overflow-y: hidden;
     -webkit-overflow-scrolling: touch;
     scrollbar-width: thin;
     scrollbar-color: #c0c0c0 #f0f0f0;
     width: 100%;
     max-width: 100%;
     box-sizing: border-box;
 }

 .buy-together-products::-webkit-scrollbar {
     height: 4px;
 }

 .buy-together-products::-webkit-scrollbar-track {
     background: #f0f0f0;
 }

 .buy-together-products::-webkit-scrollbar-thumb {
     background: #c0c0c0;
     border-radius: 2px;
 }

 .buy-together-product-item {
     flex: 0 0 200px;
     min-width: 200px;
     max-width: 200px;
     border: 2px solid #e0e0e0;
     border-radius: 8px;
     padding: 16px;
     background: white;
     position: relative;
     box-sizing: border-box;
     display: flex;
     flex-direction: column;
     transition: all 0.2s ease;
 }

 .buy-together-product-item.main-product {
     border-color: #0a4409;
     background: #f8f9ff;
 }

 .buy-together-product-item.addon-product {
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .buy-together-product-item.addon-product:hover {
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
 }

 .buy-together-product-item.addon-product.selected {
     border-color: #0a4409;
     background: #f8f9ff;
 }

 .addon-checkbox {
     position: absolute;
     top: 12px;
     right: 12px;
     width: 20px;
     height: 20px;
     min-width: 20px;
     min-height: 20px;
     border: 2px solid #c0c0c0;
     border-radius: 4px;
     background: white;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
     z-index: 10;
     flex-shrink: 0;
 }

 .addon-checkbox.checked {
     background: #24db65;
     border-color: #0a4409;
 }

 .addon-checkbox.checked::after {
     content: '✓';
     color: white;
     font-size: 14px;
     font-weight: bold;
 }

 .buy-together-product-image-container {
     width: 100%;
     height: 180px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 12px;
     background: #f8f8f8;
     border-radius: 4px;
     overflow: hidden;
     box-sizing: border-box;
 }

 .buy-together-product-image {
     width: 100%;
     height: 100%;
     object-fit: contain;
     display: block;
 }

 .buy-together-product-name {
     font-size: 14px;
     font-weight: 500;
     color: #212121;
     margin-bottom: 8px;
     line-height: 1.4;
     min-height: 40px;
 }

 .buy-together-product-rating {
     display: flex;
     align-items: center;
     gap: 6px;
     margin-bottom: 8px;
     font-size: 12px;
 }

 .buy-together-rating-stars {
     color: #ffa500;
 }

 .buy-together-rating-text {
     color: #878787;
 }

 .buy-together-product-price {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 4px;
 }

 .buy-together-current-price {
     font-size: 18px;
     font-weight: 600;
     color: #212121;
 }

 .buy-together-original-price {
     font-size: 14px;
     color: #878787;
     text-decoration: line-through;
 }

 .buy-together-discount {
     font-size: 12px;
     color: #388e3c;
     font-weight: 500;
 }

 .buy-together-special-price {
     font-size: 12px;
     color: #388e3c;
     font-weight: 500;
     margin-top: 4px;
 }

 .buy-together-plus {
     font-size: 24px;
     font-weight: 300;
     color: #878787;
     align-self: center;
     margin: 0 10px;
     flex-shrink: 0;
 }

 .buy-together-footer {
     display: flex;
     justify-content: flex-end;
     align-items: center;
     padding: 0;
     padding-left: 24px;
     border-top: none;
 }

 .buy-together-message {
     font-size: 14px;
     color: #878787;
 }

 .buy-together-add-cart-btn {
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 14px 32px;
     background: #24db65;
     color: white;
     border: none;
     border-radius: 2px;
     font-size: 16px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.2s ease;
     font-family: 'Roboto', sans-serif;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
 }

 .buy-together-add-cart-btn:enabled {
     background: #24db65;
     cursor: pointer;
 }

 .buy-together-add-cart-btn:enabled:hover {
     background: #ff8c00;
     box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
 }

 .buy-together-add-cart-btn:disabled {
     background: #878787;
     opacity: 0.6;
     cursor: not-allowed;
 }

 /* Responsive styles for buy together */
 @media (max-width: 768px) {
     .buy-together-products {
         flex-direction: column;
         gap: 16px;
     }

     .buy-together-product-item {
         width: 100%;
     }

     .buy-together-plus {
         display: none;
     }

     .buy-together-footer {
         flex-direction: column;
         gap: 12px;
         align-items: stretch;
     }

     .buy-together-add-cart-btn {
         width: 100%;
         justify-content: center;
     }
 }

 /* Ratings & Reviews Section - Flipkart Style */
 .ratings-reviews-section {
     margin-top: 0;
     padding: 24px;
     background: white;
     border-top: 1px solid #f0f0f0;
 }

 .ratings-reviews-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 32px;
 }

 .ratings-reviews-title {
     font-size: 24px;
     font-weight: 500;
     color: #212121;
     margin: 0;
     padding-left: 24px;
     font-family: 'Roboto', sans-serif;
 }

 .rate-product-btn {
     padding: 10px 24px;
     border: 1px solid #c2c2c2;
     border-radius: 2px;
     background: white;
     color: #212121;
     font-size: 14px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.2s ease;
     font-family: 'Roboto', sans-serif;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .rate-product-btn:hover {
     border-color: #0a4409;
 }

 .ratings-reviews-content {
     display: grid;
     grid-template-columns: 180px 1fr 280px;
     gap: 48px;
     margin-bottom: 32px;
     padding-bottom: 32px;
     padding-left: 24px;
     border-bottom: 1px solid #f0f0f0;
 }

 /* Overall Rating Summary - Flipkart Style */
 .overall-rating-summary {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     text-align: left;
 }

 .overall-rating-value {
     font-size: 36px;
     font-weight: 600;
     color: #212121;
     line-height: 1;
     margin-bottom: 4px;
     font-family: 'Roboto', sans-serif;
     display: inline-flex;
     align-items: center;
     gap: 4px;
 }

 .overall-rating-star {
     font-size: 20px;
     color: #26a541;
     margin-bottom: 0;
 }

 .overall-rating-text {
     font-size: 13px;
     color: #878787;
     line-height: 1.6;
     font-family: 'Roboto', sans-serif;
 }

 /* Star Rating Breakdown - Flipkart Style */
 .star-rating-breakdown {
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .star-rating-row {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .star-label {
     font-size: 13px;
     color: #878787;
     width: 24px;
     font-family: 'Roboto', sans-serif;
     display: flex;
     align-items: center;
     gap: 2px;
 }

 .star-bar-container {
     flex: 1;
     height: 6px;
     background: #f0f0f0;
     border-radius: 3px;
     overflow: hidden;
     position: relative;
 }

 .star-bar {
     height: 100%;
     background: #26a541;
     border-radius: 3px;
     transition: width 0.3s ease;
 }

 .star-rating-row[data-star="4"] .star-bar {
     background: #26a541;
 }

 .star-rating-row[data-star="3"] .star-bar {
     background: #ff9800;
 }

 .star-rating-row[data-star="2"] .star-bar {
     background: #ff6161;
 }

 .star-rating-row[data-star="1"] .star-bar {
     background: #ff6161;
 }

 .star-count {
     font-size: 13px;
     color: #878787;
     min-width: 50px;
     text-align: right;
     font-family: 'Roboto', sans-serif;
 }

 /* Category Ratings - Flipkart Style */
 .category-ratings {
     display: flex;
     gap: 16px;
     justify-content: flex-start;
     flex-wrap: wrap;
 }

 .category-rating-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 6px;
 }

 .category-rating-circle {
     width: 52px;
     height: 52px;
     border-radius: 50%;
     border: 3px solid #26a541;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
 }

 .category-rating-value {
     font-size: 14px;
     font-weight: 600;
     color: #212121;
     font-family: 'Roboto', sans-serif;
 }

 .category-rating-label {
     font-size: 11px;
     color: #878787;
     text-align: center;
     font-family: 'Roboto', sans-serif;
 }

 /* Review Images Gallery - Flipkart Style */
 .review-images-gallery {
     display: flex;
     gap: 8px;
     margin-bottom: 32px;
     padding-bottom: 32px;
     border-bottom: 1px solid #f0f0f0;
     overflow-x: auto;
     scrollbar-width: thin;
 }

 .review-images-gallery::-webkit-scrollbar {
     height: 4px;
 }

 .review-images-gallery::-webkit-scrollbar-track {
     background: #f0f0f0;
 }

 .review-images-gallery::-webkit-scrollbar-thumb {
     background: #c2c2c2;
     border-radius: 2px;
 }

 .review-image-item {
     flex: 0 0 72px;
     width: 72px;
     height: 72px;
     border-radius: 2px;
     overflow: hidden;
     cursor: pointer;
     position: relative;
     border: 1px solid #f0f0f0;
 }

 .review-image-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .review-image-more {
     background: rgba(0, 0, 0, 0.7);
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 11px;
     font-weight: 500;
     font-family: 'Roboto', sans-serif;
 }

 /* Reviews List - Flipkart Style */
 .reviews-list {
     display: flex;
     flex-direction: column;
     gap: 32px;
     padding-left: 24px;
 }

 .review-item {
     padding-bottom: 32px;
     border-bottom: 1px solid #f0f0f0;
 }

 .review-item:last-child {
     border-bottom: none;
 }

 .review-rating {
     display: inline-flex;
     align-items: center;
     gap: 4px;
     background: #26a541;
     color: white;
     font-size: 12px;
     font-weight: 500;
     margin-bottom: 12px;
     padding: 4px 8px;
     border-radius: 3px;
     font-family: 'Roboto', sans-serif;
 }

 .review-title {
     font-size: 14px;
     font-weight: 500;
     color: #212121;
     margin-bottom: 8px;
     font-family: 'Roboto', sans-serif;
 }

 .review-body {
     font-size: 14px;
     color: #212121;
     line-height: 1.8;
     margin-bottom: 16px;
     font-family: 'Roboto', sans-serif;
 }

 .review-body p {
     margin: 8px 0;
 }

 .reviewer-info {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 16px;
     flex-wrap: wrap;
 }

 .reviewer-avatar {
     width: 28px;
     height: 28px;
     border-radius: 50%;
     object-fit: cover;
 }

 .reviewer-name {
     font-size: 13px;
     font-weight: 500;
     color: #878787;
     font-family: 'Roboto', sans-serif;
 }

 .reviewer-badge {
     display: flex;
     align-items: center;
     gap: 4px;
     font-size: 11px;
     color: #878787;
     font-family: 'Roboto', sans-serif;
 }

 .reviewer-badge i {
     color: #26a541;
 }

 .reviewer-location {
     font-size: 12px;
     color: #878787;
     font-family: 'Roboto', sans-serif;
 }

 .review-date {
     font-size: 12px;
     color: #878787;
     font-family: 'Roboto', sans-serif;
 }

 .review-helpfulness {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-top: 16px;
 }

 .helpfulness-btn {
     display: flex;
     align-items: center;
     gap: 6px;
     background: none;
     border: none;
     color: #878787;
     font-size: 13px;
     cursor: pointer;
     padding: 0;
     transition: all 0.2s ease;
     font-family: 'Roboto', sans-serif;
 }

 .helpfulness-btn:hover {
     color: #0a4409;
 }

 .helpfulness-count {
     font-size: 13px;
     color: #878787;
     font-family: 'Roboto', sans-serif;
 }

 /* Responsive styles for ratings & reviews */
 @media (max-width: 1024px) {
     .ratings-reviews-content {
         grid-template-columns: 180px 1fr 250px;
         gap: 30px;
     }

     .category-ratings {
         gap: 15px;
     }

     .category-rating-circle {
         width: 50px;
         height: 50px;
     }
 }

 @media (max-width: 768px) {
     .ratings-reviews-content {
         grid-template-columns: 1fr;
         gap: 24px;
     }

     .overall-rating-summary {
         order: 1;
     }

     .star-rating-breakdown {
         order: 2;
     }

     .category-ratings {
         order: 3;
         justify-content: center;
         flex-wrap: wrap;
     }
 }

 /* Questions and Answers Section - Flipkart Style */
 .questions-answers-section {
     margin-top: 0;
     padding: 24px;
     background: white;
     border-top: 1px solid #f0f0f0;
 }

 .qa-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 32px;
 }

 .qa-title {
     font-size: 24px;
     font-weight: 500;
     color: #212121;
     margin: 0;
     padding-left: 24px;
     font-family: 'Roboto', sans-serif;
 }

 .qa-search-btn {
     width: 36px;
     height: 36px;
     border: 1px solid #c2c2c2;
     border-radius: 2px;
     background: white;
     color: #878787;
     font-size: 14px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
 }

 .qa-search-btn:hover {
     border-color: #0a4409;
     color: #0a4409;
 }

 .qa-list {
     display: flex;
     flex-direction: column;
     gap: 32px;
     margin-bottom: 32px;
     padding-left: 24px;
 }

 .qa-item {
     padding-bottom: 32px;
     border-bottom: 1px solid #f0f0f0;
 }

 .qa-item:last-child {
     border-bottom: none;
 }

 .qa-question {
     display: flex;
     gap: 12px;
     margin-bottom: 16px;
 }

 .qa-question-label {
     font-size: 14px;
     font-weight: 600;
     color: #212121;
     min-width: 24px;
     font-family: 'Roboto', sans-serif;
 }

 .qa-question-text {
     font-size: 14px;
     font-weight: 500;
     color: #212121;
     flex: 1;
     line-height: 1.6;
     font-family: 'Roboto', sans-serif;
 }

 .qa-answer {
     display: flex;
     gap: 12px;
     margin-bottom: 16px;
     margin-left: 36px;
 }

 .qa-answer-label {
     font-size: 14px;
     font-weight: 600;
     color: #212121;
     min-width: 24px;
     font-family: 'Roboto', sans-serif;
 }

 .qa-answer-text {
     font-size: 14px;
     color: #212121;
     line-height: 1.8;
     flex: 1;
     font-family: 'Roboto', sans-serif;
 }

 .qa-answerer-info {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-left: 36px;
     margin-bottom: 16px;
     flex-wrap: wrap;
 }

 .qa-answerer-name {
     font-size: 13px;
     color: #878787;
     font-family: 'Roboto', sans-serif;
 }

 .qa-certified-badge {
     display: flex;
     align-items: center;
     gap: 4px;
     font-size: 11px;
     color: #878787;
     font-family: 'Roboto', sans-serif;
 }

 .qa-certified-badge i {
     font-size: 12px;
     color: #26a541;
 }

 .qa-helpfulness {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-left: 36px;
 }

 .qa-helpfulness-btn {
     display: flex;
     align-items: center;
     gap: 6px;
     background: none;
     border: none;
     color: #878787;
     font-size: 13px;
     cursor: pointer;
     padding: 0;
     transition: all 0.2s ease;
     font-family: 'Roboto', sans-serif;
 }

 .qa-helpfulness-btn:hover {
     color: #0a4409;
 }

 .qa-helpfulness-count {
     font-size: 13px;
     color: #878787;
     font-family: 'Roboto', sans-serif;
 }

 .qa-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-left: 24px;
     padding: 20px 0 0 0;
     border-top: 1px solid #f0f0f0;
     margin-top: 32px;
 }

 .qa-all-questions-link {
     font-size: 14px;
     color: #0a4409;
     text-decoration: none;
     font-weight: 500;
     font-family: 'Roboto', sans-serif;
 }

 .qa-all-questions-link:hover {
     text-decoration: underline;
 }

 .qa-add-question-btn {
     width: 36px;
     height: 36px;
     border: 1px solid #c2c2c2;
     border-radius: 2px;
     background: white;
     color: #878787;
     font-size: 16px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
 }

 .qa-add-question-btn:hover {
     border-color: #0a4409;
     color: #0a4409;
 }

 .qa-trust-badge {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 24px 0;
     margin-top: 32px;
     border-top: 1px solid #f0f0f0;
     font-size: 12px;
     color: #878787;
     font-family: 'Roboto', sans-serif;
 }

 .qa-trust-badge i {
     font-size: 14px;
     color: #878787;
 }

 /* Responsive styles for Q&A */
 @media (max-width: 768px) {
     .qa-answer {
         margin-left: 0;
     }

     .qa-answerer-info {
         margin-left: 0;
     }

     .qa-helpfulness {
         margin-left: 0;
     }
 }

 /* Product Description Section (Long Description) - Flipkart Style */
 .product-description-section {
     background: white;
     padding: 40px 24px;
     margin-bottom: 24px;
     border-radius: 0;
     text-align: left;
 }

 /* Ensure title aligns with content */
 .product-description-section .product-description-title {
     padding-left: 0 !important;
     margin-left: 0 !important;
 }

 .product-description-title {
     font-size: 24px;
     font-weight: 500;
     color: #212121;
     margin: 0 0 100px 0 !important;
     padding: 0 0 30px 0 !important;
     padding-left: 0 !important;
     margin-left: 0 !important;
     border: none;
     font-family: 'Roboto', sans-serif;
     line-height: 1.2;
     text-align: left;
     width: 100%;
     display: block;
 }

 .product-description-content {
     color: #212121;
     font-family: 'Roboto', sans-serif;
     margin-top: 0;
     padding-top: 0;
     padding-left: 0;
     margin-left: 0;
 }

 /* Feature Block - Each section */
 .product-description-feature-block {
     display: flex;
     align-items: center;
     gap: 40px;
     flex-wrap: nowrap;
     margin-bottom: 80px;
     margin-top: 0;
     max-width: 100%;
     padding-left: 0 !important;
     margin-left: 0 !important;
     padding-right: 0 !important;
     margin-right: 0 !important;
 }

 .product-description-feature-block:first-child {
     margin-top: 0;
 }

 .product-description-feature-block:last-child {
     margin-bottom: 0;
 }

 /* Alternating layout - even blocks (0-indexed) have image on left */
 /* Use order property instead of row-reverse to keep text aligned */

 .product-description-feature-block:nth-child(odd) .product-description-feature-text {
     order: 1;
 }

 .product-description-feature-block:nth-child(odd) .product-description-feature-image {
     order: 2;
 }

 .product-description-feature-block:nth-child(even) .product-description-feature-image {
     order: 1;
 }

 .product-description-feature-block:nth-child(even) .product-description-feature-text {
     order: 2;
 }

 /* Text Section - Wider but fits with image on same line (70-75% width) - Flipkart Style */
 .product-description-feature-text {
     flex: 3;
     min-width: 450px;
     max-width: 75%;
     padding-right: 0 !important;
     padding-left: 0 !important;
     margin-left: 0 !important;
     margin-right: 0 !important;
     text-align: left !important;
 }

 /* When reversed, ensure text still aligns to left */
 .product-description-feature-block:nth-child(even) .product-description-feature-text {
     padding-left: 0 !important;
     margin-left: 0 !important;
     text-align: left !important;
 }

 /* Ensure all headings and paragraphs align to the same left position - no padding/margin */
 .product-description-content .product-description-feature-heading,
 .product-description-feature-heading {
     padding-left: 0 !important;
     margin-left: 0 !important;
     text-align: left !important;
 }

 .product-description-content .product-description-feature-paragraph,
 .product-description-feature-paragraph {
     padding-left: 0 !important;
     margin-left: 0 !important;
     text-align: left !important;
 }

 .product-description-content .product-description-feature-heading,
 .product-description-feature-heading {
     font-size: 16px !important;
     font-weight: 400 !important;
     color: #212121 !important;
     margin: 0 0 10px 0 !important;
     line-height: 1.4 !important;
     font-family: 'Roboto', sans-serif !important;
 }

 .product-description-content .product-description-feature-paragraph,
 .product-description-feature-paragraph {
     font-size: 15px !important;
     font-weight: 400 !important;
     line-height: 1.5 !important;
     margin: 0 !important;
     color: #212121 !important;
     font-family: 'Roboto', sans-serif !important;
     max-width: 100% !important;
     width: 100% !important;
 }

 /* Image Section - Smaller but fits on same line (20-25% width) - Flipkart Style */
 .product-description-feature-image {
     flex: 0.8;
     min-width: 200px;
     max-width: 25%;
     display: flex;
     align-items: center;
     justify-content: center;
     padding-left: 0;
     padding-right: 0;
     flex-shrink: 0;
 }

 .product-description-image-wrapper {
     width: 100%;
     max-width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .product-description-image-wrapper img {
     width: 167px;
     height: 125px;
     display: block;
     border-radius: 8px;
     object-fit: contain;
 }

 /* Handle nested divs for feature blocks */
 .product-description-content>div,
 .product-description-content>section {
     margin-bottom: 64px;
 }

 .product-description-content>div:last-child,
 .product-description-content>section:last-child {
     margin-bottom: 0;
 }

 /* Content Wrapper - Flex container for text and image */
 .product-description-content>div>div,
 .product-description-content>section>div {
     display: flex;
     align-items: center;
     gap: 48px;
     flex-wrap: wrap;
 }

 /* Alternating layout - even items have image on left */
 .product-description-content>div:nth-child(even)>div,
 .product-description-content>section:nth-child(even)>div {
     flex-direction: row-reverse;
 }

 /* Text Section */
 .product-description-content h2:not(.product-description-feature-heading),
 .product-description-content h3:not(.product-description-feature-heading) {
     font-size: 24px;
     font-weight: 700;
     color: #212121;
     margin: 0 0 16px 0;
     line-height: 1.3;
     font-family: 'Roboto', sans-serif;
 }

 .product-description-content p:not(.product-description-feature-paragraph) {
     font-size: 16px;
     line-height: 1.8;
     margin: 0 0 16px 0;
     color: #212121;
     font-family: 'Roboto', sans-serif;
 }

 .product-description-content p:last-child {
     margin-bottom: 0;
 }

 /* Image Section */
 .product-description-content img {
     flex: 0.8;
     min-width: 300px;
     max-width: 40%;
     width: 100%;
     height: auto;
     display: block;
     border-radius: 8px;
 }

 /* Handle nested divs for feature blocks */
 .product-description-content .product-long-description {
     display: block;
 }

 .product-description-content .product-long-description>h2 {
     font-size: 28px;
     font-weight: 700;
     color: #212121;
     margin: 0 0 48px 0;
     padding: 0;
     border: none;
     font-family: 'Roboto', sans-serif;
     line-height: 1.2;
 }

 .product-description-content .product-long-description>div {
     margin-bottom: 64px;
     display: flex;
     align-items: center;
     gap: 48px;
     flex-wrap: wrap;
 }

 .product-description-content .product-long-description>div:nth-child(even) {
     flex-direction: row-reverse;
 }

 .product-description-content .product-long-description>div>div:first-child {
     flex: 1;
     min-width: 300px;
 }

 .product-description-content .product-long-description>div>div:last-child {
     flex: 1;
     min-width: 300px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .product-description-content .product-long-description img {
     width: 100%;
     max-width: 500px;
     height: auto;
     display: block;
     border-radius: 8px;
 }

 /* Lists */
 .product-description-content ul,
 .product-description-content ol {
     margin: 16px 0;
     padding-left: 24px;
     font-size: 16px;
     line-height: 1.8;
     color: #212121;
 }

 .product-description-content li {
     margin: 8px 0;
     color: #212121;
 }

 /* Responsive Design */
 @media (max-width: 968px) {
     .product-description-section {
         padding: 24px 16px;
     }

     .product-description-title {
         font-size: 20px;
         font-weight: 500;
         margin-bottom: 60px !important;
         padding-bottom: 20px !important;
     }

     .product-description-content>div>div,
     .product-description-content>section>div,
     .product-description-content .product-long-description>div {
         flex-direction: column;
         gap: 24px;
     }

     .product-description-content>div:nth-child(even)>div,
     .product-description-content>section:nth-child(even)>div {
         flex-direction: column;
     }

     .product-description-content img,
     .product-description-content .product-long-description img {
         min-width: 100%;
         max-width: 100%;
     }
 }

 /* Mobile - 768px and below - Fix text cutting */
 @media (max-width: 768px) {
     .product-description-section {
         padding: 16px 12px !important;
         width: 100% !important;
         max-width: 100% !important;
         box-sizing: border-box !important;
     }

     .product-description-title {
         font-size: 16px !important;
         margin-bottom: 16px !important;
         padding-bottom: 0 !important;
         width: 100% !important;
         max-width: 100% !important;
         box-sizing: border-box !important;
     }

     .product-description-content {
         width: 100% !important;
         max-width: 100% !important;
         box-sizing: border-box !important;
         padding: 0 !important;
     }

     .product-description-feature-block {
         flex-direction: column !important;
         flex-wrap: wrap !important;
         width: 100% !important;
         max-width: 100% !important;
         min-width: 0 !important;
         box-sizing: border-box !important;
         gap: 16px !important;
         margin-bottom: 24px !important;
     }

     .product-description-feature-text {
         flex: 1 1 100% !important;
         min-width: 0 !important;
         max-width: 100% !important;
         width: 100% !important;
         box-sizing: border-box !important;
     }

     .product-description-feature-image {
         flex: 1 1 100% !important;
         min-width: 0 !important;
         max-width: 100% !important;
         width: 100% !important;
         box-sizing: border-box !important;
     }

     .product-description-content .product-long-description>div {
         flex-direction: column !important;
         width: 100% !important;
         max-width: 100% !important;
         box-sizing: border-box !important;
     }

     .product-description-content .product-long-description>div>div {
         min-width: 0 !important;
         max-width: 100% !important;
         width: 100% !important;
         box-sizing: border-box !important;
     }

     .product-description-content * {
         max-width: 100% !important;
         box-sizing: border-box !important;
         word-wrap: break-word !important;
         overflow-wrap: break-word !important;
     }
 }

 /* Product Details Tabs */
 .product-details-tabs {
     background: white;
     border-radius: 8px;
     padding: 24px;
     margin-bottom: 24px;
 }

 .tab-headers {
     display: flex;
     gap: 0;
     border-bottom: 2px solid #e0e0e0;
     margin-bottom: 24px;
 }

 .tab-btn {
     padding: 12px 24px;
     border: none;
     background: none;
     font-size: 16px;
     font-weight: 600;
     color: #666;
     cursor: pointer;
     border-bottom: 3px solid transparent;
     transition: all 0.3s;
     margin-bottom: -2px;
 }

 .tab-btn:hover {
     color: var(--mobitez-purple);
 }

 .tab-btn.active {
     color: var(--mobitez-orange);
     border-bottom-color: var(--mobitez-orange);
 }

 .tab-content {
     min-height: 200px;
 }

 .tab-pane {
     display: none;
 }

 .tab-pane.active {
     display: block;
 }

 /* Frequently Bought Together */
 .frequently-bought-section,
 .similar-products-section {
     background: white;
     border-radius: 8px;
     padding: 24px;
     margin-bottom: 24px;
 }

 .section-title {
     font-size: 20px;
     font-weight: 600;
     color: #212121;
     margin-bottom: 20px;
 }

 .category-tabs {
     display: flex;
     gap: 12px;
     margin-bottom: 20px;
     flex-wrap: wrap;
 }

 .category-tab {
     padding: 8px 16px;
     border: 1px solid #e0e0e0;
     border-radius: 20px;
     background: white;
     cursor: pointer;
     font-size: 14px;
     transition: all 0.3s;
     color: #666;
 }

 .category-tab:hover {
     border-color: var(--mobitez-purple);
     color: var(--mobitez-purple);
 }

 .category-tab.active {
     background: var(--mobitez-purple);
     color: white;
     border-color: var(--mobitez-purple);
 }

 /* Carousel */
 .carousel-wrapper {
     position: relative;
     display: flex;
     align-items: center;
     gap: 12px;
     width: 100%;
     max-width: 100%;
     overflow: hidden;
 }

 .product-carousel {
     display: flex;
     gap: 20px;
     overflow-x: auto;
     overflow-y: hidden;
     scroll-behavior: smooth;
     scrollbar-width: thin;
     -ms-overflow-style: none;
     flex: 1;
     padding: 10px 0;
     width: 100%;
     max-width: 100%;
     -webkit-overflow-scrolling: touch;
 }

 .product-carousel::-webkit-scrollbar {
     height: 6px;
 }

 .product-carousel::-webkit-scrollbar-track {
     background: #f1f1f1;
     border-radius: 3px;
 }

 .product-carousel::-webkit-scrollbar-thumb {
     background: #888;
     border-radius: 3px;
 }

 .product-carousel::-webkit-scrollbar-thumb:hover {
     background: #555;
 }

 .carousel-arrow {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     border: 1px solid #e0e0e0;
     background: white;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s;
     flex-shrink: 0;
     z-index: 2;
 }

 .carousel-arrow:hover {
     background: var(--mobitez-purple);
     color: white;
     border-color: var(--mobitez-purple);
 }

 .carousel-arrow:active {
     transform: scale(0.95);
 }

 /* Product Card in Carousel */
 .carousel-product-card {
     border: 1px solid #e0e0e0;
     border-radius: 8px;
     padding: 16px;
     background: white;
     cursor: pointer;
     transition: all 0.3s;
     text-decoration: none;
     color: inherit;
     display: block;
 }

 .carousel-product-card:hover {
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     transform: translateY(-4px);
 }

 .carousel-product-card img {
     width: 100%;
     height: 180px;
     object-fit: contain;
     margin-bottom: 12px;
 }

 .carousel-product-card .product-title {
     font-size: 14px;
     font-weight: 500;
     margin-bottom: 8px;
     color: #212121;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .carousel-product-card .price {
     font-size: 18px;
     font-weight: 700;
     color: #212121;
 }

 /* Responsive - Flipkart Style */
 @media (max-width: 968px) {
     .breadcrumbs {
         margin-top: 56px;
     }

     .product-content {
         grid-template-columns: 1fr;
         gap: 0;
     }

     .product-images-wrapper {
         position: relative !important;
         top: 0 !important;
         padding: 16px;
         border-right: none;
         border-bottom: 1px solid #f0f0f0;
     }

     .product-right-column {
         gap: 0;
     }

     .product-info {
         padding: 16px;
     }

     .product-details-section {
         padding: 16px;
     }

     .product-images {
         flex-direction: column;
         padding-top: 16px;
     }

     .thumbnail-gallery-vertical {
         flex-direction: row;
         max-height: none;
         overflow-x: auto;
         overflow-y: hidden;
         padding-bottom: 8px;
         gap: 8px;
     }

     .thumbnail-item {
         width: 56px;
         height: 56px;
     }

     .main-image-container {
         height: auto !important;
         max-height: none !important;
     }

     .main-image,
     #mainProductImage {
         height: auto !important;
         max-height: none !important;
     }

     .product-top-actions {
         position: static;
         margin-bottom: 16px;
         justify-content: flex-end;
     }

     .product-wishlist {
         position: static;
         margin-bottom: 12px;
     }

     .wishlist-btn {
         box-shadow: none;
     }

     .detail-row {
         grid-template-columns: 1fr;
         gap: 8px;
         padding: 12px 0;
     }

     .detail-label {
         font-weight: 500;
         color: #212121;
     }

     .specification-row {
         grid-template-columns: 1fr;
         gap: 8px;
         padding: 12px 16px;
     }

     .specifications-title {
         font-size: 20px;
         font-weight: 500;
         margin-bottom: 20px;
     }

     /* .specifications-subtitle {
         font-size: 14px;
     } */

     .ratings-reviews-section {
         padding: 16px;
     }

     .ratings-reviews-content {
         grid-template-columns: 1fr;
         gap: 24px;
     }

     .questions-answers-section {
         padding: 16px;
     }
 }

 @media (max-width: 1400px) {
     .product-content {
         grid-template-columns: 37.3% 62.7%;
         gap: 0;
     }
 }

 @media (max-width: 1024px) {
     .product-content {
         grid-template-columns: 37.3% 62.7% !important;
         gap: 0 !important;
     }

     .product-images-wrapper {
         position: -webkit-sticky !important;
         position: sticky !important;
         top: 112px !important;
         max-width: 100% !important;
         overflow: visible !important;
         /* CRITICAL: visible overflow for sticky */
     }

     .main-image-container {
         max-width: 100%;
         overflow: hidden;
     }
 }

 @media (max-width: 768px) {
     .product-container {
         padding: 16px;
     }

     .product-content {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .product-images-wrapper {
         position: relative !important;
         top: 0 !important;
     }

     .product-actions-left {
         flex-direction: column;
     }

     .product-actions-left .btn-add-cart,
     .product-actions-left .btn-buy-now {
         width: 100%;
     }

     .main-image-container {
         height: auto !important;
         max-height: none !important;
     }

     .main-image,
     #mainProductImage {
         height: auto !important;
         max-height: none !important;
     }

     .thumbnail-gallery-vertical {
         gap: 8px;
     }

     .thumbnail-item {
         width: 56px;
         height: 56px;
     }

     .product-title {
         font-size: 18px;
     }

     .price-current {
         font-size: 24px;
     }

     .purchase-options {
         padding: 12px;
     }

     .offers-list {
         font-size: 13px;
     }

     .carousel-product-card {
         min-width: 160px;
         max-width: 160px;
     }
 }

 /* ============================================
   COMPREHENSIVE STICKY FIX - FINAL OVERRIDE
   Ensures sticky positioning works correctly
   ============================================ */

 /* CRITICAL: Ensure all parent containers allow sticky */
 #productContainer,
 #productContent {
     overflow-y: visible !important;
     overflow-x: hidden !important;
     overflow: visible !important;
     position: relative !important;
     transform: none !important;
     will-change: auto !important;
     height: auto !important;
     max-height: none !important;
 }

 /* CRITICAL: Ensure product-content grid allows sticky */
 .product-content,
 #productContent {
     display: grid !important;
     grid-template-columns: 37.3% 62.7% !important;
     gap: 0 !important;
     align-items: start !important;
     overflow-y: visible !important;
     overflow-x: hidden !important;
     overflow: visible !important;
     position: relative !important;
     transform: none !important;
     will-change: auto !important;
     min-height: calc(100vh - 112px) !important;
 }

 /* CRITICAL: Sticky wrapper - MAXIMUM SPECIFICITY */
 .product-images-wrapper,
 #productContent .product-images-wrapper,
 .product-content .product-images-wrapper {
     position: -webkit-sticky !important;
     position: sticky !important;
     top: 112px !important;
     align-self: start !important;
     max-width: 100% !important;
     width: 100% !important;
     overflow: visible !important;
     box-sizing: border-box !important;
     z-index: 100 !important;
     height: fit-content !important;
     max-height: calc(100vh - 112px) !important;
     background: white !important;
     transform: none !important;
     will-change: auto !important;
     padding: 0 !important;
     margin: 0 !important;
 }

 /* CRITICAL: Ensure buttons are properly positioned within sticky wrapper */
 .product-actions-left {
     position: relative !important;
     z-index: 101 !important;
     background: white !important;
     width: 100% !important;
     box-sizing: border-box !important;
 }

 /* Ensure buttons are visible and clickable */
 .product-actions-left .btn-add-cart,
 .product-actions-left .btn-buy-now {
     position: relative !important;
     z-index: 102 !important;
     cursor: pointer !important;
     pointer-events: auto !important;
 }

 /* Media query: Maintain sticky on desktop/tablet */
 @media (min-width: 769px) {

     /* CRITICAL: Ensure sticky works on desktop with maximum specificity */
     html body .product-images-wrapper,
     html body #productContent .product-images-wrapper,
     html body .product-content .product-images-wrapper,
     html body .product-container .product-images-wrapper,
     html body .product-main .product-images-wrapper,
     body .product-images-wrapper,
     body #productContent .product-images-wrapper,
     body .product-content .product-images-wrapper,
     .product-images-wrapper,
     #productContent .product-images-wrapper,
     .product-content .product-images-wrapper {
         position: -webkit-sticky !important;
         position: sticky !important;
         top: 112px !important;
         align-self: start !important;
     }

     /* Ensure parent containers allow sticky */
     html body .product-main,
     html body .product-container,
     html body #productContainer,
     html body #productContent,
     html body .product-content {
         overflow: visible !important;
         overflow-y: visible !important;
         overflow-x: hidden !important;
         transform: none !important;
     }
 }

 /* Media query: Disable sticky on mobile */
 @media (max-width: 768px) {
     .product-images-wrapper {
         position: relative !important;
         top: 0 !important;
     }

     .product-content,
     #productContent {
         grid-template-columns: 1fr !important;
     }
 }

 /* Compare Bar - Flipkart Style */
 .compare-bar {
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     background: #24db65;
     color: #ffffff;
     padding: 12px 24px;
     box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
     z-index: 1000;
     display: none;
 }

 .compare-bar-content {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 16px;
 }

 .compare-bar-left {
     flex: 1;
 }

 .compare-bar-text {
     font-size: 14px;
     font-weight: 500;
     font-family: 'Roboto', sans-serif;
 }

 .compare-bar-right {
     display: flex;
     gap: 12px;
     align-items: center;
 }

 .compare-bar-clear {
     background: transparent;
     border: 1px solid #ffffff;
     color: #ffffff;
     padding: 8px 16px;
     border-radius: 4px;
     cursor: pointer;
     font-size: 14px;
     font-weight: 500;
     font-family: 'Roboto', sans-serif;
     transition: all 0.2s;
 }

 .compare-bar-clear:hover {
     background: rgba(255, 255, 255, 0.1);
 }

 .compare-bar-btn {
     background: #ffffff;
     color: #0a4409;
     border: none;
     padding: 8px 24px;
     border-radius: 4px;
     cursor: pointer;
     font-size: 14px;
     font-weight: 500;
     font-family: 'Roboto', sans-serif;
     transition: all 0.2s;
 }

 .compare-bar-btn:hover:not(:disabled) {
     background: #f0f0f0;
 }

 .compare-bar-btn:disabled {
     opacity: 0.5;
     cursor: not-allowed;
 }

 @media (max-width: 768px) {
     .compare-bar {
         padding: 10px 16px;
     }

     .compare-bar-content {
         flex-direction: column;
         gap: 8px;
     }

     .compare-bar-right {
         width: 100%;
         justify-content: space-between;
     }

     .compare-bar-clear,
     .compare-bar-btn {
         flex: 1;
     }
 }

 /* =========================================
   STICKY LAYOUT CRITICAL FIX
   ========================================= */
 /* 
   Override global overflow settings that break position: sticky. 
   Sticky elements MUST NOT have any ancestor with overflow: hidden/scroll/auto. 
   We target the specific hierarchy of the product page to be safe.
*/
 @media (min-width: 769px) {
     /* 
       SUPER HIGH SPECIFICITY OVERRIDES 
       We must beat style.css: html body main.product-main > .container
       Strategy: Repeat classes to increase specificity score.
    */

     /* 1. The Main Wrapper: html body main.product-main */
     html body main.product-main,
     html body .product-main {
         overflow: visible !important;
         overflow-x: visible !important;
         overflow-y: visible !important;
     }

     /* 2. The Container: html body main.product-main > .container */
     html body main.product-main>.container,
     html body .product-main>.container,
     html body main.product-main .container,
     html body .product-main .container {
         overflow: visible !important;
         overflow-x: visible !important;
         overflow-y: visible !important;
         /* max-width: 1400px !important; */
     }

     /* 3. The Product Page Containers */
     html body main.product-main .product-container,
     html body .product-container,
     html body #productContainer {
         overflow: visible !important;
         overflow-x: visible !important;
         overflow-y: visible !important;
     }

     /* 4. The Grid Parent */
     html body main.product-main .product-content,
     html body .product-content,
     html body #productContent {
         overflow: visible !important;
         overflow-x: visible !important;
         overflow-y: visible !important;
         display: grid !important;
         grid-template-columns: 37.3% 62.7% !important;
         align-items: start !important;
     }

     /* 5. The Sticky Element */
     html body .product-images-wrapper,
     html body main.product-main .product-images-wrapper {
         position: -webkit-sticky !important;
         position: sticky !important;
         top: 112px !important;
         align-self: start !important;
         z-index: 100 !important;
         overflow-y: auto !important;
         overflow-x: hidden !important;
         /* Hide horizontal scroll on self */
         height: auto !important;
         max-height: calc(100vh - 112px) !important;
     }
 }

 /* ============================================
   MOBILE FIX: Remove gap on product page
   Must be LAST to override all previous rules
   ============================================ */
 @media (max-width: 768px) {

     /* Remove top offset from product-images-wrapper on mobile */
     html body .product-images-wrapper,
     html body main.product-main .product-images-wrapper,
     .product-content .product-images-wrapper,
     #productContent .product-images-wrapper {
         top: 0 !important;
         position: relative !important;
     }
 }