/* =========================================
   PULAUTOTO SPORTS STORE
   INNER PAGES
========================================= */

.page-hero {
    padding: 120px 0 90px;
    background:
        linear-gradient(90deg, rgba(6,16,11,.98), rgba(6,16,11,.72)),
        url("https://images.unsplash.com/photo-1517466787929-bc90951d0974?auto=format&fit=crop&w=1600&q=85")
        center/cover;
}

.page-hero h1 {
    margin: 15px 0 20px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(60px, 9vw, 120px);
    line-height: .82;
    font-weight: 800;
    letter-spacing: -2px;
}

.page-hero h1 span,
.section-heading h2 span,
.detail-info h1 span,
.dark-cta h2 span {
    color: var(--green);
}

.page-hero p {
    max-width: 620px;
    color: var(--muted);
    line-height: 1.8;
}

.breadcrumbs,
.detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumbs {
    margin-top: 28px;
}

.breadcrumbs a,
.detail-breadcrumb a {
    color: var(--white);
}

.detail-breadcrumb {
    padding: 25px 0;
    background: var(--bg2);
}


/* FILTER */

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.filter-btn {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    padding: 12px 22px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green);
    color: var(--bg);
    border-color: var(--green);
}


/* PRODUCTS */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    transition: transform .3s, border-color .3s;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(11,214,111,.45);
}

.product-image {
    position: relative;
    height: 290px;
    overflow: hidden;
    background: #111;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 11px;
    background: var(--green);
    color: var(--bg);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.wishlist {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(0,0,0,.55);
    color: white;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.wishlist.liked,
.detail-wishlist.liked {
    color: var(--green);
}

.product-info {
    padding: 22px;
}

.product-category {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.product-info h3 {
    margin: 8px 0 10px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
    text-transform: uppercase;
}

.product-info p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.product-bottom strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 23px;
}

.product-bottom a {
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* CTA */

.dark-cta {
    padding: 90px 0;
    background: #030805;
}

.dark-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.dark-cta h2 {
    margin-top: 10px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(45px, 6vw, 75px);
    line-height: .9;
}


/* PRODUCT DETAIL */

.product-detail {
    padding: 80px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: start;
}

.detail-main-image {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: #111;
}

.detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.thumbnail {
    height: 110px;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    background: var(--card);
    cursor: pointer;
}

.thumbnail.active {
    border-color: var(--green);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    padding-top: 20px;
}

.detail-info h1 {
    margin: 15px 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(65px, 7vw, 100px);
    line-height: .82;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
}

.stars {
    color: var(--green);
    letter-spacing: 3px;
}

.detail-price {
    margin: 25px 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 40px;
    font-weight: 700;
}

.detail-description {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
}

.detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin: 30px 0;
    background: var(--border);
    border: 1px solid var(--border);
}

.detail-features div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px;
    background: var(--bg);
}

.detail-features strong {
    color: var(--green);
    font-size: 12px;
}

.detail-features span {
    font-size: 12px;
    color: var(--muted);
}

.selector-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 13px;
}

.selector-heading a {
    color: var(--green);
    font-size: 11px;
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-options button {
    width: 48px;
    height: 45px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: .25s;
}

.size-options button:hover,
.size-options button.selected {
    background: var(--green);
    color: var(--bg);
    border-color: var(--green);
}

.detail-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 25px;
    background: var(--green);
    color: var(--bg);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    transition: .3s;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(11,214,111,.2);
}

.detail-wishlist {
    width: 52px;
    border: 1px solid var(--border);
    background: transparent;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.shipping-info {
    margin-top: 25px;
    border-top: 1px solid var(--border);
}

.shipping-info div {
    display: flex;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
}

.shipping-info strong {
    color: var(--green);
}


/* DESCRIPTION */

.product-description-section {
    padding: 0 0 80px;
}

.description-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--border);
}

.description-tab {
    padding: 18px 0;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.description-tab.active {
    color: var(--green);
    border-color: var(--green);
}

.description-content {
    max-width: 800px;
    padding-top: 30px;
}

.description-content h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 35px;
}

.description-content p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
}

.related-grid {
    grid-template-columns: repeat(3, 1fr);
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .detail-main-image {
        height: 550px;
    }

}

@media (max-width: 700px) {

    .page-hero {
        padding: 90px 0 65px;
    }

    .products-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 330px;
    }

    .dark-cta .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .detail-main-image {
        height: 400px;
    }

    .detail-info h1 {
        font-size: 65px;
    }

    .detail-features {
        grid-template-columns: 1fr;
    }

}
.category-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-large-card {
    position: relative;
    display: block;
    height: 430px;
    overflow: hidden;
    background: #111;
}

.category-large-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.category-large-card:hover img {
    transform: scale(1.07);
}

.category-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    background: linear-gradient(
        transparent 25%,
        rgba(0,0,0,.9) 100%
    );
}

.category-overlay > span {
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.category-overlay h3 {
    margin: 8px 0;
    color: white;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 48px;
    line-height: .85;
}

.category-overlay p {
    margin: 0;
    color: #c5d0ca;
    font-size: 13px;
}

@media (max-width:700px) {
    .category-page-grid {
        grid-template-columns: 1fr;
    }

    .category-large-card {
        height: 350px;
    }
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    height: 620px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    margin: 15px 0 25px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(55px, 7vw, 90px);
    line-height: .85;
}

.about-content h2 span {
    color: var(--green);
}

.about-content p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin: 30px 0;
}

.about-stats div {
    padding: 20px;
    border: 1px solid var(--border);
    background: var(--card);
}

.about-stats strong {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    color: var(--green);
    font-size: 30px;
}

.about-stats span {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 1px;
}

.feature-section {
    padding: 90px 0;
    background: var(--bg2);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.feature-box {
    padding: 35px;
    border: 1px solid var(--border);
    background: var(--card);
}

.feature-box > span {
    color: var(--green);
    font-weight: 800;
}

.feature-box h3 {
    margin: 25px 0 12px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
}

.feature-box p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 13px;
}

@media(max-width:700px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-image {
        height: 400px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

}
.reviews-section {
    padding: 90px 0;
}

.review-summary {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 45px;
    padding: 30px;
    border: 1px solid var(--border);
    background: var(--card);
}

.review-summary > div:first-child {
    display: flex;
    align-items: baseline;
}

.review-summary strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 70px;
    line-height: .8;
}

.review-summary span {
    color: var(--muted);
}

.review-summary .stars {
    color: var(--green);
    font-size: 18px;
    letter-spacing: 4px;
}

.review-summary p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.review-card {
    padding: 30px;
    border: 1px solid var(--border);
    background: var(--card);
    transition: .3s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11,214,111,.4);
}

.review-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.review-top strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
}

.review-top span {
    color: var(--green);
    letter-spacing: 2px;
}

.review-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
    margin: 20px 0;
}

.review-card small {
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

@media(max-width:700px) {

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-summary {
        align-items: flex-start;
        flex-direction: column;
    }

}