:root {
    /* Primary Colors */
    --color-blue: #012169;
    --color-red: #C8102E;
    --color-white: #FFFFFF;
    --color-bg-light: #F5F5F5;
    --color-text-dark: #333333;
    --color-border: #E0E0E0;

    /* ASICS-Inspired Teal/Coffee (Lichen Rock & Black Coffee) */
    --color-lichen: #8B8C7E;
    --color-coffee: #3B2F2F;

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.3s ease;

    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
}

/* Global Resets */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-white);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
    transition: var(--transition-smooth);
}

/* Typography Classes */
.h1,
.h2,
.h3,
.h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

.text-red {
    color: var(--color-red);
}

.text-blue {
    color: var(--color-blue);
}

/* Layout Components */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding: var(--section-padding);
}

/* Buttons */
.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #A00D25;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.btn-secondary {
    border: 2px solid var(--color-red);
    color: var(--color-red);
    padding: 10px 26px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

/* Hidden Elements */
.hidden {
    display: none !important;
}

/* Responsive Grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Utility */
.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Page Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 20px;
}

.logo-uk {
    color: var(--color-blue);
}

.logo-shoe {
    color: var(--color-text-dark);
}

.logo-hub {
    color: var(--color-red);
}

.loader-sneaker {
    font-size: 2rem;
    color: var(--color-red);
    animation: sneakerSpin 1.5s infinite linear;
}

@keyframes sneakerSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Advertisement Bar */
.ad-bar {
    background-color: var(--color-bg-light);
    padding: 8px 0;
    font-size: 12px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    color: #666;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-shoe-header {
    color: #888;
}

.nav-desktop ul {
    display: flex;
    gap: 30px;
}

.nav-desktop ul li a {
    font-weight: 500;
    font-size: 15px;
}

.nav-desktop ul li a:hover {
    color: var(--color-red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--color-text-dark);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    overflow: hidden;
}

.badge {
    background-color: var(--color-bg-light);
    color: var(--color-red);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.image-wrapper {
    position: relative;
    padding: 20px;
}

.image-accent {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, rgba(1, 33, 105, 0.05) 0%, rgba(200, 16, 46, 0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: morphAccent 10s infinite alternate;
}

@keyframes morphAccent {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    100% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

.hero-image img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: var(--transition-smooth);
}

.hero-image img:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* Selling Points */
.bg-light {
    background-color: var(--color-bg-light);
}

.card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-icon {
    font-size: 3rem;
    color: var(--color-red);
    margin-bottom: 20px;
    display: block;
}

/* Product Details */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.specs-grid li {
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
}

/* Style Inspiration */


.mt-40 {
    margin-top: 40px;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--color-bg-light);
}

.faq-answer p {
    padding: 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* About Section */
.about-content.centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.about-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    margin-top: 30px;
}

.about-founder {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* Trust Badges */
.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    text-align: left;
}

.badge-item i {
    font-size: 2rem;
    color: var(--color-blue);
    flex-shrink: 0;
}

.badge-item div {
    display: flex;
    flex-direction: column;
}

.badge-item span {
    font-weight: 700;
    line-height: 1.2;
}

.badge-item small {
    display: block;
    font-weight: 400;
    color: #888;
    margin-top: 2px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: var(--color-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info p {
    color: #aaa;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #eee;
}

.contact-details i {
    color: var(--color-red);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.modal-trigger {
    color: #aaa;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.modal-trigger:hover {
    color: var(--color-red);
}



.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
    text-align: center;
}

.disclaimer {
    font-size: 11px;
    color: #777;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-size: 14px;
    color: #aaa;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    color: var(--color-text-dark);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--color-text-dark);
    background: none;
    border: none;
    cursor: pointer;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    z-index: 1500;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--color-red);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: 0.4s;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    position: absolute;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: var(--color-white);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-close {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-mobile ul li {
    margin-bottom: 20px;
}

.nav-mobile ul li a {
    font-size: 20px;
    font-weight: 700;
    display: block;
}

.mobile-menu-footer {
    margin-top: auto;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transition: all 0.8s ease-out;
}

[data-reveal="left"] {
    transform: translateX(-50px);
}

[data-reveal="right"] {
    transform: translateX(50px);
}

[data-reveal="up"] {
    transform: translateY(50px);
}

.reveal-active {
    opacity: 1;
    transform: translate(0) !important;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }


}

@media (max-width: 768px) {

    .nav-desktop,
    .shop-now-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .badge-item {
        padding: 10px;
        gap: 10px;
    }

    .badge-item i {
        font-size: 1.5rem;
    }

    .badge-item span {
        font-size: 0.8rem;
    }

    .badge-item small {
        font-size: 0.7rem;
        display: block;
    }

    .section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 40px 0;
        text-align: center;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-ctas {
        justify-content: center;
        flex-direction: column;
    }

    .hero-image {
        order: -1;
        margin-bottom: 40px;
    }

    .container {
        padding: 0 15px;
    }

    .h1 {
        font-size: 2rem;
    }

    .cookie-popup {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }





    .about-image {
        margin-bottom: 40px;
    }
}