:root {
    /* Light Mode (Fixed Design - DO NOT CHANGE) */
    --bg-main: #fdfafb;
    --bg-gradient: linear-gradient(135deg, #fff5f7 0%, #f0f4ff 50%, #f5fff9 100%);
    --bg-overlay: url('../img/background.png'); /* Keep for texture if exists */
    --text-main: #2d3436;
    --text-inverse: #ffffff;
    --text-muted: #636e72;
    --accent-gold: #d4af37;
    --accent-gold-glow: rgba(212, 175, 55, 0.3);
    --accent-glow: rgba(178, 142, 209, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-header: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    --glass-border-hover: rgba(178, 142, 209, 0.3);
    --modal-bg: rgba(255, 255, 255, 0.85);
    --card-shadow: 0 20px 40px rgba(0,0,0,0.05);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-mode {
    /* Dark Mode Design */
    --bg-main: #0a0a0b;
    --bg-gradient: linear-gradient(135deg, #0f0f11 0%, #151518 50%, #0a0a0b 100%);
    --bg-overlay: none; 
    --text-main: #e0e0e0;
    --text-inverse: #000000;
    --text-muted: #a0a0a0;
    --accent-gold: #e6b94d;
    --accent-gold-glow: rgba(230, 185, 77, 0.5);
    --accent-glow: rgba(178, 142, 209, 0.1);
    --glass-bg: rgba(30, 30, 35, 0.6);
    --glass-header: rgba(15, 15, 18, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(230, 185, 77, 0.4);
    --modal-bg: rgba(20, 20, 22, 0.95);
    --card-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

body.dark-mode .glass-modal::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
}
body.dark-mode .glass-modal::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background.png');
    background-size: cover;
    background-position: center;
    filter: brightness(1.0) contrast(1.05);
    z-index: -2;
    transform: scale(1.05);
}

/* Navbar */
.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 2vh 5vw;
    background: var(--glass-header);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

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

.nav-links {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
}

/* Dark Mode specific tweaks */
body.dark-mode .background-overlay {
    background-image: radial-gradient(circle at 50% 50%, #1a1a1f 0%, #0a0a0b 100%);
    filter: none;
}

body.dark-mode .project-card:hover {
    box-shadow: 0 0 30px var(--accent-gold-glow);
}

body.dark-mode .payment-option.selected {
    background: rgba(230, 185, 77, 0.15);
}

/* Auth Modal Styles */
.auth-tabs {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.auth-tab {
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.auth-tab.active {
    color: var(--accent-gold);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
}

#themeToggle i {
    cursor: pointer;
    font-size: 1.4rem;
    transition: var(--transition);
}

body.dark-mode #themeToggle i::before {
    content: "\F494"; /* Moon to Sun in Bootstrap Icons */
}

/* Category Badges */
.category-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.4rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Hero Section */
.hero-section {
    width: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10vh 5vw;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.hero-section h1 span {
    color: var(--accent-gold);
    font-style: italic;
}

.hero-section .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    max-width: 800px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.primary-btn {
    padding: 1.2rem 2.5rem;
    background: var(--text-main);
    color: var(--text-inverse);
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: var(--accent-gold);
    color: #000;
}

.secondary-btn {
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.secondary-btn:hover {
    background: var(--glass-bg);
}

/* Section Header */
.section-header {
    text-align: center;
    margin: 4rem 0 3rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.section-title span {
    color: var(--accent-gold);
}

.stats-row {
    display: flex;
    gap: 4vw;
    padding: 4vh 5vw;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-num {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* Filters */
.filters-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

.filter-btn i {
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* ── Main Container ── */
.dashboard-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12vh 5vw 5vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 4vw;
    width: 100%;
    margin-bottom: 8vh;
}

/* Project Card */
.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    border-radius: 2.5vw;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 30px var(--accent-glow);
}

/* Ribbon */
.ribbon {
    position: absolute;
    top: 20px;
    left: -35px;
    background: var(--accent-gold);
    color: #000;
    padding: 0.5rem 3rem;
    transform: rotate(-45deg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 20;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.card-content {
    padding: 4vh 3vw;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Card Header */
.card-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.03);
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.project-card:hover .card-icon {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    transform: scale(1.1) rotate(5deg);
}

.price-tag {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--accent-gold);
    background: var(--accent-glow);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Card Body */
.card-body-text {
    flex-grow: 1;
    margin-bottom: 4vh;
}

.project-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.project-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.features-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.features-list li i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* Card Footer */
.card-footer-action {
    display: flex;
    gap: 1vw;
    margin-top: auto;
}

.explore-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.9rem;
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.buy-btn {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem;
    background: var(--text-main);
    color: var(--text-inverse);
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.buy-btn:hover {
    background: var(--accent-gold);
    color: #000;
    transform: translateY(-3px);
}

.project-card:hover .explore-btn {
    background: var(--glass-bg);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

.glass-modal {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    width: 95%;
    max-width: 500px;
    padding: max(4vh, 1.5rem) max(4vw, 1.5rem);
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
}

/* Custom Scrollbar for Modal */
.glass-modal::-webkit-scrollbar {
    width: 8px;
}
.glass-modal::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}
.glass-modal::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.glass-modal::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

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

.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

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

.modal-header {
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.order-summary-mini {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--accent-glow);
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px dashed var(--accent-gold);
}

.order-summary-mini .price {
    font-weight: 700;
    color: var(--accent-gold);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.input-group input, 
.input-group textarea {
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-main);
    font-family: inherit;
    transition: var(--transition);
}

.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--bg-main);
}

.primary-btn.wide {
    width: 100%;
    justify-content: center;
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    background: rgba(255,255,255,0.5);
}

.payment-option.selected {
    border-color: var(--accent-gold);
    background: var(--accent-glow);
}

.payment-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.payment-details-area {
    margin-bottom: 2rem;
    min-height: 100px;
}

.qr-placeholder {
    width: 180px;
    height: 180px;
    background: #fff;
    margin: 0 auto;
    border: 8px solid #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
}

.bank-details {
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
}

.back-btn {
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
}

/* Success Content */
.success-content {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 5rem;
    color: #4caf50;
    margin-bottom: 2rem;
}

.order-id {
    margin: 1.5rem 0 2rem;
    font-weight: 700;
    font-family: monospace;
    background: #eee;
    padding: 0.5rem;
    display: inline-block;
}

/* QRIS Payment Section */
.qris-section {
    text-align: center;
    margin-bottom: 2rem;
}

.qris-code-box {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    background: #fff;
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qris-hint {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.upload-section {
    margin-bottom: 2rem;
}

.upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem;
    border: 2px dashed var(--glass-border);
    border-radius: 14px;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.upload-label:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.upload-label.has-file {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    border-style: solid;
}

.proof-preview {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 12px;
    margin-top: 1rem;
}

.order-id-display {
    font-family: monospace;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--accent-glow);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1rem;
}


/* Footer */
.dashboard-footer {
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

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

.spin {
    animation: rotate 1s linear infinite;
    display: inline-block;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Cart Badge Pulse */
.cart-count {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

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

    .top-nav {
        padding: 2vh 5vw;
        display: flex;
        justify-content: space-between;
    }

    .stats-row {
        gap: 3vw;
        padding: 3vh 5vw;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        padding: 12vh 4vw 5vh;
    }

    .card-content {
        padding: 3vh 4vw;
    }
}

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

.text-gold {
    color: var(--accent-gold);
}

.footer-links a {
    transition: var(--transition);
    opacity: 0.7;
}

.footer-links a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

/* ========================================
   Catalog / Products Page
   ======================================== */
.catalog-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4vw;
    width: 100%;
    margin-top: 5vh;
}

.catalog-sidebar {
    position: sticky;
    top: 7rem;
    align-self: start;
}

.catalog-sidebar h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

.catalog-sidebar .filter-group {
    margin-bottom: 2.5rem;
}

.catalog-sidebar .filter-group .filter-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.catalog-sidebar .filter-btn {
    text-align: left;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-size: 0.82rem;
}

.catalog-sidebar .price-filter {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.catalog-sidebar .price-filter label {
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

.catalog-sidebar .price-filter input[type="checkbox"] {
    accent-color: var(--accent-gold);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 2.5rem;
    width: 100%;
}

/* Badge tag */
.badge-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: var(--accent-glow);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Search bar */
.catalog-search {
    max-width: 560px;
    width: 100%;
    margin-top: 1.8rem;
    position: relative;
}

.catalog-search input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.4rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.catalog-search input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.catalog-search .search-icon {
    position: absolute;
    right: 1.4rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4vw;
    width: 100%;
    margin-top: 5vh;
}

.contact-info-card,
.contact-form-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 5vh 5vw;
}

.contact-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.contact-info-card h3 span {
    color: var(--accent-gold);
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.contact-detail-icon {
    width: 46px;
    height: 46px;
    background: var(--accent-glow);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-text p:first-child {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.15rem;
}

.contact-detail-text p:last-child {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

.contact-form-card .name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ========================================
   FAQ / Accordion
   ======================================== */
.faq-section {
    width: 100%;
    margin: 5rem 0 2rem;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.accordion-item:hover,
.accordion-item.active {
    border-color: var(--glass-border-hover);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.2s;
    user-select: none;
}

.accordion-header:hover {
    color: var(--accent-gold);
}

.accordion-header i {
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 1.5rem 1.4rem;
}

/* ========================================
   Shared Footer (for sub-pages)
   ======================================== */
.shared-footer {
    width: 100%;
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.shared-footer .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.shared-footer .footer-brand-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 0.8rem;
    max-width: 200px;
}

.shared-footer .footer-col h5 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

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

.shared-footer .footer-col ul li {
    margin-bottom: 0.6rem;
}

.shared-footer .footer-col ul li a {
    font-size: 0.85rem;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s;
}

.shared-footer .footer-col ul li a:hover {
    color: var(--accent-gold);
}

.shared-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.shared-footer .footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.shared-footer .footer-socials {
    display: flex;
    gap: 1.2rem;
    font-size: 1rem;
}

.shared-footer .footer-socials a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.shared-footer .footer-socials a:hover {
    color: var(--accent-gold);
}

/* ========================================
   About Page Styles
   ======================================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: center;
}

.image-placeholder {
    height: 400px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder i {
    font-size: 5rem;
    color: var(--accent-gold);
    opacity: 0.3;
}

.values-section {
    margin: 8rem 0;
    width: 100%;
}

.values-section .section-title {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-card {
    padding: 3rem;
    text-align: center;
    border-radius: 32px;
}

.value-card i {
    font-size: 3rem;
    color: var(--accent-gold);
}

.value-card h3 {
    margin: 1.5rem 0;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========================================
   Responsive — Catalog & Contact & About
   ======================================== */
@media (max-width: 900px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .catalog-sidebar .filter-group {
        margin-bottom: 1rem;
        width: 100%;
    }

    .catalog-sidebar .filter-stack {
        flex-direction: row !important;
        flex-wrap: wrap;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .contact-form-card .name-row {
        grid-template-columns: 1fr;
    }
}

/* Product Images Carousel Scrollbar */
.product-images-carousel::-webkit-scrollbar {
    height: 6px;
}
.product-images-carousel::-webkit-scrollbar-track {
    background: transparent;
}
.product-images-carousel::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}
.product-images-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}