/* =========================================
   Modern CSS Reset & Variables
========================================= */
:root {
    --bg-dark: #0a0a0c;
    --bg-card: rgba(255, 255, 255, 0.03);
    --accent-primary: #00d2ff; /* Electric Blue Accent */
    --accent-secondary: #3a7bd5;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition-fast: 0.2s ease-out;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', system-ui, sans-serif;
}

body {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at top right, rgba(58, 123, 213, 0.15), transparent 40%),
                      radial-gradient(circle at bottom left, rgba(0, 210, 255, 0.1), transparent 40%);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

/* =========================================
   Glassmorphism Header
========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.logo-container h2 {
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(to right, var(--text-main), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

/* =========================================
   Cinematic Hero Section
========================================= */
.hero-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 5%;
    position: relative;
}

.subtitle {
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.script-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gold-text { /* Re-purposed for the new accent */
    color: transparent;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    font-style: normal;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* Modern Glowing Button */
.btn-primary {
    background: transparent;
    color: var(--text-main);
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--accent-primary);
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.btn-primary:hover {
    background: var(--accent-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.4);
    transform: translateY(-2px);
}

/* =========================================
   Premium Product Cards (Glassmorphism)
========================================= */
.product-section {
    padding: 5rem 5%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.badge-special {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    z-index: 10;
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.03);
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
    line-height: 1.4;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sale-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.regular-price.strike {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.card-actions {
    display: flex;
    gap: 1rem;
}

.card-actions a, .card-actions button {
    flex: 1;
    padding: 0.8rem;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-danger {
    background: var(--text-main);
    color: var(--bg-dark);
    border: none;
}

.btn-danger:hover {
    background: var(--accent-primary);
    color: var(--bg-dark);
}

/* =========================================
   JavaScript Animation States
========================================= */

/* Header Scrolled State */
.navbar {
    transition: all 0.4s ease; /* Make sure the navbar has a transition */
}

.navbar.scrolled {
    padding: 0.7rem 5%; /* Shrinks the padding */
    background: rgba(10, 10, 12, 0.95); /* Makes it darker/less transparent */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 210, 255, 0.2); /* Neon accent line */
}

/* Scroll Reveal Initial Hidden State */
.product-card {
    opacity: 0;
    transform: translateY(40px); /* Pushed down initially */
    /* Note: The transition is defined here so it animates smoothly when the JS adds the class */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; 
}

/* Scroll Reveal Active State (Triggered by JS) */
.product-card.reveal {
    opacity: 1;
    transform: translateY(0); /* Returns to normal position */
}

/* Re-apply hover effect specifically for revealed cards so it doesn't conflict */
.product-card.reveal:hover {
    transform: translateY(-8px);
    transition-delay: 0s !important; /* Removes the cascade delay on hover */
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* =========================================
   Premium Footer (Glassmorphism UI)
========================================= */
.site-footer {
    background-color: rgba(10, 10, 12, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5% 1.5rem;
    position: relative;
    z-index: 10;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 3rem;
    margin-bottom: 1.5rem;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-main);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9rem;
    display: inline-block;
}

.footer-col a:hover {
    color: var(--accent-primary);
    transform: translateX(5px); /* Smooth slide to the right on hover */
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.social-icons a:hover {
    color: var(--accent-primary);
    transform: translateY(-3px); /* Smooth pop up on hover */
}

.btn-shop-all {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--accent-primary);
    padding: 10px 20px;
    color: var(--text-main);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.btn-shop-all:hover {
    background: var(--accent-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =========================================
   Navbar Actions (Sign Up & Cart)
========================================= */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Sleek Sign Up Button */
.btn-signup {
    background: var(--accent-primary);
    color: var(--bg-dark) !important; /* Force dark text for contrast */
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
}

.btn-signup:hover {
    background: var(--text-main);
    color: var(--bg-dark) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Modern Cart Icon */
.cart-icon {
    color: var(--text-main) !important;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
}

.cart-icon:hover {
    color: var(--accent-primary) !important;
}

/* Cart Notification Badge */
.cart-count {
    background: var(--accent-primary);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.15rem 0.4rem;
    border-radius: 20px;
    line-height: 1;
    box-shadow: 0 0 8px rgba(0, 210, 255, 0.4);
}

/* =========================================
   Premium Search Section
========================================= */
.search-section {
    padding: 3rem 5%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin-top: -3rem; /* Pulls it up slightly over the hero section */
}

.search-glass-container {
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.search-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.search-glass-container p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.search-form {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.search-form input {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 3rem;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.search-form input:focus {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.1);
}

.btn-search {
    background: var(--accent-primary);
    color: var(--bg-dark);
    border: none;
    padding: 0 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-search:hover {
    background: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

/* Make it stack on small mobile screens */
@media (max-width: 600px) {
    .search-form {
        flex-direction: column;
    }
    .btn-search {
        padding: 1.2rem;
    }
}

/* =========================================
   Single Product View
========================================= */
.single-product-section {
    padding: 5rem 5%;
    min-height: 70vh;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 equal columns */
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Glassmorphism Image Gallery */
.product-gallery {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.main-product-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.main-product-img:hover {
    transform: scale(1.02);
}

.large-badge {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    top: 2rem;
    right: 2rem;
}

/* Product Details */
.product-details-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
}

.product-main-price .sale-price {
    font-size: 2.5rem;
}

.product-main-price .regular-price {
    font-size: 1.2rem;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
}

.product-meta p {
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

/* Add to Cart Form */
.add-to-cart-form {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    align-items: flex-end;
}

.quantity-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quantity-wrapper label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.quantity-wrapper input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.2rem;
    width: 80px;
    text-align: center;
    outline: none;
    transition: var(--transition-fast);
}

.quantity-wrapper input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
}

.btn-large {
    flex: 1; /* Makes the button take up remaining space */
    padding: 1.1rem;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .product-container {
        grid-template-columns: 1fr; /* Stacks to 1 column on mobile */
        gap: 2rem;
    }
    
    .product-main-title {
        font-size: 2rem;
    }
    
    .add-to-cart-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quantity-wrapper input {
        width: 100%;
    }
}

/* =========================================
   Cart & Checkout UI
========================================= */
.cart-section {
    padding: 4rem 5%;
    min-height: 70vh;
}

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cart-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.empty-cart {
    text-align: center;
    background: var(--bg-card);
    border: 1px dashed var(--glass-border);
    border-radius: 12px;
    padding: 5rem 2rem;
    backdrop-filter: blur(10px);
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
}

/* Cart Items List */
.cart-items {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.cart-item-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-item-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.cart-item-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.cart-item-info h4 {
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cart-item-price {
    color: var(--text-muted);
}

.qty-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-weight: bold;
}

.cart-item-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-main);
}

.remove-btn {
    color: #ef4444;
    transition: var(--transition-fast);
}

.remove-btn:hover {
    color: #f87171;
    transform: scale(1.2);
}

/* Order Summary */
.cart-summary {
    background: rgba(10, 10, 12, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    height: fit-content;
    position: sticky;
    top: 100px; /* Floats down as you scroll */
}

.cart-summary h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.summary-divider {
    border: 0;
    border-top: 1px dashed var(--glass-border);
    margin: 1.5rem 0;
}

.total-line {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
}

.secure-text {
    text-align: center;
    margin-top: 1rem;
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }
    .cart-header {
        display: none; /* Hide table headers on mobile */
    }
    .cart-item-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        position: relative;
    }
    .cart-item-total {
        justify-content: flex-start;
        gap: 2rem;
    }
    .remove-btn {
        position: absolute;
        top: 1.5rem;
        right: 0;
    }
}

/* =========================================
   Contact Page UI
========================================= */
.contact-section {
    padding: 4rem 5%;
    min-height: 80vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Left Side - Info */
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    background: rgba(0, 210, 255, 0.1);
    padding: 1rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.info-item h4 {
    color: var(--text-main);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-muted);
}

/* Right Side - Form Card (Glassmorphism) */
.contact-form-card {
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.2rem;
    color: var(--text-main);
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical; /* Allows user to pull down to make text box bigger */
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #10b981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 2rem;
    }
}

/* =========================================
   Checkout UI
========================================= */
.checkout-section {
    padding: 4rem 5%;
    min-height: 80vh;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-form-area {
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 3rem;
}

.checkout-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

/* Payment Method Radio Buttons */
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option input[type="radio"] {
    display: none; /* Hide standard radio button */
}

.option-box {
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.02);
}

.option-box i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Highlight box when selected */
.payment-option input[type="radio"]:checked + .option-box {
    border-color: var(--accent-primary);
    background: rgba(0, 210, 255, 0.1);
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.cc-form {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 900px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Blog UI
========================================= */
.blog-hero {
    padding: 6rem 5% 4rem;
    text-align: center;
    background: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.8)), url('../images/blog-bg.jpg'); /* Optional background */
    background-size: cover;
}

.blog-hero p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 1.1rem;
}

.blog-section {
    padding: 2rem 5% 6rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
}

.blog-img-wrapper {
    position: relative;
    height: 220px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--accent-primary);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.blog-content {
    padding: 2rem;
}

.blog-title {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-read-more {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-read-more:hover {
    color: #fff;
    padding-left: 5px;
}

/* =========================================
   Single Article View
========================================= */
.article-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--glass-border);
}

.article-meta-top {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 2rem;
    color: var(--accent-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.article-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-main);
    max-width: 900px;
    line-height: 1.1;
}

.article-container {
    padding: 5rem 5%;
    background: #050505;
}

.article-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.article-body {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.8;
}

.article-body h2, .article-body h3 {
    color: var(--text-main);
    margin: 2.5rem 0 1rem;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.share-buttons span {
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.share-buttons a {
    color: var(--text-main);
    font-size: 1.2rem;
    transition: 0.3s;
}

.share-buttons a:hover {
    color: var(--accent-primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .article-main-title {
        font-size: 2.5rem;
    }
    .article-hero {
        height: 50vh;
    }
}

/* =========================================
   About Us Page UI
========================================= */
.about-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/about-hero-bg.jpg'); /* Add a cool shop background here */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    padding: 0 5%;
}

.mission-section {
    padding: 8rem 5%;
    background: #050505;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.mission-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.stat-glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.stat-glass-card h3 {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.features-section {
    padding: 6rem 5%;
    background: #0a0a0c;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.about-cta {
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
}

.cta-glass {
    background: rgba(0, 210, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 900px;
    width: 100%;
    backdrop-filter: blur(15px);
}

@media (max-width: 900px) {
    .mission-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* =========================================
   Touch Down Wall of Love
========================================= */
.td-hero {
    padding: 8rem 5% 4rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.05), transparent);
}

.td-section {
    padding: 2rem 5% 8rem;
}

.td-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.td-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.td-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.td-image img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid var(--glass-border);
}

.td-content {
    padding: 2rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 3rem;
    opacity: 0.1;
    color: var(--accent-primary);
}

.td-text {
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.td-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
}

.td-footer strong {
    color: var(--accent-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.td-footer span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .td-grid { grid-template-columns: 1fr; }
}

/* =========================================
   User Account UI
========================================= */
.auth-section { padding: 8rem 5%; min-height: 80vh; display: flex; justify-content: center; align-items: center; }
.auth-card { background: rgba(10, 10, 12, 0.7); backdrop-filter: blur(15px); border: 1px solid var(--glass-border); padding: 3rem; border-radius: 12px; width: 100%; max-width: 450px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.profile-section { padding: 6rem 5%; max-width: 1200px; margin: 0 auto; }
.profile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.profile-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; }
.profile-info-card, .profile-orders-card { background: var(--bg-card); border: 1px solid var(--glass-border); padding: 2rem; border-radius: 12px; }
.order-strip { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* =========================================
   Home Page: Who We Are & Touchdowns
========================================= */
.who-we-are {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #050505 0%, #0a0a0c 100%);
    border-top: 1px solid var(--glass-border);
}

.who-header {
    text-align: center;
    margin-bottom: 4rem;
}

.who-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.who-text p {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.home-touchdowns {
    padding: 8rem 5%;
    background: #050505;
}

.td-home-container {
    max-width: 1100px;
    margin: 0 auto;
}

.td-home-row {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    align-items: center;
}

.td-home-image {
    flex: 0 0 350px;
}

.td-home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.td-home-card {
    padding: 3rem;
    flex: 1;
}

.td-home-quote {
    font-size: 1.3rem;
    color: var(--text-main);
    font-style: italic;
    margin: 1.5rem 0;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .who-content-grid, .td-home-row {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .td-home-image { flex: none; width: 100%; }
}

.hero-section {
    position: relative;
    height: 85vh; /* Large cinematic height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('assets/images/hero-bg.jpeg') no-repeat center center/cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(5,5,5,1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Keeps text above the overlay */
    padding: 0 5%;
}

.hero-section .script-title {
    font-size: 5rem;
    line-height: 1;
    margin: 1rem 0;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .hero-section .script-title {
        font-size: 3.5rem;
    }
}