/* =========================================================
   Store
   ========================================================= */

.store-container {

    width: min(1280px, calc(100% - 40px));

    margin: 0 auto;

}


/* =========================================================
   Intro
   ========================================================= */

.store-intro {

    padding: 80px 0 45px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(239,17,17,.07),
            transparent 35%
        ),
        #090910;

}


.store-intro-content {

    max-width: 760px;

}


.store-section-eyebrow {

    display: inline-block;

    margin-bottom: 12px;

    color: #ef1111;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.store-intro h2 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 52px);

    line-height: 1.08;

    font-weight: 700;

}


.store-intro h2 span {

    color: #ef1111;

}


.store-intro p {

    max-width: 650px;

    margin: 20px 0 0;

    color: rgba(255,255,255,.58);

    font-size: 15px;

    line-height: 1.7;

}


/* =========================================================
   Categories
   ========================================================= */

.store-categories {

    padding: 0 0 35px;

    background: #090910;

}


.store-category-list {

    display: flex;

    align-items: center;

    gap: 8px;

    flex-wrap: wrap;

    padding-bottom: 20px;

    border-bottom:
        1px solid rgba(255,255,255,.08);

}


.store-category {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding: 0 18px;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 8px;

    color: rgba(255,255,255,.58);

    background: transparent;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease;

}


.store-category:hover {

    color: #ffffff;

    border-color: rgba(239,17,17,.45);

}


.store-category.active {

    color: #ffffff;

    background: #ef1111;

    border-color: #ef1111;

}


/* =========================================================
   Products
   ========================================================= */

.store-products {

    padding: 30px 0 90px;

    background: #090910;

}


.store-products-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 30px;

}


.store-products-header h2 {

    margin: 0;

    color: #ffffff;

    font-size: 32px;

}


.store-products-header h2 span {

    color: #ef1111;

}


.store-products-count {

    color: rgba(255,255,255,.38);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1px;

}


/* =========================================================
   Product Grid
   ========================================================= */

.store-product-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

}


/* =========================================================
   Product Card
   ========================================================= */

.store-product-card {

    overflow: hidden;

    background: #111119;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 14px;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;

}


.store-product-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(239,17,17,.38);

    box-shadow:
        0 20px 50px rgba(0,0,0,.35);

}


/* =========================================================
   Product Image
   ========================================================= */

.store-product-image {

    position: relative;

    height: 270px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,.07),
            transparent 65%
        ),
        #0b0b12;

}


.store-product-image img {

    width: 78%;

    height: 78%;

    object-fit: contain;

    transition:
        transform .35s ease;

}


.store-product-card:hover
.store-product-image img {

    transform: scale(1.05);

}


.store-product-badge {

    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 2;

    padding: 6px 9px;

    border-radius: 5px;

    color: #ffffff;

    background: #ef1111;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

}


/* =========================================================
   Product Content
   ========================================================= */

.store-product-content {

    padding: 22px;

}


.store-product-category {

    color: #ef1111;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.store-product-content h3 {

    margin: 8px 0 0;

    color: #ffffff;

    font-size: 19px;

    line-height: 1.25;

}


.store-product-content p {

    margin: 10px 0 20px;

    color: rgba(255,255,255,.48);

    font-size: 13px;

    line-height: 1.6;

}


.store-product-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

}


.store-product-bottom strong {

    color: #ffffff;

    font-size: 18px;

}


.store-product-button {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 13px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 7px;

    color: #ffffff;

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease;

}


.store-product-button:hover {

    color: #ffffff;

    background: #ef1111;

    border-color: #ef1111;

}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {

    .store-product-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


@media (max-width: 600px) {

    .store-container {

        width: min(100% - 30px, 1280px);

    }


    .store-intro {

        padding-top: 55px;

    }


    .store-products-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 10px;

    }


    .store-product-grid {

        grid-template-columns: 1fr;

    }


    .store-product-image {

        height: 240px;

    }

}

/* =========================================================
   Store Benefits
   ========================================================= */

.store-benefits {

    padding: 90px 0;

    background: #0c0c14;

}


.store-benefits-header {

    max-width: 680px;

    margin-bottom: 45px;

}


.store-benefits-header h2 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(30px, 3.5vw, 44px);

    line-height: 1.1;

}


.store-benefits-header h2 span {

    color: #ef1111;

}


.store-benefits-header p {

    margin: 18px 0 0;

    color: rgba(255,255,255,.5);

    font-size: 14px;

    line-height: 1.7;

}


.store-benefits-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 1px;

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 14px;

}


.store-benefit {

    position: relative;

    min-height: 245px;

    padding: 28px;

    background: #111119;

    border-right:
        1px solid rgba(255,255,255,.08);

    transition:
        background .25s ease;

}


.store-benefit:last-child {

    border-right: 0;

}


.store-benefit:hover {

    background: #15151e;

}


.store-benefit-number {

    position: absolute;

    top: 24px;

    right: 24px;

    color: rgba(255,255,255,.18);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

}


.store-benefit-icon {

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border:
        1px solid rgba(239,17,17,.25);

    border-radius: 10px;

    color: #ef1111;

    background:
        rgba(239,17,17,.06);

}


.store-benefit-icon .material-symbols-outlined {

    font-size: 22px;

}


.store-benefit h3 {

    margin: 0;

    color: #ffffff;

    font-size: 17px;

    font-weight: 600;

}


.store-benefit p {

    margin: 11px 0 0;

    color: rgba(255,255,255,.45);

    font-size: 12px;

    line-height: 1.7;

}


/* =========================================================
   Store CTA
   ========================================================= */

.store-cta {

    padding: 80px 0 100px;

    background: #090910;

}


.store-cta-card {

    position: relative;

    min-height: 300px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 55px 65px;

    box-sizing: border-box;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(239,17,17,.13),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #111119,
            #0b0b12
        );

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 18px;

}


.store-cta-content {

    position: relative;

    z-index: 2;

    max-width: 650px;

}


.store-cta-content h2 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.08;

}


.store-cta-content h2 span {

    color: #ef1111;

}


.store-cta-content p {

    max-width: 570px;

    margin: 18px 0 25px;

    color: rgba(255,255,255,.5);

    font-size: 14px;

    line-height: 1.7;

}


.store-cta-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 19px;

    border-radius: 8px;

    color: #ffffff;

    background: #ef1111;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    transition:
        transform .2s ease,
        background .2s ease;

}


.store-cta-button:hover {

    background: #d90e0e;

    transform: translateY(-2px);

}


.store-cta-decoration {

    position: absolute;

    right: 40px;

    top: 50%;

    width: 330px;

    height: 220px;

    transform: translateY(-50%);

    opacity: .55;

}


.store-cta-circle {

    position: absolute;

    top: 50%;

    left: 50%;

    width: 150px;

    height: 150px;

    transform:
        translate(-50%, -50%);

    border:
        1px solid rgba(239,17,17,.35);

    border-radius: 50%;

}


.store-cta-line {

    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(239,17,17,.45),
            transparent
        );

}


.store-cta-line.line-1 {

    width: 320px;

    top: 45px;

    left: 0;

    transform: rotate(15deg);

}


.store-cta-line.line-2 {

    width: 280px;

    top: 110px;

    left: 25px;

    transform: rotate(-18deg);

}


.store-cta-line.line-3 {

    width: 250px;

    top: 165px;

    left: 50px;

    transform: rotate(12deg);

}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {

    .store-benefits-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .store-benefit:nth-child(2) {

        border-right: 0;

    }

}


@media (max-width: 600px) {

    .store-benefits {

        padding: 65px 0;

    }


    .store-benefits-grid {

        grid-template-columns: 1fr;

    }


    .store-benefit {

        min-height: auto;

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.08);

    }


    .store-benefit:last-child {

        border-bottom: 0;

    }


    .store-cta {

        padding: 55px 0 70px;

    }


    .store-cta-card {

        min-height: 0;

        padding: 40px 25px;

    }


    .store-cta-decoration {

        right: -100px;

        opacity: .3;

    }

}