:root {
    --bg-dark: #0a0a0e;
    --bg-card: #15151c;
    --primary-orange: #ff7300;
    --neon-glow: 0 0 15px rgba(255, 115, 0, 0.5), 0 0 30px rgba(255, 115, 0, 0.3);
    --text-light: #f1f1f1;
    --text-muted: #999;
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {

    scroll-behavior: smooth;

    scroll-padding-top: 100px; 
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;

    background-image: linear-gradient(rgba(255, 115, 0, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 115, 0, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

h1, h2, h3, h4, .logo {
    font-family: 'Orbitron', sans-serif;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.announcement {
    background: var(--primary-orange);
    color: #000;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header {
    position: sticky;
    top: 0; 
    width: 100%;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 15px 5%;
    background: rgba(10, 10, 14, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: 0.3s;
}

.header-left {
    display: flex;
    justify-content: flex-start;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-orange);
    text-shadow: var(--neon-glow);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-center {
    display: flex;
    justify-content: center;
}

.nav-center ul {
    display: flex;
    gap: 30px;
}

.nav-center ul li a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    font-weight: 600;
}

.nav-center ul li a:hover, .nav-center ul li a.active {
    color: var(--primary-orange);
    text-shadow: 0 0 10px rgba(255, 115, 0, 0.5);
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

.btn-glow-nav {
    background: var(--primary-orange);
    color: #000;
    padding: 8px 20px;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 15px;
    box-shadow: var(--neon-glow);
    transition: 0.3s;
    border: 1px solid var(--primary-orange);
    cursor: pointer;
}

.btn-glow-nav:hover {
    background: transparent;
    color: var(--primary-orange);
    box-shadow: 0 0 25px var(--primary-orange), inset 0 0 10px var(--primary-orange);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.btn-outline:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.menu-toggle {
    display: none;
    color: var(--primary-orange);
    font-size: 24px;
    cursor: pointer;
}

.hero {
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: var(--primary-orange);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
    animation: pulse 4s infinite alternate;
    z-index: -1;
}

.hero h1 { font-size: 60px; margin-bottom: 20px; text-transform: uppercase; }
.hero h1 span { color: var(--primary-orange); text-shadow: var(--neon-glow); }
.hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

.btn-glow {
    background: var(--primary-orange);
    color: #000;
    padding: 15px 40px;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--neon-glow);
    transition: 0.3s;
    border: 1px solid var(--primary-orange);
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-glow:hover {
    background: transparent;
    color: var(--primary-orange);
    box-shadow: 0 0 25px var(--primary-orange), inset 0 0 10px var(--primary-orange);
}

.showcase { padding: 100px 5%; }
.section-title { text-align: center; font-size: 35px; margin-bottom: 50px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }

.product-card {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 10px;
    padding: 20px; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden;
}
.product-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: var(--primary-orange); transform: scaleX(0); transition: 0.4s;
}
.product-card:hover {
    transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.5), var(--neon-glow); border-color: rgba(255, 115, 0, 0.3);
}
.product-card:hover::before { transform: scaleX(1); }

.product-img-placeholder {
    width: 100%; height: 250px; background: #222; border-radius: 5px; margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-family: 'Orbitron', sans-serif;
}
.product-card h3 { font-size: 20px; margin-bottom: 10px; }
.product-card p { color: var(--primary-orange); font-weight: bold; font-size: 18px; margin-bottom: 20px; }

.product-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 50px 5%; max-width: 1400px; margin: 0 auto; }

.gallery .main-img-container {
    width: 100%; aspect-ratio: 1/1; background: #1a1a24; border-radius: 10px; display: flex; justify-content: center; align-items: center;
    border: 1px solid var(--border-color); box-shadow: 0 10px 30px rgba(0,0,0,0.8); overflow: hidden; margin-bottom: 15px;
}
.gallery .main-img-container img { width: 100%; height: 100%; object-fit: cover; }
.thumbnail-list { display: flex; gap: 15px; }
.thumb {
    width: 80px; height: 80px; background: #1a1a24; border-radius: 8px; cursor: pointer; border: 2px solid transparent; transition: 0.3s;
    display: flex; justify-content: center; align-items: center; overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;

    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); 
}

.carousel-slide {
    min-width: 100%; 
    height: 100%;
    object-fit: cover;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active, .thumb:hover { border-color: var(--primary-orange); box-shadow: var(--neon-glow); }

.details h1 { font-size: 32px; margin-bottom: 10px; text-transform: uppercase; }
.price { font-size: 28px; color: var(--primary-orange); font-weight: bold; margin-bottom: 15px; }
.reviews-stars { color: #ffb400; font-size: 14px; margin-bottom: 20px; }
.reviews-stars span { color: var(--text-light); margin-left: 10px; font-family: 'Inter'; }
.description { color: var(--text-muted); line-height: 1.6; margin-bottom: 25px; font-size: 15px; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
.feature-badge {
    background: var(--bg-card); padding: 12px; border-radius: 6px; display: flex; align-items: center; gap: 10px; font-size: 14px; border: 1px solid var(--border-color);
}
.feature-badge i { color: var(--primary-orange); font-size: 18px; }

.bundle-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
.bundle-card {
    background: var(--bg-card); border: 2px solid var(--border-color); border-radius: 8px; padding: 15px 10px; text-align: center; cursor: pointer; position: relative; transition: 0.3s;
}
.bundle-card .discount {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #e74c3c; color: white; padding: 2px 8px; border-radius: 4px; font-size: 12px; font-weight: bold;
}
.bundle-card h4 { font-size: 14px; margin-bottom: 5px; }
.bundle-card .old-price { text-decoration: line-through; color: var(--text-muted); font-size: 12px; }
.bundle-card .new-price { color: var(--primary-orange); font-weight: bold; font-size: 16px; }
.bundle-card.active { border-color: var(--primary-orange); box-shadow: var(--neon-glow); background: rgba(255, 115, 0, 0.05); }

.btn-glow-large {
    width: 100%; padding: 18px; background: var(--primary-orange); color: #000; font-size: 18px; font-weight: 900; text-transform: uppercase; border: none; border-radius: 6px;
    cursor: pointer; box-shadow: var(--neon-glow); font-family: 'Orbitron', sans-serif; transition: 0.3s; margin-bottom: 30px;
}
.btn-glow-large:hover { background: #e66800; transform: translateY(-2px); }

.timeline { display: flex; justify-content: space-between; align-items: center; position: relative; padding: 0 20px; }
.timeline::before { content: ''; position: absolute; top: 20px; left: 40px; right: 40px; height: 2px; background: var(--border-color); z-index: 1; }
.step { text-align: center; position: relative; z-index: 2; width: 80px; }
.step .icon { width: 40px; height: 40px; background: var(--bg-dark); border: 2px solid var(--primary-orange); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto 10px; color: var(--primary-orange); font-size: 16px; }
.step p { font-size: 12px; font-weight: bold; }
.step span { font-size: 10px; color: var(--text-muted); }

.content-section { padding: 80px 5%; max-width: 1200px; margin: 0 auto; }
.row { display: flex; align-items: center; gap: 50px; margin-bottom: 80px; }
.row.reverse { flex-direction: row-reverse; }
.row-text { flex: 1; }
.row-text h2 { font-size: 30px; color: var(--primary-orange); margin-bottom: 20px; }
.row-text p { color: var(--text-muted); line-height: 1.7; font-size: 16px; }
.row-img { flex: 1; aspect-ratio: 4/3; background: #1a1a24; border-radius: 10px; overflow: hidden; border: 1px solid var(--border-color); }
.row-img img { width: 100%; height: 100%; object-fit: cover; }

.reviews { background: #111117; padding: 60px 5%; text-align: center; border-top: 1px solid var(--border-color); }
.reviews h2 { font-size: 30px; margin-bottom: 40px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.review-card { background: var(--bg-card); padding: 20px; border-radius: 8px; text-align: left; border: 1px solid var(--border-color); }
.review-card .stars { color: #ffb400; margin-bottom: 10px; }
.review-card h4 { margin-bottom: 10px; }
.review-card p { color: var(--text-muted); font-size: 14px; }

.faq { padding: 80px 5%; max-width: 800px; margin: 0 auto; }
.faq h2 { text-align: center; font-size: 30px; margin-bottom: 40px; }
details { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 6px; margin-bottom: 15px; overflow: hidden; }
summary { padding: 20px; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; align-items: center; outline: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--primary-orange); font-size: 20px; }
details[open] summary::after { content: '-'; }
.faq-content { padding: 0 20px 20px; color: var(--text-muted); font-size: 14px; line-height: 1.6; }

.support-container { padding: 80px 5%; max-width: 600px; margin: 0 auto; text-align: center; }
.support-container h1 { font-size: 40px; color: var(--primary-orange); margin-bottom: 20px; }
.support-container p { color: var(--text-muted); margin-bottom: 40px; }
.contact-form { background: var(--bg-card); padding: 40px; border-radius: 10px; border: 1px solid var(--border-color); box-shadow: 0 10px 30px rgba(0,0,0,0.5); display: flex; flex-direction: column; gap: 20px; text-align: left; }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label { font-size: 14px; font-weight: bold; }
.input-group input, .input-group textarea { width: 100%; padding: 15px; background: var(--bg-dark); border: 1px solid var(--border-color); color: var(--text-light); border-radius: 4px; outline: none; transition: 0.3s; font-family: 'Inter', sans-serif; }
.input-group input:focus, .input-group textarea:focus { border-color: var(--primary-orange); box-shadow: 0 0 10px rgba(255, 115, 0, 0.2); }

@keyframes pulse { 0% { transform: scale(0.8); opacity: 0.1; } 100% { transform: scale(1.2); opacity: 0.3; } }

@media (max-width: 900px) {
    .nav-center, .nav-right .btn-outline, .nav-right .btn-glow-nav { display: none; }
    .menu-toggle { display: block; }
    .nav-active .nav-center {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--bg-dark); padding: 20px 0; border-bottom: 1px solid var(--primary-orange);
    }
    .nav-active .nav-center ul { flex-direction: column; align-items: center; }

    .hero h1 { font-size: 40px; }
    .product-container { grid-template-columns: 1fr; gap: 30px; padding: 20px 5%; }
    .bundle-selector { grid-template-columns: 1fr; }
    .row, .row.reverse { flex-direction: column; text-align: center; gap: 30px; }
    .timeline::before { display: none; }
    .timeline { flex-direction: column; gap: 20px; }
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.checkout-modal {
    background: var(--bg-card);
    width: 95%;
    max-width: 420px;
    border-radius: 12px;
    border: 1px solid var(--primary-orange);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), var(--neon-glow);
    padding: 20px;

    transform: translateY(50px) scale(0.8);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;

    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .checkout-modal {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--primary-orange);
    text-shadow: var(--neon-glow);
    transform: rotate(90deg);
}

.modal-header h2 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.order-summary {
    background: var(--bg-dark);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-info h4 { font-family: 'Inter', sans-serif; font-size: 16px; margin-bottom: 5px;}
.order-info p { color: var(--text-muted); font-size: 12px; }
.order-total { font-size: 22px; color: var(--primary-orange); font-weight: 800; }

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-paypal {
    background: #ffc439;
    color: #003087;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    font-style: italic;
    border: none;
    padding: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-paypal:hover { background: #e5b033; }

.btn-credit-card {
    background: #1a1a24;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-credit-card:hover {
    border-color: #fff;
    background: #2a2a36;
}

.secure-badge {
    text-align: center;
    margin-top: 15px;
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

body.theme-blue {

    --primary-orange: #00e5ff; 
    --neon-glow: 0 0 15px rgba(0, 229, 255, 0.5), 0 0 30px rgba(0, 229, 255, 0.3);

    background-image: linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
}

body.theme-blue .nav-center ul li a:hover, 
body.theme-blue .nav-center ul li a.active {
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

body.theme-blue .btn-glow-nav:hover, 
body.theme-blue .btn-glow-large:hover, 
body.theme-blue .btn-glow:hover {
    box-shadow: 0 0 25px var(--primary-orange), inset 0 0 10px var(--primary-orange);
}

body.theme-blue .product-card:hover { border-color: rgba(0, 229, 255, 0.3); }
body.theme-blue .bundle-card.active { background: rgba(0, 229, 255, 0.05); }

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.story-section {
    padding: 100px 5%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.story-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.story-section h2 span {
    color: var(--primary-orange);
    text-shadow: var(--neon-glow);
}

.story-section p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

.vibe-container {
    display: flex;
    gap: 40px;
    padding: 0 5% 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.vibe-card {
    flex: 1;
    height: 450px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: 0.5s;
}

.vibe-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.vibe-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%);
}

.vibe-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.vibe-info h3 {
    font-size: 28px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.vibe-info p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.vibe-card:hover {
    box-shadow: var(--neon-glow);
    border-color: var(--primary-orange);
    transform: translateY(-10px);
}

.vibe-card:hover img {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .vibe-container { flex-direction: column; }
    .story-section h2 { font-size: 30px; }
}

footer {
    background: #050508;
    border-top: 1px solid var(--border-color);
    padding: 60px 5% 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-orange);
    text-shadow: 0 0 10px rgba(255, 115, 0, 0.5);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary-orange);
    color: #000;
    box-shadow: var(--neon-glow);
    border-color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 12px;
}

.account-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.account-dropdown {
    position: absolute;
    top: 150%;
    right: 0;
    width: 280px;
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 2000;
}

.account-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.user-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
    object-fit: cover;
}

.user-info h4 {
    font-size: 15px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.user-info p {
    font-size: 12px;
    color: var(--primary-orange);
}

.dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.dropdown-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
    transition: 0.3s;
}

.dropdown-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.logout-btn {
    width: 100%;
    background: transparent;
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.logout-btn:hover {
    background: #e74c3c;
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -8px; right: -8px;
    background: var(--primary-orange);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
}

.profile-wrapper {
    display: flex;
    gap: 40px;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60vh;
}

.profile-sidebar {
    flex: 1;
    min-width: 300px;
}

.user-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: sticky;
    top: 100px;
}

.user-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-orange);
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: var(--neon-glow);
}

.user-card h2 { font-size: 22px; margin-bottom: 5px; }
.user-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }

.profile-content {
    flex: 2;
}

.profile-section-title {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.cart-item {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.cart-item:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 0 15px rgba(255, 115, 0, 0.1);
}

.item-info h4 { font-size: 16px; font-family: 'Inter', sans-serif; }
.item-info p { color: var(--text-muted); font-size: 12px; margin-top: 5px; }
.item-price { color: var(--primary-orange); font-weight: bold; font-size: 18px; }

.cart-summary {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--primary-orange);
    text-align: right;
}

.empty-cart-msg {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px dashed var(--border-color);
}

@media (max-width: 900px) {
    .profile-wrapper { flex-direction: column; }
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.btn-outline-large {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-outline-large:hover {
    border-color: var(--text-light);
    color: var(--text-light);
}

.shipping-form {
    display: none; 
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.input-field {
    width: 100%;
    padding: 10px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-radius: 4px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.input-field:focus {
    border-color: var(--primary-orange);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 115, 0, 0.2);
}

.btn-confirm-order {
    width: 100%;
    background: #ffc439;
    color: #003087;
    font-weight: bold;
    font-size: 16px;
    padding: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-confirm-order:hover { background: #e5b033; }

.input-row {
    display: flex;
    gap: 10px;
}

.input-row .input-field {
    margin-bottom: 15px;
}

.cart-icon {
    position: relative; 
    font-size: 20px;
    color: var(--text-light);
    transition: 0.3s;
    cursor: pointer;
}

.sold-out-card {
    filter: grayscale(100%); 
    opacity: 0.5; 
    cursor: not-allowed;
    pointer-events: none; 
}

.sold-out-text {
    color: #e74c3c !important; 
    border-color: #e74c3c !important;
    font-weight: bold;
}

.btn-sold-out {
    background: #222 !important;
    color: #666 !important;
    border: 1px solid #333 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

.checkout-notice {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.5;
}

.checkout-notice ul {
    margin-top: 10px;
    padding-left: 20px;
    list-style: none;
}

.checkout-notice ul li {
    margin-bottom: 8px;
    position: relative;
}

.checkout-notice ul li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--primary-orange);
    font-weight: bold;
}

.checkout-notice strong {
    color: var(--text-light);
}

body.theme-purple {
    --primary-orange: #b533ff;
    --neon-glow: 0 0 15px rgba(181, 51, 255, 0.5), 0 0 30px rgba(181, 51, 255, 0.3);
    background-image: linear-gradient(rgba(181, 51, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(181, 51, 255, 0.03) 1px, transparent 1px);
}

body.theme-purple .nav-center ul li a:hover, 
body.theme-purple .nav-center ul li a.active {
    text-shadow: 0 0 10px rgba(181, 51, 255, 0.5);
}

body.theme-purple .btn-glow-nav:hover, 
body.theme-purple .btn-glow-large:hover, 
body.theme-purple .btn-glow:hover {
    box-shadow: 0 0 25px var(--primary-orange), inset 0 0 10px var(--primary-orange);
}

body.theme-purple .product-card:hover { border-color: rgba(181, 51, 255, 0.3); }
body.theme-purple .bundle-card.active { background: rgba(181, 51, 255, 0.05); }