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

:root {
    --color-temple-crimson: #560b02;
    --color-royal-gold: #dfa843;
    --color-antique-gold: #b5832a;
    --color-parchment: #f4ebd8;
    --color-milk-ivory: #fffdf9;
    --color-roasted-espresso: #2c1a16;
    
    --color-gold-muted: rgba(223, 168, 67, 0.3);
    --color-gold-glow: rgba(223, 168, 67, 0.12);
    
    --font-heritage: 'Cinzel', serif;
    --font-clean: 'Outfit', sans-serif;
    
    --shadow-luxury: 0 15px 40px rgba(86, 11, 2, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 30px 65px rgba(86, 11, 2, 0.1), 0 5px 15px rgba(223, 168, 67, 0.08);
    --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ANTI-SCRAPING / TEXT SELECTION PROTECTION */
body {
    font-family: var(--font-clean);
    background-color: var(--color-milk-ivory);
    color: var(--color-roasted-espresso);
    line-height: 1.7;
    overflow-x: clip;
    letter-spacing: 0.01em;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

/* SEO HERITAGE CONTENT BLOCK STYLING */
.seo-heritage-section {
    margin: 1.5rem 0 2.5rem 0;
    padding: 1.8rem 2rem;
    background: var(--color-parchment);
    border: 1px solid var(--color-royal-gold);
    border-radius: 4px;
    box-shadow: var(--shadow-luxury);
    text-align: center;
}

.seo-heritage-section h2 {
    font-family: var(--font-heritage);
    color: var(--color-temple-crimson);
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
}

.seo-heritage-section p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--color-roasted-espresso);
    max-width: 1000px;
    margin: 0 auto;
}

.announcement-ticker {
    background: linear-gradient(90deg, var(--color-temple-crimson), #741104);
    color: var(--color-parchment);
    overflow: hidden;
    white-space: nowrap;
    padding: 0.6rem 0;
    font-family: var(--font-clean);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    z-index: 102;
    border-bottom: 1px solid var(--color-royal-gold);
}

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

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

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

.announcement-ticker:hover .ticker-content {
    animation-play-state: paused;
}

.floating-contact-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    transition: var(--transition-premium);
    text-decoration: none;
}

.floating-contact-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    background-color: #20ba5a;
}

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

.silk-canvas-texture {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 253, 249, 0.5) 0%, var(--color-parchment) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M0 8 L16 8 M8 0 L8 16' stroke='%23ebdcc5' stroke-width='0.55' stroke-opacity='0.4'/%3E%3Cpath d='M0 4 L16 4 M4 0 L4 16 M0 12 L16 12 M12 0 L12 16' stroke='%23ebdcc5' stroke-width='0.25' stroke-opacity='0.2'/%3E%3C/svg%3E");
    background-color: var(--color-parchment);
}

.sanctum-diya-halo {
    position: fixed;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, var(--color-gold-glow) 0%, transparent 65%);
    z-index: -1;
    pointer-events: none;
    animation: deepamBreath 6s ease-in-out infinite;
    will-change: opacity, transform;
}

@keyframes deepamBreath {
    0%, 100% { opacity: 0.75; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.header-boundary-gold {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--color-antique-gold), var(--color-royal-gold), var(--color-milk-ivory), var(--color-royal-gold), var(--color-antique-gold));
    position: relative;
    z-index: 101;
}

.premium-loader {
    position: fixed;
    inset: 0;
    background-color: #1a0301;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform, opacity;
    transition: transform 1.4s cubic-bezier(0.85, 0, 0.15, 1), opacity 1.2s ease;
}

.loader-backdrop-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(var(--color-royal-gold) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
}

.loader-border-frame {
    position: absolute;
    inset: 24px;
    border: 1px solid var(--color-royal-gold);
    opacity: 0.35;
    pointer-events: none;
}

.loader-border-frame::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px dashed var(--color-royal-gold);
    opacity: 0.15;
}

.loader-content {
    text-align: center;
    color: var(--color-parchment);
    z-index: 2;
    padding: 2rem;
}

.traditional-mandala-wrapper {
    width: 130px;
    height: 130px;
    margin: 0 auto 2rem;
    animation: mandalaRotate 20s linear infinite;
    will-change: transform;
}

.gold-temple-mandala {
    width: 100%;
    height: 100%;
}

.intro-title {
    font-family: var(--font-heritage);
    font-weight: 500;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    letter-spacing: 0.28em;
    color: var(--color-royal-gold);
    margin-bottom: 0.6rem;
    text-indent: 0.28em;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.intro-subtitle {
    font-family: var(--font-clean);
    font-weight: 300;
    font-size: clamp(0.85rem, 2.2vw, 1.05rem);
    letter-spacing: 0.15em;
    color: rgba(244, 235, 216, 0.7);
    margin-bottom: 3rem;
}

.luxury-loading-bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.bar-progress {
    width: 0%;
    height: 100%;
    background: var(--color-royal-gold);
    animation: loadProgress 2.5s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

.premium-loader.fade-out {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

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

@keyframes loadProgress {
    0% { width: 0%; }
    40% { width: 65%; }
    100% { width: 100%; }
}

.main-header {
    background-color: rgba(255, 253, 249, 0.65);
    border-bottom: 1px solid var(--color-gold-muted);
    position: relative;
    overflow: hidden;
}

.header-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: -1;
    pointer-events: none;
}

.header-main-marquee {
    padding: 1rem;
}

.header-main-marquee .header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-area-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.brand-frame {
    position: relative;
    padding: 1.2rem 3rem 1.4rem 3rem;
    border: 1px solid transparent;
    border-image: linear-gradient(to right, transparent, var(--color-royal-gold), transparent) 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-frame::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px dashed rgba(223, 168, 67, 0.4);
    pointer-events: none;
}

.brand-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--color-royal-gold);
    pointer-events: none;
}

.brand-corner.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.brand-corner.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.brand-corner.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.brand-corner.br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.brand-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.brand-logo-container {
    margin-bottom: 0.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-royal-gold);
    box-shadow: 0 4px 15px rgba(86, 11, 2, 0.15);
    transition: transform 0.3s ease;
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

.brand-content h1 {
    font-family: var(--font-heritage);
    color: var(--color-temple-crimson);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.brand-tagline {
    font-family: var(--font-clean);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-antique-gold);
    font-weight: 600;
}

.brand-base-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    margin-top: 0.5rem;
}

.sep-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-royal-gold), transparent);
}

.sep-leaf {
    color: var(--color-temple-crimson);
    font-size: 0.75rem;
}

.sticky-nav-container {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255, 253, 249, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-royal-gold);
    box-shadow: 0 6px 25px rgba(86, 11, 2, 0.08);
    padding: 0.8rem 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: rgba(245, 238, 223, 0.7);
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    border: 1.5px solid var(--color-royal-gold);
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

.department-btn {
    background: transparent;
    border: 1px solid transparent;
    padding: 0.65rem 1.4rem;
    font-family: var(--font-heritage);
    font-size: 0.98rem;
    letter-spacing: 0.08em;
    color: var(--color-temple-crimson);
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-premium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 3px;
}

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

.department-btn.active {
    color: var(--color-milk-ivory);
    background-color: var(--color-temple-crimson);
    border-color: var(--color-royal-gold);
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(86, 11, 2, 0.2);
}

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

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

.wishlist-dept-btn:hover {
    background-color: var(--color-temple-crimson);
    color: var(--color-milk-ivory);
    border-color: var(--color-temple-crimson);
}

.filters-outer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

.category-filters::-webkit-scrollbar-track {
    background: rgba(245, 238, 223, 0.4);
}

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

.filter-btn {
    background: var(--color-milk-ivory);
    border: 1.5px solid var(--color-gold-muted);
    padding: 0.85rem 1.3rem;
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 190px;
    flex-shrink: 0;
    transition: var(--transition-premium);
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(86, 11, 2, 0.04);
}

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

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

.filter-btn:hover, .filter-btn.active {
    border-color: var(--color-temple-crimson);
    background-color: var(--color-parchment);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(86, 11, 2, 0.08);
}

.filter-btn.active .filter-title {
    color: var(--color-temple-crimson);
    font-weight: 800;
}

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

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

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

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

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

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

.spinner-icon {
    width: 48px;
    height: 48px;
    border: 2px solid var(--color-gold-muted);
    border-top-color: var(--color-temple-crimson);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: mandalaRotate 1.3s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
}

.spinner-subtext {
    font-family: var(--font-clean);
    font-size: 0.85rem;
    color: var(--color-antique-gold);
    margin-top: 0.4rem;
    letter-spacing: 0.06em;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--color-milk-ivory);
    border: 1px solid transparent;
    border-image: linear-gradient(135deg, var(--color-antique-gold), var(--color-royal-gold), #fffbfa, var(--color-royal-gold), var(--color-antique-gold)) 1;
    padding: 1.1rem;
    position: relative;
    cursor: pointer;
    transition: var(--transition-premium);
    will-change: transform, border-image, box-shadow;
    box-shadow: var(--shadow-luxury);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px dashed rgba(223, 168, 67, 0.35);
    pointer-events: none;
    transition: var(--transition-premium);
}

.product-card:hover {
    transform: translateY(-8px);
    border-image: linear-gradient(135deg, var(--color-temple-crimson), var(--color-royal-gold), var(--color-temple-crimson)) 1;
    box-shadow: var(--shadow-hover);
}

.product-card:hover::before {
    border-color: var(--color-temple-crimson);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 135%;
    overflow: hidden;
    background-color: var(--color-temple-crimson);
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.3);
}

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

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

.card-discount-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: #e5ead8;
    color: #1b5e39;
    border: 1.5px solid #8fae95;
    font-family: var(--font-clean);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    z-index: 12;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    letter-spacing: 0.04em;
    pointer-events: none;
}

.sold-out-badge {
    position: absolute;
    bottom: 0.8rem;
    left: 0.8rem;
    background: var(--color-temple-crimson);
    color: var(--color-parchment);
    font-family: var(--font-heritage);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.75rem;
    z-index: 12;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.card-quick-actions, .detail-quick-actions {
    position: absolute;
    bottom: 0.8rem;
    right: 0.8rem;
    top: auto;
    left: auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 14;
}

.card-action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--color-royal-gold);
    background: var(--color-milk-ivory);
    color: var(--color-temple-crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(86, 11, 2, 0.2);
    transition: var(--transition-premium);
}

.card-action-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

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

.card-action-btn.active {
    background: var(--color-temple-crimson);
    color: var(--color-milk-ivory);
    border-color: var(--color-temple-crimson);
}

.product-info {
    padding: 1.2rem 0.4rem 0.4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.product-title {
    font-family: var(--font-heritage);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-temple-crimson);
    margin-bottom: 0.4rem;
    text-transform: capitalize;
}

.product-card-description {
    font-size: 0.8rem;
    color: var(--color-roasted-espresso);
    opacity: 0.75;
    line-height: 1.4;
    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-muted);
    padding-top: 0.8rem;
    margin-bottom: 0.2rem;
}

.mrp-price {
    font-family: var(--font-clean);
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(86, 11, 2, 0.65);
    text-decoration: line-through;
    text-decoration-color: var(--color-temple-crimson);
    text-decoration-thickness: 2px;
    letter-spacing: 0.02em;
}

.product-price {
    font-family: var(--font-heritage);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-temple-crimson);
}

.back-nav {
    margin-bottom: 2rem;
}

.back-btn {
    background: transparent;
    border: none;
    color: var(--color-temple-crimson);
    font-family: var(--font-heritage);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition-premium);
}

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

.product-details-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    background: var(--color-milk-ivory);
    border: 1px solid transparent;
    border-image: linear-gradient(135deg, var(--color-antique-gold), var(--color-royal-gold), #fffbfa, var(--color-royal-gold), var(--color-antique-gold)) 1;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-luxury);
}

.product-details-container::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(223, 168, 67, 0.2);
    pointer-events: none;
}

.product-image-section {
    position: relative;
    background: var(--color-parchment);
    border: 1px solid rgba(223, 168, 67, 0.3);
    padding: 0.8rem;
    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;
    display: block;
    cursor: zoom-in;
}

.product-info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.detail-title {
    font-family: var(--font-heritage);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 600;
    color: var(--color-temple-crimson);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

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

.price-card {
    background: var(--color-parchment);
    border-left: 4px solid var(--color-temple-crimson);
    padding: 1.4rem;
    margin-bottom: 2.2rem;
    box-shadow: inset 0 0 20px rgba(223, 168, 67, 0.06);
}

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

.mrp-price-detail {
    font-family: var(--font-clean);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(86, 11, 2, 0.65);
    text-decoration: line-through;
    text-decoration-color: var(--color-temple-crimson);
    text-decoration-thickness: 3px;
    background: rgba(86, 11, 2, 0.06);
    padding: 0.3rem 0.85rem;
    border-radius: 4px;
    border: 1px dashed rgba(86, 11, 2, 0.3);
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 3px rgba(86, 11, 2, 0.04);
}

.currency {
    font-family: var(--font-clean);
    font-size: 1.1rem;
    color: var(--color-temple-crimson);
    font-weight: 700;
}

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

.similar-products-section {
    padding-top: 3.5rem;
    margin-top: 3.5rem;
    border-top: 1px dashed var(--color-gold-muted);
}

.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;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

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

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

.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: var(--color-milk-ivory);
    border: 1px solid var(--color-gold-muted);
    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-temple-crimson);
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px dashed var(--color-gold-muted);
}

.view-all-fabric-btn {
    background: var(--color-parchment);
    border: 1px solid var(--color-royal-gold);
    color: var(--color-temple-crimson);
    font-family: var(--font-clean);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-premium);
    box-shadow: 0 2px 6px rgba(86, 11, 2, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.view-all-fabric-btn:hover {
    background: var(--color-temple-crimson);
    color: var(--color-milk-ivory);
    border-color: var(--color-temple-crimson);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(86, 11, 2, 0.2);
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 100px);
    background: var(--color-roasted-espresso);
    color: var(--color-parchment);
    padding: 0.85rem 1.8rem;
    border: 1px solid var(--color-royal-gold);
    font-family: var(--font-clean);
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

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

.empty-state {
    text-align: center;
    padding: 6rem 2rem;
    background: var(--color-milk-ivory);
    border: 1px dashed var(--color-royal-gold);
}

.empty-icon {
    font-size: 2.2rem;
    color: var(--color-royal-gold);
    margin-bottom: 0.9rem;
}

.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(44, 26, 22, 0.96);
}

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

.overlay-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid var(--color-royal-gold);
}

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

.image-overlay.hidden {
    display: none !important;
}

.share-modal-card {
    position: relative;
    z-index: 2;
    background: var(--color-milk-ivory);
    border: 1.5px solid var(--color-royal-gold);
    padding: 2.2rem 2rem;
    max-width: 440px;
    width: 90%;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    text-align: center;
}

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

.share-modal-subtitle {
    font-family: var(--font-clean);
    font-size: 0.85rem;
    color: var(--color-roasted-espresso);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.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-muted);
    background: var(--color-parchment);
    color: var(--color-roasted-espresso);
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-premium);
}

.share-option-btn.whatsapp {
    background: #25d366;
    color: #ffffff;
    border-color: #20ba5a;
}

.share-option-btn.whatsapp:hover {
    background: #1eb857;
}

.share-option-btn.copy:hover {
    background: var(--color-milk-ivory);
    border-color: var(--color-temple-crimson);
    color: var(--color-temple-crimson);
}

.share-option-btn.facebook {
    background: #1877f2;
    color: #ffffff;
    border-color: #1468d5;
}

.share-option-btn.facebook:hover {
    background: #1464cc;
}

.share-btn-icon {
    font-size: 1.2rem;
}

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

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

.traditional-footer {
    background-color: #1a0f0d;
    color: var(--color-parchment);
    position: relative;
    padding: 0 0 2.5rem 0;
    border-top: 2px solid var(--color-royal-gold);
}

.footer-temple-border {
    width: 100%;
    height: 10px;
    background: repeat-x left top;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='8' viewBox='0 0 16 8'%3E%3Cpath d='M8 0 L16 8 L0 8 Z' fill='%23dfa843'/%3E%3C/svg%3E");
    background-size: 16px 8px;
    margin-bottom: 3.5rem;
}

.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.15rem;
    font-weight: 600;
    color: var(--color-royal-gold);
    margin-bottom: 1.3rem;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1px;
    background-color: var(--color-royal-gold);
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(244, 235, 216, 0.7);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.footer-desc-sm {
    font-size: 0.82rem;
    color: rgba(244, 235, 216, 0.6);
    line-height: 1.55;
    margin-bottom: 1.4rem;
}

.footer-tagline {
    font-family: var(--font-heritage);
    font-size: 0.78rem;
    color: var(--color-royal-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-address {
    font-size: 0.9rem;
    color: rgba(244, 235, 216, 0.75);
    line-height: 1.65;
    font-style: normal;
    margin-bottom: 1.2rem;
}

.footer-phone {
    font-size: 0.9rem;
    color: rgba(244, 235, 216, 0.85);
}

.footer-link-text {
    color: var(--color-royal-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link-text:hover {
    color: var(--color-milk-ivory);
}

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

.footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 253, 249, 0.05);
    border: 1px solid rgba(223, 168, 67, 0.2);
    transition: var(--transition-premium);
}

.footer-logo-link:hover {
    background-color: var(--color-royal-gold);
    transform: translateY(-4px);
    border-color: var(--color-royal-gold);
}

.footer-logo-link:hover .footer-svg {
    fill: #1a0f0d;
}

.footer-svg {
    width: 18px;
    height: 18px;
    fill: var(--color-royal-gold);
    transition: fill 0.3s ease;
}

.footer-base {
    max-width: 1200px;
    margin: 3.5rem auto 0 auto;
    padding: 1.5rem 1.5rem 0 1.5rem;
    border-top: 1px solid rgba(244, 235, 216, 0.08);
    text-align: center;
}

.footer-base p {
    font-size: 0.78rem;
    color: rgba(244, 235, 216, 0.4);
    letter-spacing: 0.02em;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    margin-top: 1.5rem;
}

.primary-actions-row {
    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.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 2px;
    transition: var(--transition-premium);
    box-shadow: 0 2px 8px rgba(86, 11, 2, 0.04);
}

.action-buttons button:active {
    transform: scale(0.97);
}

.btn-icon {
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-now-btn {
    background: linear-gradient(135deg, var(--color-temple-crimson), #741104);
    color: var(--color-parchment);
    border: 1px solid var(--color-royal-gold);
}

.book-now-btn:hover {
    background: #741104;
    color: var(--color-milk-ivory);
}

#wishlist-btn {
    border: 1px solid var(--color-temple-crimson);
    background: transparent;
    color: var(--color-temple-crimson);
}

#wishlist-btn:hover, #wishlist-btn.active {
    background-color: var(--color-temple-crimson);
    color: var(--color-milk-ivory);
}

.share-btn {
    border: 1px solid var(--color-gold-muted);
    background: var(--color-milk-ivory);
    color: var(--color-roasted-espresso);
}

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

@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) {
    .header-main-marquee {
        padding: 0.8rem 1rem;
    }
    .brand-frame {
        padding: 0.8rem 1.2rem 1rem 1.2rem;
    }
    .brand-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    .brand-logo-img {
        width: 55px;
        height: 55px;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    .horizontal-scroll-grid .product-card {
        flex: 0 0 230px !important;
        min-width: 230px !important;
        max-width: 230px !important;
    }

    .department-bar-container {
        padding: 0 0.5rem;
    }

    .department-bar {
        padding: 0.35rem 0.5rem;
        gap: 0.4rem;
        border-width: 1.5px;
    }

    .department-btn {
        padding: 0.6rem 1rem;
        font-size: 0.92rem;
        font-weight: 800;
        letter-spacing: 0.06em;
    }

    .filter-btn {
        min-width: 170px;
        padding: 0.75rem 1.1rem;
    }

    .filter-title {
        font-size: 0.85rem;
        font-weight: 800;
    }

    .filter-price {
        font-size: 0.85rem;
        font-weight: 700;
    }

    .mrp-price {
        font-size: 1.05rem;
    }

    .container {
        padding: 0 1rem 140px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.8rem;
    }
}

@media (max-width: 600px) {
    .floating-contact-btn {
        bottom: 20px;
        right: 18px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
    .department-btn {
        padding: 0.55rem 0.85rem;
        font-size: 0.88rem;
        font-weight: 800;
    }
    .product-details-container {
        padding: 1.25rem;
    }
    .price-card {
        padding: 1rem;
    }
    .amount {
        font-size: 1.9rem;
    }
    .mrp-price-detail {
        font-size: 1.25rem;
    }
    .action-buttons button {
        min-height: 48px;
        font-size: 0.78rem;
        padding: 0.75rem 0.9rem;
    }
}

.card-book-now-btn {
    width: 100%;
    margin-top: 0.8rem;
    background: linear-gradient(135deg, var(--color-temple-crimson) 0%, #741104 100%);
    border: 1px solid var(--color-royal-gold);
    color: var(--color-parchment);
    font-family: var(--font-heritage);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.7rem 1rem;
    cursor: pointer;
    border-radius: 3px;
    transition: var(--transition-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(86, 11, 2, 0.2);
}

.card-book-now-btn:hover {
    background: linear-gradient(135deg, #741104 0%, var(--color-temple-crimson) 100%);
    color: var(--color-milk-ivory);
    border-color: #f3c77c;
    box-shadow: 0 6px 18px rgba(86, 11, 2, 0.38);
    transform: translateY(-2px);
}

.card-book-now-btn:active {
    transform: translateY(0);
}