:root {
    --si-wine: #66152f;
    --si-wine-dark: #26060f;
    --si-wine-deep: #160308;
    --si-gold: #c9a56a;
    --si-gold-light: #e2c48c;
    --si-cream: #faf6f3;
    --si-pink-light: #f5e8e8;
    --si-text: #25191c;
    --si-white: #ffffff;
}

.si-home {
    background: var(--si-cream);
    overflow: hidden;
}

.si-container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

/* HERO */

.si-hero {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    background-image: url("../img/hero-home.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--si-white);
}

.si-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(18, 2, 7, 0.80) 0%,
            rgba(18, 2, 7, 0.48) 45%,
            rgba(18, 2, 7, 0.10) 75%,
            rgba(18, 2, 7, 0.12) 100%
        );
}

.si-hero-content {
    position: relative;
    z-index: 2;
    width: min(720px, calc(100% - 40px));
    margin-left: max(5vw, calc((100vw - 1280px) / 2));
    padding: 150px 0 90px;
}

.si-hero-heading-decoration {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 420px;
    max-width: 100%;
    margin-bottom: 25px;
}

.si-hero-heading-decoration > span:not(.si-heart) {
    flex: 1;
    height: 1px;
    background: var(--si-gold);
    opacity: 0.7;
}

.si-heart {
    color: var(--si-gold-light);
    font-size: 32px;
}

.si-hero h1 {
    margin: 0;
    color: var(--si-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 5vw, 76px);
    font-weight: 400;
    line-height: 1.07;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.si-hero h1 span {
    color: var(--si-gold-light);
    font-style: italic;
    text-transform: none;
}

.si-title-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 430px;
    max-width: 100%;
    margin: 28px 0;
    color: var(--si-gold);
}

.si-title-divider span:first-child,
.si-title-divider span:last-child {
    flex: 1;
    height: 1px;
    background: var(--si-gold);
}

.si-hero p {
    max-width: 540px;
    margin: 0 0 36px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 18px;
    line-height: 1.7;
}

.si-hero p strong {
    color: var(--si-gold-light);
    font-weight: 600;
}

.si-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* BOTONES */

.si-button {
    display: inline-flex;
    min-height: 50px;
    padding: 0 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.si-button:hover {
    transform: translateY(-2px);
}

.si-button-primary {
    background: var(--si-gold);
    color: #24120e;
}

.si-button-primary:hover {
    background: var(--si-gold-light);
    color: #24120e;
}

.si-button-outline {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--si-white);
}

.si-button-outline:hover {
    border-color: var(--si-gold);
    background: rgba(201, 165, 106, 0.12);
    color: var(--si-gold-light);
}

.si-button-dark {
    background: var(--si-wine-dark);
    color: var(--si-white);
}

/* SECCIONES */

.si-section {
    padding: 95px 0;
}

.si-section-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.si-section-heading > span {
    display: block;
    margin-bottom: 8px;
    color: var(--si-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.si-section-heading h2 {
    margin: 0 0 15px;
    color: var(--si-wine-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400;
}

.si-section-heading p {
    margin: 0;
    color: #745e64;
    font-size: 17px;
    line-height: 1.7;
}

/* CATEGORÍAS */

.si-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.si-category-card {
    overflow: hidden;
    border-radius: 9px;
    box-shadow: 0 14px 32px rgba(48, 12, 24, 0.12);
}

.si-category-card a {
    position: relative;
    display: block;
    min-height: 260px;
    color: var(--si-white);
    text-decoration: none;
}

.si-category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.si-category-card:hover img {
    transform: scale(1.06);
}

.si-category-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(20, 2, 8, 0.05) 20%,
            rgba(20, 2, 8, 0.88) 100%
        );
}

.si-category-content {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 22px;
    left: 20px;
}

.si-category-content h3 {
    margin: 0 0 8px;
    color: var(--si-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
}

.si-category-content span {
    color: var(--si-gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* PRODUCTOS */

.si-featured-products {
    background: var(--si-white);
}

.si-products-content .products {
    margin-bottom: 35px;
}

.si-center {
    text-align: center;
}

/* OFERTAS */

.si-offers {
    position: relative;
    min-height: 530px;
    display: flex;
    align-items: center;
    background-image: url("../img/categoria-ofertas.webp");
    background-size: cover;
    background-position: center;
    color: var(--si-white);
}

.si-offers-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(27, 2, 10, 0.88),
            rgba(65, 7, 27, 0.54),
            rgba(65, 7, 27, 0.12)
        );
}

.si-offers-content {
    position: relative;
    z-index: 2;
}

.si-offers-content > span {
    color: var(--si-gold-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.si-offers h2 {
    max-width: 600px;
    margin: 12px 0 15px;
    color: var(--si-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6vw, 78px);
    font-weight: 400;
}

.si-offers p {
    max-width: 480px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 18px;
}

/* BENEFICIOS */

.si-benefits {
    padding: 90px 0;
    background: var(--si-pink-light);
}

.si-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.si-benefit-card {
    padding: 38px 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(201, 165, 106, 0.3);
    border-radius: 8px;
    text-align: center;
}

.si-benefit-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border: 1px solid var(--si-gold);
    border-radius: 50%;
    color: var(--si-wine);
    font-size: 28px;
}

.si-benefit-card h3 {
    margin: 0 0 10px;
    color: var(--si-wine-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.si-benefit-card p {
    margin: 0;
    color: #725d63;
    font-size: 15px;
    line-height: 1.65;
}

/* TABLET */

@media (max-width: 1100px) {
    .si-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .si-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* MÓVIL */

@media (max-width: 767px) {
    .si-container {
        width: min(100% - 28px, 1280px);
    }

    .si-hero {
        min-height: 680px;
        background-position: 68% center;
    }

    .si-hero-overlay {
        background: rgba(17, 2, 7, 0.68);
    }

    .si-hero-content {
        width: calc(100% - 32px);
        margin: 0 auto;
        padding: 125px 0 65px;
        text-align: center;
    }

    .si-hero-heading-decoration,
    .si-title-divider {
        margin-right: auto;
        margin-left: auto;
    }

    .si-hero h1 {
        font-size: clamp(38px, 11vw, 54px);
    }

    .si-hero p {
        margin-right: auto;
        margin-left: auto;
    }

    .si-hero-actions {
        justify-content: center;
    }

    .si-button {
        width: 100%;
    }

    .si-section {
        padding: 65px 0;
    }

    .si-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .si-category-card a {
        min-height: 220px;
    }

    .si-category-content {
        right: 14px;
        bottom: 16px;
        left: 14px;
    }

    .si-category-content h3 {
        font-size: 19px;
    }

    .si-offers {
        min-height: 520px;
        background-position: 35% center;
    }

    .si-offers-content {
        text-align: center;
    }

    .si-benefit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .si-category-grid {
        grid-template-columns: 1fr;
    }

    .si-category-card a {
        min-height: 280px;
    }
}