/* ==========================================================================
   SONY STORE - LUXURY WATCH STORE STYLESHEET
   Dark Luxury Theme, Glassmorphism, Metallic Gold Accents & Smooth Animations
   ========================================================================== */

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

:root {
    --bg-dark: #090a0f;
    --bg-card: rgba(18, 20, 30, 0.7);
    --bg-card-hover: rgba(26, 29, 44, 0.85);
    --bg-panel: rgba(13, 15, 23, 0.9);
    
    --gold-primary: #d4af37;
    --gold-light: #f5d77f;
    --gold-dark: #997a22;
    --gold-gradient: linear-gradient(135deg, #f5d77f 0%, #d4af37 50%, #997a22 100%);
    --gold-glow: rgba(212, 175, 55, 0.3);

    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    --border-gold: rgba(212, 175, 55, 0.22);
    --border-subtle: rgba(255, 255, 255, 0.08);

    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

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

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

/* Google OAuth Button & Auth Divider */
.btn-google-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    background: #ffffff;
    color: #1f2937;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px;
    box-sizing: border-box;
}

.btn-google-auth:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 18px 0;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-subtle);
}

.auth-divider span {
    padding: 0 12px;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(9, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.site-header.scrolled {
    padding: 6px 0;
    background: rgba(9, 10, 15, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid var(--border-gold);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.site-header.scrolled .header-inner {
    height: 65px;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-main);
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none;
}

.brand-text-box, .brand-logo > div:not(.logo-badge) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.logo-badge {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 0 15px var(--gold-glow);
    flex-shrink: 0;
}

.brand-sub {
    font-size: 0.65rem;
    display: block;
    letter-spacing: 3px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-top: 2px;
    white-space: nowrap;
}

/* Navigation Links */
.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
}

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

/* Header Icons & Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-fast);
    font-size: 1.1rem;
}

.icon-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    color: var(--text-main);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 90px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    overflow: hidden;
}

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

.hero-content {
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 36px;
    border-radius: var(--radius-full);
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
}

.btn-secondary {
    padding: 16px 36px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-3px);
}

/* Hero Visual Showcase */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow-ring {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: pulseGlow 6s infinite alternate;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    animation: floatWatch 5s ease-in-out infinite alternate;
}

@keyframes floatWatch {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(1.5deg); }
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.08); }
}

/* ==========================================================================
   FEATURED WATCHES & CARDS
   ========================================================================== */
.section {
    padding: 90px 0;
}

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

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Watch Card Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Watch Card */
.watch-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.watch-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.18);
}

/* Stock Status Pill */
.stock-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 3;
}

.stock-badge.in-stock {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid var(--success);
}

.stock-badge.low-stock {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
    border: 1px solid var(--warning);
}

.stock-badge.out-of-stock {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
    border: 1px solid var(--danger);
}

/* Wishlist Icon Button on Card */
.card-wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: var(--transition-fast);
}

.card-wishlist-btn:hover, .card-wishlist-btn.active {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
}

/* Card Image Box */
.card-image-box {
    position: relative;
    width: 100%;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.card-image-box img {
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.watch-card:hover .card-image-box img {
    transform: scale(1.1);
}

/* Card Content */
.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-brand {
    font-size: 0.75rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    height: 2.6em;
}

.card-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    margin-top: auto;
}

.price-current {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
}

.price-old {
    font-size: 0.95rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

/* Card Action Buttons */
.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-card-details {
    padding: 10px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    transition: var(--transition-fast);
}

.btn-card-details:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
    color: var(--gold-light);
}

.btn-card-cart {
    padding: 10px;
    border-radius: var(--radius-sm);
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    transition: var(--transition-fast);
}

.btn-card-cart:hover:not(:disabled) {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-card-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #475569;
    color: #94a3b8;
}

/* ==========================================================================
   SHOP / COLLECTION FILTERS
   ========================================================================== */
.shop-banner {
    padding: 140px 0 60px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    border-bottom: 1px solid var(--border-subtle);
}

.watch-collection-heading {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f5d77f 40%, #d4af37 70%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmerText 6s ease infinite;
}

.watch-collection-subtitle {
    color: var(--text-muted);
    max-width: 650px;
    margin: 16px auto 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.watch-collection-divider {
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 20px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 15px var(--gold-glow);
}

.shop-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 24px;
    border-radius: var(--radius-md);
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 260px;
}

.search-input {
    width: 100%;
    padding: 12px 20px 12px 46px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-gold);
    color: var(--text-main);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.search-input:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 15px var(--gold-glow);
}

.search-icon-inside {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
}

.category-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pill-btn {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.pill-btn:hover, .pill-btn.active {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    font-weight: 700;
}

.filter-select {
    padding: 10px 18px;
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-gold);
    color: var(--text-main);
    font-size: 0.85rem;
    outline: none;
}

/* ==========================================================================
   PRODUCT DETAILS PAGE (product.html)
   ========================================================================== */
.product-detail-section {
    padding-top: 140px;
    padding-bottom: 90px;
}

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

/* Left: Gallery & Zoom */
.gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-viewer {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
}

.main-image-viewer img {
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-image-viewer:hover img {
    transform: scale(1.35);
}

.thumbnail-row {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.thumb-item {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.thumb-item.active, .thumb-item:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px var(--gold-glow);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Right: Product Info */
.detail-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-brand {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.detail-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f59e0b;
    font-size: 0.95rem;
}

.detail-price-box {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.detail-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-main);
}

.detail-old-price {
    font-size: 1.2rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.discount-tag {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
}

.detail-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

.specs-table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}

.specs-label {
    color: var(--text-muted);
    width: 40%;
}

.specs-value {
    color: var(--text-main);
    font-weight: 600;
}

/* Quantity & Action Controls */
.action-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.qty-btn:hover:not(:disabled) {
    background: var(--gold-primary);
    color: #000;
}

.qty-display {
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.btn-group-detail {
    display: grid;
    grid-template-columns: 1fr 1fr 60px;
    gap: 16px;
}

.btn-buy-now {
    padding: 16px;
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.btn-buy-now:hover {
    background: var(--gold-light);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   CART SYSTEM & DRAWER (cart.html & Drawer)
   ========================================================================== */
.cart-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.cart-drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 440px;
    max-width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    border-left: 1px solid var(--border-gold);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition-smooth);
}

.cart-drawer-backdrop.open .cart-drawer {
    transform: translateX(0);
}

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

.drawer-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.drawer-close {
    background: none;
    color: var(--text-muted);
    font-size: 1.5rem;
}

.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 6px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.cart-item-remove {
    background: none;
    color: var(--text-dim);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    color: #ef4444;
}

.drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.5);
}

.drawer-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.drawer-total {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-light);
}

/* ==========================================================================
   ABOUT & CONTACT PAGES
   ========================================================================== */
.contact-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
}

/* ==========================================================================
   ANIMATED LUXURY CARDS SYSTEM (PURE TEXT/UI BASED)
   ========================================================================== */

/* Keyframe Animations */
@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes goldShimmerText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes iconHoverBounce {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.15) translateY(-4px); }
}

.about-hero-section {
    padding-top: 150px;
    padding-bottom: 50px;
    position: relative;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.12) 0%, rgba(9, 10, 15, 0) 70%);
}

/* Base Animated Card Styling */
.animated-card {
    position: relative;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(18, 20, 30, 0.85) 0%, rgba(10, 12, 18, 0.95) 100%);
    border: 1px solid var(--border-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                background 0.4s ease;
    will-change: transform, box-shadow;
    transform-style: preserve-3d;
}

/* Animated Border Glow Pseudo-element */
.animated-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, var(--gold-primary) 50%, transparent 100%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    transition: opacity 0.4s ease;
    pointer-events: none;
    animation: borderRotate 8s linear infinite;
}

.animated-card:hover::after {
    opacity: 1;
}

.animated-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
}

/* 1. FOUNDER CARD SPECIFIC ANIMATIONS */
.hero-typography-card {
    padding: 70px 50px;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.founder-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-typography-card:hover .founder-badge-tag {
    transform: scale(1.03);
    box-shadow: 0 0 15px var(--gold-glow);
}

.founder-name-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    line-height: 1.1;
    margin: 12px 0;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #f5d77f 30%, #d4af37 60%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmerText 6s ease infinite;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), letter-spacing 0.4s ease;
}

.hero-typography-card:hover .founder-name-title {
    letter-spacing: 8px;
    transform: translateY(-2px);
}

.founder-title-badge {
    font-size: 1.1rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.founder-line-divider {
    width: 90px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 30px auto;
    border-radius: 2px;
    box-shadow: 0 0 12px var(--gold-glow);
    transition: width 0.4s ease, box-shadow 0.4s ease;
}

.hero-typography-card:hover .founder-line-divider {
    width: 140px;
    box-shadow: 0 0 20px var(--gold-primary);
}

.story-lead-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.hero-typography-card:hover .story-lead-text {
    transform: translateY(-3px);
}

/* 2. MISSION & 3. VISION CARDS */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.mv-card {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.mv-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, box-shadow 0.4s ease;
}

.mv-card:hover .mv-icon-badge {
    transform: scale(1.12) rotate(6deg);
    background: rgba(212, 175, 55, 0.25);
    box-shadow: 0 0 20px var(--gold-glow);
}

.mv-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    transition: transform 0.3s ease, color 0.3s ease;
}

.mv-card:hover .mv-title {
    transform: translateX(4px);
    color: #ffffff;
}

.mv-text {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-muted);
    transition: transform 0.4s ease, color 0.3s ease;
}

.mv-card:hover .mv-text {
    transform: translateY(-2px);
    color: var(--text-main);
}

/* 4. WHY SONY STORE CARDS */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    padding: 44px 32px;
    text-align: center;
}

.why-icon {
    font-size: 2.6rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.why-card:hover .why-icon {
    animation: iconHoverBounce 1s ease infinite;
    filter: drop-shadow(0 0 10px var(--gold-primary));
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    color: var(--gold-light);
    transition: transform 0.3s ease, color 0.3s ease;
}

.why-card:hover .why-card-title {
    transform: translateY(-2px);
    color: #ffffff;
}

.why-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    transition: transform 0.4s ease, color 0.3s ease;
}

.why-card:hover .why-card-desc {
    transform: translateY(-2px);
    color: var(--text-main);
}

/* 5. FOUNDER QUOTE CARD */
.quote-card {
    padding: 64px 48px;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(18, 20, 30, 0.92) 50%, rgba(9, 10, 15, 0.98) 100%);
    background-size: 200% 200%;
    animation: borderRotate 10s ease infinite, gentleFloat 6s ease-in-out infinite;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 6.5rem;
    line-height: 0.4;
    color: var(--gold-primary);
    opacity: 0.35;
    margin-bottom: 24px;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.quote-card:hover .quote-mark {
    transform: scale(1.15) translateY(-5px);
    opacity: 0.7;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--text-main);
    margin-bottom: 32px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: transform 0.4s ease, text-shadow 0.4s ease;
}

.quote-card:hover .quote-text {
    transform: translateY(-3px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-style: normal;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--gold-light);
    text-transform: uppercase;
    transition: letter-spacing 0.3s ease;
}

.quote-card:hover .author-name {
    letter-spacing: 4px;
}

.author-title {
    font-size: 0.88rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
}

/* ==========================================================================
   BRAND EXPERIENCE & LUXURY STYLES (PURE TEXT/UI BASED)
   ========================================================================== */

/* 2. Brand Story Card */
.story-card {
    padding: 60px 48px;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.story-body-paragraph {
    font-size: 1.15rem;
    line-height: 1.95;
    color: var(--text-main);
    max-width: 820px;
    margin: 0 auto;
    letter-spacing: 0.3px;
}

/* 3. Brand Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    padding: 40px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number-box {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 8px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.stat-plus {
    font-size: 2.2rem;
    vertical-align: super;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-main);
    text-transform: uppercase;
}

.stat-note {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 4px;
}

/* 4 & 5. Interactive Why Cards Grid */
.interactive-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.interactive-card {
    padding: 40px 28px;
    cursor: pointer;
    overflow: hidden;
}

.why-card-detail {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin-top 0.4s ease;
    font-size: 0.88rem;
    color: var(--gold-light);
    line-height: 1.65;
    text-align: center;
}

.interactive-card:hover .why-card-detail,
.interactive-card.mobile-expanded .why-card-detail {
    max-height: 120px;
    opacity: 1;
    margin-top: 16px;
}

.interactive-why-grid:hover .interactive-card.sibling-dimmed {
    opacity: 0.65;
    transform: scale(0.97);
}

/* 6. Brand Timeline */
.brand-timeline-section {
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.timeline-line-progress {
    width: 100%;
    height: 0%;
    background: var(--gold-gradient);
    box-shadow: 0 0 15px var(--gold-primary);
    border-radius: inherit;
    transition: height 0.1s linear;
}

.timeline-item {
    position: relative;
    margin-left: 90px;
    margin-bottom: 40px;
    padding: 32px 36px;
}

.timeline-node {
    position: absolute;
    left: -76px;
    top: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--gold-primary);
    color: var(--gold-light);
    font-weight: 800;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 12px var(--gold-glow);
    z-index: 2;
    transition: transform 0.3s ease, background 0.3s ease;
}

.timeline-item:hover .timeline-node {
    transform: scale(1.15);
    background: var(--gold-gradient);
    color: #000;
}

.timeline-step-tag {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 7. Quality Promise Stages */
.promise-stages-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
}

.promise-stage-card {
    padding: 44px 32px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stage-icon-box {
    font-size: 2.8rem;
    margin-bottom: 16px;
    transition: transform 0.4s ease;
}

.promise-stage-card:hover .stage-icon-box {
    transform: scale(1.2) rotate(6deg);
}

.stage-number {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-gold);
    display: inline-block;
    margin-bottom: 12px;
}

.stage-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    color: var(--gold-light);
}

.stage-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 8. Customer Reviews Carousel */
.testimonial-carousel-wrapper {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonial-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-md);
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    box-sizing: border-box;
    padding: 50px 40px;
    text-align: center;
}

.star-rating {
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 24px;
}

.reviewer-name {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.reviewer-tag {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(18, 20, 30, 0.9);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 0 15px var(--gold-glow);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dots .dot.active {
    background: var(--gold-primary);
    width: 28px;
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px var(--gold-glow);
}

/* 9. Newsletter Section */
.newsletter-card {
    padding: 60px 40px;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(18, 20, 30, 0.9) 0%, rgba(9, 10, 15, 0.98) 100%);
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 10px 0 14px 0;
}

.newsletter-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 540px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 260px;
    padding: 16px 24px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-gold);
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.newsletter-input:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 20px var(--gold-glow);
}

.newsletter-btn {
    padding: 16px 36px;
}

/* 10. Final CTA Section */
.final-cta-card {
    padding: 80px 40px;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, rgba(10, 12, 18, 0.95) 70%);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 12px 0 16px 0;
}

.cta-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    padding: 18px 48px;
    font-size: 1.05rem;
    letter-spacing: 2px;
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
    .animated-card, .quote-card, .why-card, .mv-card, .hero-typography-card,
    .founder-name-title, .why-icon, .quote-mark, .story-lead-text, .mv-icon-badge,
    .stat-number-box, .timeline-node, .stage-icon-box, .testimonial-track {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
    
    .animated-card:hover, .quote-card:hover, .why-card:hover, .mv-card:hover, .hero-typography-card:hover {
        transform: none !important;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.form-input, .form-textarea {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-gold);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 15px var(--gold-glow);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    padding: 16px 24px;
    border-radius: var(--radius-md);
    background: rgba(13, 15, 23, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--gold-primary);
    color: var(--text-main);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: toastIn 0.3s ease forwards;
}

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

/* Footer */
.site-footer {
    background: #050608;
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 40px 0;
    margin-top: auto;
}

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

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-dim);
    font-size: 0.85rem;
}
