/* Shree Shayam Jewellers - Core CSS Design System */

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

:root {
    /* Color Palette */
    --color-gold: hsl(45, 65%, 52%);       /* #D4AF37 - Champagne Gold */
    --color-gold-light: hsl(45, 75%, 65%);
    --color-gold-dark: hsl(42, 81%, 37%);
    --color-gold-cream: hsl(48, 56%, 93%);
    --color-charcoal: hsl(0, 0%, 7%);       /* #121212 - Luxury Charcoal */
    --color-slate-gray: hsl(0, 0%, 15%);
    --color-platinum: #F5F5F7;
    --color-white: #FFFFFF;
    --color-offwhite: #FAFAFA;
    --color-muted: #8E8E93;
    --color-success: #2E7D32;
    --color-warning: #ED6C02;
    --color-danger: #D32F2F;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
    
    /* Shadows */
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-luxury: 0 20px 40px rgba(18, 18, 18, 0.08);
    --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* Base resets & scrollbar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-offwhite);
    color: var(--color-slate-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom premium scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-platinum);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-charcoal);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 12px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-gold);
}

.section-header p {
    color: var(--color-muted);
    font-size: 1rem;
    font-style: italic;
    font-family: var(--font-heading);
}

/* Premium Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: var(--shadow-subtle);
    padding: 10px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-brand span {
    color: var(--color-gold-dark);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 0;
    position: relative;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--color-charcoal);
    position: relative;
    transition: var(--transition-fast);
}

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

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

/* User Profile Dropdown */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 12px;
    background: var(--color-white);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    list-style: none;
    min-width: 180px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    z-index: 1010;
}

.user-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-menu li a:hover {
    background: var(--color-gold-cream);
    color: var(--color-gold-dark);
}

/* Elegant Hero Slideshow Section */
.hero-slider-section {
    position: relative;
    height: 90vh;
    margin-top: 80px;
    overflow: hidden;
    background: var(--color-charcoal);
}

.hero-slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    color: var(--color-white);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slider-content {
    max-width: 650px;
    position: relative;
    z-index: 10;
}

/* Staggered Fade Up text animations for slides */
.hero-slide .hero-subtitle {
    color: var(--color-gold) !important;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
}
.hero-slide .hero-slider-content h1 {
    color: var(--color-white) !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(30px);
}
.hero-slide .hero-slider-content p {
    color: var(--color-white) !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
}
.hero-slide .hero-actions {
    opacity: 0;
    transform: translateY(30px);
}

/* Classy subtle background watermark logo */
.body-watermark {
    position: fixed;
    bottom: -5%;
    right: -5%;
    width: 42vw;
    height: 42vw;
    max-width: 600px;
    max-height: 600px;
    background-image: url('/images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.038; /* extremely subtle, classy watermark */
    pointer-events: none; /* allows clicking through to elements underneath */
    z-index: -10; /* sits far in the background behind all content */
}

/* Animated state triggers when slide active */
.hero-slide.active .hero-subtitle {
    animation: fadeUpText 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.2s;
}
.hero-slide.active h1 {
    animation: fadeUpText 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.4s;
}
.hero-slide.active p {
    animation: fadeUpText 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.6s;
}
.hero-slide.active .hero-actions {
    animation: fadeUpText 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.8s;
}

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

/* Slider Controls Arrow Navigation */
.hero-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: var(--transition-fast);
    font-size: 1rem;
    outline: none;
}

.hero-slide-arrow:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.hero-slide-arrow.prev {
    left: 30px;
}

.hero-slide-arrow.next {
    right: 30px;
}

/* Slide Indicator Dots */
.hero-slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-indicator.active {
    background: var(--color-gold);
    border-color: var(--color-gold-dark);
    box-shadow: 0 0 8px var(--color-gold);
    width: 24px;
    border-radius: 6px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold-dark);
    color: var(--color-white);
    border-color: var(--color-gold-dark);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.btn-dark:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
}

/* Brand Value Pillars */
.pillars {
    padding: 80px 0;
    background: var(--color-white);
}

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

.pillar-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-subtle);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--color-gold-dark);
    margin-bottom: 24px;
}

.pillar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.pillar-card p {
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Collection Grid */
.collections {
    padding: 100px 0;
}

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

.collection-card {
    position: relative;
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

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

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.9) 10%, rgba(18, 18, 18, 0.2) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 30px;
}

.collection-card h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.collection-card span {
    color: var(--color-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: inline-block;
    position: relative;
}

.collection-card span::after {
    content: ' →';
    position: absolute;
    right: -18px;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.collection-card:hover span::after {
    opacity: 1;
    right: -24px;
}

/* Product Cards Grid */
.products-section {
    padding: 100px 0;
    background: var(--color-white);
}

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

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(212, 175, 55, 0.2);
}

.product-image-container {
    height: 340px;
    position: relative;
    overflow: hidden;
    background: #EFEFEF;
}

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

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

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-gold-dark);
    color: var(--color-white);
    padding: 6px 12px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    z-index: 10;
}

.product-actions-hover {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    padding: 12px 0;
    gap: 15px;
    transition: var(--transition-smooth);
    z-index: 10;
}

.product-card:hover .product-actions-hover {
    bottom: 0;
}

.hover-action-btn {
    background: var(--color-white);
    color: var(--color-charcoal);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.hover-action-btn:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.product-info {
    padding: 24px;
    text-align: center;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.product-title {
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta-specs {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.product-price {
    font-family: var(--font-heading);
    color: var(--color-gold-dark);
    font-size: 1.3rem;
    font-weight: 600;
}

/* About Story Section */
.about-story {
    padding: 120px 0;
    background: var(--color-charcoal);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(212, 175, 55, 0.03);
    pointer-events: none;
}

.about-story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 80px;
}

.about-story-content h2 {
    color: var(--color-white);
    font-size: 2.8rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.about-story-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--color-gold);
}

.about-story-content h4 {
    color: var(--color-gold);
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.about-story-content p {
    font-size: 0.95rem;
    font-weight: 300;
    color: #CCCCCC;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-story-img-frame {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px;
}

.about-story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Testimonial Section */
.testimonials {
    padding: 100px 0;
    background: var(--color-offwhite);
}

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

.testimonial-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(212, 175, 55, 0.05);
    position: relative;
}

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

.testimonial-text {
    font-style: italic;
    color: var(--color-slate-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--color-gold-cream);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-author-info p {
    font-size: 0.8rem;
    color: var(--color-muted);
}

/* Luxury Footer */
.footer {
    background: var(--color-charcoal);
    color: #CCCCCC;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--color-white);
    font-size: 1.6rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-brand h3 span {
    color: var(--color-gold);
}

.footer-brand p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
}

.footer-links-col h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    font-size: 0.85rem;
    font-weight: 300;
    transition: var(--transition-fast);
}

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

.footer-contact h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-contact p {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact p i {
    color: var(--color-gold);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 300;
}

/* Sliding Cart Drawer */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: var(--color-white);
    z-index: 2010;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.cart-drawer-overlay.active .cart-drawer {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-size: 1.3rem;
}

.cart-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-charcoal);
    transition: var(--transition-fast);
}

.cart-close-btn:hover {
    color: var(--color-gold);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--color-platinum);
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.cart-item-meta {
    font-size: 0.75rem;
    color: var(--color-muted);
    margin-bottom: 6px;
}

.cart-item-price {
    color: var(--color-gold-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.cart-qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid #E5E5E5;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.cart-qty-btn {
    border: none;
    background: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.cart-qty-btn:hover {
    background: var(--color-platinum);
}

.cart-qty-num {
    padding: 0 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cart-remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-danger);
    font-size: 0.8rem;
    font-weight: 500;
}

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    background: var(--color-offwhite);
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.cart-summary-line.total {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #E5E5E5;
}

.cart-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.cart-drawer-actions .btn {
    width: 100%;
    text-align: center;
}

/* Bag drawer secondary button contrast refinement */
#cart-drawer .btn-secondary {
    color: var(--color-gold-dark) !important;
    border: 1px solid var(--color-gold) !important;
    background: transparent !important;
}

#cart-drawer .btn-secondary:hover {
    background: var(--color-gold-cream) !important;
    border-color: var(--color-gold-dark) !important;
    color: var(--color-gold-dark) !important;
}

/* Auth Pages Styling */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.85), rgba(40, 40, 40, 0.75)), url('https://images.unsplash.com/photo-1601121141461-9d6647bca1ed?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    padding: 50px 40px;
    color: var(--color-white);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h2 {
    color: var(--color-white);
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.auth-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

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

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

/* Light contexts (for other pages) */
.light-theme-label {
    color: var(--color-slate-gray);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

/* For Standard E-Commerce Forms (light context) */
.form-input-light {
    background: var(--color-white);
    border: 1px solid #E5E5E5;
    color: var(--color-charcoal);
}

.form-input-light::placeholder {
    color: var(--color-muted);
}

.form-input-light:focus {
    background: var(--color-white);
    border-color: var(--color-gold-dark);
    box-shadow: var(--shadow-gold);
}

.auth-footer-text {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.auth-footer-text a {
    color: var(--color-gold-light);
    font-weight: 500;
}

.auth-footer-text a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

/* Standard Alert System */
.alert {
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: #E8F5E9;
    color: var(--color-success);
    border: 1px solid #C8E6C9;
}

.alert-danger {
    background: #FFEBEE;
    color: var(--color-danger);
    border: 1px solid #FFCDD2;
}

/* Shop Layout Styling */
.shop-layout {
    padding: 120px 0 80px 0;
}

.shop-grid-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.shop-sidebar {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(212, 175, 55, 0.1);
    align-self: start;
}

.filter-section {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F0F0F0;
}

.filter-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--color-charcoal);
}

.filter-list {
    list-style: none;
}

.filter-item {
    margin-bottom: 10px;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 400;
    cursor: pointer;
}

.filter-checkbox {
    width: 16px;
    height: 16px;
    accent-color: var(--color-gold-dark);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: var(--color-white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
}

.shop-results-count {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.shop-sorting-select {
    padding: 8px 16px;
    border: 1px solid #E5E5E5;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
}

.shop-sorting-select:focus {
    border-color: var(--color-gold);
}

/* Product Detail Page Styling */
.product-detail-section {
    padding: 140px 0 80px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

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

.product-main-img-wrap {
    height: 550px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    background: #F0F0F0;
    position: relative;
}

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

.product-thumbnails {
    display: flex;
    gap: 16px;
}

.product-thumb {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    background: #F0F0F0;
}

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

.product-details-info h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.product-details-sku {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
    margin-bottom: 20px;
    display: block;
}

.product-details-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold-dark);
    font-weight: 600;
    margin-bottom: 24px;
}

.product-details-description {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-slate-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.specs-short-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    padding: 20px 0;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 30px;
}

.spec-short-item {
    font-size: 0.85rem;
}

.spec-short-item span {
    font-weight: 600;
    color: var(--color-charcoal);
}

.detail-actions-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 40px;
}

.size-selector-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.sizes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.size-option-btn {
    border: 1px solid #E5E5E5;
    background: var(--color-white);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.size-option-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
}

.size-option-btn.active {
    background: var(--color-gold-cream);
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
}

.qty-buy-flex {
    display: flex;
    gap: 20px;
    align-items: center;
}

.qty-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #E5E5E5;
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 52px;
}

.qty-input-btn {
    border: none;
    background: none;
    width: 40px;
    height: 100%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.qty-input-btn:hover {
    background: var(--color-platinum);
}

.qty-input-field {
    border: none;
    width: 40px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    outline: none;
}

.qty-buy-flex .btn {
    flex: 1;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* User Dashboard Layout */
.dashboard-layout {
    padding: 140px 0 80px 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.dashboard-sidebar {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(212, 175, 55, 0.1);
    align-self: start;
}

.dashboard-menu {
    list-style: none;
}

.dashboard-menu-item {
    margin-bottom: 8px;
}

.dashboard-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    color: var(--color-slate-gray);
    transition: var(--transition-fast);
}

.dashboard-menu-link:hover,
.dashboard-menu-link.active {
    background: var(--color-gold-cream);
    color: var(--color-gold-dark);
}

.dashboard-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 40px;
    margin-bottom: 30px;
}

.dashboard-card-title {
    font-size: 1.35rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F0F0F0;
}

/* Interactive Order Tracking Timeline */
.timeline-container {
    padding: 20px 0;
    margin-top: 30px;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 10px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #E5E5E5;
    z-index: 1;
}

.timeline-progress-bar {
    position: absolute;
    top: 20px;
    left: 0;
    height: 4px;
    background: var(--color-gold);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-step-node {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.timeline-node-circle {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--color-white);
    border: 3px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-muted);
    transition: var(--transition-smooth);
}

.timeline-step-node.active .timeline-node-circle {
    border-color: var(--color-gold);
    background: var(--color-gold-cream);
    color: var(--color-gold-dark);
}

.timeline-step-node.completed .timeline-node-circle {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: var(--color-white);
}

.timeline-node-label {
    margin-top: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-muted);
}

.timeline-step-node.active .timeline-node-label,
.timeline-step-node.completed .timeline-node-label {
    color: var(--color-charcoal);
}

/* Custom Luxury Table Layouts */
.luxury-table-wrapper {
    overflow-x: auto;
}

.luxury-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.luxury-table th {
    padding: 16px 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--color-muted);
    border-bottom: 2px solid #F0F0F0;
    background: var(--color-offwhite);
}

.luxury-table td {
    padding: 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #F0F0F0;
    vertical-align: middle;
}

.luxury-table tr:hover {
    background: rgba(212, 175, 55, 0.02);
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pending {
    background: #FFF3E0;
    color: var(--color-warning);
}

.badge-processing {
    background: #E3F2FD;
    color: #1976D2;
}

.badge-shipped {
    background: #E8F5E9;
    color: var(--color-gold-dark);
}

.badge-delivered {
    background: #E8F5E9;
    color: var(--color-success);
}

.badge-cancelled {
    background: #FFEBEE;
    color: var(--color-danger);
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries (Responsive Mobile Design) */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-story-img {
        height: 350px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-grid-container {
        grid-template-columns: 1fr;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        height: 70px;
    }
    
    .nav-links {
        display: none; /* In production we would add a mobile menu hamburger toggle */
    }
    
    .hero {
        height: 80vh;
        margin-top: 70px;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .section-header h2 {
        font-size: 1.85rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .timeline-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-left: 20px;
    }
    
    .timeline-steps::before {
        left: 38px;
        top: 0;
        width: 4px;
        height: 100%;
    }
    
    .timeline-progress-bar {
        left: 38px;
        top: 0;
        width: 4px;
        transition: var(--transition-smooth);
    }
    
    .timeline-step-node {
        flex-direction: row;
        width: 100%;
        gap: 20px;
    }
    
    .timeline-node-label {
        margin-top: 0;
        text-align: left;
    }
}

/* ==========================================================================
   Awwwards Worthy Visuals & Mobile-First Interactions
   ========================================================================== */

/* Viewport Scroll Reveal Engine */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.stagger-1 { transition-delay: 100ms; }
.stagger-2 { transition-delay: 200ms; }
.stagger-3 { transition-delay: 300ms; }
.stagger-4 { transition-delay: 400ms; }

/* Animated Radial Backdrop Glows */
.luxury-glow-wrapper {
    position: relative;
    overflow: hidden;
}
.luxury-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, rgba(212, 175, 55, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

/* Category scrolls - hidden on desktop */
.category-scroll-container {
    display: none;
}

/* Mobile-First Adaptations (Awwwards Grade) */
@media (max-width: 768px) {
    /* Mobile-first Category quick-pill bubbles */
    .category-scroll-container {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 10px 24px;
        margin-bottom: 25px;
        scrollbar-width: none;
        position: relative;
        z-index: 10;
        margin: 0 -24px 25px -24px; /* full bleed margin */
    }
    .category-scroll-container::-webkit-scrollbar {
        display: none;
    }
    .category-pill {
        flex: 0 0 auto;
        padding: 10px 18px;
        border-radius: 30px;
        background: var(--color-white);
        border: 1px solid rgba(212, 175, 55, 0.2);
        font-family: var(--font-body);
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--color-slate-gray);
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .category-pill i {
        color: var(--color-gold-dark);
    }
    .category-pill:hover, .category-pill.active {
        background: var(--color-gold-cream);
        border-color: var(--color-gold);
        color: var(--color-gold-dark);
        box-shadow: var(--shadow-gold);
    }

    /* Curated Collections Horizontal Full-Bleed Swipe Snap */
    .collections-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 10px 24px 20px 24px;
        margin: 0 -24px 10px -24px; /* Full-bleed swipe */
        scrollbar-width: none;
    }
    .collections-grid::-webkit-scrollbar {
        display: none;
    }
    .collection-card {
        flex: 0 0 78%;
        scroll-snap-align: center;
        height: 380px;
    }

    /* Featured Masterpieces Horizontal Full-Bleed Swipe Snap Deck */
    .products-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 24px 25px 24px;
        margin: 0 -24px;
        scrollbar-width: none;
        scroll-behavior: smooth;
    }
    .products-grid::-webkit-scrollbar {
        display: none;
    }
    .product-card {
        flex: 0 0 82%; /* Peeking UI cards layout */
        scroll-snap-align: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    }
    
    /* Responsive tweaks for Hero Search overlay on mobile */
    .hero-search-bar {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
    }
    .hero-search-bar form {
        padding: 4px 4px 4px 15px !important;
    }
    .hero-search-bar input {
        font-size: 0.85rem !important;
    }
    .hero-search-bar button {
        padding: 8px 15px !important;
        font-size: 0.7rem !important;
    }
    .trending-searches {
        font-size: 0.7rem !important;
        gap: 8px !important;
    }
}
