@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --primary: #D4AF37;        /* Luxe Gold */
    --secondary: #B8860B;      /* Dark Gold */
    --dark: #050A18;           /* Elite Navy */
    --light: #F8FAFC;
    --accent: #E71D36;
    --glass: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 215, 0, 0.1);
    --glow: rgba(212, 175, 55, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Navigasyon --- */
/* --- Marketplace Header --- */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--dark);
    border-bottom: 1px solid var(--glass-border);
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10%;
    gap: 2rem;
}

.search-container {
    flex: 1;
    max-width: 700px;
    position: relative;
    display: flex;
}

#global-search {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    font-family: 'Outfit';
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

#global-search:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 15px var(--glow);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
}

.user-actions {
    display: flex;
    gap: 2rem;
}

.action-item {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.action-item:hover {
    color: var(--primary);
}

.category-nav {
    background: rgba(255,255,255,0.02);
    padding: 0.5rem 10%;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.cat-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    overflow-x: auto;
}

.cat-list li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    transition: 0.3s;
}

.cat-list li a:hover, .cat-list li a.active {
    color: var(--primary);
}

/* --- Category Icons Header (Trendyol Style) --- */
.category-icons-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 8rem 10% 2rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.cat-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
    min-width: 80px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    transition: 0.3s;
}

.cat-icon-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #cbd5e1;
}

.cat-icon-item:hover .icon-circle {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--glow);
}

.cat-icon-item:hover span {
    color: var(--primary);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-logo img {
    height: 40px;
    filter: drop-shadow(0 0 10px var(--glow));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}

/* --- Banner Slider --- */
#banner-slider {
    padding: 2rem 10%;
    position: relative;
}

.slider-container {
    background: linear-gradient(135deg, #111827 0%, #050a18 100%);
    border-radius: 30px;
    height: 450px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

.slide {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 6%;
}

.slide .hero-content {
    flex: 1;
}

.slide .hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.slide .hero-visual img {
    height: 380px;
    object-fit: contain;
    animation: float 6s infinite ease-in-out;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
}

.status-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: rgba(46, 196, 182, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
}

h1 span {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

p.tagline {
    font-size: 1.25rem;
    color: #94a3b8;
    margin: 2rem 0 3.5rem;
    max-width: 550px;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1.2rem 2.8rem;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #000;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    font-weight: 800;
}

.btn-primary:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(46, 196, 182, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.hero-visual {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-visual img {
    width: 120%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 80px rgba(0,0,0,0.5));
    animation: float 6s infinite ease-in-out;
}

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

/* --- Features Section --- */
section {
    padding: 10rem 10%;
}

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

.section-title h2 {
    font-size: 3.5rem;
    letter-spacing: -2px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--glass);
    padding: 3.5rem;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 40px rgba(212, 175, 55, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.8;
}

/* --- Grid Section (Products) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    color: #000;
}

.product-img {
    height: 300px;
    background: #f1f5f9;
}

/* --- Contact Form --- */
.contact-form input, .contact-form textarea {
    transition: all 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary) !important;
    background: rgba(255,255,255,0.08) !important;
    box-shadow: 0 0 20px rgba(46, 196, 182, 0.2);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* --- Footer --- */
footer {
    padding: 6rem 10% 3rem;
    background: #060b18;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 2rem;
    transition: 0.3s;
}

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

@media (max-width: 1024px) {
    header {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding-top: 10rem;
        padding-bottom: 5rem;
    }
    
    .hero-content {
        margin-bottom: 5rem;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .hero-visual img {
        width: 100%;
    }
}

/* --- Stats Section --- */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    background: var(--glass);
    padding: 5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
}

.stat-item h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    color: #94a3b8;
    line-height: 1.8;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-answer {
    padding: 0.5rem 2rem 1.5rem;
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
    color: var(--primary);
}

/* --- Newsletter Section --- */
#newsletter {
    text-align: center;
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(5, 10, 24, 0.1) 100%);
    padding: 6rem 10%;
    border-radius: 80px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.05) 0%, transparent 70%);
}

.newsletter-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-card p {
    color: #94a3b8;
    margin-bottom: 3rem;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 1rem;
    background: rgba(255,255,255,0.05);
    padding: 0.8rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    padding: 0 2rem;
    font-family: 'Outfit';
    font-size: 1rem;
}

.newsletter-form .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        border-radius: 30px;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .newsletter-form input {
        background: var(--glass);
        padding: 1.2rem 2rem;
        border-radius: 50px;
        margin-bottom: 1rem;
        border: 1px solid var(--glass-border);
    }
}

/* --- Elite Upgrade Elements --- */
.elite-badge-float {
    position: absolute;
    top: 10%;
    left: -10%;
    background: rgba(5, 10, 24, 0.9);
    padding: 1.5rem 2.5rem;
    border-radius: 100px;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(20px);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px var(--glow);
    animation: float 4s infinite ease-in-out;
}

.elite-badge-float .seal-img {
    height: 60px;
}

.elite-badge-float span {
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--primary);
}

/* --- Prestige Section --- */
#prestige {
    padding: 10rem 10%;
}

.prestige-content {
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 100%);
    border-radius: 60px;
    padding: 6rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.prestige-row {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.prestige-text {
    flex: 1.2;
}

.prestige-text h2 {
    font-size: 4rem;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prestige-list {
    list-style: none;
    margin: 3rem 0;
}

.prestige-list li {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.prestige-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.marble-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(200,200,200,0.7) 100%),
                url('assets/marble.png') center/cover;
    background-blend-mode: overlay;
    width: 380px;
    height: 520px;
    border-radius: 40px;
    padding: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8), inset 0 0 50px rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.4);
    color: #050A18;
}

.luxe-seal-img {
    width: 200px;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: luxe-bounce 4s infinite ease-in-out;
}

@keyframes luxe-bounce {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-15px); }
}

/* --- Elite Vitrin --- */
.elite-card {
    position: relative;
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.elite-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

@media (max-width: 1024px) {
    .prestige-row {
        flex-direction: column;
        text-align: center;
    }
    
    .prestige-content {
        padding: 4rem 2rem;
    }
    
    .elite-badge-float {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 3rem;
        justify-content: center;
    }
    
    .prestige-text h2 {
        font-size: 3rem;
    }
}

/* --- Luxury Product Showcase --- */
.luxury-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.elite-product-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-radius: 45px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    backdrop-filter: blur(15px);
}

.elite-product-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 30px var(--glow);
}

.product-image-container {
    height: 350px;
    overflow: hidden;
    position: relative;
    background: #0a1124;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.elite-product-card:hover .product-image-container img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.product-info {
    padding: 2.5rem;
    text-align: left;
}

.product-category {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.btn-buy {
    background: var(--glass);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.3s;
}

.btn-buy:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--glow);
}

/* --- Merchant Dashboard Preview --- */
.dashboard-preview {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(5, 10, 24, 0.95) 100%);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    padding: 4rem;
    margin-top: 6rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.dashboard-visual {
    flex: 1.5;
    background: rgba(0,0,0,0.3);
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.dash-card {
    background: var(--glass);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.dash-card h4 {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.dash-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.dash-chart-full {
    grid-column: span 2;
    height: 180px;
    background: linear-gradient(0deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 10px;
}

.chart-bar {
    flex: 1;
    background: var(--primary);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: height 1s ease;
}

.dashboard-text {
    flex: 1;
}

.dashboard-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.dashboard-text p {
    color: #94a3b8;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
    .dashboard-preview {
        flex-direction: column;
        padding: 2rem;
    }
}

/* --- Flash Deals (Günün Fırsatları) --- */
#flash-deals {
    padding: 4rem 10%;
    background: #fff;
    color: #000;
}

.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.deals-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.deals-title h2 {
    font-size: 2rem;
    font-weight: 800;
}

.timer {
    display: flex;
    gap: 8px;
    font-weight: 700;
    color: var(--primary);
    background: #000;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.timer span {
    color: #fff;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.deal-card {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.5rem;
    transition: 0.3s;
    text-align: center;
}

.deal-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.deal-img {
    height: 150px;
    margin-bottom: 1rem;
}

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

.price-discount {
    background: #ef4444;
    color: #fff;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-block;
}

.deal-name {
    font-weight: 600;
    margin: 0.5rem 0;
    color: #1e293b;
    font-size: 0.9rem;
}

.price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.8rem;
}

.price-new {
    font-size: 1.3rem;
    font-weight: 800;
    color: #000;
}

/* --- Top Categories Grid --- */
#top-categories {
    padding: 6rem 10%;
}

.cat-grid-luxury {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cat-banner-card {
    height: 180px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    transition: 0.5s;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.cat-banner-card:hover {
    transform: scale(1.05);
}

.cat-banner-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.cat-banner-card span {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

/* --- Marketplace Footer --- */
footer {
    background: #060b18;
    color: #fff;
    padding: 6rem 10% 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 4rem;
}

.footer-logo {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    margin-bottom: 2rem;
    color: #fff;
    font-size: 1.1rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #475569;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

/* --- Popular Brands Slider --- */
#popular-brands {
    padding: 6rem 10% 4rem;
    background: #f8fafc;
}

.brands-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
}

.brands-slider::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.brand-item {
    min-width: 15rem;
    height: 6rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #94a3b8;
    font-weight: 800;
    font-size: 1.2rem;
    transition: 0.3s;
    flex-shrink: 0;
}

.brand-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* --- Mega Menu --- */
.has-mega {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 10%;
    right: 10%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-top: none;
    padding: 3rem;
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    z-index: 999;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    animation: slideDown 0.4s ease-out;
}

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

.has-mega:hover .mega-menu {
    display: grid;
}

.mega-col h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: 0.3s;
}

.mega-col a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* --- Mobile Bottom Nav --- */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 0.8rem 1rem;
    justify-content: space-around;
    align-items: center;
    z-index: 1002;
}

.mobile-bottom-nav a {
    text-decoration: none;
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 600;
}

.mobile-bottom-nav a.active {
    color: var(--primary);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    .main-header .top-nav {
        padding: 0.8rem 5%;
    }
    .user-actions {
        display: none;
    }
}

/* --- Auth Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 24, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

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

.auth-card {
    background: rgba(15, 23, 42, 0.95);
    width: 100%;
    max-width: 450px;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    padding: 3rem;
    position: relative;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 2rem;
    cursor: pointer;
}

.auth-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    background: rgba(255,255,255,0.05);
    padding: 0.5rem;
    border-radius: 100px;
}

.tab-btn {
    flex: 1;
    padding: 0.8rem;
    background: none;
    border: none;
    color: #94a3b8;
    font-weight: 700;
    cursor: pointer;
    border-radius: 100px;
    transition: 0.3s;
}

.tab-btn.active {
    background: var(--primary);
    color: #000;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    color: #cbd5e1;
}

.auth-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    color: white;
    font-family: 'Outfit';
    outline: none;
}

.auth-form input:focus {
    border-color: var(--primary);
}

.w-full { width: 100%; }

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.form-footer a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.social-auth {
    margin-top: 3rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
}

.social-auth p {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.social-btns {
    display: flex;
    gap: 1rem;
}

.social-btn {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
}

.terms {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 1.5rem;
    text-align: center;
}

.terms a { color: var(--primary); text-decoration: none; }

/* --- Utility Classes --- */
.active-flex { display: flex !important; }
.hidden-flex { display: none !important; }

/* --- Profile Dropdown --- */
.profile-dropdown-container {
    position: relative;
}

.profile-dropdown {
    position: absolute;
    top: 130%;
    right: 0;
    width: 220px;
    background: #111827;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1rem;
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 1005;
}

.profile-dropdown-container:hover .profile-dropdown {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.profile-dropdown a {
    display: block;
    padding: 0.8rem 1rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: 0.3s;
}

.profile-dropdown a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--primary);
    transform: translateX(5px);
}

/* --- Mobile Category Drawer --- */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 24, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2100;
    display: none;
    justify-content: flex-start;
}

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

.drawer-content {
    background: #0f172a;
    width: 85%;
    max-width: 350px;
    height: 100%;
    padding: 2rem;
    box-shadow: 20px 0 50px rgba(0,0,0,0.5);
    animation: drawerSlide 0.4s ease-out;
}

@keyframes drawerSlide {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1rem;
}

.drawer-header h3 {
    font-weight: 800;
    color: var(--primary);
}

.close-drawer {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 2rem;
    cursor: pointer;
}

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

.drawer-list li {
    margin-bottom: 0.5rem;
}

.drawer-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.drawer-list a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--primary);
}

/* --- Product Detail Page --- */
.product-detail-page {
    padding: 8rem 10% 4rem;
}

.breadcrumbs {
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.breadcrumbs a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Gallery */
.product-gallery {
    display: flex;
    gap: 1.5rem;
}

.thumb-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumb-list img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.thumb-list img.active {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--glow);
}

.main-image {
    flex: 1;
    background: #fff;
    border-radius: 30px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e2e8f0;
}

.main-image img {
    max-width: 100%;
    height: 500px;
    object-fit: contain;
}

/* Purchase Panel */
.product-purchase-panel {
    padding: 1rem 0;
}

.brand-badge {
    background: var(--dark);
    color: var(--primary);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-purchase-panel h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-rating {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars { color: #f59e0b; font-size: 1.2rem; }
.rating-count { color: #94a3b8; font-size: 0.9rem; }

.price-box {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.2rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.discount-label {
    background: #ef4444;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 800;
}

.variant-selection {
    margin-bottom: 2.5rem;
}

.variant-selection p {
    font-weight: 600;
    margin-bottom: 1rem;
}

.color-options {
    display: flex;
    gap: 1rem;
}

.color-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.action-buttons-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-large {
    flex: 1;
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 15px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: rgba(255,255,255,0.03);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.t-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #cbd5e1;
}

/* Tabs Content */
.product-content {
    margin-top: 6rem;
}

.content-tabs {
    display: flex;
    gap: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 3rem;
}

.content-tabs .tab-btn {
    background: none;
    border: none;
    color: #94a3b8;
    padding: 1rem 0;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
}

.content-tabs .tab-btn.active {
    color: var(--primary);
}

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

.tab-content {
    display: none;
    line-height: 1.8;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.feature-list {
    margin-top: 2rem;
    list-style: none;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary);
    margin-right: 1rem;
}

.specs-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
}

.specs-table td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.specs-table td:first-child {
    font-weight: 700;
    color: #94a3b8;
    width: 40%;
}

.review-item {
    background: rgba(255,255,255,0.02);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.review-header {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
}

/* Sticky Buy Bar */
.sticky-buy-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 1rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-buy-bar.active {
    bottom: 0;
}

.sticky-price p {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.sticky-price span {
    font-size: 0.8rem;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .product-main { grid-template-columns: 1fr; gap: 2rem; }
    .product-gallery { flex-direction: column-reverse; }
    .thumb-list { flex-direction: row; }
    .main-image img { height: 400px; }
    .product-detail-page { padding: 8rem 5% 4rem; }
}

@media (max-width: 768px) {
    .sticky-buy-bar.active {
        bottom: 60px; /* Above mobile bottom nav */
    }
}

/* --- Shopping Cart Page --- */
.cart-page-container {
    padding: 8rem 10% 4rem;
    background: #f8fafc;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.cart-items-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cart-item-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: 0.3s;
}

.cart-item-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.item-img {
    width: 120px;
    height: 120px;
    background: #f8fafc;
    border-radius: 15px;
    padding: 1rem;
}

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

.item-details { flex: 1; }
.item-brand { font-size: 0.7rem; color: var(--primary); font-weight: 800; margin-bottom: 0.5rem; }
.item-name { font-size: 1.1rem; margin-bottom: 0.5rem; color: #1e293b; }
.item-variant { font-size: 0.85rem; color: #64748b; margin-bottom: 1rem; }
.item-features { font-size: 0.8rem; color: #10b981; font-weight: 600; }

.item-quantity {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    color: #475569;
    transition: 0.3s;
}

.qty-btn:hover { color: var(--primary); }
.qty-val { font-weight: 800; color: #000; min-width: 25px; text-align: center; }

.item-price-col { text-align: right; min-width: 150px; }
.item-price { font-size: 1.5rem; font-weight: 800; color: #000; margin-bottom: 1rem; }
.remove-item {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.remove-item:hover { text-decoration: underline; }

/* Cart Summary Sidebar */
.cart-summary-sidebar {
    position: sticky;
    top: 8rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.summary-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.summary-card h3 { margin-bottom: 2rem; font-size: 1.3rem; border-bottom: 1px solid #f1f5f9; padding-bottom: 1rem; }
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    color: #64748b;
    font-weight: 500;
}

.summary-row.total {
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 1rem;
}

.promo-code-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.promo-input {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.promo-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    font-family: 'Outfit';
}

.promo-input button {
    background: #475569;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.secure-info {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
    padding: 0 1rem;
}

/* Empty Cart State */
.empty-cart-state {
    background: #fff;
    padding: 6rem 2rem;
    text-align: center;
    border-radius: 40px;
    border: 1px dashed #cbd5e1;
}

.empty-icon { font-size: 5rem; margin-bottom: 2rem; opacity: 0.3; }
.empty-cart-state h2 { margin-bottom: 1rem; }
.empty-cart-state p { margin-bottom: 2.5rem; color: #64748b; }

@media (max-width: 1024px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary-sidebar { position: static; }
}

@media (max-width: 640px) {
    .cart-item-card { flex-direction: column; text-align: center; padding: 1.5rem; }
    .item-price-col { text-align: center; min-width: 0; }
}

/* --- Checkout Page --- */
.checkout-header {
    background: #fff;
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.checkout-steps {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
}

.step.active { color: var(--primary); }
.step span {
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.step.active span { background: var(--primary); color: #000; }

.step-line { width: 40px; height: 1px; background: #e2e8f0; }

.secure-ssl { font-size: 0.8rem; color: #10b981; font-weight: 600; }

.checkout-page-container { padding: 4rem 10%; background: #f8fafc; min-height: 100vh; }
.checkout-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }

.checkout-card { background: #fff; padding: 3rem; border-radius: 20px; border: 1px solid #e2e8f0; }
.checkout-card h3 { margin-bottom: 2rem; font-size: 1.4rem; border-bottom: 1px solid #f1f5f9; padding-bottom: 1rem; }

.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.8rem; color: #475569; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Outfit';
    outline: none;
    transition: 0.3s;
}
.form-group input:focus { border-color: var(--primary); box-shadow: 0 0 10px rgba(212, 175, 55, 0.1); }

/* Payment Styles */
.payment-tabs { display: flex; gap: 1rem; margin-bottom: 2.5rem; }
.payment-tabs button {
    flex: 1; padding: 1rem; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; cursor: pointer; font-weight: 700; color: #64748b;
}
.payment-tabs button.active { background: #fff; border-color: var(--primary); color: #000; }

.card-preview {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    width: 100%;
    max-width: 320px;
    height: 180px;
    border-radius: 20px;
    margin: 0 auto 3rem;
    padding: 2rem;
    color: #fff;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.chip {
    width: 45px; height: 35px; background: linear-gradient(135deg, #d4af37 0%, #ae8625 100%); border-radius: 5px; margin-bottom: 1.5rem;
}

.card-number-v { font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 1.5rem; }
.card-holder-v { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

.checkout-summary-sidebar { position: sticky; top: 8rem; }

.summary-item-list .s-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.s-item img { width: 60px; height: 60px; background: #f8fafc; border-radius: 10px; padding: 5px; }
.s-info p { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.s-info span { font-size: 0.75rem; color: #94a3b8; }
.s-price { flex: 1; text-align: right; font-weight: 700; color: #000; }

.terms-text { font-size: 0.8rem; color: #64748b; margin: 2rem 0; text-align: center; }
.terms-text a { color: var(--primary); text-decoration: none; font-weight: 600; }

/* Success Modal */
.success-card { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.success-icon { font-size: 4rem; background: #dcfce7; color: #22c55e; width: 100px; height: 100px; border-radius: 50%; display: flex; justify-content: center; align-items: center; }
.success-card h2 { color: #000; }
.success-card p { color: #64748b; font-size: 0.95rem; }

@media (max-width: 1024px) {
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-summary-sidebar { position: static; }
}

/* --- Category Listing Page --- */
.listing-page-container {
    padding: 8rem 10% 4rem;
    background: #f8fafc;
}

.listing-header-info {
    margin-bottom: 3rem;
}

.listing-header-info h1 {
    font-size: 2.5rem;
    margin-top: 1rem;
    color: #1e293b;
}

.listing-header-info p {
    color: #64748b;
    font-size: 1rem;
}

.listing-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Sidebar Filters */
.filter-sidebar {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 8rem;
}

.filter-group {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1.5rem;
}

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

.filter-group h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

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

.filter-list a {
    text-decoration: none;
    color: #64748b;
    font-size: 0.9rem;
    transition: 0.3s;
}

.filter-list a.active {
    color: var(--primary);
    font-weight: 700;
}

.filter-check-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.filter-check-group label {
    font-size: 0.9rem;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-check-group input[type="checkbox"],
.filter-check-group input[type="radio"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.price-filter-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-filter-inputs input {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    font-size: 0.85rem;
}

.btn-apply-filter {
    background: #1e293b;
    color: #fff;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
}

/* Sorting & Grid */
.sorting-bar {
    background: #fff;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-options label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

.sort-options select {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    font-family: 'Outfit';
}

.view-toggles button {
    background: none;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    margin-left: 5px;
}

.view-toggles button.active {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.products-grid-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.listing-card {
    background: #fff;
}

/* Pagination */
.pagination-listing {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.page-numbers {
    display: flex;
    gap: 10px;
}

.page-numbers span {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
}

.page-numbers span.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.pagination-listing button {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

/* Mobile Filter FAB */
.mobile-filter-fab {
    display: none;
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.mobile-filter-fab button {
    background: #1e293b;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    cursor: pointer;
}

@media (max-width: 1200px) {
    .products-grid-listing { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .listing-layout { grid-template-columns: 1fr; }
    .filter-sidebar { display: none; }
    .mobile-filter-fab { display: block; }
    .listing-page-container { padding: 8rem 5% 4rem; }
}

@media (max-width: 640px) {
    .products-grid-listing { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .sorting-bar { flex-direction: column; gap: 1rem; }
}

/* --- User Profile Page --- */
.profile-page-container {
    padding: 8rem 10% 4rem;
    background: #f8fafc;
}

.profile-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Sidebar Profile */
.profile-sidebar {
    background: #fff;
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 8rem;
}

.profile-info-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: var(--dark);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.user-text h3 { font-size: 1.1rem; color: #1e293b; }
.user-text p { font-size: 0.8rem; color: #94a3b8; }

.profile-nav-list { display: flex; flex-direction: column; }
.profile-nav-item {
    background: none;
    border: none;
    text-align: left;
    padding: 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.profile-nav-item:hover, .profile-nav-item.active {
    background: #f1f5f9;
    color: var(--primary);
}

/* Main Content Profile */
.profile-main-content {
    background: #fff;
    padding: 3.5rem;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    min-height: 600px;
}

.profile-content-tab {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.profile-content-tab.active { display: block; }

.section-title { font-size: 1.8rem; margin-bottom: 2.5rem; color: #1e293b; }

/* Order Cards */
.order-list { display: flex; flex-direction: column; gap: 1.5rem; }
.order-card {
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    background: #fff;
}

.order-header {
    background: #f8fafc;
    padding: 1.2rem 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
}

.order-meta p { font-size: 0.9rem; margin-bottom: 2px; }
.order-meta span { font-size: 0.75rem; color: #94a3b8; }

.order-status {
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-gold { background: rgba(212, 175, 55, 0.1); color: #ae8625; }
.badge-green { background: #dcfce7; color: #166534; }

.order-body {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.order-body img { width: 80px; height: 80px; object-fit: contain; }
.order-info { flex: 1; }
.order-info h4 { font-size: 1.1rem; margin-bottom: 5px; }
.order-info p { font-size: 0.85rem; color: #94a3b8; }
.order-price { font-size: 1.3rem; font-weight: 800; color: #000; }

.btn-order-detail {
    background: #f1f5f9;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-order-detail:hover { background: #e2e8f0; }

/* Address Grid */
.address-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.address-card {
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    position: relative;
    transition: 0.3s;
}

.address-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.addr-header { display: flex; justify-content: space-between; margin-bottom: 1rem; color: #1e293b; }
.addr-actions { font-size: 1.1rem; cursor: pointer; }
.address-card p { font-size: 0.85rem; color: #64748b; line-height: 1.6; }

.add-new-addr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed #cbd5e1;
    color: #94a3b8;
    cursor: pointer;
}

.add-new-addr:hover { background: #f8fafc; color: var(--primary); border-color: var(--primary); }
.add-icon { font-size: 2.5rem; margin-bottom: 5px; }

/* Settings Form */
.settings-form h3 { font-size: 1.2rem; margin-bottom: 1.5rem; }

@media (max-width: 1024px) {
    .profile-layout { grid-template-columns: 1fr; }
    .profile-sidebar { position: static; }
    .profile-main-content { padding: 2rem; }
    .address-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .order-body { flex-direction: column; text-align: center; }
}

/* --- Vendor / Merchant Dashboard --- */
.bg-dark-vendor {
    background: #0f172a;
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
}

.vendor-header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.vendor-user-info { display: flex; align-items: center; gap: 1.5rem; }
.store-status { font-size: 0.8rem; font-weight: 700; color: #10b981; }
.store-status.online::before { margin-right: 5px; }

.vendor-page-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: calc(100vh - 70px);
}

.vendor-sidebar {
    background: rgba(30, 41, 59, 0.5);
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
}

.v-nav-list { display: flex; flex-direction: column; gap: 0.5rem; }
.v-nav-item {
    background: none;
    border: none;
    color: #94a3b8;
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.v-nav-item:hover, .v-nav-item.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
}

.vendor-main-content { padding: 3rem 5%; }
.vendor-tab { display: none; animation: fadeIn 0.4s ease-out; }
.vendor-tab.active { display: block; }

/* Stats Grid */
.v-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.v-stat-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.v-stat-card p { font-size: 0.85rem; color: #94a3b8; margin-bottom: 1rem; }
.v-stat-value { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.5rem; }
.v-stat-trend { font-size: 0.8rem; font-weight: 700; color: #10b981; }

/* Chart Visual */
.luxe-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem;
}

.v-chart-visual {
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    padding-top: 2rem;
}

.chart-bar-v {
    flex: 1;
    background: linear-gradient(to top, var(--primary), #ae8625);
    height: 0;
    border-radius: 10px 10px 0 0;
    transition: height 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: growBar 1.5s forwards;
}

@keyframes growBar { to { height: var(--h); } }

.chart-bar-v::after {
    content: attr(data-day);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Product Table */
.v-table-container { margin-top: 2rem; overflow-x: auto; }
.v-product-table { width: 100%; border-collapse: collapse; text-align: left; }
.v-product-table th { padding: 1.5rem; font-size: 0.85rem; color: #94a3b8; border-bottom: 1px solid rgba(255,255,255,0.05); }
.v-product-table td { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); vertical-align: middle; }

.v-product-table img { width: 45px; height: 45px; object-fit: contain; background: #fff; border-radius: 8px; padding: 3px; }
.v-status { padding: 4px 10px; border-radius: 5px; font-size: 0.75rem; font-weight: 700; }
.badge-active { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.badge-out { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.v-action { background: rgba(255,255,255,0.05); border: none; color: #fff; width: 35px; height: 35px; border-radius: 8px; cursor: pointer; transition: 0.3s; }
.v-action:hover { background: var(--primary); color: #000; }

/* Vendor Modal */
.vendor-modal { max-width: 600px; background: #1e293b; color: #fff; }
.v-add-form label { color: #cbd5e1; }
.v-add-form input, .v-add-form select { background: #0f172a; border: 1px solid rgba(255,255,255,0.1); color: #fff; }

@media (max-width: 1024px) {
    .vendor-page-container { grid-template-columns: 1fr; }
    .vendor-sidebar { position: fixed; bottom: 0; left: 0; width: 100%; height: auto; border-right: none; border-top: 1px solid rgba(255,255,255,0.05); z-index: 1001; padding: 0.5rem; }
    .v-nav-list { flex-direction: row; justify-content: space-around; }
    .v-nav-item { padding: 0.8rem; font-size: 0.75rem; }
    .v-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .v-stats-grid { grid-template-columns: 1fr; }
}

/* --- Seller / Shop Profile Page --- */
.shop-banner-container {
    position: relative;
    width: 100%;
    height: 450px;
    margin-bottom: -100px;
}

.shop-banner {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.banner-overlay-luxe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, #f8fafc 100%);
}

.shop-branding-bar {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.shop-logo-container {
    margin-top: -6rem;
}

.shop-logo {
    width: 140px;
    height: 140px;
    background: var(--dark);
    color: var(--primary);
    border-radius: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: 900;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.shop-info-main { flex: 1; }

.shop-name-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
}

.shop-name-row h1 { font-size: 2.2rem; color: #1e293b; }

.v-badge-elite {
    background: linear-gradient(135deg, #d4af37 0%, #ae8625 100%);
    color: #000;
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-stats-row {
    display: flex;
    gap: 2rem;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

.shop-actions {
    display: flex;
    gap: 1rem;
}

.shop-container-listing {
    padding: 4rem 10%;
    background: #f8fafc;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
}

.shop-sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: #fff;
    padding: 1.2rem 2rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

@media (max-width: 1024px) {
    .shop-branding-bar {
        flex-direction: column;
        text-align: center;
        margin: 0 5%;
        padding: 2rem;
        gap: 1.5rem;
    }
    .shop-logo-container { margin-top: -5rem; }
    .shop-name-row { flex-direction: column; gap: 10px; }
    .shop-stats-row { justify-content: center; flex-wrap: wrap; gap: 10px; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { display: none; }
}

/* --- Global Search Interactivity --- */
.search-container { position: relative; }

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid #e2e8f0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 1.5rem;
    display: none;
    animation: slideDown 0.3s ease-out;
    max-height: 500px;
    overflow-y: auto;
}

.search-dropdown.active { display: block; }

.suggestion-group { margin-bottom: 1.5rem; }
.suggestion-group h4 { font-size: 0.8rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }

.popular-list { display: flex; flex-wrap: wrap; gap: 10px; }
.popular-item {
    background: #f1f5f9;
    padding: 8px 15px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: 0.3s;
}
.popular-item:hover { background: var(--primary); color: #000; }

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    color: inherit;
}

.suggestion-item:hover, .suggestion-item.selected { background: rgba(212, 175, 55, 0.05); }

.suggestion-img { width: 45px; height: 45px; object-fit: contain; background: #f8fafc; border-radius: 8px; padding: 5px; }

.suggestion-info h3 { font-size: 1rem; color: #1e293b; margin-bottom: 3px; }
.suggestion-info p { font-size: 0.8rem; color: #94a3b8; }

@keyframes slideDown { 0% { transform: translateY(-10px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }

/* Mobile adjustments */
@media (max-width: 768px) {
    .search-dropdown { position: fixed; top: 70px; left: 0; border-radius: 0; height: calc(100vh - 70px); }
}

/* --- Wishlist & Toast Notifications --- */
.action-item .icon.heart.active {
    color: #ef4444; /* Premium Red */
    animation: pulseHeart 0.4s ease-out;
}

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

.toast-container {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.toast-alert {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateX(120%);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
}

.toast-alert.active { transform: translateX(0); }

.toast-alert .icon-toast { 
    width: 24px; height: 24px; background: var(--primary); color: #000; 
    border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 0.8rem; font-weight: 800; 
}

.product-card-wish-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(5px);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.product-card-wish-btn:hover { background: #fff; transform: scale(1.1); }
.product-card-wish-btn.active { color: #ef4444; }

@media (max-width: 640px) {
    .toast-container { right: 1rem; left: 1rem; top: 20px; }
    .toast-alert { width: 100%; justify-content: center; }
}

/* --- Floating Chat Widget --- */
.chat-widget-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    font-family: 'Outfit', sans-serif;
}

.chat-bubble-btn {
    width: 65px;
    height: 65px;
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    position: relative;
    transition: 0.3s;
    animation: bubblePulse 2s infinite;
}

.chat-bubble-btn:hover { transform: scale(1.1) rotate(5deg); }

@keyframes bubblePulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--dark);
}

.chat-window-luxe {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 380px;
    height: 550px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    animation: chatSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-window-luxe.active { display: flex; }

@keyframes chatSlideUp {
    0% { transform: scale(0.8) translateY(20px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.chat-header-luxe {
    background: var(--dark);
    color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agent-info { display: flex; align-items: center; gap: 12px; }
.agent-avatar { width: 45px; height: 45px; background: var(--primary); color: #000; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: 800; font-size: 1.2rem; }
.agent-name { font-weight: 700; font-size: 1rem; }
.agent-status { font-size: 0.75rem; color: #10b981; }

#close-chat { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; opacity: 0.7; }
#close-chat:hover { opacity: 1; }

.chat-body-luxe {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.msg {
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    max-width: 85%;
    line-height: 1.5;
}

.bot-msg { background: #f1f5f9; color: #1e293b; align-self: flex-start; border-bottom-left-radius: 5px; }
.user-msg { background: var(--dark); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; }

.chat-footer-luxe {
    padding: 1.5rem 1rem;
    display: flex;
    gap: 10px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.chat-footer-luxe input {
    flex: 1;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.8rem 1.2rem;
    border-radius: 100px;
    font-size: 0.9rem;
}

#send-chat-btn {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
}

#send-chat-btn:hover { transform: rotate(-15deg) scale(1.1); }

@media (max-width: 480px) {
    .chat-window-luxe { width: calc(100vw - 40px); height: calc(100vh - 120px); bottom: 80px; }
}

/* --- Advanced Reviews & Ratings --- */
.reviews-container { display: flex; flex-direction: column; gap: 3rem; }

.rating-summary {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 3rem;
    padding: 3rem;
    border-radius: 30px;
    align-items: center;
}

.rating-overall { text-align: center; border-right: 1px solid rgba(0,0,0,0.05); }
.overall-num { font-size: 4rem; font-weight: 800; color: var(--dark); margin-bottom: 0.5rem; }

.rating-bars { display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: flex; align-items: center; gap: 15px; font-size: 0.85rem; color: #64748b; }
.bar-row span:first-child { width: 60px; }
.bar-bg { flex: 1; height: 8px; background: #f1f5f9; border-radius: 10px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--primary); border-radius: 10px; }

.rating-action { text-align: center; display: flex; flex-direction: column; gap: 15px; align-items: center; }

.review-feed { display: flex; flex-direction: column; gap: 2rem; }
.feed-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1.5rem; border-bottom: 1px solid #f1f5f9; }
.sort-reviews { border: 1px solid #e2e8f0; padding: 10px 20px; border-radius: 100px; font-size: 0.85rem; outline: none; }

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}
.review-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.rv-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.rv-date { font-size: 0.8rem; color: #94a3b8; }
.rv-user-row { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.v-badge-verified { font-size: 0.75rem; color: #10b981; font-weight: 600; background: rgba(16, 185, 129, 0.1); padding: 4px 10px; border-radius: 100px; }
.rv-text { color: #475569; line-height: 1.7; font-size: 0.95rem; margin-bottom: 1.5rem; }

.rv-actions { display: flex; align-items: center; gap: 15px; font-size: 0.8rem; color: #94a3b8; }
.btn-helpful { background: #f8fafc; border: 1px solid #e2e8f0; padding: 6px 15px; border-radius: 100px; cursor: pointer; transition: 0.2s; }
.btn-helpful:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* Review Modal */
.star-selector { display: flex; gap: 10px; font-size: 1.8rem; cursor: pointer; margin: 10px 0; }
.star-selector span { transition: 0.2s; filter: grayscale(1); }
.star-selector span.active, .star-selector span:hover { filter: grayscale(0); transform: scale(1.2); }

.upload-box {
    border: 2px dashed #e2e8f0;
    padding: 2.5rem;
    text-align: center;
    border-radius: 20px;
    color: #94a3b8;
    cursor: pointer;
    transition: 0.3s;
}
.upload-box:hover { border-color: var(--primary); color: var(--dark); background: rgba(212, 175, 55, 0.05); }

@media (max-width: 1024px) {
    .rating-summary { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
    .rating-overall { border-right: none; border-bottom: 1px solid #f1f5f9; padding-bottom: 1.5rem; }
}

/* --- Seller Application Portal --- */
.apply-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.apply-card {
    padding: 3.5rem;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
}

.stepper-luxe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 45px;
    height: 45px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
}

.step-label { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.step.active { color: var(--dark); }
.step.active .step-num { background: var(--primary); color: #000; box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }

.step-line {
    flex: 1;
    height: 2px;
    background: #f1f5f9;
    margin: 0 20px;
    margin-top: -22px;
}

.wizard-step-content { display: none; }
.wizard-step-content.active { display: block; animation: slideStep 0.4s ease-out; }

@keyframes slideStep {
    0% { transform: translateX(20px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.form-header { margin-bottom: 2.5rem; }
.form-header h2 { font-size: 2rem; color: var(--dark); margin-bottom: 0.5rem; }
.form-header p { color: #64748b; font-size: 1rem; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.wizard-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}

.category-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
    padding: 10px 20px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.chip:hover { background: #e2e8f0; }
.chip.active { background: var(--dark); color: #fff; }

.success-icon { font-size: 5rem; margin-bottom: 2rem; }

@media (max-width: 768px) {
    .apply-card { padding: 2rem; border-radius: 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .stepper-luxe { gap: 10px; }
    .step-label { display: none; }
}

/* --- Live Order Tracking --- */
.tracking-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.tracking-lookup {
    text-align: center;
    margin-bottom: 3rem;
}

.lookup-box {
    display: flex;
    max-width: 500px;
    margin: 2rem auto;
    background: #fff;
    padding: 10px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.lookup-box input {
    flex: 1;
    border: none;
    padding: 0 1.5rem;
    font-size: 1rem;
    outline: none;
}

.tracking-content { display: none; }
.tracking-content.active { display: block; animation: fadeInUp 0.6s ease-out; }

.tracking-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.status-panel { padding: 3rem; border-radius: 30px; }
.status-header { margin-bottom: 3rem; text-align: center; }
.order-id-badge { display: inline-block; padding: 6px 15px; background: rgba(0,0,0,0.05); border-radius: 100px; font-size: 0.8rem; margin-bottom: 1rem; }
.current-status { font-size: 1.8rem; margin-bottom: 0.5rem; }
.est-arrival { color: #64748b; font-size: 0.95rem; }

.vertical-timeline { position: relative; }
.v-step { display: flex; gap: 20px; align-items: center; }
.v-dot { width: 35px; height: 35px; border-radius: 50%; background: #f1f5f9; display: flex; justify-content: center; align-items: center; font-size: 0.85rem; font-weight: 800; color: #94a3b8; }
.v-line { width: 2px; height: 40px; background: #f1f5f9; margin-left: 16.5px; }

.v-step.completed .v-dot { background: #10b981; color: #fff; }
.v-line.completed { background: #10b981; }
.v-step.active .v-dot { background: var(--primary); color: #000; box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }

.v-info h4 { font-size: 1rem; color: var(--dark); margin-bottom: 3px; }
.v-info p { font-size: 0.8rem; color: #64748b; }

.map-panel { display: flex; flex-direction: column; gap: 2rem; }
.map-simulation {
    height: 450px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.courier-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.courier-avatar { width: 50px; height: 50px; background: var(--primary); color: #000; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: 800; }
.courier-name { font-weight: 700; margin-bottom: 3px; }
.courier-score { font-size: 0.75rem; color: var(--primary); }

.btn-call { background: var(--primary); border: none; padding: 10px 20px; border-radius: 100px; cursor: pointer; font-weight: 700; margin-left: auto; }

.map-marker { position: absolute; top: 40%; left: 60%; font-size: 2.5rem; transform: translate(-50%, -50%); }

.package-summary { padding: 2rem; border-radius: 30px; }
.package-summary h4 { margin-bottom: 1.5rem; }
.pkg-item { display: flex; gap: 15px; align-items: center; }
.pkg-item img { width: 60px; height: 60px; object-fit: contain; background: #fff; border-radius: 10px; padding: 5px; }

.yellow-glow { text-shadow: 0 0 10px rgba(212, 175, 55, 0.4); color: #b48a35; }
.pulsing-gold { animation: pulseIcon 1.5s infinite; }

@keyframes pulseIcon {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

@media (max-width: 1024px) {
    .tracking-layout { grid-template-columns: 1fr; }
    .status-panel { padding: 2rem; }
}

/* --- Global Admin Dashboard (Master) --- */
.bg-admin-dark {
    background: #0f172a;
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    line-height: 1.6;
}

.admin-header {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.admin-sidebar-luxe {
    background: #020617;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-stat-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #94a3b8;
}

.luxe-dark-glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.admin-table th { background: rgba(0,0,0,0.2) !important; color: var(--primary) !important; font-weight: 800; border-bottom: 1px solid rgba(212, 175, 55, 0.1); }
.admin-table td { color: #cbd5e1 !important; border-bottom: 1px solid rgba(255,255,255,0.03); }

.badge-pending { background: rgba(212, 175, 55, 0.1); color: var(--primary); }

.btn-sm { padding: 6px 14px; font-size: 0.75rem; border-radius: 100px; }

.settings-form label { color: #94a3b8; display: block; margin-bottom: 10px; font-weight: 600; }
.settings-form input, .settings-form select {
    width: 100%;
    padding: 1rem;
    border-radius: 15px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    outline: none;
    transition: 0.3s;
}

#adm-overview h2 { border-bottom: none !important; }

@media (max-width: 1024px) {
    .admin-header { padding: 1rem 1.5rem; }
    .v-stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
    .v-stats-grid { grid-template-columns: 1fr; }
    .vendor-sidebar { display: none; }
    .vendor-main-content { padding: 1.5rem; }
}

/* --- Mandatory Documentation (Hepsiburada Style) --- */
.doc-upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.doc-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.doc-item label { color: #64748b; font-size: 0.85rem; font-weight: 600; }

.upload-area {
    border: 2px dashed #e2e8f0;
    padding: 1.5rem;
    text-align: center;
    border-radius: 12px;
    color: #94a3b8;
    cursor: pointer;
    background: #f8fafc;
    transition: 0.3s;
    font-size: 0.9rem;
    font-weight: 600;
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.05);
    color: var(--dark);
}

.finance-group h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 0.5rem; }

@media (max-width: 580px) {
    .doc-upload-grid { grid-template-columns: 1fr; }
}

/* --- Premium Newsletter Popup --- */
.newsletter-luxe {
    max-width: 500px !important;
    padding: 3rem !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.newsletter-luxe::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 0px var(--primary)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 15px var(--primary)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0px var(--primary)); }
}

.newsletter-form-luxe .btn-primary {
    padding: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.promo-code {
    animation: glowCode 2s infinite alternate;
}

@keyframes glowCode {
    from { box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
    to { box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3); }
}

/* ── ÜYE GİRİŞİ / YENİ ÜYE HEADER BUTONLARI RE-DESIGN ── */
/* Üye Girişi Linki */
.ast-header-html-1 a {
    color: #e2e8f0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    transition: color 0.3s ease !important;
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.3) !important;
}
.ast-header-html-1 a:hover {
    color: #ffd700 !important;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6) !important;
}

/* Yeni Üye Butonu */
.ast-header-button-1 .ast-custom-button {
    background: linear-gradient(135deg, #7c3aed, #2563eb) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 8px 20px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease !important;
}
.ast-header-button-1 .ast-custom-button:hover {
    transform: translateY(-2px) !important;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6) !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.7), 0 0 12px rgba(37, 99, 235, 0.5) !important;
}

/* ── WOOCOMMERCE /HESABIM/ DÜZ BEYAZ SAYFA DEĞİŞİMİ ── */
.page-id-9 .site-content,
.woocommerce-account .site-content {
    background-color: #0b0c14 !important;
    color: #fff !important;
    padding-top: 140px !important;
    padding-bottom: 80px !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #13141f !important;
    border: 1px solid rgba(124, 58, 237, 0.15) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 8px !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a {
    color: #cbd5e1 !important;
    display: block !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    transition: background 0.2s, color 0.2s !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    background: rgba(124, 58, 237, 0.15) !important;
    color: #ffd700 !important;
    border-left: 3px solid #7c3aed !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
    background: #13141f !important;
    border: 1px solid rgba(124, 58, 237, 0.15) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
    color: #fff !important;
}

/* Giriş / Kayıt Form Tasarımı */
.woocommerce .u-columns.col2-set {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    background-color: #0b0c14 !important;
    padding: 30px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(124, 58, 237, 0.1) !important;
}
.woocommerce .u-columns.col2-set .col-1,
.woocommerce .u-columns.col2-set .col-2 {
    flex: 1 !important;
    min-width: 300px !important;
    background: #13141f !important;
    border: 1px solid rgba(124, 58, 237, 0.15) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3) !important;
}
.woocommerce h2 {
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    border-bottom: 2px solid rgba(124, 58, 237, 0.3) !important;
    padding-bottom: 10px !important;
}
.woocommerce-form-row label {
    color: #9ca3af !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
}
.woocommerce-Input {
    background: #0b0c14 !important;
    border: 1px solid #2a2d3e !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    width: 100% !important;
    outline: none !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}
.woocommerce-Input:focus {
    border-color: #7c3aed !important;
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.4) !important;
}
.woocommerce-Button,
.woocommerce-form-login__submit {
    background: linear-gradient(135deg, #7c3aed, #2563eb) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    width: 100% !important;
    margin-top: 10px !important;
}
.woocommerce-Button:hover,
.woocommerce-form-login__submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5) !important;
}
.woocommerce-LostPassword a {
    color: #a78bfa !important;
    font-size: 13px !important;
    text-decoration: none !important;
}
.woocommerce-LostPassword a:hover {
    text-decoration: underline !important;
}

/* ── PANDA MASCOT WIDGET STYLES ── */
.fl-panda-widget {
    position: fixed !important;
    bottom: 0 !important;
    right: 40px !important;
    z-index: 9998 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    font-family: 'Outfit', sans-serif !important;
}
.fl-panda-bubble {
    background: #13141f !important;
    border: 2px solid #7c3aed !important;
    border-radius: 16px !important;
    padding: 16px !important;
    width: 240px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 15px rgba(124,58,237,0.25) !important;
    margin-bottom: 12px !important;
    position: relative !important;
    transform: scale(1) !important;
    opacity: 1 !important;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease !important;
    transform-origin: bottom center !important;
}
.fl-panda-bubble.closed {
    transform: scale(0) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.fl-panda-bubble::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-width: 8px 8px 0 !important;
    border-style: solid !important;
    border-color: #7c3aed transparent !important;
    display: block !important;
    width: 0 !important;
}
.fl-panda-bubble-close {
    position: absolute !important;
    top: 8px !important; right: 8px !important;
    background: transparent !important;
    border: none !important;
    color: #6b7280 !important;
    cursor: pointer !important;
    font-size: 12px !important;
    padding: 2px !important;
    line-height: 1 !important;
}
.fl-panda-bubble-close:hover { color: #ef4444; }

.fl-panda-bubble-text {
    text-align: center !important;
    color: #fff !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}
.fl-panda-bubble-text strong {
    display: block !important;
    color: #ffd700 !important;
    margin-bottom: 4px !important;
    font-size: 14px !important;
}
.fl-panda-bubble-text p {
    margin: 0 0 10px 0 !important;
    color: #9ca3af !important;
    font-size: 11px !important;
}

.fl-panda-actions {
    display: flex !important;
    gap: 8px !important;
    justify-content: center !important;
}
.fl-panda-btn {
    padding: 6px 12px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    border: none !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.fl-panda-btn.login {
    background: linear-gradient(135deg, #7c3aed, #2563eb) !important;
    color: #fff !important;
}
.fl-panda-btn.register {
    background: #ffd700 !important;
    color: #0b0c14 !important;
}
.fl-panda-btn.store {
    background: #10b981 !important;
    color: #fff !important;
    display: inline-block !important;
}
.fl-panda-btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(124,58,237,0.3) !important;
}

/* CSS Panda Body Drawing */
.fl-panda-body {
    width: 80px !important;
    height: 50px !important;
    background: #fff !important;
    border-top-left-radius: 40px !important;
    border-top-right-radius: 40px !important;
    border: 2px solid #000 !important;
    position: relative !important;
    cursor: pointer !important;
    transition: transform 0.2s !important;
    overflow: visible !important;
}
.fl-panda-body:hover {
    transform: translateY(-5px) !important;
}
.fl-panda-ears .ear {
    width: 22px !important;
    height: 22px !important;
    background: #000 !important;
    border-radius: 50% !important;
    position: absolute !important;
    top: -8px !important;
    z-index: -1 !important;
}
.fl-panda-ears .ear.left { left: 4px !important; }
.fl-panda-ears .ear.right { right: 4px !important; }

.fl-panda-face {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}
.fl-panda-eyes .eye {
    width: 16px !important;
    height: 18px !important;
    background: #000 !important;
    border-radius: 50% !important;
    position: absolute !important;
    top: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.fl-panda-eyes .eye.left { left: 14px !important; transform: rotate(-15deg) !important; }
.fl-panda-eyes .eye.right { right: 14px !important; transform: rotate(15deg) !important; }
.fl-panda-eyes .pupil {
    width: 6px !important;
    height: 6px !important;
    background: #fff !important;
    border-radius: 50% !important;
}
.fl-panda-nose {
    width: 10px !important;
    height: 6px !important;
    background: #000 !important;
    border-radius: 50% !important;
    position: absolute !important;
    top: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}
.fl-panda-paws .paw {
    width: 18px !important;
    height: 14px !important;
    background: #000 !important;
    border-radius: 50% !important;
    position: absolute !important;
    bottom: -2px !important;
}
.fl-panda-paws .paw.left { left: 8px !important; }
.fl-panda-paws .paw.right { right: 8px !important; }

/* ── BUTONA SARILAN PANDA STİLLERİ ── */
.fl-task-btn-wrapper {
    position: relative !important;
    display: inline-block !important;
}

.fl-button-panda {
    position: absolute !important;
    left: -22px !important;
    top: -24px !important;
    width: 48px !important;
    height: 48px !important;
    pointer-events: none !important;
    z-index: 5 !important;
}

.fl-button-panda .panda-head {
    width: 32px !important;
    height: 28px !important;
    background: #ffffff !important;
    border: 2px solid #000000 !important;
    border-radius: 50% 50% 45% 45% !important;
    position: relative !important;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2) !important;
}

.fl-button-panda .panda-ears .ear {
    width: 10px !important;
    height: 10px !important;
    background: #000000 !important;
    border-radius: 50% !important;
    position: absolute !important;
    top: -3px !important;
}
.fl-button-panda .panda-ears .ear.left { left: -1px !important; }
.fl-button-panda .panda-ears .ear.right { right: -1px !important; }

.fl-button-panda .panda-eyes .eye {
    width: 8px !important;
    height: 9px !important;
    background: #000000 !important;
    border-radius: 50% !important;
    position: absolute !important;
    top: 7px !important;
}
.fl-button-panda .panda-eyes .eye.left { left: 4px !important; transform: rotate(-15deg) !important; }
.fl-button-panda .panda-eyes .eye.right { right: 4px !important; transform: rotate(15deg) !important; }
.fl-button-panda .panda-eyes .pupil {
    width: 3px !important;
    height: 3px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    position: absolute !important;
    top: 2px !important;
    left: 2.5px !important;
}

.fl-button-panda .panda-nose {
    width: 5px !important;
    height: 3px !important;
    background: #000000 !important;
    border-radius: 50% !important;
    position: absolute !important;
    top: 17px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.fl-button-panda .panda-paws .paw {
    width: 10px !important;
    height: 10px !important;
    background: #000000 !important;
    border-radius: 50% !important;
    position: absolute !important;
    z-index: 6 !important;
    border: 1px solid #ffffff !important;
}
.fl-button-panda .panda-paws .paw.left {
    left: 8px !important;
    top: 22px !important;
}
.fl-button-panda .panda-paws .paw.right {
    left: 20px !important;
    top: 22px !important;
}

/* ── GİRİŞ YAP VE ÜYE OL SAYFALARINI AYIRMA ── */
body.show-register-only .woocommerce .u-columns.col2-set {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
}
body.show-register-only .woocommerce .u-columns.col2-set .col-1 {
    display: none !important;
}
body.show-register-only .woocommerce .u-columns.col2-set .col-2 {
    flex: 0 0 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

body.show-login-only .woocommerce .u-columns.col2-set {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
}
body.show-login-only .woocommerce .u-columns.col2-set .col-2 {
    display: none !important;
}
body.show-login-only .woocommerce .u-columns.col2-set .col-1 {
    flex: 0 0 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* ── WOOCOMMERCE FORM INPUT STİLLERİNİ GENİŞLETME ── */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row input[type="text"],
.woocommerce form .form-row input[type="password"],
.woocommerce form .form-row input[type="email"],
.woocommerce form .form-row input[type="number"],
.woocommerce form .form-row select {
    background: #0b0c14 !important;
    border: 1px solid #2a2d3e !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    width: 100% !important;
    outline: none !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row input[type="text"]:focus,
.woocommerce form .form-row input[type="password"]:focus,
.woocommerce form .form-row input[type="email"]:focus,
.woocommerce form .form-row input[type="number"]:focus,
.woocommerce form .form-row select:focus {
    border-color: #7c3aed !important;
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.4) !important;
}

/* ── PROFILE DROPDOWN MENU STYLES ── */
.fl-profile-dropdown {
    position: relative !important;
    display: inline-block !important;
    cursor: pointer !important;
    z-index: 9999 !important;
}

.fl-profile-trigger {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 14px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(124, 58, 237, 0.2) !important;
    border-radius: 30px !important;
    transition: background 0.3s, border-color 0.3s !important;
}
.fl-profile-trigger:hover {
    background: rgba(124, 58, 237, 0.1) !important;
    border-color: #7c3aed !important;
}

.fl-avatar-img {
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    border: 1px solid #7c3aed !important;
    object-fit: cover !important;
}

.fl-username-text {
    color: #e2e8f0 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.fl-arrow {
    color: #9ca3af !important;
    font-size: 9px !important;
    transition: transform 0.3s !important;
}
.fl-profile-dropdown:hover .fl-arrow {
    transform: rotate(180deg) !important;
}

.fl-profile-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    margin-top: 8px !important;
    width: 220px !important;
    background: #13141f !important;
    border: 1px solid rgba(124, 58, 237, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 15px rgba(124,58,237,0.15) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s !important;
}

.fl-profile-dropdown:hover .fl-profile-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.fl-menu-info {
    padding: 12px 16px !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    background: rgba(124, 58, 237, 0.03) !important;
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
}
.fl-info-name {
    display: block !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}
.fl-info-points {
    display: block !important;
    color: #ffd700 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    margin-top: 2px !important;
}

.fl-menu-link {
    display: block !important;
    padding: 10px 16px !important;
    color: #cbd5e1 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s !important;
    text-align: left !important;
}
.fl-menu-link:hover {
    background: rgba(124, 58, 237, 0.15) !important;
    color: #ffd700 !important;
}

.fl-menu-separator {
    height: 1px !important;
    background: rgba(255,255,255,0.05) !important;
    margin: 4px 0 !important;
}

.fl-menu-link.logout {
    color: #ef4444 !important;
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}
.fl-menu-link.logout:hover {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #fca5a5 !important;
}

/* ── GİRİŞ YAPILINCA GUEST BUTONLARINI GİZLE ── */
body.logged-in .ast-header-html-1 {
    display: none !important;
}

/* ── "HESABIM" LİNKİNİ ANA MENÜDEN GLOBAL OLARAK TAMAMEN KALDIRMA ── */
.main-header-menu a[href*="hesabim"],
.main-header-menu a[href*="my-account"],
.main-header-menu li[class*="hesabim"],
.main-header-menu li[class*="my-account"] {
    display: none !important;
}

/* ── WOOCOMMERCE FORM YARDIMCI VE YASAL AÇIKLAMA YAZILARI OKUNABİLİRLİK AYARI ── */
.woocommerce-form-register, 
.woocommerce-form-login,
.woocommerce-account,
.woocommerce form.register,
.woocommerce form.login {
    color: #cbd5e1 !important;
}

.woocommerce-form-register p,
.woocommerce-form-login p,
.woocommerce form.register p,
.woocommerce form.login p,
.woocommerce-PrivacyPolicyText,
.woocommerce-privacy-policy-text,
.woocommerce-form-register__submit-container + p,
.woocommerce-form-login__submit-container + p,
.woocommerce-form-row + p,
.woocommerce-form-row-wide + p,
.woocommerce-terms-and-conditions-checkbox-text,
.woocommerce-form__label span {
    color: #cbd5e1 !important;
}

.woocommerce-form-register p.form-row label,
.woocommerce-form-login p.form-row label,
.woocommerce form.register p.form-row label,
.woocommerce form.login p.form-row label {
    color: #ffd700 !important;
}

/* ── MAĞAZA VE ÜRÜN SAYFALARINI KOYU YAPMA (AMATÖR BEYAZ GÖRÜNTÜYÜ DÜZELTME) ── */
body.woocommerce-shop,
body.archive.tax-product_cat,
body.single-product,
body.woocommerce-page {
    background-color: #0b0c14 !important;
    color: #cbd5e1 !important;
}

.woocommerce-shop .site-content,
.archive.tax-product_cat .site-content,
.single-product .site-content,
.woocommerce-page .site-content,
.woocommerce-shop .site-content .ast-container,
.archive.tax-product_cat .site-content .ast-container,
.single-product .site-content .ast-container,
.woocommerce-page .site-content .ast-container {
    background-color: #0b0c14 !important;
    color: #cbd5e1 !important;
}

/* Mağaza Sayfa Başlıkları ve Ekmek Kırıntıları */
.woocommerce-breadcrumb, 
.woocommerce-breadcrumb a {
    color: #94a3b8 !important;
}
.woocommerce-products-header__title.page-title,
.woocommerce-loop-product__title,
.woocommerce div.product .product_title,
.woocommerce-shop h1,
.woocommerce-shop h2,
.woocommerce-shop h3,
.woocommerce-page h1,
.woocommerce-page h2,
.woocommerce-page h3 {
    color: #ffffff !important;
}

/* Mağaza Sıralama Dropdown'ı */
.woocommerce-ordering select {
    background-color: #13141f !important;
    border: 1px solid rgba(124, 58, 237, 0.2) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
}

/* Mağaza Ürün Kartları ve Fiyat/Puan Göstergesi */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: #13141f !important;
    border: 1px solid rgba(124, 58, 237, 0.1) !important;
    border-radius: 12px !important;
    padding: 15px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2) !important;
    border-color: rgba(124, 58, 237, 0.3) !important;
}
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
    color: #ffd700 !important;
    font-weight: bold !important;
}

/* ── ASTRA FOOTER (ALT BÖLÜM) KARANLIK TEMA AYARI ── */
footer,
.site-footer,
.site-primary-footer-wrap,
.site-below-footer-wrap,
.ast-below-footer-bar,
.ast-primary-footer-bar,
.ast-footer-overlay,
.site-footer-section,
.ast-footer-copyright,
[data-section="section-below-footer-builder"],
[data-section="section-primary-footer-builder"] {
    background-color: #0b0c14 !important;
    background: #0b0c14 !important;
    color: #94a3b8 !important;
    border-top: 1px solid rgba(124, 58, 237, 0.15) !important;
}

/* Footer içindeki metinler, telif yazıları ve linkler */
.site-footer *,
.site-footer a,
.ast-footer-copyright,
.ast-footer-copyright a,
.site-below-footer-wrap *,
.site-below-footer-wrap a {
    color: #94a3b8 !important;
    text-decoration: none !important;
}

.site-footer a:hover,
.ast-footer-copyright a:hover,
.site-below-footer-wrap a:hover {
    color: #ffd700 !important;
}

/* ── HEADER BUTON (YENİ ÜYE) - ZORLA GÖRÜNÜR ── */
.ast-header-button-1 .ast-custom-button,
.ast-header-button-1 a.ast-custom-button {
    background: linear-gradient(135deg, #7c3aed, #6d28d9) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 9px 22px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    font-family: 'Outfit', sans-serif !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4) !important;
}
.ast-header-button-1 .ast-custom-button:hover,
.ast-header-button-1 a.ast-custom-button:hover {
    background: linear-gradient(135deg, #6d28d9, #5b21b6) !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6) !important;
    transform: translateY(-1px) !important;
}

/* ── ARAMA İKONU - ZORLA GÖRÜNÜR ── */
.ast-search-icon,
.ast-header-search .ast-search-icon,
.ast-header-search svg,
.ast-header-search .ast-icon,
header .ast-header-search .search-toggle,
.header-main-layout-1 .ast-search-icon {
    color: #ffffff !important;
    fill: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.ast-header-search .search-field {
    background: rgba(255,255,255,0.08) !important;
    color: #ffffff !important;
    border: 1px solid rgba(124,58,237,0.3) !important;
    border-radius: 8px !important;
}

/* ── GİRİŞ YAP POPUP DÜZELTMESİ (LİNKLERİN GÖRÜNMESİ İÇİN) ── */
#fl-login-modal .fl-login-card {
    height: auto !important;
    max-height: 90vh !important;
    overflow: visible !important;
    padding-bottom: 30px !important;
}

/* ── ÜYE GİRİŞİ LİNKİ & YENİ ÜYE BUTONU ZORLA GÖSTER ── */
.ast-header-button-1,
.ast-header-html-1,
.ast-header-button-1 a,
.ast-header-html-1 a,
.ast-header-custom-item,
.ast-custom-button,
[class*="ast-header-button"],
[class*="ast-header-html"] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ── PROFİL MENÜSÜ KATMAN VE Z-INDEX DÜZELTMELERİ ── */
.site-header,
#masthead,
.main-header-bar,
.ast-main-header-wrap,
.ast-theme-header-custom {
    z-index: 99999 !important; /* Astra header'ı en üste zorla */
    position: relative !important;
}

#fl-profile-dropdown,
.fl-profile-dropdown,
#fl-profile-menu,
.fl-profile-menu,
.profile-dropdown {
    z-index: 9999999 !important; /* Dropdown menüyü mor barın üstüne çıkar */
}

.fl-task-banner {
    position: relative !important;
    z-index: 10 !important; /* Mor barı en alt katmana al */
}
.fl-tabs-wrapper {
    z-index: 9 !important;
}

/* ── POPUP İÇİNDEKİ LİNK RENKLERİ VE GÖRÜNÜRLÜĞÜ ── */
#fl-login-modal a,
#fl-login-modal .fl-login-footer a,
#fl-login-modal a[href*="lost-password"],
#fl-login-modal a[href*="register"] {
    color: #a78bfa !important; /* Linkleri mor renk yap */
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 13px !important;
    text-decoration: underline !important;
}
#fl-login-modal .fl-login-footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 15px !important;
}

/* ── GİRİŞ YAPILMAMIŞSA HEADER BUTONLARINI ZORLA GÖSTER ── */
body:not(.logged-in) .ast-header-html-1 a,
body:not(.logged-in) .ast-header-button-1 a.ast-custom-button-link,
body:not(.logged-in) .ast-header-button-1 a.ast-custom-button-link .ast-custom-button {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ── GLOBAL ÖLÇEK VE HİZALAMA STANDARDI ── */
html {
    font-size: 16px !important;
}

/* 🚀 WOOCOMMERCE MAĞAZA SAYFASI MENÜ HİZALAMASINI ANA SAYFA GİBİ SOLA ALMA 🚀 */
body.woocommerce-page .ast-builder-menu-1,
body.woocommerce-page .ast-main-header-bar-alignment,
body.woocommerce-page .site-header-primary-section-center,
body.woocommerce-page .site-header-primary-section-center .ast-builder-menu {
    justify-content: flex-start !important;
    align-items: center !important;
}

body.woocommerce-page .ast-main-header-bar-alignment {
    margin-right: auto !important;
}

/* 🚀 WOOCOMMERCE HESABIM (PROFİL) SAYFASI SİDEBAR GENİŞLİK DÜZELTMESİ 🚀 */
.woocommerce-account .woocommerce-MyAccount-navigation {
    flex: 0 0 25% !important;
    width: 25% !important;
    min-width: 250px !important;
    margin-bottom: 2rem !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1 !important;
    width: 70% !important;
}

@media (min-width: 769px) {
    .woocommerce-account .woocommerce {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 30px !important;
        align-items: flex-start !important;
    }
}

@media (max-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100% !important;
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }
}

.ast-container, 
.fl-container, 
.site-content {
    max-width: 1240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

body {
    font-size: 1rem !important;
    line-height: 1.6 !important;
}
