        :root {
            --bright-red: #FF3838;
            --deep-blue: #132440;
            --white: #FFFFFF;
            --bg-gray: #F4F4F4;
            --margin-width: 100px;
            --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: "Lora", serif;
            background-color: var(--white);
            color: var(--deep-blue);
            overflow-x: hidden;
        }

        /* Typography Classes */
        .lora-regular { font-weight: 400; }
        .lora-bold { font-weight: 700; }
        .lora-italic { font-style: italic; }
        .lora-bold-italic { font-weight: 700; font-style: italic; }

        /* --- FRAMED MARGINS --- */
        .frame-margin {
            position: fixed;
            top: 0;
            bottom: 0;
            width: var(--margin-width);
            background: #132440;
            z-index: 1001;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .margin-left { left: 0; border-right: 1px solid #132440; }
        .margin-right { right: 0; border-left: 1px solid #132440; }

        .margin-left::after {
            content: "EST. 2026 ATHLETEPARK";
            transform: rotate(-90deg);
            font-size: 0.7rem;
            letter-spacing: 4px;
            opacity: 0.3;
            white-space: nowrap;
        }

        .social-dock {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .social-circle {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--deep-blue);
            transition: var(--transition);
            cursor: pointer;
            background: var(--white);
        }

        .social-circle:hover {
            background: var(--white);
            border-color: var(--bright-red);
            color: var(--white);
            transform: scale(1.1);
        }

        .cart-trigger-fixed {
            position: absolute;
            top: 40px;

            color: #ddd;
            cursor: pointer;
            transition: 0.3s;
        }
        .cart-trigger-fixed:hover { color: var(--bright-red); }

        /* --- HEADER --- */
        header {
            position: sticky;
            top: 0;
            width: calc(100% - (2 * var(--margin-width)));
            margin: 0 auto;
            z-index: 1000;
        }

        .promo-bar {
            background: var(--bright-red);
            color: var(--white);
            text-align: center;
            padding: 10px;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .main-nav {
            background: var(--deep-blue);
            color: var(--white);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 50px;
        }
/* Make the logo image scale nicely */
.logo img {
    height: 150px; /* adjust as needed */
    width: auto;
    object-fit: contain;
}

/* Optional: adjust height on smaller screens */
@media (max-width: 768px) {
    .logo img {
        height: 140px;
    }
}
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: 0.3s;
            cursor: pointer;
        }
        nav a:hover { color: var(--bright-red); }

        .login-btn { display: flex; align-items: center; gap: 8px; cursor: pointer; transition: 0.3s; }
        .login-btn:hover { color: var(--bright-red); }

        /* --- CONTENT WRAPPER --- */
        #main-view {
            width: calc(100% - (2 * var(--margin-width)));
            margin: 0 auto;
            min-height: 100vh;
        }

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

/* Make left much wider than right */
.hero-left {
    position: relative;
    background: #000;
}

.hero-left img {
    width: 100%;
    height: 100%;
    filter: brightness(0.8);
}

@keyframes panImage {
    from { transform: scale(1.0); }
    to { transform: scale(1.1); }
}

.hero-right {
    flex: 1; /* smaller right */
    background: var(--bright-red);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Diagonal split overlay */
.hero-diagonal-split {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -150px;
    width: 300px;
    background: var(--bright-red);
    transform: skewX(-12deg);
    z-index: 2;
}

/* Hero text content centered vertically and horizontally */
.hero-content {
    position: relative; /* changed from absolute */
    z-index: 10;
    right:270px;
    max-width: 500px;
    color: var(--white);
}

/* Text styling */
.hero-content h1 {
    font-size: 4rem; /* adjust for responsiveness */
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

        /* --- BUTTONS --- */
        .btn {
            padding: 16px 40px;
            font-family: inherit;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 0.9rem;
        }

        .btn-white { background: var(--white); color: var(--deep-blue); }
        .btn-white:hover { background: var(--deep-blue); color: var(--white); transform: translateY(-5px); }

        .btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
        .btn-outline:hover { background: var(--white); color: var(--bright-red); }

        .btn-red { background: var(--bright-red); color: var(--white); }
        .btn-red:hover { background: var(--deep-blue); }

        /* --- FEATURED CARDS --- */
        .featured-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            background: var(--white);
        }

        .feat-card {
            height: 700px;
            position: relative;
            overflow: hidden;
        }

        .feat-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.5s ease;
        }

        .feat-card:hover img { transform: scale(1.08); }

        /* Card 1 Specifics */
        .card-1-overlay {
            position: absolute;
            top: 60px;
            left: 40px;
            color: var(--white);
        }

        /* Card 2 Specifics */
        .card-2-box {
            position: absolute;
            top: 40px;
            right: 0px;
            background: var(--white);
            padding: 40px;
            width: 80%;
            box-shadow: -20px 20px 50px rgba(0,0,0,0.1);
        }

        /* Card 3 Specifics */
        .card-3-box {
            position: absolute;
            bottom: 0;
            right: 0;
            background: var(--deep-blue);
            color: var(--white);
            padding: 40px;
            width: 85%;
        }

        /* --- PRODUCT CARDS (BEST SELLERS) --- */
        .section-padding { padding: 120px 60px; }
        .best-seller-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .product-card {
            transition: var(--transition);
            position: relative;
            cursor: pointer;
        }

        .product-card:hover { transform: translateY(-10px); }

        .p-img-wrapper {
            aspect-ratio: 3/4;
            overflow: hidden;
            background: #f0f0f0;
            position: relative;
        }

        .p-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .product-card:hover img { transform: scale(1.05); }

        .p-info { padding: 25px 0; text-align: center; }
        .p-info h4 { font-size: 1.1rem; margin-bottom: 8px; }
        .p-info .price { color: var(--bright-red); font-weight: 700; margin-bottom: 15px; display: block; }

        /* --- FULL IMAGE SECTION (NO MARGIN) --- */
        .full-width-parallax {
            height: 60vh;
            background: url('https://static.wixstatic.com/media/ea26fd_5b0633c742c94c3fa1b4f375baf0dced~mv2.jpg/v1/fill/w_1883,h_540,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/ea26fd_5b0633c742c94c3fa1b4f375baf0dced~mv2.jpg') center/cover no-repeat fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100vw;
            margin-left: calc(-1 * var(--margin-width));
        }

        /* --- NEWSLETTER --- */
        .newsletter {
            background: var(--deep-blue);
            color: var(--white);
            padding: 100px 60px;
            text-align: center;
        }

        .newsletter h2 { font-size: 3.5rem; margin-bottom: 20px; }
        .newsletter input {
            padding: 18px 30px;
            width: 400px;
            border: none;
            font-family: inherit;
            font-size: 1rem;
        }

        /* --- FOOTER --- */
        footer {
            background: var(--deep-blue);
            color: var(--white);
            
            padding: 100px 60px 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;

            margin-bottom: 60px;
        }

        .footer-col h5 { font-size: 1.1rem; margin-bottom: 30px; color: var(--bright-red); text-transform: uppercase; letter-spacing: 2px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; transition: 0.3s; }
        .footer-col a:hover { color: var(--bright-red); padding-left: 5px; }

        /* --- MODALS --- */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(19, 36, 64, 0.95);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .modal-overlay.active { display: flex; }

        .modal-box {
            background: var(--white);
            width: 90%;
            max-width: 1100px;
            max-height: 90vh;
            display: flex;
            position: relative;
            overflow: hidden;
        }

        .close-modal {
            position: absolute;
            top: 25px;
            right: 25px;
            cursor: pointer;
            z-index: 10;
        }

        /* --- AUTH VIEWS --- */
        .auth-view {
            max-width: 500px;
            margin: 100px auto;
            padding: 60px;
            background: var(--bg-gray);
        }

        .form-group { margin-bottom: 25px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.9rem; }
        .form-group input { width: 100%; padding: 15px; border: 1px solid #ddd; font-family: inherit; }

        /* Responsive */
        @media (max-width: 1200px) {
            :root { --margin-width: 0px; }
            .hero-content h1 { font-size: 4rem; }
            .best-seller-grid { grid-template-columns: repeat(2, 1fr); }
            .featured-grid { grid-template-columns: 1fr; }
            .feat-card { height: 500px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .hero-content h1 { font-size: 3rem; }
            .newsletter input { width: 100%; margin-bottom: 10px; }
        }
/* Hamburger styling */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile nav hidden by default */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* Responsive for tablets and mobile */
@media (max-width: 1024px) {
  .main-nav {
    padding: 20px 30px;
  }
  .nav-links {
    display: none; /* hide on small screens */
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--deep-blue);
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }
  .nav-links li {
    text-align: center;
  }
  .nav-links.show {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}