        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&family=Rajdhani:wght@500;700&display=swap');

        :root {
            --bg-dark: #050505;
            --bg-card: #141414;
            --accent-red: #e50914;
            --accent-glow: rgba(229, 9, 20, 0.5);
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --card-width: 850px;
            --card-height: 480px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            background-color: var(--bg-dark);
            font-family: 'Montserrat', sans-serif;
            color: var(--text-main);
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* ================= HEADER ================= */
        header {
            position: fixed; top: 0; width: 100%; padding: 20px 50px;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 1000;
            background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
        }
        .logo { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 800; color: white; letter-spacing: 2px; text-transform: uppercase; }
        .logo span { color: var(--accent-red); }
        .nav-icons { display: flex; gap: 25px; font-size: 1.2rem; color: white; }
        .nav-icons i { cursor: pointer; transition: 0.3s; }

        /* ================= SECTION 1: VIDEO BANNER ================= */
        .video-banner-section {
            position: relative; width: 100%; height: 85vh; overflow: hidden; background: #000;
        }
        .video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
        .video-container video { width: 100%; height: 100%; object-fit: cover; }
        .video-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.8) 100%);
            z-index: 1;
        }

        /* ================= SECTION 2: MARKETING HOOK ================= */
.marketing-hook {
    position: relative; 
    z-index: 5; 
    /* Changed padding-bottom (3rd value) from 80px to 20px */
    padding: 80px 20px 20px; 
    background-color: var(--bg-dark);
    text-align: center; 
    border-bottom: 1px solid rgba(229, 9, 20, 0.1);
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}
        .marketing-hook h2 { font-family: 'Rajdhani', sans-serif; font-size: 3.5rem; font-weight: 800; text-transform: uppercase; color: white; margin-bottom: 15px; letter-spacing: 3px; text-shadow: 0 0 20px rgba(229, 9, 20, 0.6); }
        .marketing-hook p { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; line-height: 1.6; }
        .marketing-hook span { color: var(--accent-red); font-weight: 700; }
        .scroll-indicator { margin-top: 40px; color: var(--accent-red); font-size: 1.5rem; animation: bounce 2s infinite; }
        @keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }

.product-slider-section {
    position: relative;
    width: 100%;
    min-height: 950px;
    /* Changed padding top/bottom to 20px */
    padding: 20px 0; 
    display: flex;
    flex-direction: column; 
    /* KEY FIX: Change 'center' to 'flex-start' to remove the huge gap */
    justify-content: flex-start; 
    align-items: center;
    perspective: 1000px;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(229, 9, 20, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(229, 9, 20, 0.05) 0%, transparent 20%);
}

        /* --- GALLERY CONTAINER --- */
        .gallery-container {
            width: 100%;
            max-width: 600px;
            height: 200px; 
            position: relative;
            margin-bottom: 40px;
            display: flex;
            justify-content: center;
            z-index: 20;
        }

        /* --- THE MOVING OVAL CARD --- */
        .gallery-oval {
            position: absolute;
            top: 50%;
            width: 100px;
            height: 140px;
            border-radius: 60px; 
            background: #111;
            border: 1px solid rgba(255,255,255,0.1);
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            transform: translate(-50%, -50%); 
        }

        .gallery-oval img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: radial-gradient(circle, #333 0%, #000 100%);
        }

        /* Gallery States */
        .gallery-oval.active {
            left: 50%;
            width: 140px;
            height: 200px;
            border: 3px solid var(--accent-red);
            box-shadow: 0 0 30px var(--accent-glow);
            z-index: 10;
            opacity: 1;
            filter: grayscale(0%);
        }
        .gallery-oval.prev { left: 25%; width: 90px; height: 130px; z-index: 5; opacity: 0.4; filter: grayscale(100%); }
        .gallery-oval.next { left: 75%; width: 90px; height: 130px; z-index: 5; opacity: 0.4; filter: grayscale(100%); }
        .gallery-oval.hidden { left: 50%; width: 50px; height: 50px; opacity: 0; z-index: 0; transform: translate(-50%, -50%) scale(0); }

        /* --- STACK NAVIGATION BUTTONS --- */
        .nav-btn {
            position: absolute;
            top: 60%;
            transform: translateY(-50%);
            background: rgba(20, 20, 20, 0.8); backdrop-filter: blur(5px);
            color: white; border: 1px solid rgba(255,255,255,0.2);
            width: 60px; height: 60px; border-radius: 50%;
            font-size: 1.5rem; cursor: pointer; z-index: 100; transition: 0.3s;
            display: flex; align-items: center; justify-content: center;
        }
        .nav-btn:hover { border-color: var(--accent-red); background: var(--accent-red); box-shadow: 0 0 20px var(--accent-glow); }
        .prev-btn { left: 5%; }
        .next-btn { right: 5%; }

        /* --- CARD STACK (Bottom) --- */
        .card-stack {
            position: relative;
            width: var(--card-width);
            height: var(--card-height);
            z-index: 10;
        }

        .card {
            position: absolute; width: 100%; height: 100%; border-radius: 4px;
            background-color: var(--bg-card); transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 20px 50px rgba(0,0,0,0.9); overflow: hidden; opacity: 0;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .card-content { display: flex; width: 100%; height: 100%; opacity: 0; transition: opacity 0.3s ease; }
        .img-box {
            width: 45%; background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
            display: flex; justify-content: center; align-items: center; position: relative;
            border-right: 1px solid rgba(255,255,255,0.05);
        }
        .img-box img { width: 90%; max-height: 80%; object-fit: contain; filter: drop-shadow(0 15px 15px rgba(0,0,0,0.5)); transition: transform 0.5s; }
        .card.active .img-box img { animation: float 4s ease-in-out infinite; }
        @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
        .details-box { width: 55%; padding: 50px; background-color: var(--bg-card); display: flex; flex-direction: column; justify-content: center; position: relative; }
        .details-box::before { content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); opacity: 0.5; }
        .tag { color: var(--accent-red); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
        .title { font-family: 'Rajdhani', sans-serif; font-size: 3.5rem; font-weight: 700; line-height: 1; margin-bottom: 20px; text-transform: uppercase; color: white; }
        .price { font-size: 1.5rem; color: white; margin-bottom: 20px; font-weight: 300; }
        .price span { color: var(--accent-red); font-weight: 600; }
        .description { font-size: 0.9rem; line-height: 1.6; color: var(--text-muted); margin-bottom: 30px; border-left: 2px solid var(--accent-red); padding-left: 15px; }
        .actions { display: flex; gap: 20px; margin-top: auto; }
        .btn { padding: 15px 35px; font-family: 'Montserrat', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.3s; position: relative; overflow: hidden; border: none; clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%); }
        .btn-primary { background-color: var(--accent-red); color: white; }
        .btn-primary:hover { background-color: white; color: black; box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); }
        .btn-secondary { background-color: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
        .btn-secondary:hover { border-color: var(--accent-red); color: var(--accent-red); background: rgba(229, 9, 20, 0.1); }

        /* --- TRANSFORM STATES --- */
        .card.active { z-index: 10; transform: translateX(0) scale(1); opacity: 1; border: 1px solid rgba(255,255,255,0.1); }
        .card.active .card-content { opacity: 1; }
        .card.next, .card.prev { z-index: 5; background-color: rgba(20, 20, 20, 0.9); backdrop-filter: blur(5px); border: 1px solid var(--accent-red); box-shadow: 0 0 15px var(--accent-glow); }
        .card.next { transform: translateX(50%) translateY(-10%) scale(0.6) rotateY(-10deg); }
        .card.prev { transform: translateX(-50%) translateY(-10%) scale(0.6) rotateY(10deg); }
        .card.back { z-index: 2; transform: translateY(-20%) scale(0.4); opacity: 0.5; background: #222; }
        .card.hidden { transform: translateY(100px) scale(0); opacity: 0; }

     /* ================= FOOTER ================= */
        footer { background-color: #000; padding: 60px 50px 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); position: relative; z-index: 10; margin-top: auto; }
        .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
        .footer-col h4 { color: white; margin-bottom: 20px; font-family: 'Rajdhani', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 1.2rem; border-left: 3px solid var(--accent-red); padding-left: 10px; }
        .footer-col p, .footer-col a { color: var(--text-muted); font-size: 0.9rem; line-height: 2; text-decoration: none; display: block; transition: 0.3s; }
        .footer-col a:hover { color: var(--accent-red); padding-left: 5px; }
        .newsletter input { width: 100%; padding: 12px; background: #111; border: 1px solid #333; color: white; margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
        .social-links { margin-top: 20px; display: flex; gap: 15px; }
        .social-links a { font-size: 1.2rem; color: white; }
        .social-links a:hover { color: var(--accent-red); transform: translateY(-3px); }
        .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: #555; font-size: 0.8rem; }
      /* ================= MOBILE RESPONSIVENESS ================= */
@media (max-width: 900px) {
    header { padding: 20px; background: #000; }
    
    :root { 
        --card-width: 85vw; 
        --card-height: 75vh; 
    }
    
    .video-banner-section { height: 60vh; }
    
    .marketing-hook { padding: 50px 20px; }
    .marketing-hook h2 { font-size: 2rem; }
    
    .product-slider-section { 
        min-height: 90vh; 
        padding: 30px 0; 
        /* Ensure container allows buttons to center relative to it */
        position: relative; 
    }
    
    .gallery-container { height: 160px; margin-bottom: 20px; }
    .gallery-oval.active { width: 100px; height: 150px; }
    .gallery-oval.prev { left: 20%; width: 70px; height: 100px; }
    .gallery-oval.next { left: 80%; width: 70px; height: 100px; }
    
    .card-content { flex-direction: column; }
    
    .img-box { 
        width: 100%; 
        height: 40%; 
        border-right: none; 
        border-bottom: 1px solid rgba(255,255,255,0.1); 
    }
    
    .details-box { 
        width: 100%; 
        height: 60%; 
        padding: 25px; 
    }
    
    .title { font-size: 2.5rem; }
    
    .description { 
        font-size: 0.8rem; 
        margin-bottom: 15px; 
        -webkit-line-clamp: 3; 
        overflow: hidden; 
        display: -webkit-box; 
        -webkit-box-orient: vertical; 
        -webkit-box-pack: start; 
    }
    
    .btn { padding: 12px 20px; font-size: 0.8rem; }
    
    .card.next { transform: translateX(10%) scale(0.9) translateY(15px); }
    .card.prev { transform: translateX(-10%) scale(0.9) translateY(15px); }
    
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    
    /* --- FIXED BUTTON ALIGNMENT HERE --- */
    .nav-btn { 
        top: 50%;             /* Move to middle vertical */
        bottom: auto;         /* Remove the bottom alignment */
        transform: translateY(-50%); /* Exact center alignment */
        width: 50px; 
        height: 50px; 
        background: rgba(20,20,20,0.9); 
    }
    
    .prev-btn { left: 10px; } /* Brought closer to edge for mobile */
    .next-btn { right: 10px; } 
    
    .cart-sidebar { width: 100%; right: -100%; }
}
        /* Update the .logo class */
.logo { 
    display: flex;              /* Aligns image and text in a row */
    align-items: center;        /* Centers them vertically */
    gap: 10px;                  /* Space between Logo and Text */
    font-family: 'Rajdhani', sans-serif; 
    font-size: 2rem; 
    font-weight: 800; 
    color: white; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
}

/* Add this new rule for the image */
.logo img {
    height: 40px;               /* Adjust this to change logo size */
    width: auto;
    object-fit: contain;
}

.logo span { color: var(--accent-red); }



/* ================= CART SIDEBAR & OVERLAY ================= */
.cart-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px); /* This makes the page translucent/blurry */
    z-index: 1500;
    opacity: 0; pointer-events: none; transition: 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
    position: fixed; top: 0; right: -450px; /* Hidden by default */
    width: 400px; height: 100vh;
    background: #0f0f0f; border-left: 1px solid #333;
    z-index: 2000;
    display: flex; flex-direction: column;
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
}
.cart-sidebar.open { right: 0; }

.cart-header { padding: 20px; border-bottom: 1px solid #222; display: flex; justify-content: space-between; align-items: center; }
.cart-header h2 { font-family: 'Rajdhani', sans-serif; text-transform: uppercase; margin: 0; }
.close-cart { cursor: pointer; font-size: 1.5rem; transition: 0.3s; }
.close-cart:hover { color: var(--accent-red); }

.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item { display: flex; gap: 15px; margin-bottom: 20px; background: #1a1a1a; padding: 10px; border-radius: 4px; border: 1px solid #333; }
.cart-item img { width: 60px; height: 60px; object-fit: contain; background: #000; }
.cart-details h4 { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; margin-bottom: 5px; }
.cart-details p { font-size: 0.8rem; color: #aaa; margin-bottom: 5px; }
.remove-item { color: var(--accent-red); font-size: 0.7rem; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; }

.cart-footer { padding: 20px; border-top: 1px solid #222; background: #111; }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 15px; font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: bold; }

/* ================= RECOMMENDATIONS SECTION ================= */
.may-like-section { padding: 20px; background: #080808; border-top: 1px solid #222; }
.may-like-title { font-size: 0.9rem; color: #777; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.rec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rec-card { background: #141414; padding: 10px; text-align: center; border: 1px solid #222; cursor: pointer; transition: 0.2s; }
.rec-card:hover { border-color: var(--accent-red); }
.rec-card img { width: 100%; height: 60px; object-fit: contain; margin-bottom: 5px; }
.rec-card h5 { font-size: 0.8rem; margin-bottom: 3px; }
.rec-card span { font-size: 0.7rem; color: var(--accent-red); }

/* ================= SIZE SELECTOR ================= */
.size-selector-container {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns to left like title */
}

.size-label {
    font-size: 0.7rem;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-options {
    display: flex;
    gap: 10px;
}

/* The Round Button */
.size-box {
    cursor: pointer;
    transition: 0.2s;
}

.size-circle {
    width: 40px; 
    height: 40px; 
    border-radius: 50%;
    border: 1px solid #444; 
    color: #fff;
    background: transparent;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 0.9rem; 
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Hover State */
.size-box:not(.disabled):hover .size-circle {
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.3);
}

/* Selected State */
.size-box.selected .size-circle {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 0 15px var(--accent-glow);
    color: white;
}

/* Disabled / Out of Stock (The Stripe) */
.size-box.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.size-box.disabled .size-circle {
    border-color: #333;
    color: #444;
    /* This creates the diagonal stripe */
    background: linear-gradient(
        45deg,
        transparent 45%,
        #444 45%,
        #444 55%,
        transparent 55%
    );
}


/* ================= AUTH MODAL ================= */
.auth-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: 0.3s;
}
.auth-overlay.open { opacity: 1; pointer-events: all; }

.auth-modal {
    background: #0f0f0f;
    width: 400px;
    padding: 40px;
    border: 1px solid #333;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

.close-auth {
    position: absolute; top: 15px; right: 20px;
    font-size: 1.2rem; cursor: pointer; color: #666; transition: 0.3s;
}
.close-auth:hover { color: var(--accent-red); }

.auth-tabs { display: flex; border-bottom: 1px solid #333; margin-bottom: 25px; }
.auth-tabs .tab {
    flex: 1; text-align: center; padding: 10px; cursor: pointer;
    font-family: 'Rajdhani', sans-serif; text-transform: uppercase;
    color: #666; transition: 0.3s;
}
.auth-tabs .tab.active { color: white; border-bottom: 2px solid var(--accent-red); }

.auth-form { display: none; flex-direction: column; gap: 15px; }
.auth-form.active { display: flex; }
.auth-form h3 { font-family: 'Rajdhani', sans-serif; color: white; margin-bottom: 5px; text-transform: uppercase; }

.auth-form input {
    width: 100%; padding: 12px; background: #000;
    border: 1px solid #333; color: white; outline: none;
    font-family: 'Montserrat', sans-serif;
}
.auth-form input:focus { border-color: var(--accent-red); }

.full-width { width: 100%; margin-top: 10px; }

.btn-google {
    background: white; color: black; border: none; padding: 12px;
    font-weight: bold; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
    font-family: 'Montserrat', sans-serif; transition: 0.3s;
}
.btn-google:hover { background: #ddd; }

.divider { text-align: center; position: relative; margin: 10px 0; }
.divider::before { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: #333; z-index: 0; }
.divider span { background: #0f0f0f; padding: 0 10px; position: relative; z-index: 1; color: #555; font-size: 0.8rem; }

.forgot-link { font-size: 0.8rem; color: #888; cursor: pointer; text-align: center; margin-top: 5px; }
.forgot-link:hover { color: white; text-decoration: underline; }

/* Logged in indicator */
.fa-user.logged-in { color: var(--accent-red); text-shadow: 0 0 10px var(--accent-glow); }


/* ================= ADDRESS SECTION ================= */
.lbl-small { color: #aaa; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }

.address-grid { display: flex; flex-direction: column; gap: 10px; max-height: 200px; overflow-y: auto; }

.addr-card {
    background: #1a1a1a; padding: 10px; border: 1px solid #333; border-radius: 4px; position: relative;
}
.addr-card h5 { color: white; margin-bottom: 3px; font-size: 0.9rem; }
.addr-card p { color: #888; font-size: 0.75rem; line-height: 1.4; }
.addr-card .del-addr {
    position: absolute; top: 10px; right: 10px; color: var(--accent-red); cursor: pointer; font-size: 0.8rem;
}

/* Form Layouts */
.row-2 { display: flex; gap: 10px; }
.row-2 input { flex: 1; }

/* Custom Radio Buttons */
.radio-group { display: flex; gap: 20px; margin-bottom: 15px; }
.radio-container {
    display: flex; align-items: center; cursor: pointer; font-size: 0.9rem; color: #ccc; user-select: none;
}
.radio-container input { display: none; }
.checkmark {
    height: 16px; width: 16px; background-color: #000; border: 1px solid #555; border-radius: 50%; display: inline-block; margin-right: 8px; position: relative;
}
.radio-container input:checked ~ .checkmark { border-color: var(--accent-red); background: var(--accent-red); }


/* ================= CART ADDRESS SECTION ================= */
.cart-address-section {
    padding: 15px 20px;
    background: #111;
    border-top: 1px solid #222;
}

.cart-addr-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
}
.cart-addr-header h4 { font-family: 'Rajdhani', sans-serif; font-size: 1rem; color: #ccc; text-transform: uppercase; }
.cart-addr-header span { color: var(--accent-red); font-size: 0.8rem; cursor: pointer; font-weight: bold; }

.cart-addr-list {
    max-height: 150px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px;
}

/* Radio Address Card */
.cart-addr-item {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px; background: #1a1a1a; border: 1px solid #333; border-radius: 4px; cursor: pointer; transition: 0.2s;
}
.cart-addr-item:hover { border-color: #555; }
.cart-addr-item.selected { border-color: var(--accent-red); background: rgba(229, 9, 20, 0.05); }

.cart-addr-item input { margin-top: 4px; accent-color: var(--accent-red); }

.addr-details { font-size: 0.8rem; color: #aaa; line-height: 1.3; }
.addr-details strong { color: white; display: block; margin-bottom: 2px; }


/* ================= ORDERS SECTION ================= */
.order-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    transition: 0.2s;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a2a2a;
}

.order-id { font-size: 0.75rem; color: #888; font-family: 'Montserrat', sans-serif; }
.order-date { font-size: 0.7rem; color: #666; }
.order-status { 
    font-size: 0.7rem; 
    padding: 2px 8px; 
    border-radius: 10px; 
    text-transform: uppercase; 
    font-weight: bold;
}
.status-paid { background: rgba(0, 255, 0, 0.1); color: #0f0; border: 1px solid #0f0; }
.status-pending { background: rgba(255, 165, 0, 0.1); color: orange; border: 1px solid orange; }

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.mini-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    background: #000;
    border-radius: 2px;
}

.mini-details { font-size: 0.8rem; color: #ccc; }
.mini-details span { color: #666; font-size: 0.7rem; margin-left: 5px; }

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #2a2a2a;
    font-family: 'Rajdhani', sans-serif;
}

.order-total { font-size: 1.1rem; color: white; font-weight: bold; }
.track-btn { font-size: 0.7rem; color: var(--accent-red); cursor: pointer; text-decoration: underline; }

/* Add this to style.css */
.addr-card .edit-addr {
    position: absolute; 
    top: 10px; 
    right: 35px; /* Positioned to the left of the delete icon */
    color: #666; 
    cursor: pointer; 
    font-size: 0.8rem;
    transition: 0.2s;
}
.addr-card .edit-addr:hover { color: white; }


/* Add this to style.css */

/* Highlight Animation */
@keyframes glowPulse {
    0% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7); border-color: #e50914; }
    70% { box-shadow: 0 0 20px 10px rgba(229, 9, 20, 0); border-color: #e50914; }
    100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); border-color: #333; }
}

.order-card.new-order {
    animation: glowPulse 2s ease-out infinite;
    border: 1px solid var(--accent-red);
}


/* Custom Alert Styles */
.alert-btn {
    min-width: 100px;
    padding: 10px 20px;
    font-size: 0.8rem;
    clip-path: none; /* Override standard btn clip-path for small buttons if needed */
}

/* Add to bottom of style.css */

/* Status Badges */
.status-Accepted { 
    background: rgba(0, 230, 118, 0.1); 
    color: #00e676; 
    border: 1px solid #00e676; 
}

.status-Manual { 
    background: rgba(255, 165, 0, 0.1); 
    color: orange; 
    border: 1px solid orange; 
}

.status-Rejected { 
    background: rgba(229, 9, 20, 0.1); 
    color: #e50914; 
    border: 1px solid #e50914; 
}

/* Default Paid Status */
.status-Paid { 
    background: rgba(255, 255, 255, 0.05); 
    color: #ccc; 
    border: 1px solid #333; 
}

/* ================= FEATURES SECTION ================= */
.features-section {
    background-color: var(--bg-dark);
    padding: 20px 50px 80px; /* Aligns with other sections */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 5;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(145deg, #0a0a0a, #050505);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: default;
}

/* Hover Effect: Glow Red */
.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.1);
}

.feature-box i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    transition: 0.3s;
}

.feature-box:hover i {
    color: var(--accent-red);
    text-shadow: 0 0 15px var(--accent-glow);
}

.feature-box h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 10px;
}

.feature-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ================= MOBILE UPDATE FOR FEATURES ================= */
/* Add this inside your existing @media (max-width: 900px) block */
/* Find the existing media query block at the bottom of your file and add this inside it */

    .features-section {
        padding: 40px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 20px;
    }
    
    .feature-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 25px;
    }

    /* Copyright Link Styling */
.copyright a {
    color: inherit;       /* Blends in with the text */
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.copyright a:hover {
    color: var(--accent-red); /* Glows red on hover */
    text-shadow: 0 0 10px var(--accent-glow);
}