* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    color: #111;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: min(1400px, 92%);
    margin: 0 auto;
}

/* TOP STRIP */
.top-strip {
    background: #d60000;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 3px;
    padding: 12px 10px;
    text-transform: uppercase;
}

/* HEADER */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 24px;
}

.brand {
    font-size: 2rem;
    font-weight: 1000;
    letter-spacing: -1px;
    line-height: 1;
}

.brand-white {
    color: #111;
}

.brand-red {
    color: #d60000;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

    .main-nav a {
        color: #111;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 4px;
        text-transform: uppercase;
        transition: .25s ease;
    }

        .main-nav a:hover {
            color: #d60000;
        }

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .nav-icons a {
        font-size: 24px;
        color: #111;
        position: relative;
    }

.cart-icon {
    display: inline-flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #d60000;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 15px 26px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: .25s ease;
    border-radius: 0 !important;
    text-decoration: none;
}

.btn-primary {
    background: #d60000 !important;
    color: #fff !important;
    border: 2px solid #d60000 !important;
}

    .btn-primary:hover {
        background: #a90000 !important;
        border-color: #a90000 !important;
        color: #fff !important;
    }

.btn-outline,
.btn-outline-red,
.btn-outline-dark-custom {
    background: transparent !important;
    border: 2px solid #111 !important;
    color: #111 !important;
}

    .btn-outline:hover,
    .btn-outline-red:hover,
    .btn-outline-dark-custom:hover {
        background: #111 !important;
        color: #fff !important;
    }

/* HERO */
.hero-section {
    min-height: 92vh;
    background: linear-gradient(to right, rgba(255,255,255,.98), rgba(255,255,255,.74), rgba(255,255,255,.18)), url('/images/hero-boxer.jpg') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.12);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

.hero-eyebrow,
.section-kicker {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 5px;
    color: #d60000;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    padding-left: 92px;
}

    .hero-eyebrow::before,
    .section-kicker::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 72px;
        height: 2px;
        background: #d60000;
        transform: translateY(-50%);
    }

.hero-title {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: clamp(3.8rem, 9vw, 8.4rem);
    font-weight: 1000;
    line-height: .92;
    letter-spacing: -3px;
    margin-bottom: 26px;
    text-transform: uppercase;
    color: #111;
}

.hero-red {
    color: #d60000;
}

.hero-text {
    max-width: 760px;
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

/* SECTIONS */
.section-dark {
    padding: 95px 0;
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
    color: #111;
}

.section-intro {
    margin-bottom: 42px;
}

    .section-intro h2,
    .centered-title,
    .story-content h2 {
        color: #111;
        font-size: clamp(2.8rem, 6vw, 5.2rem);
        line-height: 1.05;
        font-weight: 1000;
        letter-spacing: -2px;
        margin-bottom: 16px;
        text-transform: uppercase;
    }

    .section-intro p,
    .story-content p,
    .feature-card p,
    .event-body h3,
    .site-footer p,
    .site-footer li a {
        color: #333;
    }

.centered {
    text-align: center;
    padding-left: 0;
}

    .centered::before,
    .centered::after {
        content: "";
        display: inline-block;
        width: 72px;
        height: 2px;
        background: #d60000;
        vertical-align: middle;
        margin: 0 18px;
    }

.centered-title {
    text-align: center;
    margin-bottom: 50px;
}

/* GRIDS */
.category-grid,
.product-grid,
.feature-grid,
.event-grid {
    display: grid;
    gap: 28px;
}

.category-grid {
    grid-template-columns: repeat(3, 1fr);
}

.product-grid {
    grid-template-columns: repeat(4, 1fr);
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.event-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* CATEGORIES */
.category-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    min-height: 520px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .05);
}

    .category-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s ease;
    }

    .category-card:hover img {
        transform: scale(1.06);
    }

.category-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.08));
}

    .category-overlay h3 {
        color: #fff;
        font-size: 1.8rem;
        font-weight: 900;
    }

/* PRODUCTS */
.product-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .05);
}

    .product-card:hover {
        transform: translateY(-4px);
        border-color: #d60000;
        box-shadow: 0 24px 70px rgba(214, 0, 0, .10);
    }

.product-image-wrap {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    background: #f1f1f1;
}

    .product-image-wrap img {
        width: 100%;
        height: 390px;
        object-fit: cover;
    }

.product-tag,
.product-discount,
.event-tag {
    position: absolute;
    top: 18px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-tag {
    left: 18px;
    background: #d60000;
    color: #fff;
}

.product-discount {
    right: 18px;
    border: 1px solid #d60000;
    color: #d60000;
    background: rgba(255,255,255,.9);
}

.product-body {
    padding: 24px 22px 26px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 14px;
}

.star {
    color: #d0d0d0;
    font-size: 18px;
}

    .star.filled {
        color: #d60000;
    }

.review-count {
    margin-left: 8px;
    color: #555;
    font-size: 15px;
}

.product-body h3 {
    color: #111;
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 12px;
}

    .product-body h3 a {
        color: #111;
    }

        .product-body h3 a:hover {
            color: #d60000;
        }

.product-price {
    display: flex;
    align-items: center;
    gap: 14px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: #111;
}

.old-price {
    color: #777;
    text-decoration: line-through;
}

.product-category-name {
    color: #666;
    font-size: 13px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.product-actions {
    margin-top: 20px;
}

.product-btn {
    min-width: 100%;
}

/* FEATURES */
.feature-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    padding: 46px 36px;
    text-align: center;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .045);
    transition: .25s ease;
}

    .feature-card:hover {
        border-color: #d60000;
        transform: translateY(-4px);
        box-shadow: 0 24px 65px rgba(214, 0, 0, .10);
    }

.feature-icon {
    width: 86px;
    height: 86px;
    background: #d60000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.2rem;
}

.feature-card h3 {
    color: #111;
    font-size: 1.8rem;
    margin-bottom: 14px;
    font-weight: 900;
}

/* STORY */
.story-section {
    background: #fff;
    padding: 100px 0;
    border-top: 1px solid #e8e8e8;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
}

.story-image img {
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    border: 1px solid #e2e2e2;
}

.story-content p {
    font-size: 1.12rem;
    margin-bottom: 24px;
}

/* STATS */
.stats-section {
    background: #d60000;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.stat-card {
    text-align: center;
    color: #fff;
}

.stat-value {
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 1;
    font-weight: 1000;
    margin-bottom: 14px;
}

.stat-label {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 4px;
}

/* EVENTS */
.event-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .05);
    transition: .25s ease;
}

    .event-card:hover {
        border-color: #d60000;
        transform: translateY(-4px);
    }

    .event-card img {
        height: 390px;
        object-fit: cover;
    }

.event-body {
    padding: 24px;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.event-tag {
    position: static;
    background: #d60000;
    color: #fff;
}

.event-date {
    color: #555;
    font-size: 15px;
}

.event-body h3 {
    color: #111;
    font-size: 1.7rem;
    line-height: 1.2;
    font-weight: 900;
}

/* PAGE HERO */
.page-hero {
    background: radial-gradient(circle at top right, rgba(214, 0, 0, .10), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    padding: 105px 0 80px;
    color: #111;
    border-bottom: 1px solid #e8e8e8;
}

.small-hero {
    min-height: 320px;
    display: flex;
    align-items: center;
}

.page-title {
    font-size: clamp(3rem, 7vw, 5.4rem);
    font-weight: 1000;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 14px;
    text-transform: uppercase;
    color: #111;
}

.page-subtitle {
    max-width: 760px;
    color: #333;
    font-size: 1.15rem;
}

/* SHOP */
.shop-toolbar {
    margin-bottom: 36px;
}

.shop-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.category-filter {
    padding: 12px 18px;
    border: 1px solid #dedede;
    background: #fff;
    color: #111;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .2s ease;
}

    .category-filter:hover,
    .category-filter.active {
        background: #d60000;
        color: #fff;
        border-color: #d60000;
    }

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #777;
    margin-bottom: 28px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

    .breadcrumb a {
        color: #111;
    }

        .breadcrumb a:hover {
            color: #d60000;
        }

/* DETAILS */
.product-details-section {
    padding-top: 70px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: start;
}

.details-image img {
    width: 100%;
    min-height: 620px;
    object-fit: cover;
    border: 1px solid #e2e2e2;
    background: #fff;
}

.details-tag-row {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.details-tag,
.details-discount {
    display: inline-block;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.details-tag {
    background: #111;
    color: #fff;
}

.details-discount {
    border: 1px solid #d60000;
    color: #d60000;
    background: #fff;
}

.details-content h1 {
    color: #111;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 1000;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.details-rating {
    margin-bottom: 18px;
}

.details-price {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

    .details-price .current-price {
        font-size: 2rem;
    }

.details-description {
    color: #333;
    font-size: 1.12rem;
    margin-bottom: 26px;
    max-width: 680px;
}

.details-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 30px;
    color: #333;
}

.details-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 34px;
}

.details-features h3 {
    color: #111;
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.details-features ul {
    padding-left: 22px;
    color: #333;
}

.details-features li {
    margin-bottom: 10px;
}

.related-section {
    padding-top: 20px;
}

/* ABOUT / CONTACT / CART */
.about-hero,
.contact-hero,
.cart-hero {
    background: radial-gradient(circle at top right, rgba(214, 0, 0, .10), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.about-image img {
    min-height: 580px;
    object-fit: cover;
    border: 1px solid #e2e2e2;
}

.about-content p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 34px;
}

.contact-info-card,
.contact-form-card,
.cart-items-card,
.cart-summary-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    padding: 32px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .05);
}

.contact-detail-row {
    display: grid;
    gap: 6px;
    margin-bottom: 22px;
    color: #333;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #111;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 13px;
    }

.form-control-dark {
    width: 100%;
    background: #f5f5f5;
    border: 1px solid #dcdcdc;
    color: #111;
    padding: 15px 16px;
    outline: none;
    font-size: 16px;
}

.textarea-dark {
    resize: vertical;
    min-height: 140px;
}

.form-control-dark:focus {
    border-color: #d60000;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(214, 0, 0, .08);
}

.text-danger {
    color: #d60000;
    font-size: 14px;
    font-weight: 800;
}

.validation-summary {
    color: #d60000;
    margin-bottom: 14px;
    font-weight: 800;
}

.alert-success-box {
    background: rgba(20, 180, 80, .10);
    color: #11843b;
    border: 1px solid rgba(20, 180, 80, .35);
    padding: 14px 16px;
    margin-bottom: 20px;
    font-weight: 900;
}

/* CART */
.cart-layout {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 34px;
    align-items: start;
}

.cart-table-head,
.cart-row {
    display: grid;
    grid-template-columns: 2fr .7fr .5fr .7fr;
    gap: 18px;
    align-items: center;
}

.cart-table-head {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e2e2;
}

.cart-row {
    padding: 22px 0;
    border-bottom: 1px solid #e2e2e2;
    color: #333;
}

.cart-product-cell {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .cart-product-cell img {
        width: 90px;
        height: 90px;
        object-fit: cover;
        border: 1px solid #e2e2e2;
    }

    .cart-product-cell h3 {
        color: #111;
        font-size: 1.1rem;
        margin-bottom: 4px;
        font-weight: 900;
    }

.cart-summary-card h2 {
    color: #111;
    font-size: 2rem;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid #e2e2e2;
    color: #333;
}

.total-row {
    font-size: 1.15rem;
    color: #111;
    font-weight: 900;
}

.summary-btn {
    width: 100%;
    margin-top: 18px;
}

/* FOOTER */
.site-footer {
    background: #111;
    color: #fff;
    padding: 80px 0 28px;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer-brand {
    margin-bottom: 18px;
}

.site-footer h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 12px;
}

    .site-footer p,
    .site-footer li a {
        color: rgba(255,255,255,.68);
    }

        .site-footer li a:hover {
            color: #d60000;
        }

.newsletter {
    display: flex;
    margin-top: 18px;
}

    .newsletter input {
        flex: 1;
        background: #fff;
        border: 1px solid #333;
        color: #111;
        padding: 16px 18px;
        outline: none;
        font-size: 16px;
    }

    .newsletter button {
        width: 78px;
        background: #d60000;
        color: #fff;
        border: none;
        font-size: 20px;
        cursor: pointer;
    }

.footer-bottom {
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.65);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .product-grid,
    .category-grid,
    .feature-grid,
    .event-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .story-image img {
        min-height: 450px;
    }
}

@media (max-width: 980px) {
    .details-grid,
    .about-grid,
    .contact-grid,
    .cart-layout,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .details-image img {
        min-height: 420px;
    }

    .cart-table-head {
        display: none;
    }

    .cart-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 860px) {
    .nav-wrap {
        flex-direction: column;
        justify-content: center;
        padding: 14px 0;
    }

    .main-nav {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(3rem, 13vw, 5.5rem);
    }

    .product-grid,
    .category-grid,
    .feature-grid,
    .event-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
