:root {
    --store-magenta: #d1007d;
    --store-lime: #cbe000;
    --store-text-dark: #000000;
    --store-text-light: #ffffff;
    --store-bg-hero-gradient-top: rgba(0,0,0,0.0);
    --store-bg-hero-gradient-bottom: rgba(0,0,0,0.6);
    --store-card-border: rgba(0,0,0,0.08);
    --store-card-shadow: 0 12px 24px rgba(0,0,0,0.08);
    --store-radius-soft: 4px;
    --store-font-main: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

/* HERO TIENDA */

.store-hero {
    position: relative;
    width: 100%;
    color: var(--store-text-light);
    background-color: #000;
    font-family: var(--store-font-main);
    overflow: hidden;
}

.store-hero-bg {
    position: relative;
    width: 100%;
    height: min(70vh, 600px);
    min-height: 360px;
    background-color: #000;
}

.store-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.store-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            var(--store-bg-hero-gradient-top) 0%,
            rgba(0,0,0,0.2) 40%,
            rgba(0,0,0,0.45) 60%,
            var(--store-bg-hero-gradient-bottom) 100%
    );
}

.store-hero-content {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 24px;
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.store-hero-headline {
    margin: 0;
    color: var(--store-text-light);
    font-family: inherit;
    font-weight: 700;
    line-height: 1.05;
    font-size: clamp(32px, 2vw + 1rem, 64px);
    text-transform: uppercase;
    text-shadow: 0 8px 24px rgba(0,0,0,0.8);
    letter-spacing: .02em;
}

.store-hero-line {
    display: block;
}

.store-hero-hashtag {
    font-size: clamp(20px, .4vw + .6rem, 32px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--store-lime);
    text-transform: uppercase;
    text-shadow: 0 8px 24px rgba(0,0,0,0.8);
    letter-spacing: .05em;
}

/* BLOQUES DE SECCIÓN (HOMBRE / MUJER) */

.store-section {
    background-color: #fff;
    color: var(--store-text-dark);
    font-family: var(--store-font-main);
    padding: 48px 16px 64px;
}

.store-section-inner {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: 32px;
    row-gap: 32px;
}

/* Columna izquierda con foto + badge */

.store-section-left {
    flex: 0 0 360px;
    max-width: 360px;
    min-width: 260px;

    display: flex;
    flex-direction: column;
    row-gap: 16px;
    position: relative;
}

.store-section-badge {
    display: inline-block;
    font-weight: 700;
    font-size: clamp(20px, .4vw + .8rem, 32px);
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    letter-spacing: .02em;
    width: fit-content;
}

.badge-lime {
    background-color: var(--store-lime);
    color: #000;
}

.badge-magenta {
    background-color: var(--store-magenta);
    color: #fff;
}

.store-section-photo {
    border: 0;
    overflow: hidden;
}

.store-section-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 0;
}

/* Columna derecha con productos */

.store-products-area {
    flex: 1 1 0%;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    width: 100%;
}

.store-products-header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.store-products-heading {
    display: flex;
    align-items: center;
    column-gap: 8px;
    flex-wrap: wrap;
    font-weight: 700;
    font-size: clamp(16px, .2vw + .6rem, 20px);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.heading-accent {
    font-weight: 700;
}

.heading-arrow {
    font-weight: 700;
    line-height: 1;
}

.heading-lime {
    color: var(--store-lime);
}

.heading-magenta {
    color: var(--store-magenta);
}

/* Grid de productos */

.store-products-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(min(260px,100%),1fr));
    column-gap: 32px;
    row-gap: 40px;
}

/* Tarjeta de producto */

.product-card {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    max-width: 360px;
    color: var(--store-text-dark);
    font-family: inherit;
    background-color: #fff;
}

.product-thumb {
    width: 100%;
    background-color: #fff;
    border: 1px solid var(--store-card-border);
    border-radius: var(--store-radius-soft);
    box-shadow: var(--store-card-shadow);
    padding: 24px 16px;
    min-height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.product-title {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #000;
}

.product-price {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #003a78;
}

.product-buy-btn {
    display: inline-block;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: var(--store-radius-soft);
    border: 2px solid transparent;
    text-align: center;
    width: fit-content;
    min-width: 140px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-lime {
    background-color: var(--store-lime);
    color: #000;
    border-color: #000;
}

.btn-magenta {
    background-color: var(--store-magenta);
    color: #fff;
    border-color: #000;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .store-section-inner {
        flex-direction: column;
    }

    .store-section-left {
        max-width: 100%;
    }

    .store-products-header {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {

    .store-hero-content {
        bottom: 16px;
    }

    .store-hero-headline {
        font-size: clamp(28px, 1.6vw + 1rem, 40px);
    }

    .store-hero-hashtag {
        font-size: 20px;
    }

    .store-section {
        padding: 32px 16px 48px;
    }

    .store-products-grid {
        column-gap: 24px;
        row-gap: 32px;
        grid-template-columns: minmax(0,1fr);
    }

    .product-thumb {
        min-height: 180px;
        padding: 16px 12px;
    }

    .product-price {
        font-size: 16px;
    }

    .product-buy-btn {
        font-size: 13px;
        min-width: 130px;
        padding: 9px 12px;
    }
}
