/* ============================================
   MC CAPERS - Global Stylesheet
   Unified styles for all pages
   ============================================ */

/* ============================================
   1. RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: url('../images/hero-bg.jpg') center center / cover no-repeat fixed;
    color: #000;
    min-height: 100vh;
    padding-bottom: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

/* ============================================
   2. NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    animation: slideDown 0.8s ease-out;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

nav ul li a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.04);
    display: inline-block;
}

nav ul li a:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.08);
}

nav ul li a.active {
    color: #fff;
    background: #000;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Cart Button */
.cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    border: none;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: scale(1.05);
}

.cart-btn svg {
    width: 22px;
    height: 22px;
    color: rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.cart-btn:hover svg {
    color: #000;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    background: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.cart-badge.active {
    display: flex;
}

/* Orders Button */
.orders-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    border: none;
    transition: all 0.3s ease;
}

.orders-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: scale(1.05);
}

.orders-btn svg {
    width: 22px;
    height: 22px;
    color: rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.orders-btn:hover svg {
    color: #000;
}

.orders-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    display: none;
    animation: pulse 2s infinite;
}

.orders-badge.active {
    display: block;
}

/* Login Button */
.login-btn {
    padding: 10px 24px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* User Avatar Button */
.user-avatar-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.user-avatar-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   2.5. MOBILE NAVIGATION
   ============================================ */

/* Mobile right buttons - hidden on desktop */
.nav-right-mobile {
    display: none;
    align-items: center;
    gap: 10px;
}

/* Hamburger Button */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.04);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation when active */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    z-index: 1999;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.mobile-menu-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.04);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.08);
}

.mobile-menu-close svg {
    width: 20px;
    height: 20px;
    color: #000;
}

.mobile-menu-content {
    padding: 15px;
}

.mobile-menu-section {
    margin-bottom: 20px;
}

.mobile-menu-section-title {
    font-size: 12px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 15px 8px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    font-size: 15px;
    font-weight: 500;
}

.mobile-menu-item:hover {
    background: rgba(0, 0, 0, 0.04);
}

.mobile-menu-item.active {
    background: #000;
    color: #fff;
}

.mobile-menu-item.active .mobile-menu-icon svg {
    color: #fff;
}

.mobile-menu-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-menu-icon svg {
    width: 20px;
    height: 20px;
    color: rgba(0, 0, 0, 0.6);
    transition: color 0.2s ease;
}

.mobile-menu-item:hover .mobile-menu-icon svg {
    color: #000;
}

/* Mobile Cart Badge */
.mobile-cart-badge {
    margin-left: auto;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-cart-badge.active {
    display: flex;
}

/* ============================================
   3. PROFILE MODAL
   ============================================ */
.profile-modal {
    position: fixed;
    top: 80px;
    right: 60px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    min-width: 320px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    display: none;
    animation: fadeInDown 0.3s ease;
}

.profile-modal.active {
    display: block;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.profile-avatar {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

.profile-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
}

.profile-info p {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
}

.invite-section {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
}

.invite-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.invite-section h4 svg {
    width: 16px;
    height: 16px;
}

.invite-link-box {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.invite-link-box input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 12px;
    background: #fff;
}

.invite-link-box button {
    padding: 10px 16px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.invite-link-box button:hover {
    background: #333;
}

.invite-stats {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

.invite-count {
    font-weight: 700;
    color: #000;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
}

.profile-action-btn:hover {
    background: rgba(0, 0, 0, 0.03);
}

.profile-action-btn.logout {
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.2);
}

.profile-action-btn.logout:hover {
    background: rgba(220, 53, 69, 0.05);
}

/* ============================================
   4. LOGIN MODAL & FORMS
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.close-btn,
.close-button {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    line-height: 1;
}

.close-btn:hover,
.close-button:hover {
    color: #000;
    transform: rotate(90deg);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.turnstile-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   5. FOOTER
   ============================================ */
.site-footer {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 50px 60px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #000;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
}

.footer-section h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #000;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #000;
}

/* ============================================
   6. COMMON ANIMATIONS
   ============================================ */
@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

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

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ============================================
   7. LOADING STATES
   ============================================ */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-state {
    text-align: center;
    padding: 60px 20px;
}

.loading-state p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
}

/* ============================================
   8. CHAT WIDGET (Common)
   ============================================ */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-toggle svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: none;
    overflow: hidden;
}

.chat-box.active {
    display: block;
    animation: slideUp 0.3s ease;
}

.chat-header {
    background: #000;
    color: #fff;
    padding: 20px;
}

.chat-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.chat-header p {
    font-size: 13px;
    opacity: 0.7;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 20px;
}

.chat-message {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 85%;
    font-size: 14px;
    line-height: 1.5;
}

.chat-message.system {
    background: rgba(0, 0, 0, 0.05);
}

.chat-message.user {
    background: #000;
    color: #fff;
    margin-left: auto;
}

.chat-message.admin {
    background: #f5f5f5;
    color: #000;
}

.chat-input-area {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.chat-input-area input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
}

.chat-input-area input:focus {
    outline: none;
    border-color: #000;
}

.chat-input-area button {
    padding: 12px 20px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input-area button:hover {
    background: #333;
}

/* ============================================
   9. PAGE: INDEX (Homepage)
   ============================================ */
.page-index body {
    background: #fff;
}

.page-index body::before {
    display: none;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    color: #000;
    margin-bottom: 40px;
    animation: logoFloat 2s ease-in-out infinite;
}

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

.loader-container {
    width: 200px;
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, #000, #333, #000);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: loading 2s ease-in-out infinite, shimmer 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.loader-text {
    margin-top: 25px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    animation: pulseText 1.5s ease-in-out infinite;
}

@keyframes pulseText {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.loader-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 60px 80px;
    position: relative;
    background: url('../images/hero-bg.jpg') center center / cover no-repeat;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: -2.5px;
    animation: fadeInDown 1s ease-out;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(17px, 2.5vw, 22px);
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 35px;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-cta {
    margin-bottom: clamp(40px, 6vh, 70px);
    animation: fadeInUp 1.8s ease-out;
}

.shop-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #000 0%, #2d2d2d 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.shop-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.shop-now-btn:hover::before {
    left: 100%;
}

.shop-now-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.shop-now-btn::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.shop-now-btn:hover::after {
    transform: translateX(5px);
}

/* Character Row */
.character-row {
    display: flex;
    width: 100%;
    max-width: min(95vw, 1600px);
    height: auto;
    aspect-ratio: 6 / 1.1;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out;
    box-shadow: 0 25px 90px rgba(0, 0, 0, 0.18);
    background: transparent;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.character-row:hover {
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.22);
    transform: translateY(-5px);
}

.character-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.character-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.character-item:hover {
    flex: 1.35;
    z-index: 10;
}

.character-item:hover img {
    transform: scale(1.08);
}

.character-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -200%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
    z-index: 2;
}

.character-item:hover::before {
    left: 200%;
}

/* Character Overlay - Desktop hover effect */
.character-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.character-overlay span {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #fff;
    border-radius: 30px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.character-item:hover .character-overlay {
    opacity: 1;
}

.character-item:hover .character-overlay span {
    transform: translateY(0);
}

/* Mobile Shop CTA - Hidden on desktop */
.mobile-shop-cta {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    animation: fadeInUp 1.5s ease-out;
}

.mobile-shop-cta .shop-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #000;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.mobile-shop-cta .shop-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.swipe-hint {
    margin-top: 15px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.5;
    z-index: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-18px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator::before {
    content: '↓';
    font-size: 36px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

/* ============================================
   10. PAGE: SHOP
   ============================================ */
.shop-container {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 40px;
}

.shop-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.shop-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.shop-header p {
    font-size: clamp(14px, 1.5vw, 18px);
    color: rgba(0, 0, 0, 0.65);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out backwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 180px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

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

.product-name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-price {
    font-size: 22px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.product-price span {
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 500;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.stock-dot.in-stock { background: #22c55e; }
.stock-dot.out-of-stock { background: #ef4444; }

.stock-text.in-stock { color: #16a34a; }
.stock-text.out-of-stock { color: #dc2626; }

.buy-button {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.buy-button:disabled {
    background: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
}

.buy-button.preorder {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Purchase Modal Sections */
.modal-section {
    margin-bottom: 25px;
}

.modal-section-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    color: rgba(0, 0, 0, 0.7);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
}

.quantity-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(0, 0, 0, 0.6);
}

.quantity-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #000;
}

.quantity-display {
    width: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

.payment-option:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.payment-option.selected {
    border-color: #000;
    background: rgba(0, 0, 0, 0.02);
}

.total-section {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.total-row.final {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 700;
}

.checkout-button {
    width: 100%;
    padding: 16px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.checkout-button:disabled {
    background: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
}

/* ============================================
   11. PAGE: CHECKOUT
   ============================================ */
.checkout-container {
    max-width: 1100px;
    margin: 100px auto 0;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    min-height: calc(100vh - 100px);
}

.checkout-left {
    animation: fadeInUp 0.8s ease-out;
}

.checkout-header {
    margin-bottom: 30px;
}

.checkout-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.checkout-header p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 15px;
}

.order-summary-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.order-summary-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-summary-card h3 svg,
.payment-card h3 svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.order-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    align-items: flex-start;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.order-item-type {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.order-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-item-remove {
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    align-self: flex-start;
    margin-left: auto;
}

.order-item-remove:hover {
    background: rgba(239, 68, 68, 0.2);
}

.order-item-remove svg {
    width: 16px;
    height: 16px;
    color: #ef4444;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    overflow: hidden;
}

.quantity-value {
    width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

.order-item-price {
    font-size: 20px;
    font-weight: 700;
    text-align: right;
}

.price-breakdown {
    padding-top: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 15px;
}

.price-row.total {
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    margin-top: 10px;
    padding-top: 20px;
    font-size: 20px;
    font-weight: 700;
}

.price-row span:first-child {
    color: rgba(0, 0, 0, 0.6);
}

.price-row.total span:first-child {
    color: #000;
}

.checkout-right {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.payment-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.payment-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.02);
}

.payment-method.selected {
    border-color: #000;
    background: rgba(0, 0, 0, 0.02);
}

.payment-method-radio {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.payment-method.selected .payment-method-radio {
    border-color: #000;
}

.payment-method.selected .payment-method-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
}

.payment-method-icon {
    width: 48px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-method-icon svg {
    width: 48px;
    height: 32px;
    max-width: 48px;
    max-height: 32px;
}

.checkout-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.payment-method-name {
    flex: 1;
    font-weight: 600;
    font-size: 15px;
}

.promo-section {
    margin-bottom: 25px;
}

.promo-section label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

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

.promo-input-group input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.promo-input-group input:focus {
    outline: none;
    border-color: #000;
}

.promo-input-group button {
    padding: 14px 24px;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-input-group button:hover {
    background: rgba(0, 0, 0, 0.1);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(34, 197, 94, 0.08);
    border-radius: 10px;
    margin-bottom: 25px;
}

.security-badge svg {
    width: 20px;
    height: 20px;
    color: #16a34a;
}

.security-badge span {
    font-size: 13px;
    color: #16a34a;
    font-weight: 500;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.checkout-btn:disabled {
    background: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
}

.checkout-terms {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    line-height: 1.6;
}

.checkout-terms a {
    color: #000;
    text-decoration: underline;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart svg {
    width: 80px;
    height: 80px;
    color: rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.empty-cart h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.empty-cart p {
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 25px;
}

.empty-cart p a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

/* Page Loading Overlay */
.page-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loading-content {
    text-align: center;
}

.page-loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

.page-loading-text {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

/* ============================================
   12. PAGE: DELIVERY
   ============================================ */
.delivery-container {
    max-width: 700px;
    margin: 120px auto 0;
    padding: 0 40px;
}

.success-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: scaleIn 0.6s ease-out;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.success-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.success-header p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
}

.order-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease-out;
}

.order-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.order-info h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.order-number {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

.order-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    text-align: center;
}

.detail-label {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.detail-value {
    font-size: 18px;
    font-weight: 700;
}

.codes-section {
    margin-bottom: 25px;
}

.codes-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge {
    background: #000;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.codes-list {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 15px;
}

.code-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
}

.code-item:last-child {
    margin-bottom: 0;
}

.code-value {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
    word-break: break-all;
}

.copy-btn {
    padding: 8px 16px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    transform: translateY(-1px);
}

.copy-btn.copied {
    background: #22c55e;
}

.preorder-notice {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.preorder-notice h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #667eea;
}

.preorder-notice p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.message-form {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.message-form h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.message-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    min-height: 100px;
    resize: vertical;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.message-form textarea:focus {
    outline: none;
    border-color: #000;
}

.message-form button {
    padding: 12px 24px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.message-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn.primary {
    background: #000;
    color: #fff;
    border: none;
}

.action-btn.secondary {
    background: transparent;
    color: #000;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.action-btn.contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
}

.action-btn:hover {
    transform: translateY(-2px);
}

.action-btn svg {
    width: 18px;
    height: 18px;
}

.error-state {
    text-align: center;
    padding: 60px;
}

.error-icon {
    width: 60px;
    height: 60px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.error-icon svg {
    width: 30px;
    height: 30px;
    color: #ef4444;
}

/* ============================================
   13. PAGE: VOUCHES
   ============================================ */
.vouches-container {
    max-width: 1200px;
    margin: 120px auto 0;
    padding: 0 40px;
}

.vouches-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 1s ease-out;
}

.vouches-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.vouches-header p {
    font-size: clamp(14px, 1.5vw, 18px);
    color: rgba(0, 0, 0, 0.65);
    font-weight: 500;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    animation: fadeIn 1.2s ease-out;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 600;
    margin-top: 8px;
}

.vouches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.vouch-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out backwards;
}

.vouch-card:nth-child(1) { animation-delay: 0.1s; }
.vouch-card:nth-child(2) { animation-delay: 0.2s; }
.vouch-card:nth-child(3) { animation-delay: 0.3s; }
.vouch-card:nth-child(4) { animation-delay: 0.4s; }
.vouch-card:nth-child(5) { animation-delay: 0.5s; }
.vouch-card:nth-child(6) { animation-delay: 0.6s; }

.vouch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.vouch-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.vouch-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000, #333);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.vouch-user-info {
    flex: 1;
}

.vouch-username {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 3px;
}

.vouch-date {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
}

.vouch-rating {
    display: flex;
    gap: 3px;
}

.star {
    color: #fbbf24;
    font-size: 16px;
}

.vouch-content {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.75);
}

.vouch-product {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
}

.vouch-product span {
    font-weight: 600;
    color: #000;
}

.vouch-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   14. PAGE: BLOG
   ============================================ */
.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.capes-section {
    margin-bottom: 60px;
}

.capes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.cape-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cape-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

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

.cape-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.cape-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cape-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cape-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.cape-subtitle {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    font-weight: 500;
}

.cape-content > p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.cape-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.meta-value {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.cape-actions {
    display: flex;
    gap: 12px;
}

.btn-primary {
    flex: 1;
    padding: 14px 24px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    padding: 14px 24px;
    background: transparent;
    color: #000;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #000;
    background: rgba(0, 0, 0, 0.03);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

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

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.video-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-close:hover {
    transform: scale(1.2);
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-top: 60px;
}

.contact-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: rgba(0, 0, 0, 0.1);
}

.live-chat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.live-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   15. PAGE: EVENTS
   ============================================ */
.events-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 40px 60px;
}

.events-hero {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeIn 1s ease;
}

.events-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.events-hero p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.progress-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.progress-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.progress-stats {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.login-required {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.login-required svg {
    width: 80px;
    height: 80px;
    color: rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.login-required h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.login-required p {
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.login-required button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-required button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.progress-content {
    display: none;
}

.progress-bar-container {
    position: relative;
    padding: 40px 0;
}

.progress-track {
    position: absolute;
    top: 50%;
    left: 80px;
    right: 80px;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    transform: translateY(-50%);
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.milestones {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
}

.milestone-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: 4px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.milestone-circle img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.milestone.unlocked .milestone-circle {
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.milestone.claimed .milestone-circle {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.milestone.claimed .milestone-circle img {
    filter: brightness(0) invert(1);
}

.milestone-info {
    text-align: center;
}

.milestone-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.milestone-requirement {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.claim-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.claim-btn.available {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.claim-btn.available:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.claim-btn.claimed {
    background: #4CAF50;
    color: white;
}

.claim-btn.locked {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.4);
    cursor: default;
}

.invite-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
}

.invite-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.invite-box h3 svg {
    width: 24px;
    height: 24px;
}

.invite-input-group {
    display: flex;
    gap: 10px;
}

.invite-input-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    font-size: 14px;
    background: white;
}

.invite-input-group button {
    padding: 15px 30px;
    background: #000;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.invite-input-group button:hover {
    background: #333;
}

.rules-section {
    margin-top: 40px;
}

.rules-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

.rules-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list svg {
    width: 20px;
    height: 20px;
    color: #667eea;
    flex-shrink: 0;
    margin-top: 2px;
}

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

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

.reward-modal-content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: scaleIn 0.3s ease;
}

.reward-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.reward-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.reward-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reward-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.reward-modal h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #4CAF50;
}

.reward-modal p {
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 25px;
}

.reward-details {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
}

.reward-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.reward-detail-row:last-child {
    border-bottom: none;
}

.reward-detail-label {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
}

.reward-detail-value {
    font-size: 14px;
    font-weight: 600;
}

.code-display {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.copy-code-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.copy-code-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.reward-modal-actions {
    display: flex;
    gap: 10px;
}

.reward-modal-actions button {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-order-btn {
    background: #000;
    color: white;
}

.close-modal-btn {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

/* ============================================
   16. PAGE: GIVEAWAYS
   ============================================ */
.giveaways-container {
    max-width: 1000px;
    margin: 100px auto 0;
    padding: 0 40px;
}

.giveaways-hero {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.giveaways-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.giveaways-hero p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.giveaway-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    display: flex;
    gap: 30px;
    animation: fadeInUp 0.8s ease-out backwards;
    transition: all 0.3s ease;
}

.giveaway-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.giveaway-card.completed {
    opacity: 0.85;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.giveaway-card.winner-card {
    opacity: 1;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
}

.giveaway-image {
    width: 180px;
    height: 180px;
    border-radius: 16px;
    background: #f5f5f5;
    overflow: hidden;
    flex-shrink: 0;
}

.giveaway-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.giveaway-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.giveaway-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.giveaway-product {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.giveaway-description {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.giveaway-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.giveaway-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

.giveaway-stat svg {
    width: 18px;
    height: 18px;
}

.giveaway-stat strong {
    color: #000;
}

.giveaway-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.enter-btn {
    padding: 14px 35px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enter-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.enter-btn:disabled {
    background: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
}

.enter-btn.entered {
    background: #22c55e;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.status-badge.completed {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.status-badge.winner {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    font-size: 14px;
    padding: 8px 16px;
    animation: pulse 2s infinite;
}

.prize-info {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    color: white;
}

.prize-label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prize-code {
    display: block;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 15px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    word-break: break-all;
}

.result-info, .result-lost {
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
}

.result-info {
    background: rgba(107, 114, 128, 0.1);
    color: #4b5563;
}

.result-lost {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.login-required-card {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.login-required-card svg {
    width: 80px;
    height: 80px;
    color: rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.login-required-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.login-required-card p {
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 25px;
}

.login-required-card button {
    background: #000;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-required-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.empty-state {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.empty-state svg {
    width: 80px;
    height: 80px;
    color: rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.empty-state p {
    color: rgba(0, 0, 0, 0.5);
}

/* ============================================
   17. RESPONSIVE DESIGN
   ============================================ */

/* Large screens */
@media (min-width: 1920px) {
    .hero {
        padding: 160px 80px 100px;
    }

    .character-row {
        max-width: 1800px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    nav {
        padding: 15px 40px;
    }

    nav ul {
        gap: 6px;
    }

    .nav-links {
        gap: 20px;
    }

    .profile-modal {
        right: 40px;
    }

    .site-footer {
        padding: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero {
        padding: 120px 40px 70px;
    }

    .shop-now-btn {
        padding: 16px 40px;
        font-size: 17px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkout-container {
        grid-template-columns: 1fr;
        padding: 20px;
        margin-top: 80px;
    }

    .payment-card {
        position: static;
    }

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

    .blog-container {
        padding: 100px 20px 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* ===== Navigation - Mobile Hamburger Menu ===== */
    nav {
        padding: 12px 20px;
    }

    .logo {
        font-size: 22px;
    }

    /* Hide desktop navigation */
    .nav-links {
        display: none !important;
    }

    /* Hide desktop right buttons */
    .nav-right {
        display: none !important;
    }

    /* Show mobile right buttons */
    .nav-right-mobile {
        display: flex;
    }

    /* Mobile login button */
    .nav-right-mobile .login-btn {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 20px;
    }

    /* Mobile user avatar button (when logged in) */
    .nav-right-mobile .user-avatar-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /* Profile Modal - Mobile positioning */
    .profile-modal {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 80vh;
        overflow-y: auto;
        animation: slideUpMobile 0.3s ease;
    }

    @keyframes slideUpMobile {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* ===== Other Mobile Styles ===== */
    .site-footer {
        padding: 30px 25px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding: 100px 20px 40px;
    }

    /* ===== Mobile Character Row - Horizontal Scroll ===== */
    .character-row {
        max-width: 100%;
        width: 100%;
        aspect-ratio: auto;
        height: 180px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        border-radius: 16px;
        gap: 0;
        padding: 0 10px;
        margin: 0 -10px;
        box-shadow: none;
    }
    
    .character-row::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .character-item {
        flex: 0 0 auto;
        min-width: 140px;
        width: 140px;
        height: 100%;
        scroll-snap-align: center;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .character-item:hover {
        flex: 0 0 auto;
    }
    
    .character-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Hide hover overlay on mobile - use button instead */
    .character-overlay {
        display: none;
    }
    
    /* Mobile touch feedback */
    .character-item:active {
        transform: scale(0.95);
        opacity: 0.8;
    }
    
    .character-item:active img {
        transform: none;
    }
    
    /* Show mobile shop CTA */
    .mobile-shop-cta {
        display: flex;
    }

    .loader-logo {
        font-size: 36px;
    }

    .shop-now-btn {
        padding: 15px 36px;
        font-size: 16px;
    }

    .shop-container,
    .vouches-container,
    .giveaways-container {
        padding: 0 20px;
        margin-top: 80px;
    }

    .delivery-container {
        padding: 0 20px;
        margin-top: 100px;
    }

    .order-card {
        padding: 30px 25px;
    }

    .order-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .detail-item {
        display: flex;
        justify-content: space-between;
        text-align: left;
    }

    .actions {
        flex-direction: column;
    }

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

    .stats-row {
        gap: 30px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cape-content h3 {
        font-size: 20px;
    }

    .cape-meta {
        flex-direction: column;
        gap: 15px;
    }

    .cape-actions {
        flex-direction: column;
    }

    .contact-section {
        padding: 40px 20px;
    }

    .chat-box {
        width: 320px;
    }

    .events-container {
        padding: 100px 20px 40px;
    }

    .events-hero h1,
    .giveaways-hero h1 {
        font-size: 32px;
    }

    .events-hero p,
    .giveaways-hero p {
        font-size: 15px;
    }

    .progress-card {
        padding: 25px;
    }

    .progress-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .progress-track {
        left: 40px;
        right: 40px;
    }

    .milestones {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .milestone {
        width: 100%;
        flex-direction: row;
        gap: 20px;
    }

    .milestone-circle {
        margin-bottom: 0;
    }

    .milestone-info {
        text-align: left;
        flex: 1;
    }

    .invite-input-group {
        flex-direction: column;
    }

    .giveaway-card {
        flex-direction: column;
        padding: 25px;
    }

    .giveaway-image {
        width: 100%;
        height: 200px;
    }

    /* Giveaway actions mobile */
    .giveaway-actions {
        flex-direction: column;
        gap: 10px;
    }

    .giveaway-actions .enter-btn {
        width: 100%;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    nav {
        padding: 10px 15px;
    }

    .logo {
        font-size: 18px;
    }

    /* Mobile menu adjustments for small screens */
    .mobile-menu {
        width: 90%;
        max-width: 300px;
    }

    .hamburger-btn {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .hamburger-line {
        width: 18px;
    }

    .nav-right-mobile {
        gap: 8px;
    }

    .nav-right-mobile .login-btn {
        padding: 7px 12px;
        font-size: 12px;
    }

    .nav-right-mobile .user-avatar-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .mobile-menu-item {
        padding: 12px;
        font-size: 14px;
    }

    /* Small mobile character row */
    .character-row {
        height: 150px;
    }
    
    .character-item {
        min-width: 120px;
        width: 120px;
    }
    
    .mobile-shop-cta .shop-now-btn {
        padding: 14px 35px;
        font-size: 15px;
    }
    
    .swipe-hint {
        font-size: 12px;
    }

    .loader-logo {
        font-size: 32px;
    }

    .shop-now-btn {
        padding: 14px 32px;
        font-size: 15px;
    }

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

    .checkout-header h1 {
        font-size: 26px;
    }

    .order-item {
        flex-direction: column;
        gap: 15px;
    }

    .order-item-image {
        width: 100%;
        height: 150px;
    }

    .order-item-price {
        text-align: left;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-toggle {
        width: 50px;
        height: 50px;
    }

    .chat-box {
        width: calc(100vw - 40px);
        right: -10px;
    }

    .code-display {
        flex-direction: column;
        gap: 10px;
    }

    .reward-modal-content {
        padding: 30px 20px;
    }

    /* Modal adjustments for small screens */
    .modal-content {
        padding: 30px 20px;
        margin: 15px;
        width: calc(100% - 30px);
    }

    .modal-title {
        font-size: 24px;
    }

    /* Profile modal on small screens */
    .profile-modal {
        padding: 20px;
    }
}
