/* ============================================
   KRISHNA AYURVED STYLE - PRODUCT PAGE VIEW
   Premium Indian Ayurvedic Product Layout
   ============================================ */

/* ── Product Page Wrapper ── */
.product-page {
    background: #fff;
    padding-top: 10px;
    --main-image-base-scale: 1.12;
}

.product-page .container {
    max-width: 100%;
    padding: 0;
}

.product-page .breadcrumb {
    max-width: 1280px;
    margin: 12px auto 20px;
    padding: 0 20px;
    font-size: 13px;
    color: #777;
}

.product-page .breadcrumb a {
    color: #2d5a27;
    font-weight: 500;
    transition: color 0.2s;
}

.product-page .breadcrumb a:hover {
    color: #1a3a16;
    text-decoration: underline;
}

/* ── 2-Column Grid (Gallery + Info) ── */
.product-detail-3col {
    display: grid !important;
    grid-template-columns: minmax(350px, 480px) 1fr !important;
    gap: 35px !important;
    margin-bottom: 40px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* ── Column 1: Gallery ── */
.product-gallery-col {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main-image-container {
    width: 100%;
    aspect-ratio: 1/1;
    background: #fafbfc;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-image {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    transform: scale(var(--main-image-base-scale));
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    cursor: crosshair;
}

/* Image Badge (About #2, Bestseller etc) */
.product-image-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2d5a27;
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
    letter-spacing: 0.3px;
}

/* Thumbnail Row */
.thumbnail-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: none;
}

.thumbnail-list::-webkit-scrollbar {
    display: none;
}

.thumbnail-item {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s ease;
    background: white;
}

.thumbnail-item:hover {
    border-color: #2d5a27;
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: #2d5a27;
    box-shadow: 0 0 0 2px rgba(45, 90, 39, 0.15);
}

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

/* ── Promo Banner Below Image ── */
.product-promo-banner {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border: 1px solid #a5d6a7;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 5px;
}

.ppb-icon {
    width: 44px;
    height: 44px;
    background: #2d5a27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.ppb-icon svg {
    stroke: white;
}

.ppb-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 2px;
}

.ppb-content p {
    font-size: 12px;
    color: #4a7a2e;
    margin: 0;
}

/* ── Column 2: Product Info (Merged Info + Purchase) ── */
.product-info-col {
    padding-right: 0;
}

/* Hide separate purchase column - merged into info */
.product-purchase-col {
    display: none !important;
}

/* Product Title */
.product-info-col h1 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 6px;
}

/* ── Benefit Tags (Krishna Style Pills) ── */
.product-benefit {
    display: none;
}

.product-benefit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 16px;
}

.benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #444;
    background: #fff;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.benefit-tag:hover {
    border-color: #2d5a27;
    color: #2d5a27;
    background: #f1f8e9;
}

.benefit-tag .tag-icon {
    font-size: 13px;
}

/* ── Rating Section ── */
.product-rating-large {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.product-rating-large .rating-star {
    color: #f5a623;
    font-size: 16px;
}

.product-rating-large .rating-text {
    font-size: 13px;
    color: #666;
    margin-left: 6px;
    font-weight: 500;
}

/* ── Price Section ── */
.product-price-info {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 12px 0 8px;
}

.price-label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.current-price {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
}

.mrp-label {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}

.mrp-value {
    text-decoration: line-through;
    color: #999;
    font-size: 15px;
}

/* Certification Badges Row */
.product-cert-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 6px;
    flex-wrap: wrap;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #333;
    background: #fff;
}

.cert-badge .cert-icon {
    font-size: 12px;
}

.cert-badge.fssai {
    border-color: #1565c0;
    color: #1565c0;
}

.cert-badge.ayurvedic {
    border-color: #2d5a27;
    color: #2d5a27;
}

.cert-badge.offer {
    border-color: #e65100;
    color: #e65100;
    background: #fff3e0;
}

/* Herb On Points */
.herb-points-info {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fffde7;
    border: 1px solid #fff176;
    border-radius: 8px;
    margin: 12px 0;
    font-size: 12px;
    color: #6d4c00;
    font-weight: 500;
}

.herb-points-info .points-icon {
    font-size: 16px;
}

/* ── Pack / Size Selector (Krishna Style) ── */
.size-selector-section {
    margin: 20px 0;
}

.size-selector-section h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.variant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 10px;
}

/* Krishna-Style Variant Cards */
.variant-card {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 10px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.variant-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ccc;
    transition: background 0.3s ease;
}

/* Different colored bottom bars like Krishna */
.variant-card:nth-child(1)::after { background: #4caf50; }
.variant-card:nth-child(2)::after { background: #ff9800; }
.variant-card:nth-child(3)::after { background: #f44336; }
.variant-card:nth-child(4)::after { background: #2196f3; }

.variant-card:hover {
    border-color: #2d5a27;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(45, 90, 39, 0.12);
}

.variant-card.active {
    border-color: #2d5a27;
    background: #f9fdf7;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.15);
}

.variant-card.active::before {
    content: '\2713';
    position: absolute;
    top: 6px;
    right: 8px;
    background: #2d5a27;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.variant-pack-name {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.variant-size {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #555;
}

.variant-price {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.variant-original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.variant-per-unit {
    font-size: 10px;
    color: #777;
    margin-bottom: 6px;
}

.variant-discount {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e8f5e9;
    color: #2d5a27;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.variant-stock {
    font-size: 10px;
    color: #4caf50;
    font-weight: 600;
    margin-top: 4px;
}

.variant-label {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.variant-label.beginner { background: #e8f5e9; color: #2e7d32; }
.variant-label.popular { background: #fff3e0; color: #e65100; }
.variant-label.best-value { background: #fce4ec; color: #c62828; }

/* ── Quantity Section ── */
.quantity-section {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0;
}

.quantity-section label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.quantity-selector-inline {
    display: flex;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.qty-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: #f5f5f5;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
}

.qty-btn:hover {
    background: #2d5a27;
    color: white;
}

.qty-display {
    min-width: 44px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    padding: 0 8px;
}

/* ── Action Buttons (Inline) ── */
.product-action-buttons {
    display: flex;
    gap: 12px;
    margin: 18px 0;
}

.add-to-cart-btn-main,
.buy-now-btn-main {
    flex: 1;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.add-to-cart-btn-main {
    background: #ff6a00;
    color: white;
}

.add-to-cart-btn-main:hover {
    background: #e55d00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.3);
}

.add-to-cart-btn-main svg {
    stroke: white;
    width: 18px;
    height: 18px;
}

.buy-now-btn-main {
    background: #2d5a27;
    color: white;
}

.buy-now-btn-main:hover {
    background: #1e3d1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.3);
}

/* ── Doctor Consultation Banner ── */
.doctor-consultation-banner {
    margin: 24px 0;
    background: transparent;
    border-radius: 12px;
    padding: 0;
    display: block;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doctor-consultation-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 94, 32, 0.25);
}

.doctor-consultation-banner::before {
    display: none;
}

.doctor-banner-full-btn {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    display: block;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}

.doctor-banner-full-image {
    width: 100%;
    height: auto;
    display: block;
}

.doctor-banner-content {
    flex: 1;
    z-index: 1;
}

.doctor-banner-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    text-transform: uppercase;
    line-height: 1.2;
}

.doctor-banner-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 12px;
}

.consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: #ff6a00;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consult-btn:hover {
    background: #e55d00;
}

.doctor-banner-image {
    width: 240px;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    border: none;
    flex-shrink: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 28px rgba(15, 48, 14, 0.28);
    display: block;
}

.doctor-banner-image svg {
    width: 50px;
    height: 50px;
    stroke: rgba(255, 255, 255, 0.7);
    fill: none;
}

.doctor-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ── Delivery Info Section ── */
.delivery-info-section {
    margin: 20px 0;
    padding: 18px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    background: #fafafa;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #2d5a27;
}

.stock-status .status-dot {
    width: 10px;
    height: 10px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.delivery-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.delivery-check-row label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.pincode-input-group {
    display: flex;
    flex: 1;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.pincode-input-group input {
    flex: 1;
    padding: 8px 12px;
    border: none;
    font-size: 13px;
    outline: none;
    font-family: inherit;
}

.pincode-check-btn {
    padding: 8px 16px;
    background: #2d5a27;
    color: white;
    border: none;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.pincode-check-btn:hover {
    background: #1e3d1a;
}

.delivery-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #444;
}

.delivery-info-row .delivery-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.delivery-info-row strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Changepincode link */
.change-pincode {
    color: #1565c0;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
    margin-left: 6px;
}

.change-pincode:hover {
    text-decoration: underline;
}

/* ── Trust Partners Strip ── */
.trust-partners-strip {
    margin: 20px 0;
    padding: 16px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.trust-partners-strip h5 {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    text-align: center;
}

.trust-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.trust-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #eee;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    transition: all 0.25s ease;
}

.trust-logo-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.trust-logo-item img {
    height: 22px;
    width: auto;
    object-fit: contain;
    filter: grayscale(40%);
    transition: filter 0.3s;
}

.trust-logo-item:hover img {
    filter: grayscale(0%);
}

/* ── Social Share Icons ── */
.social-share-section,
.share-label,
.social-share-icons,
.share-icon-btn,
.share-icon-glyph {
    display: none !important;
}

/* ── Hide old WhatsApp share button ── */
.share-btn-whatsapp {
    display: none !important;
}

/* ── Trust Badges (Vertical — keep enhanced) ── */
.trust-badges-vertical {
    margin-top: 20px;
    padding: 16px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    background: #f9fdf7;
}

.trust-badge-item {
    font-size: 13px;
    color: #2d5a27;
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.trust-badge-item::before {
    content: '\2713';
    width: 20px;
    height: 20px;
    background: #2d5a27;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: 700;
}

/* ── Product Meta ── */
.product-meta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.meta-item {
    font-size: 13px;
    color: #555;
    padding: 4px 0;
}

.meta-item strong {
    color: #1a1a1a;
}

/* ── Product Tabs ── */
.tabs-container {
    max-width: 1280px;
    margin: 30px auto 40px;
    padding: 0 20px;
}

.tab-header {
    display: flex;
    border-bottom: 2px solid #e8e8e8;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.tab-header::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    border-radius: 2px 2px 0 0;
    transition: background 0.25s ease;
}

.tab-btn:hover {
    color: #2d5a27;
}

.tab-btn.active {
    color: #2d5a27;
    font-weight: 700;
}

.tab-btn.active::after {
    background: #2d5a27;
}

.tab-content {
    display: none;
    padding: 24px 0;
    animation: fadeInTab 0.4s ease;
}

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

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.tab-content p,
.tab-content div {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* Why Herb On Naturals */
.krishna-quality-section {
    max-width: 1280px;
    margin: 10px auto 30px;
    padding: 0 20px 26px;
    border-bottom: 1px solid #dcdcdc;
}

.krishna-quality-inner {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 30px 26px 24px;
    text-align: center;
}

.krishna-quality-section h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #222;
}

.krishna-quality-section p {
    max-width: 920px;
    margin: 12px auto 0;
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

.krishna-quality-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.krishna-quality-item {
    position: relative;
    padding: 6px 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.krishna-quality-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 14px;
    height: 64px;
    width: 1px;
    background: #d8d8d8;
}

.krishna-quality-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2a4b2e;
}

.krishna-quality-icon svg {
    width: 34px;
    height: 34px;
}

.krishna-quality-icon.icon-herbs { background: #d8efd2; color: #355f2f; }
.krishna-quality-icon.icon-sugar { background: #f2e9d7; color: #5f4c2f; }
.krishna-quality-icon.icon-gmp { background: #d5ebe4; color: #2f4f48; }
.krishna-quality-icon.icon-extract { background: #efdff1; color: #5d3e64; }
.krishna-quality-icon.icon-colors { background: #efe7cc; color: #5d552f; }
.krishna-quality-icon.icon-bpa { background: #dbe8ef; color: #324d60; }

.krishna-quality-label {
    font-size: 21px;
    line-height: 1.25;
    font-weight: 600;
    color: #222;
}

/* ── Frequently Bought Together ── */
.frequently-bought-section {
    width: 100%;
    max-width: 980px;
    margin: 12px auto 30px;
    padding: 0;
    transform: translateX(-68px);
}

.frequently-bought-section h2 {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin: 0 0 8px;
    text-align: left;
}

.fbt-container {
    padding: 12px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 6px;
}

.fbt-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.fbt-top-products {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
}

.fbt-top-product {
    width: 68px;
    height: 68px;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    background: #fff;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fbt-checkbox {
    width: 14px;
    height: 14px;
    margin: 0;
    accent-color: #2f7fd9;
    cursor: pointer;
}

.fbt-product-img {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    object-fit: contain;
}

.fbt-plus-sign {
    font-size: 22px;
    font-weight: 300;
    color: #c1c1c1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.fbt-list {
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fbt-list-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
}

.fbt-list-name {
    font-size: 12px;
    font-weight: 500;
    color: #1f1f1f;
    line-height: 1.35;
}

.fbt-list-price-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.fbt-list-price {
    font-size: 12px;
    font-weight: 700;
    color: #111;
}

.fbt-list-old {
    font-size: 11px;
    color: #8f8f8f;
    text-decoration: line-through;
}

.fbt-total-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    width: auto;
    min-width: 220px;
    flex: 0 0 auto;
}

.fbt-total-price {
    font-size: 11px;
    color: #555;
    line-height: 1.25;
}

.fbt-total-price strong {
    font-size: 15px;
    color: #111;
}

.fbt-total-price .fbt-total-old {
    text-decoration: line-through;
    color: #999;
    margin-left: 6px;
    font-size: 11px;
}

.fbt-add-all-btn {
    padding: 8px 12px;
    background: #ff6a00;
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    width: auto;
    white-space: nowrap;
    text-align: center;
}

.fbt-add-all-btn:hover {
    background: #e55d00;
    transform: none;
    box-shadow: none;
}

/* PD View Banner (below product section) */
.pd-view-banner-section {
    width: min(100%, 1280px);
    max-width: 1280px;
    margin: 12px auto 22px;
    padding: 0 20px;
}

.pd-view-banner-stack {
    display: grid;
    gap: 14px;
}

.pd-view-banner-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e6ece5;
    background: #fff;
    box-shadow: 0 6px 20px rgba(24, 54, 24, 0.08);
}

.pd-view-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ── Offers Box - Enhanced ── */
.offers-box {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 16px;
    margin: 16px 0;
    border-left: 4px solid #ff6a00;
}

.offers-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #e65100;
    margin-bottom: 10px;
}

.offers-header svg {
    stroke: #e65100;
}

.offers-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offers-list li {
    font-size: 13px;
    color: #444;
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.offers-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    font-size: 12px;
}

.offers-list li strong {
    background: #e8f5e9;
    padding: 1px 6px;
    border-radius: 3px;
    font-weight: 700;
    color: #2d5a27;
}

/* ── Purchase Price Box - Merged ── */
.purchase-price-box {
    display: none;
}

/* ── Sticky Mobile Bar ── */
.sticky-add-bar {
    display: none;
}

/* ── Related Products Section ── */
.related-products {
    background: #ffffff;
    padding: 40px 0;
}

.related-products .section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 28px;
}

/* Keep related-product hover images stacked in the same frame */
.related-products .product-image-wrapper > a {
    display: grid;
    width: 100%;
    height: 100%;
}

.related-products .product-image-wrapper > a .product-image {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .product-detail-3col {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
    }

    .product-gallery-col {
        position: sticky;
        top: 98px;
        align-self: start;
        height: fit-content;
    }

    .frequently-bought-section {
        transform: translateX(-34px);
    }

    .krishna-quality-section h2 {
        font-size: 30px;
    }

    .krishna-quality-section p {
        font-size: 14px;
    }

    .krishna-quality-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 16px;
    }

    .krishna-quality-item {
        padding-top: 2px;
    }

    .krishna-quality-item::after {
        display: none;
    }

    .krishna-quality-label {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .product-page {
        --main-image-base-scale: 1.18;
    }

    .product-gallery-col {
        position: static;
        top: auto;
        align-self: auto;
    }

    .product-detail-3col {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 0 15px;
        margin-bottom: 8px;
    }

    .frequently-bought-section {
        transform: none;
        margin: 0 auto 20px;
    }

    .krishna-quality-section {
        margin: 4px auto 22px;
        padding: 0 15px 20px;
    }

    .krishna-quality-inner {
        border-radius: 12px;
        padding: 22px 14px 18px;
    }

    .krishna-quality-section h2 {
        font-size: 24px;
    }

    .krishna-quality-section p {
        font-size: 13px;
        margin-top: 10px;
    }

    .krishna-quality-grid {
        margin-top: 18px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 10px;
    }

    .krishna-quality-icon {
        width: 52px;
        height: 52px;
    }

    .krishna-quality-icon svg {
        width: 28px;
        height: 28px;
    }

    .krishna-quality-label {
        font-size: 14px;
    }

    .product-info-col h1 {
        font-size: 19px;
    }

    .current-price {
        font-size: 22px !important;
    }

    .variant-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-action-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .add-to-cart-btn-main,
    .buy-now-btn-main {
        padding: 13px 16px;
        font-size: 13px;
    }

    .doctor-consultation-banner {
        padding: 0;
    }

    .doctor-banner-content h3 {
        font-size: 17px;
    }

    .doctor-banner-image {
        width: 100%;
        max-width: 280px;
        height: 160px;
        margin: 8px auto 0;
    }

    .fbt-container {
        padding: 12px;
    }

    .fbt-top-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .fbt-top-products {
        gap: 8px;
        flex-wrap: wrap;
    }

    .fbt-top-product {
        width: 72px;
        height: 72px;
    }

    .fbt-plus-sign {
        display: flex;
    }

    .fbt-list {
        margin-top: 12px;
        gap: 6px;
    }

    .fbt-list-item {
        grid-template-columns: auto 1fr;
        row-gap: 2px;
    }

    .fbt-list-name {
        font-size: 12px;
    }

    .fbt-list-price-wrap {
        grid-column: 2 / 3;
        margin-left: 0;
    }

    .fbt-list-price {
        font-size: 12px;
    }

    .fbt-list-old {
        font-size: 11px;
    }

    .fbt-total-section {
        align-items: flex-start;
        gap: 10px;
        min-width: 0;
        width: 100%;
    }

    .fbt-total-price {
        font-size: 11px;
    }

    .fbt-total-price strong {
        font-size: 15px;
    }

    .fbt-total-price .fbt-total-old {
        font-size: 11px;
    }

    .fbt-add-all-btn {
        font-size: 10px;
        padding: 9px 12px;
        width: 100%;
    }

    .pd-view-banner-section {
        width: 100%;
        max-width: 100%;
        margin: 10px auto 16px;
        padding: 0 15px;
    }

    .pd-view-banner-stack {
        gap: 10px;
    }

    .pd-view-banner-card {
        border-radius: 10px;
    }

    .product-cert-badges {
        gap: 6px;
    }

    .cert-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .benefit-tag {
        font-size: 11px;
        padding: 5px 10px;
    }

    /* Show sticky mobile bar */
    .sticky-add-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 10px 15px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .sticky-info {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
        min-width: 0;
    }

    .sticky-info img {
        width: 40px;
        height: 40px;
        border-radius: 6px;
        object-fit: contain;
        border: 1px solid #eee;
    }

    .sticky-text {
        min-width: 0;
    }

    .sticky-title {
        font-size: 12px;
        font-weight: 600;
        color: #1a1a1a;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sticky-price {
        font-size: 14px;
        font-weight: 700;
        color: #2d5a27;
    }

    .sticky-btn {
        padding: 10px 20px;
        background: #ff6a00;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .variant-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .variant-card {
        padding: 10px 8px 8px;
    }

    .variant-price {
        font-size: 17px;
    }

    .product-benefit-tags {
        gap: 6px;
    }

    .benefit-tag {
        font-size: 10px;
        padding: 4px 8px;
    }

    .tabs-container {
        padding: 0 15px;
    }

    .tab-btn {
        padding: 12px 18px;
        font-size: 13px;
    }

    .trust-logos-row {
        gap: 10px;
    }

    .trust-logo-item {
        padding: 4px 8px;
        font-size: 10px;
    }
}

/* ============================================
   PRODUCT VIEW POLISH LAYER (APR 2026)
   ============================================ */
:root {
    --pv-green: #2d5a27;
    --pv-green-dark: #1f4320;
    --pv-orange: #ef6c00;
    --pv-orange-dark: #d85e00;
    --pv-surface: #f7faf6;
    --pv-border: #dbe6d8;
    --pv-muted: #5f6c61;
}

.product-detail-3col {
    gap: 42px !important;
    align-items: start;
}

.product-gallery-col {
    top: 98px;
}

.main-image-container {
    border: 1px solid var(--pv-border);
    border-radius: 16px;
    background:
        radial-gradient(circle at 78% 18%, rgba(45, 90, 39, 0.08), transparent 46%),
        radial-gradient(circle at 16% 84%, rgba(239, 108, 0, 0.08), transparent 52%),
        #fcfdfb;
}

.main-image {
    padding: 0;
}

.thumbnail-item {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 10px;
    border: 1px solid #d8e3d7;
}

.product-info-col {
    border: 1px solid #ecf1eb;
    border-radius: 16px;
    padding: 12px 16px 16px;
    background: #fff;
}

.product-info-col h1 {
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.product-rating-large {
    gap: 2px;
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.product-rating-large .rating-star {
    font-size: 14px;
}

.product-rating-large .rating-text {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2f3f30;
}

.product-price-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 10px 0 10px;
}

.price-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.price-main-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.product-price-info .price-label {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
}

.product-price-info .price-label:first-child {
    font-size: 13px;
    color: var(--pv-muted);
}

.product-price-info .price-label:last-child {
    font-size: 16px;
    color: #1c2d1f;
}

.current-price {
    font-size: 44px !important;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.mrp-value {
    font-size: 18px;
    font-weight: 600;
    color: #869188;
    text-decoration: line-through;
    line-height: 1.1;
}

.price-save-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ffd5ac;
    background: #fff5e9;
    color: #c15e00;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.quick-assurance-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 2px 0 10px;
}

.assurance-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.15;
}

.assurance-live {
    background: #eef8ea;
    border: 1px solid #cae5c4;
    color: #2f5b2b;
}

.assurance-live::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #2d7a2e;
    flex-shrink: 0;
}

.assurance-shipping {
    background: #eef6ff;
    border: 1px solid #cde0fb;
    color: #1f4f86;
}

.assurance-shipping::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #1e63ad;
    flex-shrink: 0;
}

.product-cert-badges {
    gap: 8px;
    margin: 12px 0 6px;
}

.cert-badge {
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
}

.cert-badge.fssai {
    border-color: #83b7f4;
    background: #f1f7ff;
}

.cert-badge.ayurvedic {
    border-color: #a0d4a8;
    background: #f2fbf0;
}

.cert-badge.offer {
    border-color: #ffcf94;
    background: #fff6ea;
}

.product-benefit-tags {
    gap: 8px;
    margin: 10px 0 14px;
}

.benefit-tag {
    border-radius: 999px;
    border: 1px solid #d9e3d8;
    background: #f9fbf8;
    color: #345736;
    font-weight: 600;
    gap: 8px;
}

.benefit-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #7cad78;
    flex-shrink: 0;
}

.herb-points-info {
    background: linear-gradient(90deg, #ecf7e8, #f5fcf3);
    border: 1px solid #cde6cb;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #32552f;
}

.size-selector-section {
    margin: 18px 0;
}

.size-selector-section h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.variant-grid {
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    gap: 12px;
}

.variant-card {
    border: 1px solid #d7e2d5;
    border-radius: 14px;
    padding: 10px 10px 8px;
    background: #fff;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
    transform: none;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
}

.variant-card::after {
    display: none;
}

.variant-card:hover {
    transform: translateY(-2px);
    border-color: #9dc49d;
    box-shadow: 0 8px 18px rgba(45, 90, 39, 0.12);
}

.variant-card.active {
    border-color: var(--pv-orange);
    box-shadow: 0 10px 24px rgba(239, 108, 0, 0.14);
    background: #fffdfa;
}

.variant-card.best-value-choice:not(.active) {
    border-color: #d1b362;
    box-shadow: 0 6px 16px rgba(188, 145, 18, 0.16);
}

.variant-card.active::before {
    background: var(--pv-orange);
}

.variant-best-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(90deg, #d0a313, #bf8f08);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.variant-pack-name {
    min-height: 28px;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
    font-weight: 700;
    color: #223525;
}

.variant-media {
    width: 62px;
    height: 62px;
    border-radius: 12px;
    background: #f3f7f2;
    border: 1px solid #dce7da;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.variant-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.variant-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.variant-price {
    margin: 0;
    font-size: 28px;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #1b2c1c;
}

.variant-original-price {
    margin: 0;
    font-size: 14px;
    color: #8c9690;
    font-weight: 600;
}

.variant-size {
    margin: 0;
    font-size: 12px;
    color: #334236;
    font-weight: 600;
}

.variant-per-unit {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: #728076;
}

.variant-discount {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    padding: 3px 10px;
    border-radius: 999px;
    background: #fff0dc;
    color: #c15e00;
    font-size: 11px;
    font-weight: 700;
}

.variant-stock,
.variant-label {
    display: none;
}

.variant-cta {
    width: calc(100% + 24px);
    margin: 4px -12px -10px;
    padding: 8px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: #fff;
    border-radius: 0 0 12px 12px;
}

.variant-cta.beginner {
    background: linear-gradient(90deg, #ef7b00, #f3901f);
}

.variant-cta.popular {
    background: linear-gradient(90deg, #ef7b00, #e66600);
}

.variant-cta.best-value {
    background: linear-gradient(90deg, #c39610, #ae850c);
}

.quantity-section {
    margin: 14px 0 18px;
    padding: 8px 0 0;
    border-top: 1px dashed #d7e0d6;
}

.quantity-section label {
    font-size: 14px;
    font-weight: 700;
}

.quantity-selector-inline {
    border: 1px solid #d2ddd0;
    border-radius: 10px;
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 36px;
    background: #f3f6f2;
    font-size: 17px;
}

.qty-display {
    min-width: 40px;
    font-size: 15px;
}

.product-action-buttons {
    gap: 10px;
    margin: 10px 0 18px;
}

.add-to-cart-btn-main,
.buy-now-btn-main {
    height: 48px;
    padding: 0 18px;
    border-radius: 9px;
    font-size: 15px;
    letter-spacing: 0.2px;
    font-weight: 800;
}

.add-to-cart-btn-main {
    background: linear-gradient(90deg, var(--pv-orange), #ff7a18);
}

.add-to-cart-btn-main:hover {
    background: linear-gradient(90deg, var(--pv-orange-dark), #f16f0f);
}

.buy-now-btn-main {
    background: linear-gradient(90deg, var(--pv-green), #356f2d);
    justify-content: space-between;
    gap: 12px;
    padding: 0 12px 0 16px;
}

.buy-now-btn-main:hover {
    background: linear-gradient(90deg, var(--pv-green-dark), #2f5c28);
}

.buy-now-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.buy-now-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.buy-now-text {
    line-height: 1;
    white-space: nowrap;
}

.buy-now-payment-stack {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.pay-logo-chip {
    width: 26px;
    height: 18px;
    background: #fff;
    border: 1px solid rgba(8, 18, 10, 0.14);
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pay-logo-chip + .pay-logo-chip {
    margin-left: -8px;
}

.pay-logo-chip:nth-child(1) { z-index: 4; }
.pay-logo-chip:nth-child(2) { z-index: 3; }
.pay-logo-chip:nth-child(3) { z-index: 2; }
.pay-logo-chip:nth-child(4) { z-index: 1; }

.pay-logo-chip img {
    max-width: 86%;
    max-height: 86%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 1200px) {
    .product-info-col h1 {
        font-size: 34px;
    }

    .variant-grid {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }
}

@media (max-width: 768px) {
    .product-info-col {
        border: 1px solid #edf2ec;
        border-radius: 14px;
        padding: 12px;
    }

    .product-info-col h1 {
        font-size: 28px;
        line-height: 1.15;
    }

    .current-price {
        font-size: 36px !important;
    }

    .price-top-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .price-save-pill {
        font-size: 11px;
        padding: 3px 9px;
    }

    .quick-assurance-row {
        margin-top: 6px;
    }

    .assurance-pill {
        font-size: 11px;
    }

    .variant-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .buy-now-btn-main {
        padding: 0 12px;
        gap: 8px;
    }

    .buy-now-payment-stack {
        transform: scale(0.92);
        transform-origin: right center;
    }

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

    .variant-original-price {
        font-size: 13px;
    }

    .variant-pack-name {
        min-height: 24px;
        font-size: 11px;
    }

    .variant-media {
        width: 56px;
        height: 56px;
    }

}

@media (max-width: 480px) {
    .product-info-col h1 {
        font-size: 24px;
    }

    .current-price {
        font-size: 32px !important;
    }

    .price-main-row {
        flex-wrap: wrap;
        gap: 6px;
    }

    .assurance-pill {
        width: 100%;
        justify-content: flex-start;
    }

    .variant-card {
        padding: 10px 8px 8px;
        max-width: 220px;
    }

    .buy-now-btn-main {
        padding: 0 10px;
    }

    .pay-logo-chip {
        width: 22px;
        height: 16px;
        border-radius: 5px;
    }

    .pay-logo-chip + .pay-logo-chip {
        margin-left: -7px;
    }

    .variant-price {
        font-size: 20px;
    }

    .variant-size {
        font-size: 11px;
    }
}

/* Product detail scroll behavior:
   left stays sticky, right scrolls with page, then full page continues normally. */
@media (min-width: 769px) {
    .product-page,
    .product-page > .container,
    .product-detail-3col {
        overflow: visible !important;
    }

    .product-detail-3col {
        align-items: start !important;
        position: relative;
    }

    .product-gallery-col {
        position: relative !important;
        top: auto !important;
        align-self: start !important;
        height: auto !important;
        transform: translate3d(0, 0, 0);
    }

    .product-info-col {
        position: relative !important;
        top: auto !important;
        align-self: start !important;
        max-height: none !important;
        overflow: visible !important;
        overscroll-behavior: auto !important;
    }
}

@media (max-width: 768px) {
    .product-gallery-col,
    .product-info-col {
        position: static !important;
        top: auto !important;
    }
}
