/* =========================================================
   ALFA SPORT — SINGLE PRODUCT
   ========================================================= */

.alfa-product-page {
    width: 100%;

    background:
        var(--alfa-bg);

    color:
        var(--alfa-text);
}


/* =========================================================
   BREADCRUMBS
   ========================================================= */

.alfa-product-breadcrumb {
    padding:
        24px
        0
        12px;
}

.alfa-product-breadcrumb nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    color:
        var(--alfa-text-muted);

    font-size: 12px;
    font-weight: 500;
}

.alfa-product-breadcrumb a {
    color:
        var(--alfa-text-soft);

    transition:
        color
        var(--alfa-transition-fast);
}

.alfa-product-breadcrumb a:hover {
    color:
        var(--alfa-green);
}

.alfa-product-breadcrumb strong {
    color:
        var(--alfa-text-dark);

    font-weight: 600;
}


/* =========================================================
   MAIN
   ========================================================= */

.alfa-product-main {
    padding:
        18px
        0
        42px;
}

.alfa-product-main__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(380px, 0.85fr);

    gap:
        58px;

    align-items: start;
}


/* =========================================================
   GALLERY
   ========================================================= */

.alfa-product-gallery {
    display: grid;

    grid-template-columns:
        82px
        minmax(0, 1fr);

    gap: 20px;
}

.alfa-product-gallery__thumbs {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.alfa-product-thumb {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 82px;
    height: 82px;

    padding: 8px;

    background:
        rgba(255,255,255,0.55);

    border:
        1px
        solid
        var(--alfa-border-light);

    border-radius:
        var(--alfa-radius-md);

    cursor: pointer;

    transition:
        border-color var(--alfa-transition-fast),
        background-color var(--alfa-transition-fast);
}

.alfa-product-thumb:hover,
.alfa-product-thumb.is-active {
    background:
        #fff;

    border-color:
        var(--alfa-green);
}

.alfa-product-thumb img {
    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
}

.alfa-product-thumb--more {
    flex-direction: column;

    gap: 2px;

    color:
        var(--alfa-green-deep);
}

.alfa-product-thumb--more strong {
    font-size: 20px;
    font-weight: 700;
}

.alfa-product-thumb--more span {
    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;
}


/* stage */

.alfa-product-gallery__stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 590px;
        padding: 0px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            var(--alfa-bg-soft)
        );
    border:
        1px
        solid
        var(--alfa-border-light);
    border-radius:
        var(--alfa-radius-lg);
    overflow: hidden;
}

.alfa-product-gallery__main-image,
.alfa-product-gallery__stage > img {
    width: 100%;
    max-width: 100%;
    max-height: 590px;
    object-fit: cover;
    transition:
        transform
        var(--alfa-transition-slow);
}

.alfa-product-gallery__stage:hover
.alfa-product-gallery__main-image {
    transform:
        scale(1.025);
}


/* zoom */

.alfa-product-gallery__zoom {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    padding: 0;

    background:
        rgba(255,255,255,0.84);

    color:
        var(--alfa-green-deep);

    border:
        1px
        solid
        rgba(0,60,50,0.08);

    border-radius:
        var(--alfa-radius-pill);

    cursor: pointer;
}

.alfa-product-gallery__zoom svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.5;
}


/* =========================================================
   BUY COLUMN
   ========================================================= */

.alfa-product-buy {
    position: sticky;

    top: 125px;
}

.alfa-product-stock {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 12px;

    padding:
        6px
        10px;

    background:
        rgba(0,60,50,0.08);

    color:
        var(--alfa-green);

    border-radius:
        var(--alfa-radius-pill);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
}

.alfa-product-stock span {
    width: 7px;
    height: 7px;

    background:
        currentColor;

    border-radius: 50%;
}






.alfa-product-stock.is-out {
    color:
        var(--alfa-red);
}
.alfa-product-buy h1 {
    margin:
        0
        0
        9px;
    color:
        var(--alfa-green-deep);

    font-size:
        clamp(35px, 3vw, 35px);

    font-weight: 700;
    line-height: 1.05;

    letter-spacing: -0.025em;
}

.alfa-product-sku {
    margin:
        0
        0
        18px;

    color:
        var(--alfa-text-soft);

    font-size: 13px;
}

.alfa-product-sku strong {
    color:
        var(--alfa-text-dark);

    font-weight: 600;
}


/* rating */

.alfa-product-rating {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 22px;
}

.alfa-product-rating__stars {
    color:
        var(--alfa-green-deep);

    letter-spacing: 1px;
}

.alfa-product-rating span {
    color:
        var(--alfa-text-soft);

    font-size: 13px;
}


/* price */

.alfa-product-price {
    margin-bottom: 9px;

    color:
        var(--alfa-red);

    font-size: 33px;
    font-weight: 700;
    line-height: 1;
}

.alfa-product-price del {
    margin-right: 10px;

    color:
        var(--alfa-text-muted);

    font-size: 17px;
    font-weight: 400;
}

.alfa-product-price ins {
    text-decoration: none;
}

.alfa-product-tax {
    margin-bottom: 24px;

    color:
        var(--alfa-text-muted);

    font-size: 12px;
}


/* short */

.alfa-product-short {
    margin-bottom: 24px;

    color:
        var(--alfa-text-soft);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   WOOCOMMERCE CART
   ========================================================= */

.alfa-product-cart {
    margin-top: 18px;
}

.alfa-product-cart form.cart {
    display: flex;
    align-items: stretch;

    gap: 10px;

    margin: 0;
}

.alfa-product-cart .quantity {
    display: flex;
}

.alfa-product-cart .qty {
    width: 92px;
    height: 52px;

    background:
        var(--alfa-bg-white);

    border:
        1px
        solid
        var(--alfa-border);

    border-radius:
        var(--alfa-radius-sm);

    text-align: center;

    font-weight: 600;
}

.alfa-product-cart
.single_add_to_cart_button {
    flex: 1;

    min-height: 52px;

    padding:
        0
        28px;

    background:
        var(--alfa-green) !important;

    color:
        #fff !important;

    border: 0 !important;

    border-radius:
        var(--alfa-radius-sm) !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    text-transform:
        uppercase;

    cursor: pointer;

    transition:
        background-color var(--alfa-transition),
        transform var(--alfa-transition);
}

.alfa-product-cart
.single_add_to_cart_button:hover {
    background:
        var(--alfa-green-dark) !important;

    transform:
        translateY(-1px);
}


/* variations */

.alfa-product-cart
.variations {
    width: 100%;

    margin-bottom: 16px;
}

.alfa-product-cart
.variations tr {
    display: grid;

    grid-template-columns:
        110px
        1fr;

    align-items: center;

    margin-bottom: 10px;
}

.alfa-product-cart
.variations label {
    font-weight: 600;
}

.alfa-product-cart
.variations select {
    width: 100%;
    height: 46px;

    padding:
        0
        12px;

    background:
        var(--alfa-bg-white);

    border:
        1px
        solid
        var(--alfa-border);

    border-radius:
        var(--alfa-radius-sm);
}


/* =========================================================
   PAYMENT
   ========================================================= */

.alfa-product-payment {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-top: 14px;
}

.alfa-product-payment__item {
    display: flex;
    flex-direction: column;

    gap: 3px;

    padding:
        15px;

    background:
        rgba(255,255,255,0.55);

    border:
        1px
        solid
        var(--alfa-border-light);

    border-radius:
        var(--alfa-radius-sm);
}

.alfa-product-payment__item strong {
    color:
        var(--alfa-green-deep);

    font-size: 13px;
    font-weight: 700;
}

.alfa-product-payment__item span {
    color:
        var(--alfa-text-muted);

    font-size: 11px;
}


/* =========================================================
   QUICK SPEC
   ========================================================= */

.alfa-product-quick-spec {
    margin-top: 18px;

    border-top:
        1px
        solid
        var(--alfa-border-light);
}

.alfa-product-quick-spec > div {
    display: grid;

    grid-template-columns:
        150px
        1fr;

    gap: 20px;

    padding:
        13px
        0;

    border-bottom:
        1px
        solid
        var(--alfa-border-light);

    font-size: 13px;
}

.alfa-product-quick-spec span {
    color:
        var(--alfa-text-muted);
}

.alfa-product-quick-spec strong {
    color:
        var(--alfa-text-dark);

    font-weight: 600;
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.alfa-product-trust {
    padding-bottom:
        var(--alfa-space-4xl);
}

.alfa-product-trust__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    background:
        rgba(255,255,255,0.35);

    border:
        1px
        solid
        var(--alfa-border-light);

    border-radius:
        var(--alfa-radius-md);
}

.alfa-product-trust__item {
    position: relative;

    display: flex;
    align-items: center;

    gap: 16px;

    min-height: 95px;

    padding:
        22px
        30px;
}

.alfa-product-trust__item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 22px;
    right: 0;
    bottom: 22px;

    width: 1px;

    background:
        var(--alfa-border-light);
}

.alfa-product-trust__item svg {
    flex: 0 0 auto;

    width: 40px;
    height: 40px;

    fill: none;

    stroke:
        var(--alfa-green-deep);

    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.alfa-product-trust__item strong {
    display: block;

    margin-bottom: 4px;

    color:
        var(--alfa-text-dark);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
}

.alfa-product-trust__item span {
    color:
        var(--alfa-text-soft);

    font-size: 12px;
}


/* =========================================================
   INFORMATION
   ========================================================= */

.alfa-product-info {
    padding-bottom:
        var(--alfa-space-4xl);
}

.alfa-product-info__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(360px, 0.65fr);

    gap: 22px;
}

.alfa-product-card {
    background:
        rgba(255,255,255,0.45);

    border:
        1px
        solid
        var(--alfa-border-light);

    border-radius:
        var(--alfa-radius-md);
}


/* =========================================================
   TABS
   ========================================================= */

.alfa-product-tabs {
    display: flex;

    gap: 30px;

    padding:
        0
        28px;

    border-bottom:
        1px
        solid
        var(--alfa-border-light);
}

.alfa-product-tab{
    padding: 0px 50px !important;
    color: #000;
}

.alfa-product-tab:hover, .alfa-product-tab:focus{
    background: transparent;
    padding: 0px 50px;
    color:#000;
}

.alfa-product-tab {
    position: relative;
    min-height: 50px;
    padding: 0;
    background: transparent;
    color:
        var(--alfa-text-soft);
    border: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform:
        uppercase;

    cursor: pointer;
}

.alfa-product-tab.is-active {
    color:
        var(--alfa-green-deep);
}

.alfa-product-tab.is-active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 2px;

    background:
        var(--alfa-green);
}

.alfa-product-tab-panel {
    display: none;

    min-height: 280px;

    padding:
        35px
        32px;
}

.alfa-product-tab-panel.is-active {
    display: block;
}

.alfa-product-tab-panel h2 {
    margin:
        0
        0
        18px;

    color:
        var(--alfa-green-deep);

    font-size: 21px;
    font-weight: 700;
}

.alfa-product-tab-panel p {
    max-width: 760px;

    color:
        var(--alfa-text-soft);

    font-size: 14px;
    line-height: 1.75;
}


/* benefits */

.alfa-product-benefits {
    display: grid;

    gap: 10px;

    margin:
        24px
        0
        0;

    padding: 0;

    list-style: none;
}

.alfa-product-benefits li {
    position: relative;

    padding-left: 26px;

    color:
        var(--alfa-text);

    font-size: 13px;
}

.alfa-product-benefits li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: -1px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 17px;
    height: 17px;

    background:
        var(--alfa-green);

    color:
        #fff;

    border-radius: 50%;

    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   SIDE
   ========================================================= */

.alfa-product-info__side {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.alfa-product-specs {
    padding:
        28px;
}

.alfa-product-specs > h2 {
    margin:
        0
        0
        20px;

    color:
        var(--alfa-green-deep);

    font-size: 19px;
    font-weight: 700;
}

.alfa-product-spec-table > div {
    display: grid;

    grid-template-columns:
        minmax(120px, 0.8fr)
        minmax(0, 1.2fr);

    gap: 20px;

    padding:
        12px
        0;

    border-bottom:
        1px
        solid
        var(--alfa-border-light);

    font-size: 12px;
}

.alfa-product-spec-table > div:last-child {
    border-bottom: 0;
}

.alfa-product-spec-table span {
    color:
        var(--alfa-text-muted);

    font-weight: 500;
}

.alfa-product-spec-table strong {
    color:
        var(--alfa-text-dark);

    font-weight: 600;
}

.alfa-product-spec-table p {
    margin: 0;

    color:
        var(--alfa-text-soft);

    line-height: 1.55;
}

.alfa-product-spec-table a {
    color:
        var(--alfa-green);

    font-weight: 600;

    text-decoration:
        underline;
}


/* =========================================================
   HELP
   ========================================================= */

.alfa-product-help {
    position: relative;

    min-height: 255px;

    padding:
        32px;

    background:
        linear-gradient(
            135deg,
            var(--alfa-bg-soft),
            #fff
        );

    border:
        1px
        solid
        var(--alfa-border-light);

    border-radius:
        var(--alfa-radius-md);

    overflow: hidden;
}

.alfa-product-help::after {
    content: "AS";

    position: absolute;

    right: -25px;
    bottom: -45px;

    color:
        rgba(0,60,50,0.04);

    font-family:
        var(--alfa-font-display);

    font-size: 140px;
    font-weight: 700;

    pointer-events: none;
}

.alfa-product-help__content {
    position: relative;
    z-index: 2;

    max-width: 270px;
}

.alfa-product-help__content > span {
    display: block;

    margin-bottom: 7px;

    color:
        var(--alfa-red);

    font-size: 10px;
    font-weight: 700;

    text-transform:
        uppercase;

    letter-spacing:
        0.08em;
}

.alfa-product-help h2 {
    margin:
        0
        0
        13px;

    color:
        var(--alfa-green-deep);

    font-family:
        var(--alfa-font-display);

    font-size: 28px;
    font-weight: 700;
}

.alfa-product-help p {
    margin:
        0
        0
        22px;

    color:
        var(--alfa-text-soft);

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   RELATED
   ========================================================= */

.alfa-product-related {
    padding-bottom:
        var(--alfa-space-4xl);
}

.alfa-product-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}

.alfa-product-section-heading h2 {
    margin: 0;

    color:
        var(--alfa-green-deep);

    font-family:
        var(--alfa-font-display);

    font-size: 25px;
    font-weight: 700;

    text-transform:
        uppercase;
}

.alfa-product-section-heading h2 span {
    margin-left: 8px;

    color:
        var(--alfa-green);
}

.alfa-product-section-heading > a {
    color:
        var(--alfa-green-deep);

    font-size: 12px;
    font-weight: 600;
}


/* grid */

.alfa-product-related__grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 14px;
}


/* card */

.alfa-related-card {
    background:
        rgba(255,255,255,0.45);

    border:
        1px
        solid
        var(--alfa-border-light);

    border-radius:
        var(--alfa-radius-md);

    overflow: hidden;

    transition:
        transform var(--alfa-transition),
        box-shadow var(--alfa-transition),
        border-color var(--alfa-transition);
}

.alfa-related-card:hover {
    background: #fff;

    border-color:
        rgba(0,60,50,0.23);

    box-shadow:
        var(--alfa-shadow-sm);

    transform:
        translateY(-3px);
}

.alfa-related-card__image {
    display: flex;
    align-items: center;
    justify-content: center;

    aspect-ratio:
        1 / 0.82;

    padding: 20px;

    background:
        rgba(255,255,255,0.35);
}

.alfa-related-card__image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.alfa-related-card__content {
    padding:
        5px
        18px
        18px;
}

.alfa-related-card__title {
    display: block;

    min-height: 38px;

    margin-bottom: 5px;

    color:
        var(--alfa-text-dark);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.4;
}

.alfa-related-card__category {
    display: block;

    color:
        var(--alfa-text-muted);

    font-size: 11px;
}

.alfa-related-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-top: 17px;
}

.alfa-related-card__price {
    color:
        var(--alfa-red);

    font-size: 16px;
    font-weight: 700;
}

.alfa-related-card__price ins {
    text-decoration: none;
}

.alfa-related-card__cart {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    background:
        var(--alfa-green);

    color:
        #fff;

    border-radius:
        var(--alfa-radius-sm);
}

.alfa-related-card__cart svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.5;
}


/* =========================================================
   VALUES
   ========================================================= */

.alfa-product-values {
    padding:
        0
        0
        var(--alfa-space-4xl);
}

.alfa-product-values__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top:
        1px
        solid
        var(--alfa-border-light);
}

.alfa-product-value {
    position: relative;

    padding:
        26px
        30px;
}

.alfa-product-value:first-child {
    padding-left: 0;
}

.alfa-product-value:last-child {
    padding-right: 0;
}

.alfa-product-value:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 26px;
    right: 0;
    bottom: 26px;

    width: 1px;

    background:
        var(--alfa-border-light);
}

.alfa-product-value strong {
    display: block;

    margin-bottom: 6px;

    color:
        var(--alfa-text-dark);

    font-size: 11px;
    font-weight: 700;

    text-transform:
        uppercase;
}

.alfa-product-value span {
    color:
        var(--alfa-text-soft);

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1180px) {

    .alfa-product-main__grid {
        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(360px, 0.9fr);

        gap: 35px;
    }

    .alfa-product-gallery__stage {
        min-height: 500px;
    }

    .alfa-product-related__grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .alfa-related-card:nth-child(5) {
        display: none;
    }

}


/* =========================================================
   TABLET PORTRAIT
   ========================================================= */

@media (max-width: 900px) {

    .alfa-product-main__grid {
        grid-template-columns: 1fr;
    }

    .alfa-product-buy {
        position: static;
    }

    .alfa-product-info__grid {
        grid-template-columns: 1fr;
    }

    .alfa-product-trust__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .alfa-product-trust__item:nth-child(2)::after {
        display: none;
    }

    .alfa-product-values__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .alfa-product-value:nth-child(2)::after {
        display: none;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .alfa-product-breadcrumb {
        padding-top: 16px;
    }

    .alfa-product-breadcrumb nav {
        font-size: 10px;
    }


    /* gallery */

    .alfa-product-gallery {
        display: flex;
        flex-direction: column-reverse;

        gap: 12px;
    }

    .alfa-product-gallery__thumbs {
        flex-direction: row;

        overflow-x: auto;

        padding-bottom: 3px;
    }

    .alfa-product-thumb {
        flex:
            0
            0
            70px;

        width: 70px;
        height: 70px;
    }

    .alfa-product-gallery__stage {
        min-height: 390px;

        padding: 32px;
    }

    .alfa-product-gallery__main-image {
        max-height: 330px;
    }


    /* buy */

    .alfa-product-main {
        padding-bottom: 30px;
    }

    .alfa-product-main__grid {
        gap: 26px;
    }

    .alfa-product-buy h1 {
        font-size: 34px;
    }

    .alfa-product-price {
        font-size: 28px;
    }

    .alfa-product-cart form.cart {
        flex-wrap: wrap;
    }

    .alfa-product-cart .quantity {
        width: 95px;
    }

    .alfa-product-cart
    .single_add_to_cart_button {
        flex: 1;
    }

    .alfa-product-payment {
        grid-template-columns: 1fr;
    }

    .alfa-product-quick-spec > div {
        grid-template-columns:
            120px
            1fr;
    }


    /* trust */

    .alfa-product-trust__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .alfa-product-trust__item {
        min-height: 100px;

        padding: 18px;
    }

    .alfa-product-trust__item:nth-child(odd)::after {
        display: block;
    }

    .alfa-product-trust__item:nth-child(even)::after {
        display: none;
    }

    .alfa-product-trust__item svg {
        width: 32px;
        height: 32px;
    }


    /* tabs */

    .alfa-product-tabs {
        gap: 18px;

        padding:
            0
            18px;

        overflow-x: auto;
    }

    .alfa-product-tab {
        flex: 0 0 auto;

        min-height: 58px;

        font-size: 10px;
    }

    .alfa-product-tab-panel {
        padding:
            27px
            20px;
    }


    /* side */

    .alfa-product-specs,
    .alfa-product-help {
        padding: 23px;
    }


    /* related */

    .alfa-product-section-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 8px;
    }

    .alfa-product-section-heading h2 {
        font-size: 22px;
    }

    .alfa-product-related__grid {
        display: flex;

        overflow-x: auto;

        gap: 12px;

        padding-bottom: 8px;

        scroll-snap-type:
            x mandatory;
    }

    .alfa-related-card,
    .alfa-related-card:nth-child(5) {
        display: block;

        flex:
            0
            0
            72%;

        scroll-snap-align:
            start;
    }


    /* values */

    .alfa-product-values__grid {
        grid-template-columns: 1fr;
    }

    .alfa-product-value,
    .alfa-product-value:first-child,
    .alfa-product-value:last-child {
        padding:
            20px
            0;
    }

    .alfa-product-value:not(:last-child)::after,
    .alfa-product-value:nth-child(2)::after {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;

        display: block;

        width: 100%;
        height: 1px;
    }

}


/* =========================================================
   MOBILE SMALL
   ========================================================= */

@media (max-width: 430px) {

    .alfa-product-gallery__stage {
        min-height: 340px;
    }

    .alfa-product-buy h1 {
        font-size: 31px;
    }

    .alfa-product-trust__item {
        gap: 10px;

        padding: 14px;
    }

    .alfa-product-trust__item strong {
        font-size: 10px;
    }

    .alfa-product-trust__item span {
        font-size: 10px;
    }

}


/* Responsive del cuadro de descripción */
.alfa-product-description {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.alfa-product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.alfa-product-tab {
    flex: 1 1 auto;
    min-width: 150px;
    white-space: normal;
    text-align: center;
}

.alfa-product-tab-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: normal;
}

.alfa-product-tab-panel p,
.alfa-product-tab-panel li,
.alfa-product-tab-panel h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.alfa-product-benefits {
    padding-left: 20px;
}

.alfa-product-spec-table {
    width: 100%;
    max-width: 100%;
}

.alfa-product-spec-table > div {
    display: grid;
    grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.2fr);
    gap: 15px;
    align-items: start;
}

.alfa-product-spec-table span,
.alfa-product-spec-table strong {
    min-width: 0;
    overflow-wrap: anywhere;
}

@media (max-width: 600px) {
    .alfa-product-tabs {
        flex-direction: column;
    }

    .alfa-product-tab {
        width: 100%;
        min-width: 0;
    }

    .alfa-product-tab-panel {
        padding: 18px 15px;
    }

    .alfa-product-spec-table > div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 12px 0;
    }

    .alfa-product-spec-table span {
        font-size: 12px;
    }

    .alfa-product-spec-table strong {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .alfa-product-tab-panel {
        padding: 15px 12px;
    }

    .alfa-product-tab-panel p,
    .alfa-product-tab-panel li {
        font-size: 14px;
        line-height: 1.5;
    }
}