/* ==========================================
   SHOP / MERCHANDISE PAGE
   ========================================== */

.shop-page {
    background: #000;
}

.shop-page .nav-menu > li > a[aria-current="page"] {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 2px;
}

/* ---- Hero ---- */
.shop-hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 68px);
    margin-top: 68px;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.shop-hero-wrap {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.shop-hero-grid {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 68px - 140px);
}

.shop-hero-content {
    max-width: 560px;
}

.shop-hero-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1.25rem;
}

.shop-hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.shop-hero-line {
    width: 70px;
    height: 4px;
    background: var(--primary-blue);
    margin-bottom: 1.75rem;
}

.shop-hero-desc {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.85;
    max-width: 460px;
    margin-bottom: 2rem;
}

.shop-hero-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-bottom: 2.5rem;
}

.shop-hero-wa svg {
    color: #25D366;
    flex-shrink: 0;
}

.shop-hero-wa:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
}

.shop-hero-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shop-hero-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.shop-hero-point svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.shop-hero-point strong {
    display: block;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 0.3rem;
}

.shop-hero-point span {
    display: block;
    color: #999;
    font-size: 0.85rem;
    line-height: 1.55;
    max-width: 340px;
}

/* ---- Collection ---- */
.shop-collection {
    padding: 90px 0 70px;
    background: #050505;
    color: var(--text-light);
}

.shop-collection .container {
    max-width: 1320px;
}

.shop-collection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.shop-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
    margin: 0;
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 1rem;
}

.shop-filter-btn {
    padding: 10px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    background: transparent;
    color: var(--text-gray);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.25s ease;
}

.shop-filter-btn.active {
    background: var(--primary-blue);
    color: #fff;
    padding: 10px 22px;
}

.shop-filter-btn:not(.active):hover {
    color: var(--primary-blue);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.shop-product-card {
    background: linear-gradient(160deg, rgba(78, 137, 178, 0.06), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(78, 137, 178, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.shop-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 137, 178, 0.5);
    box-shadow: 0 16px 40px rgba(78, 137, 178, 0.12);
}

.shop-product-image {
    background: #111;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.shop-product-card:hover .shop-product-image img {
    transform: scale(1.04);
}

.shop-product-body {
    padding: 1.25rem 1.25rem 1.5rem;
    background: transparent;
}

.shop-product-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.shop-product-desc {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.55;
    margin-bottom: 1rem;
    min-height: 2.4em;
}

.shop-product-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.shop-product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 14px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--primary-blue);
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    transition: all 0.25s ease;
}

.shop-product-cta svg {
    color: #25D366;
    flex-shrink: 0;
}

.shop-product-cta:hover {
    background: var(--primary-blue);
    color: #fff;
}

.shop-empty-msg {
    text-align: center;
    color: var(--text-gray);
    padding: 4rem 1rem;
    font-size: 1rem;
    grid-column: 1 / -1;
}

.shop-view-all-wrap {
    text-align: center;
    margin-top: 3rem;
}

.shop-view-all-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary-blue);
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.shop-view-all-btn:hover {
    background: transparent;
    color: var(--primary-blue) !important;
}

/* ---- Category Promos ---- */
.shop-promos {
    padding: 70px 0;
    background: #000;
}

.shop-promos .container {
    max-width: 1320px;
}

.shop-promos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.shop-promo-card {
    background: linear-gradient(160deg, rgba(78, 137, 178, 0.08), rgba(0, 0, 0, 0.85));
    border: 1px solid rgba(78, 137, 178, 0.2);
    border-radius: 8px;
    padding: 2.5rem 2rem;
}

.shop-promo-card--photo {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-color: rgba(78, 137, 178, 0.3);
}

.shop-promo-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.shop-promo-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.shop-promo-desc {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.shop-promo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.shop-promo-features li {
    color: #888;
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 0.65rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(78, 137, 178, 0.35);
}

.shop-promo-features strong {
    color: #fff;
    font-weight: 700;
}

.shop-promo-cta {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 4px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.shop-promo-cta:hover {
    color: #fff;
    border-color: #fff;
}

.shop-collection-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.shop-subsection-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(78, 137, 178, 0.15);
}

.shop-subsection-title:first-of-type {
    margin-top: 0;
}

.shop-collection--equipment {
    background: #000;
    border-top: 1px solid rgba(78, 137, 178, 0.1);
}

.shop-product-card--equipment .shop-product-body {
    padding: 2rem 1.5rem;
}

.shop-product-card--equipment .shop-product-title {
    font-size: 1rem;
    min-height: 2.7em;
}

.shop-grid--equipment {
    grid-template-columns: repeat(4, 1fr);
}

/* ---- Be Part of the Movement ---- */
.shop-community {
    padding: 90px 0;
    background: linear-gradient(180deg, #050505 0%, #000 100%);
}

.shop-community-inner {
    max-width: 1320px;
}

.shop-community-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.shop-community-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.shop-community-intro p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.75;
}

.shop-community-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.shop-community-pillar {
    text-align: center;
    padding: 1.75rem 1rem;
    background: linear-gradient(160deg, rgba(78, 137, 178, 0.06), rgba(0, 0, 0, 0.6));
    border: 1px solid rgba(78, 137, 178, 0.15);
    border-radius: 8px;
}

.shop-community-pillar h3 {
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.shop-community-pillar p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ---- Need Help ---- */
.shop-help {
    padding: 70px 0 90px;
    background: #000;
    border-top: 1px solid rgba(78, 137, 178, 0.1);
}

.shop-help-inner {
    text-align: center;
    max-width: 560px;
}

.shop-help-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.shop-help-text {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.shop-help-sub {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 0.88rem;
    margin-top: 0.5rem;
}

/* ---- More Than Merch (legacy) ---- */
.shop-more {
    padding: 90px 0;
    background: #000;
}

.shop-more-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

.shop-more-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.shop-more-text > p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 380px;
}

.shop-more-image {
    border-radius: 6px;
    overflow: hidden;
    max-width: 300px;
}

.shop-more-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.shop-more-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.shop-more-pillar {
    text-align: center;
    padding: 1.5rem 1rem;
}

.shop-more-pillar svg {
    margin: 0 auto 1rem;
    display: block;
}

.shop-more-pillar h3 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.shop-more-pillar p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ---- How to Order ---- */
.shop-order {
    padding: 90px 0;
    background: linear-gradient(180deg, #050505 0%, #000 100%);
}

.shop-order .shop-section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.shop-order-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.shop-order-step {
    background: linear-gradient(160deg, rgba(78, 137, 178, 0.06), rgba(0, 0, 0, 0.6));
    border: 1px solid rgba(78, 137, 178, 0.15);
    padding: 2rem 1.5rem;
    border-radius: 8px;
}

.shop-order-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-blue);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.shop-order-step h3 {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 0.65rem;
    line-height: 1.4;
}

.shop-order-step p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.65;
}

.shop-order-step p strong {
    color: var(--text-light);
}

.shop-order-cta-wrap {
    text-align: center;
}

.shop-order-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #25D366;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.shop-order-cta:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    color: #fff;
}

/* ---- Footer overrides ---- */
.shop-footer .footer-content {
    align-items: flex-start;
}

.shop-footer-help-text {
    color: var(--text-gray);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.shop-footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.shop-footer-wa svg {
    color: #25D366;
}

.shop-footer-wa:hover {
    background: #fff;
    color: #000;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .shop-promos-grid {
        grid-template-columns: 1fr;
    }

    .shop-promo-card--photo {
        min-height: 380px;
    }

    .shop-grid,
    .shop-grid--equipment {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-community-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-order-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-hero-wrap {
        padding: 40px 20px 60px;
    }

    .shop-hero {
        min-height: auto;
        background-position: center 20%;
    }

    .shop-hero-grid {
        min-height: 60vh;
    }

    .shop-collection,
    .shop-more,
    .shop-order {
        padding: 60px 0;
    }

    .shop-collection-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-grid,
    .shop-grid--equipment {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .shop-community-pillars {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .shop-order-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .shop-hero-title {
        letter-spacing: 1px;
    }

    .shop-filters {
        gap: 0.5rem;
    }

    .shop-filter-btn {
        padding: 8px 14px;
        font-size: 0.65rem;
    }
}
