/* ============================================
   RatnVastra — Global Design System
   Premium Jewellery & Sarees
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Lato:wght@300;400;700&family=Great+Vibes&display=swap');

/* ============================================
   CSS Custom Properties (Design Tokens)
   ============================================ */
:root {
    /* Brand Colors */
    --cream: #FCF9F4;
    --cream-dark: #F5EFE0;
    --cream-border: #EDE3CF;
    --gold: #C9A84C;
    --gold-light: #E4C97A;
    --gold-dark: #9A7A30;
    --gold-shine: #F0D080;
    --ruby: #8B1A2A;
    --ruby-light: #A82535;
    --ruby-dark: #6A1020;
    --text-dark: #1A1410;
    --text-muted: #6B5B4E;
    --text-light: #9D8E82;
    --white: #FFFFFF;
    --black: #0D0A08;

    /* Footer */
    --footer-bg: #16100C;
    --footer-text: #C8B8A2;

    /* Spacing */
    --section-padding: 90px 10px 10px 10px;
    --container-max: 1280px;

    /* Transitions */
    --transition-fast: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Fonts */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Lato', system-ui, sans-serif;
    --font-script: 'Great Vibes', cursive;

    /* Shadows */
    --shadow-soft: 0 4px 24px rgba(26, 20, 16, 0.08);
    --shadow-card: 0 8px 40px rgba(26, 20, 16, 0.12);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.25);
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-serif);
    line-height: 1.2;
    color: var(--gold-shine);
}

.script-title {
    font-family: var(--font-script);
    color: var(--gold);
    font-size: 2rem;
    line-height: 1.4;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.15rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 520px;
}

/* Gold Divider */
.gold-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 12px 0 24px;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-divider span {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ============================================
   Layout Utilities
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: var(--section-padding);
}

.section-alt {
    background-color: var(--cream-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

/* Gold filled button */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--text-dark);
    border: 1px solid var(--gold);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s ease;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

/* Gold outline button */
.btn-outline {
    background: transparent;
    color: var(--gold-dark);
    border: 1.5px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--text-dark);
}

/* Ruby / CTA button */
.btn-ruby {
    background: var(--ruby);
    color: var(--white);
    border: 1px solid var(--ruby);
}

.btn-ruby:hover {
    background: var(--ruby-light);
    box-shadow: 0 4px 20px rgba(139, 26, 42, 0.3);
    transform: translateY(-1px);
}

/* Small buttons */
.btn-sm {
    padding: 10px 24px;
    font-size: 0.78rem;
}

/* ============================================
   Animations & Scroll Reveal
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Scroll reveal classes — JS toggles .revealed */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 15px;
}


.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
   Responsive Breakpoints
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    :root {
        --section-padding: 70px 0;
    }
}

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

    :root {
        --section-padding: 56px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

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

    :root {
        --section-padding: 48px 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.78rem;
    }
}


/* ============================================
   GLOBAL FOOTER
   ============================================ */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
}

.footer-top {
    padding: 72px 0 48px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-inline: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand .footer-logo img {
    height: 100px;
    filter: brightness(0.9) sepia(0.2);
    margin-bottom: 20px;
}

.footer-brand p {
    font-family: var(--font-elegant);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--footer-text);
    font-style: italic;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
    border-radius: 2px;
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--footer-text);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--footer-text);
    margin-bottom: 14px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
    margin: 0 40px;
}

.footer-bottom {
    padding: 20px 40px;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: rgba(200, 184, 162, 0.6);
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ============================================
   RatnVastra — Header & Navigation Styles
   ============================================ */

/* ---- Announcement Bar ---- */
.announcement-bar {
    background: var(--gold);
    color: var(--text-dark);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.announcement-marquee {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 28s linear infinite;
}

.announcement-marquee span {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 40px;
}

.announcement-marquee span .dot {
    color: var(--text-dark);
    opacity: 0.6;
    margin: 0 16px;
}

/* ---- Main Header ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-border);
    transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(253, 250, 245, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
    border-bottom-color: var(--gold);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px;
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.site-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin: 0;
    padding: 10px 0;
    transition: height var(--transition-smooth);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-icon-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--text-dark);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
    font-family: var(--font-sans);
    font-weight: 700;
}

.header-icon-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    transition: stroke var(--transition-fast);
}

.header-icon-btn:hover {
    color: var(--gold-dark);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--ruby);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-dark);
    transition: var(--transition-smooth);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.7px, 4.7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.7px, -4.7px);
}

/* ---- Navigation ---- */
.site-nav {
    border-top: 1px solid var(--cream-border);
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 14px 20px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-dark);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.nav-link:hover::after,
.nav-item:hover>.nav-link::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--gold-dark);
}

/* ---- Mega Dropdown ---- */
.nav-dropdown {
    position: absolute;
    top: 100%;
    /* Align to the left of the parent link but center the content slightly if needed, or maintain left start */
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: var(--cream);
    border: none;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(26, 20, 16, 0.08);
    /* Soft shadow */
    min-width: 280px;
    /* Thinner width since it's a single list now */
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    /* Smooth fade-down */
}

.nav-dropdown a {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 8px 0;
    transition: color var(--transition-medium), padding-left var(--transition-medium);
    position: relative;
}

.nav-dropdown a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-medium);
}

.nav-dropdown a:hover {
    color: var(--gold-dark);
}

.nav-dropdown a:hover::after {
    width: 24px;
    /* Subtle underline */
}

/* ---- Mobile Overlay Drawer ---- */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 20, 16, 0.5);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(380px, 90vw);
    height: 100vh;
    background: var(--cream);
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
    overflow-y: auto;
    padding: 0 0 40px;
}

.mobile-nav-drawer.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--cream-border);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.mobile-nav-links {
    padding: 16px 24px;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--cream-border);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.mobile-nav-sub {
    padding: 0 0 16px 16px;
    display: none;
}

.mobile-nav-sub.open {
    display: block;
    animation: fadeInDown 0.3s ease-out forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.mobile-nav-sub a {
    display: block;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.mobile-nav-sub a:hover {
    color: var(--gold);
}

/* ---- Search Bar ---- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--cream);
    z-index: 2000;
    padding: 24px 40px;
    border-bottom: 1px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateY(-100%);
    transition: transform var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.search-overlay.active {
    transform: translateY(0);
}

.search-overlay input {
    flex: 1;
    border: none;
    outline: none;
    background: none;
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    color: var(--text-dark);
    font-style: italic;
}

.search-overlay input::placeholder {
    color: var(--text-light);
}

.search-overlay-close {
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .site-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-icon-btn span {
        display: none;
    }

    .header-top {
        padding: 0px 0px;
    }

    .site-logo img {
        height: 70px;
    }

    /* Hide Inquire Now button on mobile/tablet navbar */
    .header-icons .btn-gold {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .site-logo img {
        height: 60px;
    }

    .header-top {
        padding: 0px 0px;
    }

    .search-overlay {
        padding: 20px 20px;
    }
}

/* ===================================================
   RatnVastra — Stamp/Badge (no discounts, brand only)
   =================================================== */

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 46px;
    height: 46px;
    background: var(--gold);
    border: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth), transform var(--transition-smooth);
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-dark);
    fill: none;
    stroke-width: 2;
}

.back-to-top:hover {
    background: var(--gold-dark);
}

/* Page loading shimmer */
.skeleton {
    background: linear-gradient(90deg,
            var(--cream-dark) 25%,
            var(--cream-border) 50%,
            var(--cream-dark) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--text-dark);
    color: var(--gold-light);
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    z-index: 3000;
    opacity: 0;
    border-left: 3px solid var(--gold);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

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

/* ============================================
   PRODUCT CARD COMPONENT
   ============================================ */
.product-card {
    background: var(--white);
    border-radius: 2px;
    border:0.02rem solid var(--gold);
    overflow: hidden;
    transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
    cursor: pointer;
}

.product-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.product-image-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--cream-dark);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.product-img-alt {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.product-card:hover .product-img {
    opacity: 0.5;
    transform: scale(1.08);
}

/* If an alternative image exists, hide the primary completely to show it cleanly */
.product-image-wrap:has(.product-img-alt) .product-card:hover .product-img {
    opacity: 0;
}

.product-card:hover .product-img-alt {
    opacity: 1;
}

/* Wishlist button */
.btn-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: var(--white);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: var(--transition-fast);
    opacity: 0;
    transform: scale(0.8);
}

.product-card:hover .btn-wishlist {
    opacity: 1;
    transform: scale(1);
}

.btn-wishlist:hover {
    background: var(--ruby);
}

.btn-wishlist svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
    transition: stroke var(--transition-fast), fill var(--transition-fast);
}

.btn-wishlist:hover svg {
    stroke: white;
    fill: white;
}

.btn-wishlist.active svg {
    stroke: var(--ruby);
    fill: var(--ruby);
}

/* Quick Add */
.product-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 20, 16, 0.88);
    color: var(--gold-light);
    padding: 12px;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-quick-add {
    transform: translateY(0);
}

.product-info {
    padding: 18px 16px 20px;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-price {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--cream);
    color: var(--gold-dark);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 10px;
    border: 1px solid var(--gold);
}

.view-all-wrap {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   RatnVastra — Homepage Section Styles
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    max-height: 900px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 8s ease;
    animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.04);
    }
}

/* Gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(16, 10, 6, 0.72) 0%,
            rgba(16, 10, 6, 0.45) 45%,
            rgba(16, 10, 6, 0.1) 100%);
    z-index: 1;
}

/* Gold decorative bottom border */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 2;
}

.hero-content {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8% 60px;
    max-width: 720px;
}

.hero-script {
    font-family: var(--font-script);
    font-size: 2.4rem;
    color: var(--gold-light);
    margin-bottom: 12px;
    animation: fadeInUp 1.1s ease both;
    animation-delay: 0.2s;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1.1s ease both;
    animation-delay: 0.45s;
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(253, 250, 245, 0.85);
    font-style: italic;
    max-width: 460px;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 1.1s ease both;
    animation-delay: 0.65s;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 1.1s ease both;
    animation-delay: 0.85s;
}

.hero-link {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-fast);
}

.hero-link:hover {
    gap: 14px;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 2.5s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253, 250, 245, 0.6);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 1.5px solid rgba(201, 168, 76, 0.7);
    border-bottom: 1.5px solid rgba(201, 168, 76, 0.7);
    transform: rotate(45deg);
}

/* ============================================
   SHOP BY CATEGORY SECTION
   ============================================ */
.categories-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.category-card:nth-child(4),
.category-card:nth-child(5) {
    aspect-ratio: 4/3;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: border-color var(--transition-smooth);
    pointer-events: none;
    z-index: 3;
}

.category-card:hover::after {
    border-color: var(--gold);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card:hover .category-img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(16, 10, 6, 0.72) 0%,
            rgba(16, 10, 6, 0.2) 50%,
            transparent 100%);
    z-index: 2;
    transition: background var(--transition-smooth);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top,
            rgba(16, 10, 6, 0.82) 0%,
            rgba(16, 10, 6, 0.35) 60%,
            transparent 100%);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    z-index: 3;
    transform: translateY(4px);
    transition: transform var(--transition-smooth);
}

.category-card:hover .category-info {
    transform: translateY(0);
}

.category-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.category-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   FEATURED COLLECTION SECTION
   ============================================ */
.featured-section {
    padding: var(--section-padding);
    background: var(--cream-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ============================================
   OCCASION SECTION
   ============================================ */
.occasions-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.occasions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.occasion-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
}

.occasion-card:nth-child(1) {
    grid-row: span 2;
    min-height: 600px;
}

.occasion-card:nth-child(2),
.occasion-card:nth-child(3) {
    min-height: 290px;
}

.occasion-card:nth-child(4) {
    grid-column: 1 / -1;
    min-height: 320px;
}

.occasion-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    position: absolute;
    inset: 0;
}

.occasion-card:hover .occasion-img {
    transform: scale(1.06);
}

.occasion-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(16, 10, 6, 0.75) 0%,
            rgba(16, 10, 6, 0.15) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 32px;
    text-align: center;
    transition: background var(--transition-smooth);
}

.occasion-card:hover .occasion-overlay {
    background: linear-gradient(to top,
            rgba(16, 10, 6, 0.85) 0%,
            rgba(139, 26, 42, 0.15) 100%);
}

.occasion-gold-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 12px;
}

.occasion-name {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.occasion-cta {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.occasion-card:hover .occasion-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   EDITORIAL / BRAND STORY BANNER
   ============================================ */
.brand-story-section {
    padding: 120px 0;
    background: var(--cream);
    overflow: hidden;
}

.brand-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.brand-story-image-group {
    position: relative;
    padding: 0;
}

.brand-story-frame {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold-light);
    opacity: 0.5;
    z-index: 1;
}

.brand-story-image {
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-strong);
    background: white;
}

.brand-story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.brand-story-section:hover .brand-story-image img {
    transform: scale(1.02);
}

.brand-story-content {
    display: flex;
    flex-direction: column;
}

.brand-story-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.1;
    font-weight: 600;
}

.brand-story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.story-list li {
    position: relative;
    padding-left: 24px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.story-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.9rem;
}

.btn-gold-solid {
    background: var(--gold);
    color: var(--text-dark);
    padding: 16px 42px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    align-self: flex-start;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.btn-gold-solid:hover {
    background: var(--text-dark);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 20, 16, 0.15);
}

@media (max-width: 1024px) {
    .brand-story-grid {
        gap: 60px;
    }
}

@media (max-width: 991px) {
    .brand-story-section {
        padding: 80px 0;
    }

    .brand-story-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: center;
    }

    .brand-story-image-group {
        max-width: 550px;
        margin: 0 auto;
    }

    .brand-story-content {
        align-items: center;
    }

    .story-list {
        text-align: left;
        margin-inline: auto;
    }

    .btn-gold-solid {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .brand-story-frame {
        display: none;
    }

    .story-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid var(--cream-border);
    border-radius: 2px;
    background: var(--white);
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.4;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-desc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--cream-dark);
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--white);
    padding: 36px 32px;
    border-radius: 2px;
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-soft);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-elegant);
    font-size: 1.05rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
}

.author-location {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--text-light);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

.testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cream-border);
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.testimonials-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ============================================
   INSTAGRAM / SOCIAL SECTION
   ============================================ */
.social-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.insta-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.insta-item:hover img {
    transform: scale(1.08);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 168, 76, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay svg {
    width: 32px;
    height: 32px;
    stroke: white;
    fill: white;
}

/* Adjusting footer to 3 columns since Customer Care is removed */
@media (min-width: 1025px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.2fr;
    }
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: var(--section-padding);
    background: var(--ruby);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Decorative gold circles behind */
.newsletter-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
}

.newsletter-section .script-title {
    color: var(--gold-light);
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
}

.newsletter-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.8vw, 2.6rem);
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.newsletter-section p {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: rgba(253, 250, 245, 0.8);
    font-style: italic;
    max-width: 480px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

/* Premium Vertical Enquiry Form */
.enquiry-premium-form {
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 10;
}

.enquiry-premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.enquiry-premium-form .form-group {
    margin-bottom: 30px;
}

.enquiry-premium-form input,
.enquiry-premium-form textarea {
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 12px 0 !important;
    color: var(--white) !important;
    font-family: var(--font-sans) !important;
    font-size: 1.05rem !important;
    outline: none !important;
    transition: border-color 0.3s ease !important;
    border-radius: 0 !important;
}

.enquiry-premium-form input:focus,
.enquiry-premium-form textarea:focus {
    border-bottom-color: var(--gold) !important;
}

.enquiry-premium-form input::placeholder,
.enquiry-premium-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 300 !important;
}

.enquiry-premium-form textarea {
    resize: none;
    overflow-y: hidden;
    min-height: 40px;
}

.btn-enquiry-submit {
    width: 100%;
    background: var(--gold);
    color: var(--primary-dark);
    border: none;
    padding: 18px 0;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.btn-enquiry-submit:hover {
    background: var(--gold-light);
}

.btn-enquiry-submit:active {
    transform: scale(0.98);
}

.form-success {
    color: var(--gold-light);
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 1.25rem;
    padding: 40px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .enquiry-premium-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .enquiry-premium-form {
        padding: 0 20px;
    }

    .enquiry-premium-form input,
    .enquiry-premium-form textarea {
        font-size: 1rem !important;
    }
}
.newsletter-input {
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: rgba(253, 250, 245, 0.55);
}

/* ============================================
   RESPONSIVE — Homepage
   ============================================ */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }

    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .brand-story-inner {
        grid-template-columns: 1fr;
    }

    .brand-story-image {
        min-height: 360px;
        position: relative;
    }

    .brand-story-content {
        padding: 48px 40px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 6% 40px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .categories-grid .category-card:nth-child(4),
    .categories-grid .category-card:nth-child(5) {
        grid-column: span 1;
        aspect-ratio: 3/4;
    }

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

    .occasions-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .occasion-card:nth-child(1) {
        grid-row: span 1;
        min-height: 380px;
    }

    .occasion-card:nth-child(4) {
        grid-column: 1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .testimonial-card {
        flex: 0 0 85vw;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .newsletter-form,
    .enquiry-bar-form {
        flex-direction: column;
    }

    .newsletter-input {
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        max-height: none;
    }

    .hero-script {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* About Us Page Styles - Premium Luxury */
.about-page-wrap {
    background-color: var(--cream);
    overflow: hidden;
}

/* Hero Section */
.about-hero {
    position: relative;
    padding: 160px 20px 100px;
    text-align: center;
    background-color: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image:
        radial-gradient(circle at top right, rgba(201, 168, 76, 0.05) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
}

.about-hero p.script-title {
    font-family: var(--font-elegant);
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: -10px;
}

.about-hero h1 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.about-hero .hero-desc {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Brand Story Split Section */
.story-section {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-grid.reverse {
    direction: rtl;
}

.story-grid.reverse>* {
    direction: ltr;
}

.story-image-wrap {
    position: relative;
    padding: 20px;
}

.story-image-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 40px;
    bottom: 40px;
    border: 1px solid var(--gold);
    z-index: 1;
    opacity: 0.5;
}

.story-grid.reverse .story-image-wrap::before {
    left: 40px;
    right: 0;
}

.story-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translate(20px, 20px);
}

.story-content h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.story-content p {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 20px;
}

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

.signature {
    margin-top: 40px;
    font-family: var(--font-elegant);
    font-size: 2.5rem;
    color: var(--gold-dark);
}

/* Core Values Section - Premium Redesign */
.values-section {
    background-color: var(--black);
    color: var(--cream);
    padding: 120px 20px;
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Subtle geometric overlay */
    background-image: linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
}

.values-header {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
}

.values-header h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.value-card {
    text-align: center;
    padding: 50px 40px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    background: linear-gradient(145deg, rgba(22, 16, 12, 0.8) 0%, rgba(13, 10, 8, 0.9) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    color: var(--gold);
    margin-bottom: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

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

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--cream);
    letter-spacing: 1px;
}

.value-card p {
    color: rgba(253, 250, 245, 0.7);
    line-height: 1.8;
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
        /* Override reverse grids on tablet too */
    }

    .story-grid.reverse {
        direction: ltr;
    }

    .story-section {
        padding: 60px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    /* Hero */
    .about-hero {
        padding: 120px 24px 70px;
    }

    .about-hero h1 {
        font-size: 2.4rem;
        line-height: 1.15;
    }

    .about-hero .hero-desc,
    .hero-desc {
        font-size: 1rem;
        max-width: 100%;
    }

    /* Story Sections */
    .story-section {
        padding: 50px 20px;
    }

    .story-grid,
    .story-grid.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }

    /* Fix image overflow caused by transform offset */
    .story-image {
        transform: none;
        /* Remove translate that causes overflow */
        max-width: 100%;
        height: auto;
        border-radius: 4px;
    }

    /* Remove decorative border that overflows on mobile */
    .story-image-wrap::before {
        display: none;
    }

    .story-image-wrap {
        padding: 0;
        /* Remove excess padding */
    }

    .story-content h2 {
        font-size: 1.9rem;
        margin-bottom: 16px;
    }

    .story-content p {
        font-size: 0.98rem;
    }

    /* Values */
    .values-section {
        padding: 60px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 24px;
    }

    .value-card {
        padding: 32px 24px;
    }

    .values-header {
        margin-bottom: 48px;
    }

    .values-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.9rem;
    }

    .about-hero .script-title {
        font-size: 1.5rem;
    }

    .story-content h2 {
        font-size: 1.6rem;
    }
}

/* Contact Page Styles - Premium Luxury */
.contact-page-wrap {
    background-color: var(--bg-cream);
    overflow: hidden;
}

/* Hero Section */
.contact-hero {
    position: relative;
    padding: 160px 20px 80px;
    text-align: center;
    background-color: var(--bg-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-hero p.script-title {
    font-family: var(--font-elegant);
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: -10px;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 24px;
}

.contact-hero .hero-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Split Layout */
.contact-section {
    padding: 60px 20px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    background: #fff;
}

/* Info Side */
.contact-info-side {
    background-color: var(--primary-dark);
    color: var(--bg-cream);
    padding: 60px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.contact-info-header {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.contact-info-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.contact-info-header p {
    color: rgba(253, 250, 245, 0.8);
    line-height: 1.7;
}

.contact-details-list {
    position: relative;
    z-index: 1;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-text h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--bg-cream);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-text p {
    color: rgba(253, 250, 245, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Form Side */
.contact-form-side {
    padding: 60px 80px;
    background: #fff;
}

.contact-form-side h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

.luxury-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.luxury-form .form-group {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
}

.luxury-form .form-row .form-group {
    margin-bottom: 0;
}

.luxury-form .form-input {
    width: 100%;
    padding: 16px 0 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary-dark);
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0d8cc;
    border-radius: 0;
    transition: all 0.3s ease;
}

.luxury-form textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.luxury-form .form-label {
    position: absolute;
    top: 16px;
    left: 0;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.luxury-form .form-input:focus {
    outline: none;
    border-bottom-color: var(--accent-gold);
    border-width: 2px;
}

.luxury-form .form-input:focus~.form-label,
.luxury-form .form-input:not(:placeholder-shown)~.form-label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-submit-btn {
    margin-top: 20px;
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: var(--bg-cream);
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-dark);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-dark);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-main);
    line-height: 1.8;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Media Queries */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-side {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 20px 60px;
    }

    .contact-hero h1 {
        font-size: 3rem;
    }

    .luxury-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .luxury-form .form-row .form-group {
        margin-bottom: 24px;
    }

    .contact-info-side {
        padding: 50px 30px;
    }

    .contact-form-side {
        padding: 50px 30px;
    }
}

/* ============================================
   RatnVastra — Product & Collection Page Styles
   ============================================ */

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 16px 0;
    border-bottom: 1px solid var(--cream-border);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.breadcrumb-list a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.breadcrumb-list a:hover {
    color: var(--gold-dark);
}

.breadcrumb-list span {
    color: var(--gold);
}

.breadcrumb-sep {
    color: var(--cream-border);
}

/* ============================================
   COLLECTION PAGE — Category Banner
   ============================================ */
.collection-banner {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.collection-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.collection-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(16, 10, 6, 0.5);
    z-index: 1;
}

.collection-banner-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.collection-banner-content .script-title {
    font-size: 2rem;
    margin-bottom: 8px;
}

.collection-banner-content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
}

/* ============================================
   COLLECTION LAYOUT
   ============================================ */
.collection-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 24px 0 60px;
}


.collection-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.collection-count {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* Collection Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-section {
    padding: 48px 0 80px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 64px;
    align-items: start;
}

/* ---- Gallery ---- */
.gallery {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    position: sticky;
    top: 100px;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--transition-fast);
    border-radius: 2px;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--gold);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

.gallery-main {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--cream-dark);
    border-radius: 2px;
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.5s ease;
}

.gallery-main:hover .gallery-main-img {
    transform: scale(1.06);
}

/* Mobile swiper */
.gallery-swiper {
    display: none;
    position: relative;
    overflow: hidden;
}

.gallery-slides {
    display: flex;
    transition: transform var(--transition-smooth);
}

.gallery-slide {
    flex: 0 0 100%;
    aspect-ratio: 3/4;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cream-border);
    cursor: pointer;
}

.gallery-dot.active {
    background: var(--gold);
}

/* ---- Product Info ---- */
.product-info-panel {
    padding-top: 8px;
}

.product-category-tag {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.product-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.25;
}

.product-price-display {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.product-short-desc {
    font-family: var(--font-elegant);
    font-size: 1.05rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--cream-border);
}

/* Occasion tags */
.occasion-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.occasion-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--cream-dark);
    border: 1px solid var(--cream-border);
    padding: 6px 14px;
    border-radius: 40px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Quantity */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--cream-border);
    width: fit-content;
    margin-bottom: 20px;
}

.qty-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    transition: background var(--transition-fast);
    font-size: 1.2rem;
    color: var(--text-muted);
}

.qty-btn:hover {
    background: var(--cream-dark);
}

.qty-input {
    width: 52px;
    height: 42px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--cream-border);
    border-right: 1px solid var(--cream-border);
    background: none;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
}

/* CTA Buttons */
.product-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.btn-add-cart {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 0.9rem;
}

.btn-wishlist-full {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.85rem;
    background: transparent;
    border: 1.5px solid var(--cream-border);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 700;
    transition: border-color var(--transition-fast), color var(--transition-fast);
}

.btn-wishlist-full:hover {
    border-color: var(--ruby);
    color: var(--ruby);
}

/* Delivery info */
.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: var(--cream-dark);
    border-left: 3px solid var(--gold);
    margin-bottom: 28px;
}

.delivery-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.delivery-row svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    flex-shrink: 0;
}

/* Accordion */
.accordion {
    border-top: 1px solid var(--cream-border);
}

.accordion-item {
    border-bottom: 1px solid var(--cream-border);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.accordion-trigger:hover {
    color: var(--gold-dark);
}

.accordion-trigger .acc-icon {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
}

.accordion-trigger .acc-icon::before,
.accordion-trigger .acc-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.accordion-trigger .acc-icon::before {
    width: 16px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.accordion-trigger .acc-icon::after {
    width: 1px;
    height: 16px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.accordion-item.open .accordion-trigger .acc-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion-content {
    display: none;
    padding: 0 0 20px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.accordion-item.open .accordion-content {
    display: block;
}

/* Mobile sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: var(--cream);
    border-top: 1px solid var(--cream-border);
    z-index: 900;
    box-shadow: 0 -4px 16px rgba(26, 20, 16, 0.1);
    gap: 10px;
}

/* ============================================
   RELATED PRODUCTS
   ============================================ */
.related-section {
    padding: var(--section-padding);
    background: var(--cream-dark);
}

/* ============================================
   FOOTER
   ============================================ */


/* ============================================
   RESPONSIVE — Product & Collection
   ============================================ */
@media (max-width: 1024px) {
    .collection-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
    }

    .product-detail-layout,
    .product-layout {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }

    .product-gallery img {
        width: 100%;
        max-height: 420px;
        object-fit: cover;
    }

    .gallery {
        grid-template-columns: 72px 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        display: none;
    }

    .gallery-swiper {
        display: block;
    }

    .mobile-sticky-cta {
        display: flex;
    }

    .product-detail-section {
        padding-bottom: 100px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Base Layout for Product Content */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 10, 6, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-smooth, 0.3s ease), visibility var(--transition-smooth, 0.3s ease);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    padding: 32px;
    border-radius: 4px;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition-smooth, 0.3s ease);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-group {
    margin-bottom: 24px;
    flex: 1;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--cream-border, #ddd);
    padding: 10px 0;
    font-family: inherit;
    font-size: 1rem;
    color: inherit;
    background: transparent;
    transition: border-color var(--transition-fast, 0.2s ease);
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-bottom-color: var(--gold, #d4af37);
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ============================================
   Refactored Styles (Formerly Inline)
   ============================================ */

/* Utilities */
.u-text-center {
    text-align: center !important;
}

.u-flex-center-gap {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.u-mb-15 {
    margin-bottom: 15px !important;
}

.u-mb-16 {
    margin-bottom: 16px !important;
}

.u-mb-24 {
    margin-bottom: 24px !important;
}

.u-mb-30 {
    margin-bottom: 30px !important;
}

.u-mb-32 {
    margin-bottom: 32px !important;
}

.u-mb-40 {
    margin-bottom: 40px !important;
}

.u-mb-50 {
    margin-bottom: 50px !important;
}

.u-mt-10 {
    margin-top: 10px !important;
}

.u-mt-16 {
    margin-top: 16px !important;
}

.u-mt-20 {
    margin-top: 20px !important;
}

.u-mt-40 {
    margin-top: 40px !important;
}

.u-mt-50 {
    margin-top: 50px !important;
}

.u-mt-60 {
    margin-top: 60px !important;
}

.u-mt-80 {
    margin-top: 80px !important;
}

.u-width-full {
    width: 100% !important;
}

.u-max-w-200 {
    max-width: 200px !important;
}

.u-max-w-600 {
    max-width: 600px !important;
}

.u-max-w-800 {
    max-width: 800px !important;
}

.u-max-w-900 {
    max-width: 900px !important;
}

/* Components Refined */
.btn-header {
    padding: 10px 24px !important;
    font-size: 0.85rem !important;
}

.nav-logo-mob {
    height: 44px !important;
}

.img-rounded-none {
    border-radius: 0 !important;
}

.script-eyebrow-gold {
    font-size: 1.2rem;
    color: var(--gold);
}

.section-curated-ranges {
    padding: 100px 0;
    background-color: #fffaf5;
}

.ranges-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.range-item-h4 {
    color: var(--gold);
    margin-bottom: 15px;
}

.range-item-p {
    font-size: 0.95rem;
}

.founder-section-wrap {
    padding: 120px 0;
}

.founder-inner-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.founder-title-h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.founder-quote-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 2;
    margin-bottom: 40px;
    color: #444;
}

.signature-gold {
    font-size: 1.8rem;
    color: var(--gold);
}

.note-role-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #888;
}

.cta-footer-alt {
    padding: 100px 20px;
    text-align: center;
    background-color: var(--cream);
}

.cta-footer-h2-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}

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

/* Saree Collection Specifics & Luxury Hero Units */
.saree-hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../hero-banner.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.saree-hero-h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.saree-hero-p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.saree-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.saree-card-img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.saree-card-img-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.saree-card-body {
    padding: 20px;
    text-align: center;
}

.saree-badge {
    background: var(--bg-cream);
    color: var(--accent-gold);
    padding: 4px 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
}

.saree-card-h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.saree-card-p-desc {
    color: var(--text-muted);
    font-family: var(--font-sans);
}

/* Homepage Category Grouping */
.category-group-header {
    margin-top: 80px;
    margin-bottom: 50px;
    text-align: center;
}

.category-group-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* Brand Philosophy Section */
/* Legacy philosophy section removed - merged into brand-story-section */

/* Miscallaneous */
.border-top-cream {
    border-top: 1px solid var(--cream-border);
}

.border-bottom-color {
    border-bottom: 1px solid var(--border-color);
}

.img-fit-top {
    object-position: top;
}

.icon-social-footer {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .custom-saree-promo-flex {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .saree-hero-h1 {
        font-size: 2.5rem;
    }
}

.u-m-10 {
    margin: 10px !important;
}

.u-overflow-hidden {
    overflow: hidden !important;
}

/* Form Success Message */
.form-success-message {
    text-align: center;
    padding: 40px;
}

.form-success-icon {
    width: 60px;
    height: 60px;
    color: var(--gold);
    margin-bottom: 20px;
}

.form-success-h3 {
    color: var(--text-dark);
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 16px;
}

.form-success-p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Product Page Styles */
.u-py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.product-badge {
    background: var(--bg-cream);
    color: var(--gold);
    padding: 4px 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
}

.product-h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.product-desc-wrap {
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 32px;
}

.product-quote {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 12px;
    border-left: 2px solid var(--gold);
    padding-left: 14px;
}

.product-features-list {
    margin-top: 16px;
    padding-left: 0;
    color: var(--text-dark);
    list-style-type: none;
}

.u-mb-8 {
    margin-bottom: 8px !important;
}

.u-text-gold {
    color: var(--gold) !important;
}

.btn-buy-now-full {
    display: block;
    text-align: center;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-bottom: 16px;
    border: none;
    cursor: pointer;
    background: var(--gold);
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.btn-buy-now-full:hover {
    background: var(--text-dark);
}

.product-accordion-wrap {
    margin-top: 40px;
    border-top: 1px solid var(--cream-border);
}

.product-details-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--cream-border);
}

.product-details-summary {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin: 0;
    cursor: pointer;
    list-style: none;
}

.product-details-summary::-webkit-details-marker {
    display: none;
}

.product-details-content {
    margin-top: 16px;
    padding-left: 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

.related-section-wrap {
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid var(--cream-border);
}

.related-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.modal-title-ref {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.btn-modal-submit {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    background: var(--gold);
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.btn-modal-submit:hover {
    background: var(--text-dark);
}

/* Customised Saree Page */
.custom-hero-wrap {
    padding: 60px 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.custom-hero-h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.custom-hero-p-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #666;
}

.custom-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card-custom {
    padding: 30px;
    border: 1px solid var(--gold-light);
    background: #fffaf0;
    text-align: center;
}

.step-num {
    font-size: 2rem;
    color: var(--gold);
    font-weight: bold;
}

.step-title-ref {
    margin: 15px 0;
    font-family: var(--font-serif);
}

.step-desc-p {
    font-size: 0.9rem;
    color: #666;
}

.btn-custom-start {
    padding: 15px 40px;
    font-size: 1rem;
    display: inline-block;
    background: var(--gold);
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-custom-start:hover {
    background: var(--text-dark);
}

.u-py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

/* Utility Additions */
.u-bg-cream {
    background-color: var(--bg-cream) !important;
}

.u-obj-top {
    object-position: top !important;
}

/* Improved Category Section Headings */
.category-section-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-dark);
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
    padding-bottom: 20px;
}

.category-section-title::after {
    content: "✦";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: var(--gold);
}

.category-section-title::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--gold);
}

/* ============================================
   GLOBAL UTILITIES
   ============================================ */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* ============================================
   RatnVastra — Saree Collection Page Specifics
   ============================================ */

/* Balanced Customised Saree Section */
.custom-saree-promo-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.custom-promo-img-side.cta-info {
    padding-right: 20px;
}

@media (max-width: 1200px) {
    .custom-saree-promo-flex {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .custom-saree-promo-flex {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .custom-promo-img-side.cta-info {
        padding-right: 0;
    }

    .custom-saree-promo-flex .gold-divider {
        justify-content: center;
    }

    .cta-img {
        order: -1;
    }
}

/* 4-Image Grid for Bespoke Section */
.promo-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background: var(--white);
    padding: 15px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--cream-border);
}

.promo-grid-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.promo-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.promo-grid-item:hover img {
    transform: scale(1.1);
}