:root {
    --rose-gold: #B76E79;
    --rose-gold-light: #E6B5C0;
    --rose-gold-dark: #8A454F;
    --black-bg: #000000;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --accent-pink: #FF69B4;
    --accent-purple: #9B59B6;
}

html {
    scroll-padding-top: 241px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--black-bg);
    color: var(--text-light);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(183, 110, 121, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50 10c-5 10-15 15-20 25s-5 20 5 25 15 10 25 5 15-10 10-20S65 15 50 10z" fill="rgba(255,105,180,0.05)"/><path d="M20 60c-3 6-9 9-12 15s-3 12 3 15 9 3 15-3 9-9 6-15S23 60 20 60z" fill="rgba(155,89,182,0.05)"/><path d="M80 40c-3 6-9 9-12 15s-3 12 3 15 9 3 15-3 9-9 6-15S83 40 80 40z" fill="rgba(255,105,180,0.05)"/></svg>');
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Header with Fox Logo */
header {
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.2), rgba(155, 89, 182, 0.2));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(183, 110, 121, 0.3);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fox-icon {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    object-fit: contain;
    animation: foxGlow 3s ease-in-out infinite alternate;
}

.site-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--rose-gold), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(183, 110, 121, 0.3);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    border: 1px solid transparent;
    position: relative;
}

.nav-menu li a:hover {
    background: linear-gradient(135deg, var(--rose-gold), var(--accent-purple));
    color: white;
    box-shadow: 0 0 20px rgba(183, 110, 121, 0.5);
    transform: translateY(-1px);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px 20px 60px;
}

/* Login Page */
.login-container {
    display: none;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(183, 110, 121, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 500px;
    margin: 60px auto;
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.login-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--rose-gold);
    text-shadow: 0 0 10px rgba(183, 110, 121, 0.3);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--rose-gold-light);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(183, 110, 121, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--rose-gold);
    box-shadow: 0 0 15px rgba(183, 110, 121, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.btn {
    background: linear-gradient(135deg, var(--rose-gold), var(--accent-purple));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(183, 110, 121, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(183, 110, 121, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--rose-gold);
    color: var(--rose-gold);
    margin-left: 10px;
}

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

.guest-login {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(183, 110, 121, 0.3);
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 25px;
    border: 1px solid rgba(183, 110, 121, 0.3);
    border-radius: 10px;
    overflow: hidden;
}
.auth-tab {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}
.auth-tab.active {
    background: linear-gradient(135deg, var(--rose-gold), var(--accent-purple));
    color: white;
}
.auth-tab:not(.active):hover {
    background: rgba(183, 110, 121, 0.1);
}

.forgot-password {
    margin-top: 15px;
    font-size: 14px;
    color: var(--rose-gold-light);
    cursor: pointer;
    text-decoration: underline;
}

/* Admin Panel */
.admin-panel {
    display: none;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(183, 110, 121, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.product-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.admin-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin: 20px 0;
}
.admin-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 24px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(183,110,121,0.25);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.25s ease;
    text-align: center;
}
.admin-link-card:hover {
    background: rgba(183,110,121,0.12);
    border-color: var(--rose-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183,110,121,0.15);
}

/* Store Grid */
.store-container {
    display: none;
    margin-top: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(183, 110, 121, 0.25), 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: var(--rose-gold);
    background: rgba(183, 110, 121, 0.12);
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-title {
    padding: 16px 20px 18px;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(230, 181, 192, 0.92);
    text-align: center;
    position: relative;
}

.product-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 110, 121, 0.25), transparent);
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}


/* Cart */
.cart-container {
    display: none;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(183, 110, 121, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(183, 110, 121, 0.2);
    margin-bottom: 10px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(183, 110, 121, 0.3);
}

/* Checkout */
.checkout-container {
    display: none;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(183, 110, 121, 0.3);
    border-radius: 20px;
    padding: 30px;
}

.checkout-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkout-total {
    background: rgba(183, 110, 121, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid rgba(183, 110, 121, 0.3);
}

/* Animations */
@keyframes foxGlow {
    0% { filter: drop-shadow(0 0 5px var(--rose-gold)); }
    100% { filter: drop-shadow(0 0 20px var(--rose-gold)); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--rose-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Nav Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Nav Panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.98));
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(183, 110, 121, 0.3);
    z-index: 1000;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav a:hover {
    background: linear-gradient(135deg, var(--rose-gold), var(--accent-purple));
    color: white;
    border-color: var(--rose-gold);
    transform: translateX(-5px);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.15), rgba(155, 89, 182, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 40px;
    max-width: 700px;
}

.hero-content h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--rose-gold), var(--accent-purple), var(--rose-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    animation: heroTextGlow 3s ease-in-out infinite alternate;
}

.hero-content p {
    font-size: 1.35rem;
    color: #ddd;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-cta {
    background: linear-gradient(135deg, var(--rose-gold), var(--accent-purple));
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 35px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(45deg) translateX(-100%);
    animation: shimmer 3s ease-in-out infinite;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(183, 110, 121, 0.6);
}

@keyframes shimmer {
    0% { transform: rotate(45deg) translateX(-100%); }
    50% { transform: rotate(45deg) translateX(100%); }
    100% { transform: rotate(45deg) translateX(-100%); }
}

@keyframes heroTextGlow {
    0% { filter: drop-shadow(0 0 10px rgba(183, 110, 121, 0.3)); }
    100% { filter: drop-shadow(0 0 25px rgba(155, 89, 182, 0.5)); }
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.15), rgba(155, 89, 182, 0.15));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(183, 110, 121, 0.3);
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-col h3 {
    font-family: 'Dancing Script', cursive;
    color: var(--rose-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-col p, .footer-col a {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--rose-gold);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(183, 110, 121, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: var(--rose-gold-light);
}

.footer-social a:hover {
    background: var(--rose-gold);
    color: white;
    border-color: var(--rose-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(183, 110, 121, 0.15);
    color: #888;
    font-size: 0.85rem;
}

/* Page Transitions */
.page-transition {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.page-transition.active {
    opacity: 1;
    transform: translateY(0);
}

/* Form Validation */
.form-group input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}

.form-group input.valid {
    border-color: #2ecc71;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.2);
}

.validation-message {
    font-size: 0.8rem;
    margin-top: 5px;
    min-height: 18px;
    transition: all 0.3s ease;
}

.validation-message.error {
    color: #e74c3c;
}

.validation-message.success {
    color: #2ecc71;
}

/* Button Loading State */
.btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    margin: -9px 0 0 -9px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: buttonSpin 0.6s linear infinite;
}

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

.btn.loading span {
    visibility: hidden;
}

/* Cart Badge Pulse */
.cart-badge {
    display: inline-block;
    transition: transform 0.2s ease;
}

.cart-badge.pulse {
    animation: badgePulse 0.4s ease;
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Toast animation enhancement */
.status-message {
    animation: toastSlideIn 0.3s ease;
}

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

/* Success modal for checkout */
.order-success {
    text-align: center;
    padding: 30px;
}

.order-success .checkmark {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
    animation: checkmarkPop 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes checkmarkPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Responsive updates - including hamburger */
@media (max-width: 768px) {
    .site-title { font-size: 2rem; }
    .fox-icon { width: 160px; height: 160px; }
    .product-form, .checkout-form { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .hamburger { display: flex; }
    .hero-content h2 { font-size: 2.2rem; }
    .hero-banner { min-height: 300px; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
}

/* Hidden classes */
.hidden { display: none !important; }

/* Status indicators */
.status-message {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.status-success { background: rgba(46, 204, 113, 0.2); border: 1px solid rgba(46, 204, 113, 0.5); color: #2ecc71; }
.status-error { background: rgba(231, 76, 60, 0.2); border: 1px solid rgba(231, 76, 60, 0.5); color: #e74c3c; }

/* ─── FEATURED BADGE ─────────────────────────────────── */
.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

/* ─── ORDER HISTORY ──────────────────────────────────── */
.order-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}
.order-card:hover { border-color: var(--rose-gold); }
.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.order-number {
    font-weight: 700;
    color: var(--rose-gold);
    font-size: 1.05rem;
}
.order-card-body {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.order-card-body strong { color: var(--text); }
.order-date { margin-left: auto; }
.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: capitalize;
}
.status-pending { background: rgba(243, 156, 18, 0.15); color: #f39c12; border: 1px solid rgba(243, 156, 18, 0.3); }
.status-processing { background: rgba(52, 152, 219, 0.15); color: #3498db; border: 1px solid rgba(52, 152, 219, 0.3); }
.status-shipped { background: rgba(155, 89, 182, 0.15); color: #9b59b6; border: 1px solid rgba(155, 89, 182, 0.3); }
.status-delivered { background: rgba(46, 204, 113, 0.15); color: #2ecc71; border: 1px solid rgba(46, 204, 113, 0.3); }
.status-cancelled { background: rgba(231, 76, 60, 0.15); color: #e74c3c; border: 1px solid rgba(231, 76, 60, 0.3); }

/* ─── PRODUCT DETAIL ─────────────────────────────────── */
.detail-container {
    display: none;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}
.detail-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}
.detail-image {
    flex: 0 0 400px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}
.detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.detail-info {
    flex: 1;
    min-width: 0;
}
.detail-title {
    font-size: 1.8rem;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.3;
}
.detail-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 20px;
}
.detail-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.detail-meta span {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.btn-large {
    padding: 12px 32px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .detail-layout {
        flex-direction: column;
        gap: 24px;
    }
    .detail-image {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    .detail-title {
        font-size: 1.4rem;
    }
    .detail-price {
        font-size: 1.3rem;
    }
}

/* ─── PRODUCT META FIELDS ────────────────────────────── */
.detail-fields {
    margin-bottom: 24px;
}
.meta-field {
    display: flex;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.92rem;
    line-height: 1.6;
}
.meta-field:last-child {
    border-bottom: none;
}
.meta-label {
    color: var(--rose-gold);
    font-weight: 600;
    white-space: nowrap;
    min-width: 100px;
}
.meta-value {
    color: var(--text-muted);
    flex: 1;
}

/* ─── COLOR SELECTOR ────────────────────────────── */
.color-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.92rem;
}
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.color-swatch {
    background: rgba(255,255,255,0.06);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 5px 14px;
    font-size: 0.85rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
}
.color-swatch:hover {
    border-color: var(--rose-gold);
    background: rgba(183, 110, 121, 0.12);
}
.color-swatch.selected {
    border-color: var(--rose-gold);
    background: rgba(183, 110, 121, 0.2);
    color: var(--rose-gold);
    font-weight: 600;
}
.scent-swatch {
    background: rgba(255,255,255,0.06);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 5px 14px;
    font-size: 0.85rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
}
.scent-swatch:hover {
    border-color: var(--rose-gold);
    background: rgba(183, 110, 121, 0.12);
}
.scent-swatch.selected {
    border-color: var(--rose-gold);
    background: rgba(183, 110, 121, 0.2);
    color: var(--rose-gold);
    font-weight: 600;
}
