@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --color-royal-crimson: #3B0208;
    --color-deep-burgundy: #2A0105;
    --color-imperial-gold: #C59B27;
    --color-saffron-gold: #D4AF37;
    --color-champagne: #F9F3EA;
    --color-pearl-white: #FFFCF8;
    --color-soft-ivory: #F7EFE5;
    --color-emerald-green: #145E2E;
    --color-emerald-hover: #0E4422;
    --color-charcoal-dark: #1F1415;
    
    --color-gold-border: rgba(197, 155, 39, 0.35);
    --color-gold-glow: rgba(212, 175, 55, 0.12);
    
    --font-heritage: 'Cinzel', serif;
    --font-clean: 'Outfit', sans-serif;
    
    --shadow-luxury: 0 15px 35px rgba(59, 2, 8, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 25px 55px rgba(59, 2, 8, 0.12), 0 5px 15px rgba(197, 155, 39, 0.18);
    --transition-premium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-clean);
    background-color: var(--color-pearl-white);
    color: var(--color-charcoal-dark);
    line-height: 1.65;
    overflow-x: clip;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

img {
    -webkit-user-drag: none;
}

.hidden {
    display: none !important;
}

/* 📣 ANNOUNCEMENT TICKER */
.announcement-ticker {
    background: linear-gradient(90deg, #1f0104, var(--color-ruby-crimson), #1f0104);
    color: var(--color-saffron-gold);
    overflow: hidden;
    white-space: nowrap;
    padding: 0.65rem 0;
    font-family: var(--font-clean);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    z-index: 102;
    border-bottom: 1px solid var(--color-imperial-gold);
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-animation 28s linear infinite;
}

@keyframes ticker-animation {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* 💬 FLOATING WHATSAPP BUTTON */
.floating-contact-btn {
    position: fixed;
    bottom: 26px;
    right: 22px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4), 0 0 0 2px var(--color-imperial-gold);
    z-index: 9998;
    transition: var(--transition-premium);
    text-decoration: none;
}

.floating-contact-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.5);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    fill: white;
}

.silk-canvas-texture {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background-color: var(--color-pearl-white);
    background-image: radial-gradient(circle at 50% 50%, #FFFFFF 0%, var(--color-pearl-white) 100%);
}

/* 👑 HEADER BANNER */
.main-header {
    background-color: var(--color-deep-burgundy);
    border-bottom: 3px solid var(--color-imperial-gold);
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.banner-container {
    width: 100%;
    max-width: 2294px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-banner-img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    display: block;
}

/* 🛡️ TRUST STRIP */
.trust-features-strip {
    background: var(--color-champagne);
    border-bottom: 1px solid var(--color-gold-border);
    padding: 0.8rem 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.trust-features-strip::-webkit-scrollbar {
    display: none;
}

.trust-scroll-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    min-width: 100%;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--color-charcoal-dark);
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-icon {
    font-size: 1.4rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
    font-size: 0.78rem;
    line-height: 1.25;
}

.trust-text strong {
    color: var(--color-royal-crimson);
    font-size: 0.88rem;
    font-weight: 700;
}

/* 📌 STICKY NAVIGATION */
.sticky-nav-container {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255, 252, 248, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1.5px solid var(--color-imperial-gold);
    box-shadow: 0 4px 20px rgba(59, 2, 8, 0.08);
    padding: 0.75rem 0;
}

.department-bar-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0.6rem;
    padding: 0 0.8rem;
}

.department-bar {
    display: flex;
    gap: 0.6rem;
    background: var(--color-soft-ivory);
    padding: 0.35rem 0.6rem;
    border-radius: 30px;
    border: 1.5px solid var(--color-imperial-gold);
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow-x: auto;
}

.department-bar::-webkit-scrollbar {
    display: none;
}

.department-btn {
    background: transparent;
    border: none;
    padding: 0.65rem 1.4rem;
    font-family: var(--font-heritage);
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    color: var(--color-royal-crimson);
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-premium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 25px;
    min-height: 42px;
}

.btn-traditional-dot {
    width: 6px;
    height: 6px;
    background: var(--color-saffron-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.department-btn.active {
    color: #FFFFFF;
    background: var(--color-royal-crimson);
    box-shadow: 0 4px 12px rgba(59, 2, 8, 0.25);
}

.department-btn.active .btn-traditional-dot {
    opacity: 1;
    background: var(--color-saffron-gold);
}

.wishlist-dept-btn {
    border: 1.5px solid var(--color-imperial-gold);
    color: var(--color-royal-crimson);
    background: #FFFFFF;
    font-weight: 800;
}

/* 🔍 SEARCH BAR */
.search-bar-wrapper {
    max-width: 650px;
    margin: 0.5rem auto 0.4rem;
    padding: 0 1rem;
    width: 100%;
}

.search-input-box {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 2px solid var(--color-gold-border);
    border-radius: 28px;
    padding: 0.65rem 1.2rem;
    gap: 0.75rem;
    box-shadow: 0 3px 12px rgba(59, 2, 8, 0.04);
    transition: var(--transition-premium);
    min-height: 48px;
}

.search-input-box:focus-within {
    border-color: var(--color-royal-crimson);
    box-shadow: 0 4px 18px rgba(59, 2, 8, 0.14);
}

.search-icon {
    font-size: 1.1rem;
    color: var(--color-royal-crimson);
}

#search-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-clean);
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--color-charcoal-dark);
}

#search-input::placeholder {
    color: rgba(31, 20, 21, 0.45);
    font-weight: 400;
}

/* 🧵 FABRIC FILTERS */
.filters-outer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.category-filters {
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.3rem 0.2rem 0.4rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.category-filters::-webkit-scrollbar {
    height: 4px;
}

.category-filters::-webkit-scrollbar-thumb {
    background: var(--color-imperial-gold);
    border-radius: 4px;
}

.filter-btn {
    background: #FFFFFF;
    border: 1.5px solid var(--color-gold-border);
    padding: 0.75rem 1.2rem;
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 175px;
    flex-shrink: 0;
    transition: var(--transition-premium);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.filter-title {
    font-family: var(--font-heritage);
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    color: var(--color-royal-crimson);
    font-weight: 800;
}

.filter-price {
    font-family: var(--font-clean);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-imperial-gold);
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--color-royal-crimson);
    background-color: var(--color-champagne);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 2, 8, 0.1);
}

body.details-mode .main-header {
    display: none !important;
}

.container {
    max-width: 1200px;
    margin: 1.8rem auto 5rem;
    padding: 0 1.25rem 120px;
}

.view {
    display: none;
    opacity: 0;
}

.view.active {
    display: block;
    animation: viewFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.spinner {
    text-align: center;
    padding: 6rem 0;
    font-family: var(--font-heritage);
    color: var(--color-royal-crimson);
}

.spinner-icon {
    width: 48px;
    height: 48px;
    border: 3px solid var(--color-gold-border);
    border-top-color: var(--color-royal-crimson);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: mandalaRotate 1.2s linear infinite;
}

@keyframes mandalaRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner-subtext {
    font-family: var(--font-clean);
    font-size: 0.9rem;
    color: var(--color-imperial-gold);
    margin-top: 0.4rem;
}

/* 🖼️ PRODUCT GRID & CARDS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.2rem;
}

.product-card {
    background: #FFFFFF;
    border: 1px solid var(--color-gold-border);
    border-radius: 12px;
    padding: 1.1rem;
    position: relative;
    cursor: pointer;
    transition: var(--transition-premium);
    box-shadow: var(--shadow-luxury);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-royal-crimson);
    box-shadow: var(--shadow-hover);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 135%;
    overflow: hidden;
    background-color: var(--color-champagne);
    border-radius: 8px;
}

.product-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* 🔍 MAGNIFYING ZOOM HINT BADGE */
.image-zoom-hint-badge {
    position: absolute;
    bottom: 0.8rem;
    left: 0.8rem;
    background: rgba(31, 20, 21, 0.82);
    color: var(--color-champagne);
    font-family: var(--font-clean);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    z-index: 10;
    border: 1px solid var(--color-imperial-gold);
    backdrop-filter: blur(4px);
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* 🏷️ BADGES */
.card-discount-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #E8F5E9;
    color: #145E2E;
    border: 1.5px solid #81C784;
    font-family: var(--font-clean);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    z-index: 12;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card-code-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(31, 20, 21, 0.88);
    color: var(--color-saffron-gold);
    border: 1px solid var(--color-imperial-gold);
    font-family: var(--font-heritage);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    z-index: 12;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.sold-out-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: var(--color-royal-crimson);
    color: #FFFFFF;
    font-family: var(--font-heritage);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    z-index: 12;
}

/* ⚡ QUICK ACTIONS (WISHLIST & SHARE) */
.card-quick-actions, .detail-quick-actions {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 14;
}

.card-action-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--color-imperial-gold);
    background: #FFFFFF;
    color: var(--color-royal-crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 2, 8, 0.15);
    transition: var(--transition-premium);
}

.card-action-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.card-action-btn:hover {
    transform: scale(1.1);
    background: var(--color-champagne);
}

.card-action-btn.active {
    background: var(--color-royal-crimson);
    color: #FFFFFF;
    border-color: var(--color-royal-crimson);
}

/* 📝 CARD INFO AREA */
.product-info {
    padding: 1rem 0.2rem 0.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.product-code-tag {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-imperial-gold);
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}

.product-title {
    font-family: var(--font-heritage);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-royal-crimson);
    margin-bottom: 0.4rem;
    text-transform: capitalize;
    line-height: 1.3;
}

.product-card-description {
    font-size: 0.84rem;
    color: var(--color-charcoal-dark);
    opacity: 0.8;
    line-height: 1.45;
    margin-bottom: 0.6rem;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    border-top: 1px dashed var(--color-gold-border);
    padding-top: 0.75rem;
    margin-bottom: 0.6rem;
}

.mrp-price {
    font-family: var(--font-clean);
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(59, 2, 8, 0.5);
    text-decoration: line-through;
}

.product-price {
    font-family: var(--font-heritage);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-royal-crimson);
}

/* 🛍️ SIDE-BY-SIDE ACTION BUTTONS */
.card-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    width: 100%;
}

.card-buy-btn,
.card-video-btn {
    width: 100%;
    min-height: 48px;
    font-family: var(--font-heritage);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.65rem 0.2rem;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.card-video-btn {
    background: linear-gradient(135deg, var(--color-royal-crimson), var(--color-deep-burgundy));
    border: 1px solid var(--color-imperial-gold);
    color: var(--color-soft-ivory);
    box-shadow: 0 3px 10px rgba(59, 2, 8, 0.2);
}

.card-video-btn:hover {
    background: var(--color-deep-burgundy);
    color: #FFFFFF;
}

.card-buy-btn {
    background: linear-gradient(135deg, var(--color-emerald-green), var(--color-emerald-hover));
    border: 1px solid var(--color-emerald-hover);
    color: #FFFFFF;
    box-shadow: 0 3px 10px rgba(20, 94, 46, 0.25);
}

.card-buy-btn:hover {
    background: var(--color-emerald-hover);
}

/* 📖 PRODUCT DETAILS VIEW */
.back-nav {
    margin-bottom: 1.8rem;
}

.back-btn {
    background: transparent;
    border: none;
    color: var(--color-royal-crimson);
    font-family: var(--font-heritage);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition-premium);
}

.back-btn:hover {
    color: var(--color-imperial-gold);
    transform: translateX(-4px);
}

.product-details-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    background: #FFFFFF;
    border: 1px solid var(--color-gold-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-luxury);
}

.product-image-section {
    position: relative;
    background: var(--color-champagne);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-image-wrapper {
    position: relative;
    display: inline-flex;
    max-height: 72vh;
    max-width: 100%;
}

.detail-image-wrapper img {
    max-height: 72vh;
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.product-info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-title {
    font-family: var(--font-heritage);
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 700;
    color: var(--color-royal-crimson);
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

.detail-code-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-clean);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-imperial-gold);
    background: rgba(197, 155, 39, 0.08);
    border: 1.5px dashed var(--color-imperial-gold);
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    width: fit-content;
}

.detail-code-badge #detail-code {
    font-family: var(--font-heritage);
    font-weight: 800;
    color: var(--color-royal-crimson);
}

.title-accent-line {
    width: 70px;
    height: 2px;
    background-color: var(--color-royal-crimson);
    margin-bottom: 1.8rem;
}

.price-card {
    background: var(--color-champagne);
    border-left: 4px solid var(--color-royal-crimson);
    border-radius: 0 8px 8px 0;
    padding: 1.4rem;
    margin-bottom: 2.2rem;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.mrp-price-detail {
    font-family: var(--font-clean);
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(59, 2, 8, 0.55);
    text-decoration: line-through;
}

.currency {
    font-family: var(--font-clean);
    font-size: 1.2rem;
    color: var(--color-royal-crimson);
    font-weight: 800;
}

.amount {
    font-family: var(--font-heritage);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--color-royal-crimson);
}

/* 🔘 ACTION BUTTONS IN DETAILS VIEW */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
}

.secondary-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    width: 100%;
}

.action-buttons button {
    width: 100%;
    min-height: 52px;
    padding: 0.9rem 1.2rem;
    font-family: var(--font-heritage);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 8px;
    transition: var(--transition-premium);
}

#wishlist-btn {
    border: 1.5px solid var(--color-royal-crimson);
    background: #FFFFFF;
    color: var(--color-royal-crimson);
}

#wishlist-btn:hover, #wishlist-btn.active {
    background-color: var(--color-royal-crimson);
    color: #FFFFFF;
}

.share-btn {
    border: 1.5px solid var(--color-gold-border);
    background: #FFFFFF;
    color: var(--color-charcoal-dark);
}

.share-btn:hover {
    border-color: var(--color-royal-crimson);
    background-color: var(--color-champagne);
    color: var(--color-royal-crimson);
}

/* 📱 MOBILE STICKY BOTTOM QUICK ACTION BAR */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 20, 21, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 2px solid var(--color-imperial-gold);
    padding: 0.65rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 9999;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-bar.visible {
    transform: translateY(0);
}

.sticky-action-btn {
    border: none;
    border-radius: 8px;
    font-family: var(--font-heritage);
    font-weight: 800;
    font-size: 0.82rem;
    padding: 0.75rem 0.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-transform: uppercase;
}

.sticky-action-btn.share {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    color: var(--color-saffron-gold);
    border: 1px solid var(--color-imperial-gold);
    flex-shrink: 0;
}

.sticky-action-btn.share svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.sticky-action-btn.video {
    flex: 1;
    background: linear-gradient(135deg, var(--color-royal-crimson), var(--color-deep-burgundy));
    border: 1px solid var(--color-imperial-gold);
    color: var(--color-champagne);
}

.sticky-action-btn.buy {
    flex: 1;
    background: linear-gradient(135deg, var(--color-emerald-green), var(--color-emerald-hover));
    color: #FFFFFF;
}

/* 🔍 ZOOM OVERLAY CONTROLS */
.zoom-controls-bar {
    position: absolute;
    top: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 100;
    background: rgba(0,0,0,0.65);
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    border: 1px solid var(--color-imperial-gold);
    backdrop-filter: blur(8px);
}

.zoom-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-saffron-gold);
    background: rgba(255,255,255,0.1);
    color: var(--color-saffron-gold);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-premium);
}

.zoom-btn:hover {
    background: var(--color-saffron-gold);
    color: var(--color-deep-burgundy);
}

.overlay-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid var(--color-imperial-gold);
    border-radius: 8px;
    transition: transform 0.25s ease-out;
}

/* 🌀 HORIZONTAL SCROLL SECTIONS */
.similar-products-section {
    padding-top: 3.5rem;
    margin-top: 3.5rem;
    border-top: 1px dashed var(--color-gold-border);
}

.horizontal-scroll-grid {
    display: flex !important;
    gap: 1.5rem;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 1.2rem;
    scroll-behavior: smooth;
}

.horizontal-scroll-grid::-webkit-scrollbar {
    height: 4px;
}

.horizontal-scroll-grid::-webkit-scrollbar-thumb {
    background: var(--color-imperial-gold);
    border-radius: 4px;
}

.horizontal-scroll-grid .product-card {
    flex: 0 0 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    scroll-snap-align: start;
}

.fabric-grids-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.fabric-collection-block {
    background: #FFFFFF;
    border: 1px solid var(--color-gold-border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-luxury);
}

.fabric-block-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heritage);
    color: var(--color-royal-crimson);
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px dashed var(--color-gold-border);
}

.view-all-fabric-btn {
    background: var(--color-soft-ivory);
    border: 1px solid var(--color-imperial-gold);
    color: var(--color-royal-crimson);
    font-family: var(--font-clean);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-premium);
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 100px);
    background: var(--color-charcoal-dark);
    color: var(--color-pearl-white);
    padding: 0.85rem 1.8rem;
    border: 1px solid var(--color-saffron-gold);
    border-radius: 25px;
    font-size: 0.9rem;
    z-index: 10000;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.toast.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

.empty-state {
    text-align: center;
    padding: 6rem 2rem;
    background: #FFFFFF;
    border: 1.5px dashed var(--color-imperial-gold);
    border-radius: 12px;
}

/* 🖼️ MODALS */
.image-overlay {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(31, 20, 21, 0.94);
}

.overlay-content {
    position: relative;
    z-index: 2;
    max-width: 95%;
    max-height: 95%;
    text-align: center;
}

.overlay-close {
    position: absolute;
    top: -2.8rem;
    right: 0;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 2.2rem;
    cursor: pointer;
}

.share-modal-card {
    position: relative;
    z-index: 2;
    background: #FFFFFF;
    border: 1.5px solid var(--color-imperial-gold);
    padding: 2.2rem 2rem;
    max-width: 440px;
    width: 90%;
    border-radius: 12px;
    text-align: center;
}

.share-modal-title {
    font-family: var(--font-heritage);
    color: var(--color-royal-crimson);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.share-options-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.share-option-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.85rem 1.2rem;
    font-family: var(--font-clean);
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid var(--color-gold-border);
    background: var(--color-soft-ivory);
    color: var(--color-charcoal-dark);
    cursor: pointer;
    border-radius: 8px;
}

.share-option-btn.whatsapp { background: #25d366; color: #ffffff; }
.share-option-btn.facebook { background: #1877f2; color: #ffffff; }

.section-title {
    font-family: var(--font-heritage);
    font-size: 1.6rem;
    text-align: center;
    font-weight: 700;
    color: var(--color-royal-crimson);
    margin-bottom: 0.4rem;
}

.section-title-divider {
    width: 50px;
    height: 2px;
    background-color: var(--color-imperial-gold);
    margin: 0 auto 3rem;
}

/* ⛩️ FOOTER */
.traditional-footer {
    background-color: var(--color-deep-burgundy);
    color: var(--color-soft-ivory);
    position: relative;
    padding: 3.5rem 0 2.5rem 0;
    border-top: 3px solid var(--color-imperial-gold);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 0.9fr;
    gap: 4rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-heritage);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-saffron-gold);
    margin-bottom: 1.2rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(247, 239, 229, 0.8);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.footer-address {
    font-size: 0.9rem;
    color: rgba(247, 239, 229, 0.85);
    line-height: 1.65;
    font-style: normal;
    margin-bottom: 1.2rem;
}

.footer-link-text {
    color: var(--color-saffron-gold);
    text-decoration: none;
    font-weight: 700;
}

.footer-social-logos {
    display: flex;
    gap: 1.1rem;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--color-imperial-gold);
}

.footer-svg {
    width: 20px;
    height: 20px;
    fill: var(--color-saffron-gold);
}

.footer-base {
    max-width: 1200px;
    margin: 3.5rem auto 0 auto;
    padding: 1.5rem 1.5rem 0 1.5rem;
    border-top: 1px solid rgba(247, 239, 229, 0.1);
    text-align: center;
}

.footer-base p {
    font-size: 0.82rem;
    color: rgba(247, 239, 229, 0.5);
}

/* 📱 RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.8rem; }
    .product-details-container { grid-template-columns: 1fr; gap: 2.2rem; padding: 1.8rem; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2.8rem; }
}

@media (max-width: 768px) {
    .product-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .horizontal-scroll-grid .product-card {
        flex: 0 0 240px !important;
        min-width: 240px !important;
        max-width: 240px !important;
    }
    .container { padding: 0 1rem 140px; }
    .footer-container { grid-template-columns: 1fr; gap: 2.8rem; }
    .floating-contact-btn {
        bottom: 80px;
        right: 18px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-icon { width: 26px; height: 26px; }
}

@media (max-width: 600px) {
    .product-details-container { padding: 1.25rem; }
    .amount { font-size: 2.1rem; }
    .mrp-price-detail { font-size: 1.25rem; }
    .action-buttons button {
        min-height: 48px;
        font-size: 0.8rem;
    }
    @media (max-width: 600px) {
    /* Hides "Kalamkari" and "Gallery" only on mobile phones */
    .dept-brand-prefix {
        display: none;
    }

    .department-bar {
        padding: 0.25rem 0.3rem;
        gap: 0.25rem;
    }

    .department-btn {
        padding: 0.45rem 0.35rem;
        font-size: 0.76rem;
        letter-spacing: 0;
        min-height: 36px;
    }

    .btn-traditional-dot {
        display: none;
    }

    /* existing rules ... */
}
}