/* ========================================
   SASTAAABAZAR.STORE - E-COMMERCE
   Custom Beaded Bracelets Shop
   Modern Minimal Design System
   ======================================== */

/* CSS Variables - Modern Minimal */
:root {
    /* Background Colors */
    --bg: #FAF8F5;
    --bg-warm: #F3EDE6;
    --card: #FFFFFF;

    /* Border Colors */
    --border: rgba(0, 0, 0, .07);
    --border-hover: rgba(180, 140, 100, .35);

    /* Text Colors */
    --text: #1C1917;
    --text-mid: #78716C;
    --text-dim: #A8A29E;
    --text-primary: #1C1917;
    --text-secondary: #78716C;
    --text-muted: #A8A29E;

    /* Accent Colors */
    --rose: #C9606B;
    --rose-soft: rgba(201, 96, 107, .08);
    --gold: #B8956A;
    --gold-soft: rgba(184, 149, 106, .1);
    --gold-hover: rgba(184, 149, 106, .18);

    /* Legacy mapping for compatibility */
    --primary: #B8956A;
    --primary-light: #C9A87C;
    --primary-dark: #9A7B58;
    --secondary: #C9606B;
    --accent: #C9606B;

    /* Shadows */
    --shadow: 0 2px 12px rgba(0, 0, 0, .06);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, .1);
    --shadow-glow: 0 4px 20px rgba(184, 149, 106, .15);

    /* Glass effect - minimal version */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, .07);

    /* Typography */
    --font-head: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --radius: 14px;
    --transition: .28s cubic-bezier(.4, 0, .2, 1);
    --transition-smooth: .28s cubic-bezier(.4, 0, .2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   ANIMATED BACKGROUND
   ======================================== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1a0a2e 100%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    top: -200px;
    right: -200px;
    opacity: 0.4;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary) 0%, #0891b2 100%);
    bottom: -100px;
    left: -100px;
    opacity: 0.3;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent) 0%, #ec4899 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    animation-delay: -10s;
}

.orb-4 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8b5cf6 0%, var(--primary-dark) 100%);
    bottom: 20%;
    right: 10%;
    opacity: 0.25;
    animation-delay: -15s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-30px) rotate(5deg) scale(1.05);
    }

    50% {
        transform: translateY(-20px) rotate(-5deg) scale(0.95);
    }

    75% {
        transform: translateY(-40px) rotate(3deg) scale(1.02);
    }
}

/* ========================================
   FLOATING PARTICLES
   ======================================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rise 10s linear infinite;
}

.particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particles span:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 12s;
}

.particles span:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particles span:nth-child(4) {
    left: 40%;
    animation-delay: 0.5s;
    animation-duration: 14s;
}

.particles span:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particles span:nth-child(6) {
    left: 60%;
    animation-delay: 1.5s;
    animation-duration: 11s;
}

.particles span:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 13s;
}

.particles span:nth-child(8) {
    left: 80%;
    animation-delay: 0.8s;
    animation-duration: 15s;
}

.particles span:nth-child(9) {
    left: 85%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.particles span:nth-child(10) {
    left: 95%;
    animation-delay: 2s;
    animation-duration: 12s;
}

@keyframes rise {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0) scale(0);
    }

    10% {
        opacity: 1;
        transform: scale(1);
    }

    90% {
        opacity: 1;
    }

    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(30px) scale(0.5);
    }
}

/* ========================================
   MAIN CONTAINER
   ======================================== */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* ========================================
   GLASSMORPHISM CARD
   ======================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 60px 50px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        var(--shadow-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: cardAppear 1s ease-out;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    animation: shimmer 3s infinite;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ========================================
   BRAND / LOGO
   ======================================== */
.brand {
    margin-bottom: 40px;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2);
    }

    50% {
        box-shadow: 0 8px 25px rgba(191, 154, 108, 0.2);
    }
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.brand-name span {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   COMING SOON SECTION
   ======================================== */
.coming-soon {
    margin-bottom: 40px;
}

.coming-soon .label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.coming-soon .title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon .subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   HERO SOCIAL MEDIA ICONS (PRIMARY CTA)
   ======================================== */
.social-links-hero {
    margin-bottom: 45px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.social-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 90px;
    border-radius: 20px;
    font-size: 2rem;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--glass-border);
    transition: var(--transition-smooth);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.social-icon-hero i {
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.social-label {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.social-icon-hero:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: transparent;
}

.social-icon-hero:hover i {
    transform: scale(1.2);
}

/* Instagram Hero */
.social-icon-hero.instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.5);
}

/* TikTok Hero */
.social-icon-hero.tiktok:hover {
    background: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%);
    box-shadow: 0 15px 40px rgba(255, 0, 80, 0.5);
}

/* Snapchat Hero */
.social-icon-hero.snapchat:hover {
    background: #fffc00;
    color: #000;
    box-shadow: 0 15px 40px rgba(255, 252, 0, 0.5);
}

.social-icon-hero.snapchat:hover .social-label {
    color: #000;
}

/* Facebook Hero */
.social-icon-hero.facebook:hover {
    background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.5);
}

/* YouTube Hero */
.social-icon-hero.youtube:hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
}

/* Ripple Effect */
.social-icon-hero .ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Pulse animation for attention */
.social-icons-large {
    animation: socialPulse 3s ease-in-out infinite;
}

@keyframes socialPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 0 transparent);
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.3));
    }
}

/* ========================================
   EMAIL SUBSCRIPTION
   ======================================== */
.subscribe {
    margin-bottom: 40px;
}

.subscribe h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.input-wrapper {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.input-wrapper i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
}


.input-wrapper input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: var(--transition-smooth);
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.input-wrapper input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2);
}

.btn-notify {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(147, 119, 84, 0.35);
}

.btn-notify:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(147, 119, 84, 0.35);
}

.btn-notify:active {
    transform: translateY(-1px);
}

.btn-notify i {
    transition: transform 0.3s ease;
}

.btn-notify:hover i {
    transform: translateX(5px);
}

.success-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    color: #22c55e;
    font-size: 0.9rem;
    animation: fadeIn 0.3s ease;
}

.success-message.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #ef4444;
    font-size: 0.9rem;
    animation: fadeIn 0.3s ease;
}

.error-message.show {
    display: flex;
}

/* ========================================
   SOCIAL MEDIA LINKS
   ======================================== */
.social-links p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.3rem;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
}

/* Instagram */
.social-icon.instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}

/* TikTok */
.social-icon.tiktok:hover {
    background: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%);
    box-shadow: 0 10px 30px rgba(255, 0, 80, 0.4);
}

/* Snapchat */
.social-icon.snapchat:hover {
    background: #fffc00;
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 252, 0, 0.4);
}

/* Facebook */
.social-icon.facebook:hover {
    background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

/* YouTube */
.social-icon.youtube:hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    margin-top: 40px;
    text-align: center;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .glass-card {
        padding: 40px 30px;
        border-radius: 24px;
    }

    .coming-soon .title {
        font-size: 2.5rem;
    }

    .social-links-hero {
        padding: 25px 20px;
    }

    .social-icon-hero {
        width: 65px;
        height: 75px;
        font-size: 1.6rem;
    }

    .social-label {
        font-size: 0.55rem;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .input-wrapper {
        min-width: 100%;
    }

    .btn-notify {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }

    .glass-card {
        padding: 30px 20px;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 18px;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .coming-soon .title {
        font-size: 2rem;
    }

    .coming-soon .subtitle {
        font-size: 1rem;
    }

    .countdown-item {
        padding: 12px 15px;
        min-width: 60px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn-notify:focus,
.social-icon:focus,
.input-wrapper input:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ========================================
   AUTHENTICATION PAGES
   ======================================== */

/* Auth Card Styling */
.auth-card {
    max-width: 480px;
    padding: 50px 45px;
}

.auth-card-compact {
    max-width: 440px;
}

.brand-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Back Arrow Link for Auth Pages */
.brand-back-link {
    position: absolute;
    top: 5%;
    left: -25px;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.brand-back-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary-light);
    transform: translateY(-50%) translateX(-3px);
}

.brand {
    position: relative;
}

/* Auth Section */
.auth-section {
    margin-top: 20px;
}

.auth-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.auth-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-light);
    border: 1px solid var(--glass-border);
}

/* Auth Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    text-align: left;
}

/* Password Toggle Button */
.password-toggle {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-light);
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 10px;
    padding: 0 5px;
}

.strength-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-fill {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Password Match Indicator */
.password-match {
    display: block;
    font-size: 0.75rem;
    margin-top: 8px;
    padding-left: 5px;
}

.password-match.match {
    color: #22c55e;
}

.password-match.no-match {
    color: #ef4444;
}

/* Form Options Row */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Custom Checkbox */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid var(--glass-border);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked+.checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-wrapper input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label {
    line-height: 1.4;
}

.forgot-link {
    font-size: 0.85rem;
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.terms-link {
    color: var(--primary-light);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Auth Buttons */
.btn-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(147, 119, 84, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(147, 119, 84, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-light);
}

.btn-auth i {
    transition: transform 0.3s ease;
}

.btn-auth:hover i {
    transform: translateX(5px);
}

.btn-auth.loading {
    pointer-events: none;
    opacity: 0.8;
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--glass-border);
}

.auth-divider span {
    padding: 0 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Auth Buttons */
.social-auth {
    display: flex;
    gap: 12px;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-social:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.btn-google:hover {
    border-color: #ea4335;
    box-shadow: 0 8px 25px rgba(234, 67, 53, 0.2);
}

.btn-google:hover i {
    color: #ea4335;
}

.btn-facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.2);
}

.btn-facebook:hover i {
    color: #1877f2;
}

/* Auth Footer */
.auth-footer {
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: var(--secondary);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-link i {
    transition: transform 0.3s ease;
}

.back-link:hover i {
    transform: translateX(-5px);
}

/* Reset Success Message */
.reset-success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.reset-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.reset-success .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: #22c55e;
}

.reset-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.reset-success p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ========================================
   FLOATING BEADS DECORATION
   ======================================== */
.floating-beads {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bead {
    position: absolute;
    border-radius: 50%;
    animation: floatBead 15s ease-in-out infinite;
}

.bead-1 {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.bead-2 {
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    top: 25%;
    right: 15%;
    animation-delay: -3s;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

.bead-3 {
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #f472b6, #ec4899);
    bottom: 30%;
    left: 8%;
    animation-delay: -6s;
    box-shadow: 0 0 25px rgba(244, 114, 182, 0.5);
}

.bead-4 {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    bottom: 20%;
    right: 12%;
    animation-delay: -9s;
    box-shadow: 0 0 18px rgba(251, 191, 36, 0.5);
}

.bead-5 {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #34d399, #10b981);
    top: 60%;
    left: 15%;
    animation-delay: -12s;
    box-shadow: 0 0 12px rgba(52, 211, 153, 0.5);
}

@keyframes floatBead {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
    }

    50% {
        transform: translateY(-10px) translateX(-15px) rotate(180deg);
    }

    75% {
        transform: translateY(-30px) translateX(5px) rotate(270deg);
    }
}

/* ========================================
   AUTH RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .auth-card {
        padding: 40px 30px;
        margin: 20px;
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .social-auth {
        flex-direction: column;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .auth-title {
        font-size: 1.3rem;
    }

    .auth-subtitle {
        font-size: 0.85rem;
    }

    .btn-auth {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .btn-social {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .checkbox-label {
        font-size: 0.8rem;
    }

    /* Back arrow responsive */
    .brand-back-link {
        left: -50px;
        width: 38px;
        height: 38px;
    }
}

/* ========================================
   E-COMMERCE NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 10px 0;
    background: var(--card);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo .logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.4);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-text .highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-search {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.nav-search input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.nav-search input:focus {
    border-color: var(--gold);
    background: var(--card);
}

.nav-search input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    padding: 10px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    /* color: var(--text); */
    background: var(--gold-soft);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-mid);
    text-decoration: none;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-icon:hover {
    color: var(--text);
    background: var(--gold-soft);
    border-color: var(--gold);
}

.nav-icon .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--rose);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mobile-menu-btn {
    display: none;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gold-soft);
    border: 1px solid rgba(184, 149, 106, .22);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 25px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text);
}

.gradient-text {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(184, 149, 106, .35);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    background: #A07D55;
    box-shadow: 0 6px 20px rgba(184, 149, 106, .45);
}

.btn-primary-hero:hover i {
    transform: translateX(5px);
}

.btn-primary-hero i {
    transition: transform 0.3s ease;
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-secondary-hero:hover {
    background: var(--gold-soft);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.6;
}

.hero-img-wrapper img {
    position: relative;
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    scale: 1.4;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--gold-soft);
    border: 1px solid rgba(184, 149, 106, .22);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-dim);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */
.categories {
    padding: 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gold-soft);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--gold);
    color: white;
    transform: scale(1.05);
}

.category-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.category-count {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products {
    padding: 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-warm);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}

.wishlist-btn:hover {
    background: white;
    transform: scale(1.08);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
}

.wishlist-btn i {
    font-size: 0.9rem;
    color: var(--rose);
    transition: all var(--transition);
}

.wishlist-btn i.active,
.wishlist-btn i.fas {
    color: var(--rose);
}

.product-badge {
    position: absolute;
    background: var(--gold);
    top: 14px;
    left: 14px;
    padding: 5px 11px;
    font-size: 0.55rem;
    color: white;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 20px;
    z-index: 2;
}

.product-badge.new {
    background: var(--gold-soft);
    color: var(--gold);
    border: 1px solid rgba(184, 149, 106, .22);
}

.product-badge.sale {
    background: var(--rose-soft);
    color: var(--rose);
    border: 1px solid rgba(201, 96, 107, .18);
}

.quick-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .42) 0%, transparent 100%);
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
}

.product-card:hover .quick-actions {
    opacity: 1;
    transform: translateY(0);
}

.quick-view-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .92);
    border: none;
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.quick-view-btn:hover {
    background: white;
}

.add-cart-btn {
    flex: 1;
    height: 36px;
    padding: 0 16px;
    background: var(--gold);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
}

.add-cart-btn:hover {
    background: #A07D55;
    box-shadow: 0 4px 14px rgba(184, 149, 106, .35);
}

.product-info {
    padding: 16px 18px 18px;
}

.product-category {
    font-size: 0.58rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 400;
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.35;
}

.product-name a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.product-name a:hover {
    color: var(--gold);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1.5px;
    margin-bottom: 10px;
}

.product-rating i {
    color: var(--gold);
    font-size: 0.68rem;
}

.product-rating span {
    margin-left: 5px;
    font-size: 0.58rem;
    color: var(--text-dim);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-price {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text);
}

.original-price {
    font-size: 0.65rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.products-footer {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--gold-soft);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

/* ========================================
   PROMOTIONAL BANNER
   ======================================== */
.promo-banner {
    padding: 40px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.promo-content {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

.promo-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.5;
}

.promo-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gold-soft);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 20px;
}

.promo-text h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 15px;
}

.promo-text p {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(184, 149, 106, .35);
}

.btn-promo:hover {
    transform: translateY(-2px);
    background: #A07D55;
    box-shadow: 0 6px 20px rgba(184, 149, 106, .45);
}

.promo-image {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.promo-image img {
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: var(--gold-soft);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: white;
    transform: scale(1.05);
}

.feature-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    overflow: visible;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.testimonial-author h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter {
    padding: 80px 30px;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 60px 40px;
    text-align: center;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.newsletter-content h2 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 15px;
}

.newsletter-content>p {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-bottom: 30px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 10px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 6px;
}

.newsletter-input-wrapper input {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
}

.newsletter-input-wrapper input::placeholder {
    color: var(--text-dim);
}

.newsletter-input-wrapper button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-input-wrapper button:hover {
    transform: scale(1.02);
    background: #A07D55;
    box-shadow: 0 4px 14px rgba(184, 149, 106, .35);
}

.newsletter .success-message,
.newsletter .error-message {
    margin-top: 20px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #3a3833;
    margin-top: 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.brand-column {
    padding-right: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
}

.footer-logo span {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text);
}

.footer-logo .highlight {
    color: var(--gold);
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

.brand-column>p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-mid);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: transparent;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.tiktok:hover {
    background: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%);
    color: white;
}

.social-link.whatsapp:hover {
    background: #25d366;
    color: white;
}

.footer-column h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 500;
    color: white;
    margin-bottom: 25px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--gold);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-mid);
}

.contact-info i {
    width: 20px;
    color: var(--gold);
}

.payment-methods {
    margin-top: 25px;
}

.payment-methods span {
    font-size: 0.8rem;
    color: var(--text-dim);
    display: block;
    margin-bottom: 12px;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 1.4rem;
    color: var(--text-mid);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ========================================
   E-COMMERCE RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .hero {
        padding: 120px 40px 60px;
        gap: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-img-wrapper {
        width: 350px;
        height: 350px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-column {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .nav-search {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 5, 16, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px 20px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 30px 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-img-wrapper {
        width: 300px;
        height: 300px;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .promo-text {
        order: 2;
    }

    .promo-image {
        order: 1;
    }

    .promo-image img {
        width: 100%;
        max-width: 400px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .promo-text h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-column {
        grid-column: span 1;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .newsletter-input-wrapper {
        flex-direction: column;
    }

    .newsletter-input-wrapper input {
        text-align: center;
    }

    .newsletter-input-wrapper button {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .nav-logo .logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-icon {
        width: 38px;
        height: 38px;
    }

    .hero {
        padding: 100px 20px 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-img-wrapper {
        width: 250px;
        height: 250px;
    }

    .categories,
    .products,
    .features,
    .testimonials {
        padding: 60px 20px;
    }

    .product-image {
        height: 220px;
    }

    .newsletter-content {
        padding: 40px 25px;
    }

    .newsletter-content h2 {
        font-size: 1.6rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PAGE HEADERS
   ======================================== */
.page-header {
    padding: 140px 30px 60px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header-compact {
    padding: 120px 30px 30px;
}

.page-header-content h1 {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 10px;
}

.page-header-content p {
    font-size: 0.95rem;
    color: var(--text-mid);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.breadcrumb a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb i {
    font-size: 0.6rem;
    color: var(--text-dim);
}

.breadcrumb span {
    color: var(--text);
}

/* ========================================
   SHOP PAGE
   ======================================== */
.shop-section {
    padding: 0 30px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.shop-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar Filters */
.shop-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 25px;
}

.filter-title i {
    margin-right: 8px;
    color: var(--gold);
}

.clear-filters {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 0.75rem;
    cursor: pointer;
    text-decoration: none;
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-group h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-mid);
    cursor: pointer;
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.filter-checkbox .count {
    color: var(--text-dim);
    font-size: 0.75rem;
}

.filter-checkbox .stars {
    color: #fbbf24;
}

/* Price Range */
.price-range input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--glass-border);
    border-radius: 3px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.price-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Color Options */
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color);
    border: 2px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.color-option:hover,
.color-option.selected,
.color-option:has(input:checked) {
    transform: scale(1.15);
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(184, 149, 106, .3);
}

.color-option input {
    display: none;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.results-count {
    font-size: 0.85rem;
    color: var(--text-mid);
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-select {
    padding: 10px 15px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
}

.sort-select option {
    background: white;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-dim);
    cursor: pointer;
    transition: var(--transition);
}

.view-btn:hover,
.view-btn.active {
    color: var(--gold);
    border-color: var(--gold);
}

.filter-toggle-btn {
    display: none;
    padding: 10px 20px;
    background: var(--gold);
    border: none;
    border-radius: 30px;
    color: white;
    font-family: var(--font-body);
    cursor: pointer;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.page-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-mid);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.page-btn:hover:not(:disabled),
.page-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-dots {
    color: var(--text-muted);
}

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.product-detail {
    padding: 0 30px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}

.gallery-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-nav.prev {
    left: 15px;
}

.gallery-nav.next {
    right: 15px;
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    background: none;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb:hover,
.thumb.active {
    border-color: var(--gold);
}

/* Product Info Detail */
.product-info-detail {
    padding: 20px 0;
}

.product-category-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold-soft);
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.product-title {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-rating-detail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.product-rating-detail .stars {
    color: #fbbf24;
}

.rating-count {
    color: var(--text-mid);
    font-size: 0.85rem;
}

.stock {
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 20px;
}

.stock.in-stock {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-price-detail .current {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text);
}

.product-price-detail .original {
    font-size: 1.1rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.product-price-detail .discount {
    padding: 5px 12px;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Product Options */
.product-option {
    margin-bottom: 25px;
}

.product-option label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-btn {
    padding: 12px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-mid);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.size-btn:hover,
.size-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
}

.qty-btn {
    width: 42px;
    height: 42px;
    background: white;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:first-child {
    border-radius: 8px 0 0 8px;
}

.qty-btn:last-child {
    border-radius: 0 8px 8px 0;
}

.qty-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.quantity-selector input {
    width: 50px;
    height: 42px;
    background: white;
    border: 1px solid var(--border);
    border-left: none;
    border-right: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-align: center;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.btn-add-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gold);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    background: #A07D55;
    box-shadow: 0 6px 20px rgba(184, 149, 106, .4);
}

.btn-buy-now {
    flex: 1;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.btn-buy-now:hover {
    background: var(--gold-soft);
    border-color: var(--gold);
}

.btn-wishlist-large {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-mid);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-wishlist-large:hover {
    color: #ef4444;
    border-color: #ef4444;
}

.btn-wishlist-large .fas {
    color: #ef4444;
}

/* Product Features */
.product-features {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-warm);
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.product-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-mid);
}

.product-features .feature i {
    color: var(--gold);
}

/* Accordion */
.product-accordion {
    border-top: 1px solid var(--border);
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--text-dim);
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
    padding-bottom: 18px;
}

.accordion-content ul {
    list-style: none;
}

.accordion-content li {
    padding: 8px 0;
    color: var(--text-mid);
    font-size: 0.9rem;
}

.accordion-content p {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Related Products */
.related-products {
    padding: 60px 30px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.related-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* ========================================
   CART PAGE
   ======================================== */
.cart-section {
    padding: 0 30px 80px;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
    opacity: 1 !important;
    transform: none !important;
}

.cart-items {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 20px;
    padding: 20px 25px;
    background: var(--bg-warm);
    border-bottom: 1px solid var(--border);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 20px;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--border);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-product-info h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-product-info h3 a {
    color: var(--text);
    text-decoration: none;
}

.cart-product-info p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.cart-price,
.cart-total {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.cart-quantity {
    display: flex;
    align-items: center;
}

.cart-quantity .qty-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
}

.cart-quantity input {
    width: 45px;
    height: 35px;
    font-size: 0.9rem;
}

.cart-remove {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.08);
    border: none;
    border-radius: 8px;
    color: #ef4444;
    cursor: pointer;
    transition: var(--transition);
}

.cart-remove:hover {
    background: #ef4444;
    color: white;
}

.cart-actions-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
}

.btn-continue,
.btn-clear-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-continue:hover,
.btn-clear-cart:hover {
    background: var(--gold-soft);
    border-color: var(--gold);
    color: var(--text);
}

/* Cart Summary */
.summary-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow);
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.summary-card h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.9rem;
    color: var(--text-mid);
}

.summary-row .free {
    color: #22c55e;
    font-weight: 600;
}

.summary-row.discount span:last-child {
    color: #22c55e;
}

.summary-row.total {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    padding-top: 15px;
}

.summary-divider {
    height: 1px;
    background: var(--border);
    margin: 10px 0;
}

.coupon-form {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.coupon-form input {
    flex: 1;
    padding: 12px 15px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
}

.coupon-form button {
    padding: 12px 20px;
    background: var(--gold-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.coupon-form button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.btn-checkout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: var(--gold);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 15px;
    text-decoration: none;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    background: #A07D55;
    box-shadow: 0 6px 20px rgba(184, 149, 106, .4);
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.secure-checkout i {
    color: #22c55e;
}

.payment-methods-cart {
    text-align: center;
}

.payment-methods-cart span {
    font-size: 0.75rem;
    color: var(--text-dim);
    display: block;
    margin-bottom: 10px;
}

.payment-methods-cart .payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.payment-methods-cart .payment-icons i {
    font-size: 1.3rem;
    color: var(--text-mid);
}

/* ========================================
   WISHLIST PAGE
   ======================================== */
.wishlist-section {
    padding: 0 30px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.wishlist-container {
    max-width: 1000px;
    margin: 0 auto;
}

.wishlist-grid {
    grid-template-columns: repeat(3, 1fr);
}

.wishlist-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.btn-add-all-cart {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: var(--gold);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-all-cart:hover {
    transform: translateY(-2px);
    background: #A07D55;
    box-shadow: 0 6px 20px rgba(184, 149, 106, .4);
}

.wishlist-btn.active i {
    color: #ef4444;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-section {
    padding: 0 30px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(184, 149, 106, .4);
}

.about-image-badge .years {
    font-size: 0.7rem;
    opacity: 0.8;
}

.about-image-badge .number {
    font-size: 1.5rem;
    font-weight: 600;
}

.about-text h2 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-signature {
    margin-top: 25px;
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
}

/* Values Grid */
.about-values {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gold-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}

.value-card h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.stat-card {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
}

.stat-card .stat-number {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--gold);
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-top: 5px;
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-cta h2 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-bottom: 30px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    padding: 0 30px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-section h2 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text);
    margin: 15px 0;
}

.contact-info-section>p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 30px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.contact-card:hover {
    box-shadow: var(--shadow-hover);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
}

.contact-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
}

.contact-card p {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 3px;
}

.contact-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-hours {
    padding: 20px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.contact-hours h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 15px;
}

.contact-hours h3 i {
    color: var(--gold);
}

.contact-hours p {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-bottom: 8px;
}

/* Contact Form */
.contact-form-card {
    padding: 40px;
}

.contact-form-card h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-select {
    width: 100%;
    padding: 16px 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.form-select option {
    background: white;
}

.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    resize: vertical;
}

.contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
}

/* FAQ Section */
.faq-section {
    padding: 60px 30px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-align: left;
    cursor: pointer;
}

.faq-question i {
    color: var(--text-dim);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   NEW PAGES RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .shop-container {
        grid-template-columns: 250px 1fr;
    }

    .product-detail-container {
        gap: 30px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cart-container {
        grid-template-columns: 1fr 320px;
    }
}

@media (max-width: 992px) {
    .shop-container {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-darker);
        z-index: 1001;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }

    .shop-sidebar.active {
        display: block;
    }

    .filter-toggle-btn {
        display: flex;
    }

    .product-detail-container {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }

    .cart-container {
        grid-template-columns: 1fr;
    }

    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cart-product {
        flex-direction: column;
        text-align: center;
    }

    .cart-price::before {
        content: 'Price: ';
        color: var(--text-muted);
    }

    .cart-total::before {
        content: 'Total: ';
        color: var(--text-muted);
    }

    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image-badge {
        right: 20px;
    }

    .values-grid,
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2rem;
    }

    .product-title {
        font-size: 1.6rem;
    }

    .gallery-main img {
        height: 350px;
    }

    .product-features {
        flex-direction: column;
        gap: 15px;
    }

    .product-actions {
        flex-wrap: wrap;
    }

    .btn-add-cart,
    .btn-buy-now {
        flex: 1 1 100%;
    }

    .size-options {
        flex-wrap: wrap;
    }

    .wishlist-grid {
        grid-template-columns: 1fr;
    }

    .wishlist-actions {
        flex-direction: column;
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 120px 20px 40px;
    }

    .shop-section,
    .product-detail,
    .cart-section,
    .wishlist-section,
    .about-section,
    .contact-section {
        padding: 0 15px 60px;
    }

    .gallery-thumbs {
        flex-wrap: wrap;
    }

    .thumb {
        width: 60px;
        height: 60px;
    }

    .values-grid,
    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 25px;
    }
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
    padding: 60px 30px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.reviews-container {
    margin: 0 auto;
}

.reviews-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 40px;
}

.rating-overview {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.overall-rating .stars {
    color: #fbbf24;
    margin: 10px 0 5px;
}

.overall-rating .rating-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.rating-bar-row .bar {
    width: 150px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-row .bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 4px;
}

.btn-write-review {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-write-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.review-card {
    padding: 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.review-card:hover {
    border-color: var(--primary);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.helpful-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.helpful-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.btn-load-more {
    display: block;
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-bottom: 50px;
}

.btn-load-more:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.review-form-section {
    padding: 35px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.review-form-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.star-rating-input label:hover,
.star-rating-input label:hover~label,
.star-rating-input input:checked~label {
    color: #fbbf24;
}

.star-rating-input label i {
    transition: transform 0.2s ease;
}

.star-rating-input label:hover i {
    transform: scale(1.2);
}

.review-form textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    resize: vertical;
}

.review-form textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.btn-submit-review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: fit-content;
}

.btn-submit-review:hover {
    transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2);
}

/* Reviews Responsive */
@media (max-width: 768px) {
    .reviews-summary {
        flex-direction: column;
        text-align: center;
    }

    .rating-overview {
        flex-direction: column;
        align-items: center;
    }

    .review-header {
        flex-direction: column;
        gap: 10px;
    }

    .review-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 40px 15px;
    }

    .reviews-summary,
    .review-card,
    .review-form-section {
        padding: 20px;
    }

    .rating-bar-row .bar {
        width: 100px;
    }
}

/* ========================================
   PROFILE PAGE STYLES
   ======================================== */

/* Profile Section Layout */
.profile-section {
    padding: 120px 30px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.profile-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

/* Profile Sidebar */
.profile-sidebar {
    position: sticky;
    top: 100px;
}

.profile-card {
    padding: 30px;
    text-align: center;
}

.profile-avatar-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--glass-border);
}

.avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.avatar-edit-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.avatar-edit-btn:hover {
    transform: scale(1.1);
}

.user-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.user-email {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.user-member-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    color: #fbbf24;
    font-size: 0.8rem;
    font-weight: 600;
}

.user-member-badge i {
    font-size: 0.75rem;
}

/* Profile Navigation */
.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.profile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
    position: relative;
}

.profile-nav-item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.profile-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.profile-nav-item.active {
    background: var(--gold-soft);
    color: var(--gold);
    border: 1px solid rgba(184, 149, 106, 0.2);
}

.nav-badge {
    margin-left: auto;
    padding: 2px 8px;
    background: var(--gold);
    border-radius: 10px;
    font-size: 0.75rem;
    color: white;
}

/* Logout Button */
.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    color: #ef4444;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* Profile Main Content */
.profile-main {
    min-height: 600px;
}

/* Profile Tabs */
.profile-tab {
    display: none;
    animation: fadeIn 0.3s ease;
}

.profile-tab.active {
    display: block;
}

.tab-header {
    margin-bottom: 30px;
}

.tab-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tab-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.stat-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.4rem;
}

.stat-icon.orders {
    background: var(--gold-soft);
    color: var(--gold);
}

.stat-icon.wishlist {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.stat-icon.points {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    color: #fbbf24;
}

.stat-icon.reviews {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Recent Orders in Dashboard */
.recent-orders {
    padding: 25px;
}

.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header-inline h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.section-header-inline h3 i {
    color: var(--primary-light);
}

.view-all-link {
    font-size: 0.9rem;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: var(--secondary);
}

/* Orders List */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.order-item:hover {
    border-color: var(--primary);
}

.order-image {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-details {
    flex: 1;
}

.order-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.order-id {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.order-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.order-status.delivered {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.order-status.shipped {
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
}

.order-status.processing {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.order-status.cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.order-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 80px;
    text-align: right;
}

/* Order Filters */
.order-filters {
    display: flex;
    gap: 10px;
    padding: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--text);
}

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

/* Order Cards */
.orders-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    padding: 0;
    overflow: hidden;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--glass-border);
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.order-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.order-card-body {
    padding: 20px 25px;
}

.order-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-product img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
}

.product-info {
    flex: 1;
}

.product-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.product-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.order-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
}

.order-total span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-right: 8px;
}

.order-total strong {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.order-actions {
    display: flex;
    gap: 10px;
}

.btn-order-action {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-order-action.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.btn-order-action.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-order-action.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
}

.btn-order-action.btn-primary:hover {
    transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2);
}

.btn-order-action.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.btn-order-action.btn-danger:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* Wishlist Grid */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.wishlist-card {
    padding: 0;
    overflow: hidden;
}

.wishlist-image {
    position: relative;
    height: 180px;
}

.wishlist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.remove-wishlist-btn:hover {
    background: #ef4444;
}

.wishlist-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.wishlist-badge.sale {
    background: #ef4444;
    color: white;
}

.wishlist-info {
    padding: 20px;
}

.wishlist-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.wishlist-category {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.wishlist-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.wishlist-price .current {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.wishlist-price .original {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.btn-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2);
}

/* Addresses Grid */
.addresses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.address-card {
    padding: 25px;
    position: relative;
}

.address-card.default {
    border-color: var(--gold);
}

.address-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 600;
}

.address-type {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--gold);
    font-weight: 500;
}

.address-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.address-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.address-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary) !important;
}

.address-phone i {
    color: var(--gold);
}

.address-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}

.btn-address {
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-address:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-address.delete:hover {
    border-color: #ef4444;
    color: #ef4444;
}

.btn-address.set-default:hover {
    border-color: #22c55e;
    color: #22c55e;
}

/* Add Address Card */
.add-address-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    cursor: pointer;
    border: 2px dashed var(--glass-border);
    transition: var(--transition-smooth);
}

.add-address-card:hover {
    border-color: var(--gold);
    background: var(--gold-soft);
}

.add-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-soft);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.add-address-card span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
    transform: translateY(-20px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--glass-border);
}

.modal-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-header h3 i {
    color: var(--gold);
}

.modal-close {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.address-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.address-type-selector {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.type-option {
    flex: 1;
    min-width: 100px;
}

.type-option input {
    display: none;
}

.type-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.type-option input:checked+span {
    background: var(--gold-soft);
    border-color: var(--gold);
    color: var(--gold);
}

/* Settings Sections */
.settings-sections {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.settings-card {
    padding: 0;
    overflow: hidden;
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--glass-border);
}

.settings-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.settings-title i {
    font-size: 1.2rem;
    color: var(--primary-light);
}

.settings-title h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.edit-toggle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.edit-toggle-btn:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.edit-toggle-btn.editing {
    border-color: #ef4444;
    color: #ef4444;
}

.settings-form {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.settings-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 10px;
}

.form-actions.hidden {
    display: none;
}

.form-actions .btn-auth {
    width: auto;
}

/* Notification Options */
.notification-options {
    padding: 10px 28px 28px;
}

.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--glass-border);
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.notification-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    display: none;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    border-radius: 26px;
    border: 1px solid var(--glass-border);
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--text-secondary);
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.toggle-switch input:checked+.toggle-slider {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
}

.toggle-switch input:checked+.toggle-slider::before {
    transform: translateX(24px);
    background: white;
}

/* Danger Zone */
.danger-zone .settings-header {
    background: rgba(239, 68, 68, 0.05);
}

.danger-zone .settings-title i {
    color: #ef4444;
}

.danger-actions {
    padding: 28px;
}

.danger-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.danger-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.danger-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.btn-danger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #ef4444;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-danger:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

/* Profile Page Responsive */
@media (max-width: 1200px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .wishlist-grid,
    .addresses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .profile-container {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        position: static;
    }

    .profile-card {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        align-items: center;
        text-align: left;
    }

    .profile-avatar-section {
        flex: 1;
        min-width: 200px;
        display: flex;
        align-items: center;
        gap: 20px;
        border-bottom: none;
        border-right: 1px solid var(--glass-border);
        padding-right: 20px;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .avatar-wrapper {
        margin: 0;
    }

    .profile-nav {
        flex-direction: row;
        flex-wrap: wrap;
        flex: 2;
        margin-bottom: 0;
    }

    .profile-nav-item {
        flex: 1;
        min-width: 130px;
        justify-content: center;
    }

    .profile-nav-item span:not(.nav-badge) {
        display: none;
    }

    .logout-btn {
        width: auto;
        flex: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .profile-section {
        padding: 100px 20px 40px;
    }

    .profile-card {
        flex-direction: column;
        text-align: center;
    }

    .profile-avatar-section {
        flex-direction: column;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .profile-nav {
        width: 100%;
    }

    .profile-nav-item {
        justify-content: center;
    }

    .profile-nav-item span:not(.nav-badge) {
        display: inline;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .order-item {
        flex-wrap: wrap;
    }

    .order-status {
        order: 4;
        flex: 1;
        min-width: 100%;
        margin-top: 10px;
        justify-content: center;
    }

    .order-price {
        text-align: center;
    }

    .order-card-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .order-actions {
        width: 100%;
        justify-content: center;
    }

    .wishlist-grid,
    .addresses-grid {
        grid-template-columns: 1fr;
    }

    .danger-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .notification-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .order-filters {
        justify-content: center;
    }

    .filter-btn {
        flex: 1;
        min-width: 100px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tab-header h2 {
        font-size: 1.4rem;
    }

    .stat-card {
        padding: 18px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .stat-value {
        font-size: 1.3rem;
    }

    .order-card-header,
    .order-card-body,
    .order-card-footer {
        padding: 15px;
    }

    .settings-header,
    .settings-form,
    .notification-options,
    .danger-actions {
        padding: 18px;
    }

    .modal {
        width: 95%;
    }

    .address-form {
        padding: 20px;
    }

    .type-option span {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

/* Fadeout Animation */
@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* ========================================
   PAGINATION - MODERN GLASSMORPHISM
   ======================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination nav {
    display: flex;
    justify-content: center;
}

.pagination nav>div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination nav>div:first-child {
    display: none;
}

.pagination nav>div:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.pagination nav>div:last-child>span,
.pagination nav>div:last-child>a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination nav>div:last-child>a:hover {
      background: rgba(255, 255, 255, 0.03);
    border-color: var(--primary);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2);
}

/* Current/Active page */
.pagination nav>div:last-child>span[aria-current="page"],
.pagination nav>div:last-child>span[aria-current="page"] span,
.pagination nav>div:last-child>span.bg-blue-50,
.pagination nav>div:last-child>.active,
.pagination nav>div:last-child span span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    border-color: var(--primary) !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2);
}

/* Disabled state */
.pagination nav>div:last-child>span[aria-disabled="true"],
.pagination nav>div:last-child>span.cursor-default {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    background: var(--glass-bg) !important;
}

/* Previous/Next arrows */
.pagination nav>div:last-child>a[rel="prev"],
.pagination nav>div:last-child>a[rel="next"] {
    padding: 0 14px;
}

.pagination nav>div:last-child>a[rel="prev"]:hover,
.pagination nav>div:last-child>a[rel="next"]:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
    color: white;
}

/* Simple Laravel pagination (without Tailwind) */
.pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination ul li {
    list-style: none;
}

.pagination ul li a,
.pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination ul li a:hover {
      background: rgba(255, 255, 255, 0.03);
    border-color: var(--primary);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2);
}

.pagination ul li.active span,
.pagination ul li.active a {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2);
}

.pagination ul li.disabled span,
.pagination ul li.disabled a {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Mobile pagination */
@media (max-width: 640px) {

    .pagination nav>div:last-child>span,
    .pagination nav>div:last-child>a,
    .pagination ul li a,
    .pagination ul li span {
        min-width: 38px;
        height: 38px;
        padding: 0 12px;
        font-size: 0.85rem;
        border-radius: 10px;
    }
}

/* ========================================
   SUBCATEGORY FILTER STYLES
   ======================================== */
.subcategory-filters {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subcategory-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.subcategory-parent {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    margin-bottom: 5px;
}

.subcategory-item {
    padding-left: 12px;
    position: relative;
}

.subcategory-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 12px;
    background: rgba(168, 85, 247, 0.3);
    border-radius: 2px;
}

.subcategory-item:hover::before {
    background: var(--primary);
}

.subcategory-item input:checked+span,
.subcategory-item input:checked~span {
    color: var(--primary-light);
}

/* Filter checkbox base styles (if not already defined) */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.filter-checkbox:hover {
    background: var(--gold-soft);
    color: var(--text);
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.filter-checkbox .count {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 10px;
}