/* =========================================================
   PULAUTOTO SPORTS STORE
   FOOTBALL PRO STORE
========================================================= */

:root {
    --bg: #06100b;
    --bg-soft: #0b1711;
    --card: #101c15;
    --card-light: #14231a;
    --green: #0bd66f;
    --green-dark: #079c50;
    --white: #ffffff;
    --text: #edf4ef;
    --muted: #93a39a;
    --border: rgba(255,255,255,.09);
    --container: 1200px;
    --radius: 18px;
    --shadow: 0 20px 60px rgba(0,0,0,.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.container {
    width: min(92%, var(--container));
    margin: auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3 {
    font-family: "Barlow Condensed", sans-serif;
    line-height: 1;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(4rem, 8vw, 7.5rem);
    letter-spacing: -3px;
}

h2 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
}

h2 span,
h1 span {
    color: var(--green);
}

.eyebrow {
    display: inline-block;
    color: var(--green);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav-wrapper {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--green);
    color: #06100b;
    border-radius: 50%;
    font-size: 21px;
}

.brand strong {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.5rem;
    line-height: .9;
    letter-spacing: 1px;
}

.brand small {
    display: block;
    font-size: .55rem;
    color: var(--muted);
    letter-spacing: 2px;
    margin-top: 4px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    color: #b9c5be;
    font-size: .83rem;
    font-weight: 600;
    transition: .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green);
}

.nav-button {
    padding: 12px 20px;
    background: var(--green);
    color: #031008;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 7px;
    transition: .25s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(11,214,111,.25);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 850px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 140px 0 90px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(11,214,111,.13), transparent 35%),
        linear-gradient(110deg, #06100b 25%, #08150e 60%, #06100b);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-content {
    max-width: 650px;
}

.hero-content > p {
    max-width: 550px;
    color: var(--muted);
    font-size: 1.05rem;
    margin: 25px 0 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 7px;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: .25s ease;
}

.btn-primary {
    background: var(--green);
    color: #041009;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(11,214,111,.25);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.18);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.hero-stats strong {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.8rem;
}

.hero-stats span {
    display: block;
    color: var(--muted);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
}

.hero-image {
    height: 600px;
    object-fit: cover;
    border-radius: 25px;
    filter: saturate(.85);
    box-shadow: var(--shadow);
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.45));
    pointer-events: none;
}

.floating-card {
    position: absolute;
    z-index: 5;
    padding: 13px 18px;
    background: rgba(10,22,15,.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.floating-card span {
    display: block;
    color: var(--green);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.floating-card strong {
    font-size: .8rem;
}

.floating-top {
    top: 50px;
    left: -25px;
}

.floating-bottom {
    right: -25px;
    bottom: 50px;
}


/* =========================================================
   BRAND STRIP
========================================================= */

.brand-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-soft);
}

.brand-strip-inner {
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand-strip span {
    color: var(--muted);
    font-size: .7rem;
    letter-spacing: 2px;
}

.brand-strip strong {
    font-family: "Barlow Condensed", sans-serif;
    color: #617067;
    letter-spacing: 1px;
    font-size: 1.2rem;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 110px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.section-heading h2 {
    margin-top: 4px;
}

.section-heading.centered {
    display: block;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-heading.centered p {
    color: var(--muted);
    margin-top: 15px;
}

.text-link {
    color: var(--green);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
}


/* =========================================================
   PRODUCTS
========================================================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .3s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(11,214,111,.25);
    box-shadow: var(--shadow);
}

.product-image {
    height: 320px;
    position: relative;
    overflow: hidden;
    background: #17221b;
}

.product-image img {
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    z-index: 2;
    top: 13px;
    left: 13px;
    padding: 6px 9px;
    border-radius: 4px;
    background: var(--green);
    color: #041009;
    font-size: .58rem;
    font-weight: 900;
}

.product-badge.new {
    background: #fff;
}

.product-badge.sale {
    background: #ffcf3f;
}

.wishlist {
    position: absolute;
    z-index: 2;
    right: 13px;
    top: 13px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.5);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}

.wishlist.active {
    color: var(--green);
}

.product-info {
    padding: 20px;
}

.product-category {
    color: var(--green);
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.product-info h3 {
    font-size: 1.45rem;
    margin: 6px 0 10px;
}

.product-rating {
    color: #f6c94c;
    font-size: .75rem;
}

.product-rating span {
    color: var(--muted);
    margin-left: 5px;
}

.product-bottom {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-bottom strong {
    font-size: .9rem;
}

.product-bottom del {
    display: block;
    color: var(--muted);
    font-size: .65rem;
}

.product-arrow {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #18261d;
    color: var(--green);
}


/* =========================================================
   CATEGORIES
========================================================= */

.categories-section {
    background: var(--bg-soft);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 15px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.category-card.large {
    grid-row: span 2;
}

.category-card img {
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.category-card:hover img {
    transform: scale(1.07);
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 25%, rgba(0,0,0,.85));
}

.category-overlay {
    position: absolute;
    z-index: 2;
    left: 25px;
    right: 25px;
    bottom: 22px;
}

.category-overlay span {
    color: var(--green);
    font-size: .65rem;
    font-weight: 800;
}

.category-overlay h3 {
    font-size: 2rem;
    margin: 5px 0;
}

.category-overlay p {
    color: #c8d2cc;
    font-size: .7rem;
    font-weight: 700;
}


/* =========================================================
   FEATURES
========================================================= */

.features-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.feature-intro p {
    color: var(--muted);
    margin: 20px 0 28px;
    max-width: 480px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    padding: 28px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(11,214,111,.1);
    color: var(--green);
    font-weight: 900;
    margin-bottom: 18px;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--muted);
    font-size: .8rem;
}


/* =========================================================
   PROMO
========================================================= */

.promo-section {
    padding: 0 0 110px;
}

.promo-box {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 25px;
    background: #0b3d24;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.promo-content {
    position: relative;
    z-index: 3;
    padding: 70px;
}

.promo-content h2 {
    font-size: clamp(3.2rem, 6vw, 5.5rem);
}

.promo-content p {
    max-width: 440px;
    color: #b7d4c2;
    margin: 20px 0 28px;
}

.btn-light {
    background: #fff;
    color: #07130d;
}

.btn-light:hover {
    transform: translateY(-3px);
}

.promo-visual {
    height: 100%;
}

.promo-visual img {
    height: 100%;
    object-fit: cover;
    opacity: .7;
    mix-blend-mode: luminosity;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {
    padding: 75px 0;
    background: #0a140e;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.newsletter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.newsletter h2 {
    font-size: 2.5rem;
}

.newsletter p {
    color: var(--muted);
    margin-top: 8px;
}

.newsletter-form {
    display: flex;
    min-width: 450px;
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    padding: 15px 18px;
}

.newsletter-form button {
    border: 0;
    padding: 0 24px;
    background: var(--green);
    color: #041009;
    font-size: .72rem;
    font-weight: 900;
    cursor: pointer;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #040a06;
    padding-top: 75px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 60px;
}

.footer-brand p {
    color: var(--muted);
    max-width: 330px;
    margin-top: 20px;
    font-size: .82rem;
}

.footer-column h3 {
    font-family: "Inter", sans-serif;
    font-size: .75rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column a {
    display: block;
    color: var(--muted);
    font-size: .78rem;
    margin-bottom: 11px;
    transition: .2s ease;
}

.footer-column a:hover {
    color: var(--green);
}

.footer-bottom {
    min-height: 75px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    color: #657269;
    font-size: .7rem;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--muted);
    font-size: .6rem;
}

.social-links a:hover {
    border-color: var(--green);
    color: var(--green);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 14px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        gap: 50px;
    }

}


@media (max-width: 850px) {

    .main-nav {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 130px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-image {
        height: 480px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .promo-box {
        grid-template-columns: 1fr;
    }

    .promo-visual {
        height: 300px;
    }

    .newsletter-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .newsletter-form {
        width: 100%;
        min-width: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 600px) {

    h1 {
        font-size: 4rem;
        letter-spacing: -1.5px;
    }

    h2 {
        font-size: 3rem;
    }

    .nav-button {
        display: none;
    }

    .brand strong {
        font-size: 1.25rem;
    }

    .brand-icon {
        width: 37px;
        height: 37px;
        font-size: 18px;
    }

    .hero {
        padding-top: 115px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stats strong {
        font-size: 1.45rem;
    }

    .hero-image {
        height: 380px;
    }

    .floating-top {
        left: 10px;
        top: 20px;
    }

    .floating-bottom {
        right: 10px;
        bottom: 20px;
    }

    .brand-strip-inner {
        flex-wrap: wrap;
        padding: 25px 0;
    }

    .brand-strip strong {
        font-size: 1rem;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 360px;
    }

    .category-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 300px);
    }

    .category-card.large {
        grid-row: auto;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .promo-content {
        padding: 45px 30px;
    }

    .promo-visual {
        height: 240px;
    }

    .newsletter {
        padding: 55px 0;
    }

    .newsletter-form {
        flex-direction: column;
        border: 0;
        gap: 10px;
        background: transparent;
    }

    .newsletter-form input {
        min-height: 50px;
        border: 1px solid var(--border);
        border-radius: 7px;
        background: var(--card);
    }

    .newsletter-form button {
        min-height: 50px;
        border-radius: 7px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column;
    }

}
.faq-section {
    padding: 90px 0;
}

.faq-list {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    position: relative;
    padding: 25px 45px 25px 0;
    color: white;
    cursor: pointer;
    list-style: none;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 22px;
    color: var(--green);
    font-size: 25px;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    max-width: 760px;
    margin: 0;
    padding: 0 0 25px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
}
/* =========================================
   GLOBAL HEADER EFFECT
========================================= */

.site-header {
    transition:
        background .3s ease,
        box-shadow .3s ease,
        padding .3s ease;
}

.site-header.scrolled {
    background: rgba(6, 16, 11, .96);
    box-shadow: 0 10px 35px rgba(0,0,0,.25);
    backdrop-filter: blur(15px);
}


/* =========================================
   IMAGE SAFETY
========================================= */

img {
    max-width: 100%;
}


/* =========================================
   BUTTON ACCESSIBILITY
========================================= */

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================
   FOCUS
========================================= */

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}


/* =========================================
   SELECTION
========================================= */

::selection {
    background: var(--green);
    color: var(--bg);
}