:root {
    
    --color-primary: #050505;
    --color-accent: #e5252a;
    --color-accent-2: #bf1519;
    --color-accent-3: #ff3b3f;
    --color-accent-4: #e5252a;
    --color-secondary: #171717;
    --color-text: #323232;
    --color-background: #f6f3ee;
    --color-light: #ffffff;
    --font-primary: 'Poppins', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --container-width: 1140px;
    --header-height: 70px;

    
    --bs-primary: #050505;
    --bs-primary-rgb: 5, 5, 5;
    --bs-link-color: #050505;
    --bs-link-color-rgb: 5, 5, 5;
    --bs-link-hover-color: #000000;
    --bs-link-hover-color-rgb: 0, 0, 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    transition: background-color 0.3s;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: var(--color-secondary);
}

.container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

:root {
    --sidebar-width: 250px; 
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 3rem;
}

.hero {
    background: linear-gradient(135deg, rgba(0, 128, 135, 0.05), rgba(0, 128, 135, 0));
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2; 
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.btn:not([class*="btn-outline-"]) {
    border: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: #00666d; 
    color: var(--color-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-lg {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.products-section {
    padding: 4rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--color-light);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.7s ease forwards;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-image-container {
    position: relative;
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
}

.badge-shipping {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.product-image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #eee;
}

.discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem; 
    background-color: var(--color-accent);
    color: var(--color-secondary);
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-title a {
    color: var(--color-secondary);
}

.product-title a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.product-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.old-price {
    font-size: 1.1rem;
    color: #6c757d;
    text-decoration: line-through;
}

.benefits-section {
    background-color: #f7f9fc;
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

.benefit-item i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

@media (min-width: 992px) {
    .nav-toggle {
        display: none; 
    }
    .nav-close {
        display: none;
    }

    .main-nav { 
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding-top: 0;
        box-shadow: none;
        transform: none;
    }

    .main-nav ul {
        display: flex;
        margin-top: 0;
        align-items: center;
        gap: 0.25rem;
    }

    .main-nav a:not(.btn) {
        color: rgba(255, 255, 255, 0.9);
        padding: 0.5rem 0.9rem;
        font-weight: 500;
        border-radius: 30px;
        white-space: nowrap;
        transition: all 0.2s ease;
    }

    .main-nav a:not(.btn):hover {
        background-color: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        text-decoration: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

.main-footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-column .footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px; 
    width: auto;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--color-light);
    font-size: 1.5rem;
    transition: color 0.2s, transform 0.2s;
}

.social-icons a:hover {
    color: var(--color-accent);
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-light);
    text-decoration: none;
    padding-left: 5px;
}

.footer-column p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--color-accent);
    font-weight: 600;
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
}

.payment-methods img {
    height: 25px;
    opacity: 0.8;
}

.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    min-height: calc(100vh - var(--header-height) - 250px); 
    padding: 2rem 0;
}

.error-content .error-code {
    font-size: 15rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    opacity: 0.07;
}

.error-content .error-title {
    font-size: 3rem;
    margin-top: -5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    position: relative; 
}

.error-content .error-message {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .error-content .error-code {
        font-size: 12rem;
    }
    .error-content .error-title {
        font-size: 2.5rem;
        margin-top: -4rem;
    }
}

@media (max-width: 480px) {
    .error-content .error-code {
        font-size: 8rem;
    }
    .error-content .error-title {
        font-size: 2rem;
        margin-top: -2.5rem;
    }
    .error-content .error-message {
        font-size: 1rem;
    }
}

.products-grid .product-card:nth-child(1) { animation-delay: 0.1s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.2s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.3s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-slider {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    margin-bottom: 2rem;
}
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
}
.slider-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.7s;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-slide.active {
    opacity: 1;
    z-index: 2;
}
.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.slider-caption {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.slider-caption h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}
.slider-caption p {
    font-size: 1.1rem;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 4;
    border-radius: 50%;
}
.slider-btn.prev { left: 1rem; }
.slider-btn.next { right: 1rem; }
.slider-btn:hover { background: var(--color-primary); }

.pedir-ahora-btn-fixed {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100vw;
    z-index: 1003;
    border-radius: 0;
    font-size: 1.2rem;
    padding: 1rem;
}
@media (max-width: 768px) {
    .pedir-ahora-btn-fixed { display: block; }
    .pedir-ahora-btn { display: none; }
}
@media (min-width: 769px) {
    .pedir-ahora-btn-fixed { display: none; }
    .pedir-ahora-btn { float: left; }
}

.quantity-offers { margin-bottom: 1rem; }
.quantity-offer { display: flex; align-items: center; gap: 1rem; cursor: pointer; border: 2px solid #eee; border-radius: 8px; margin-bottom: 0.5rem; padding: 0.5rem; }
.quantity-offer.active { border-color: var(--color-primary); background: #f0f8f8; }
.offer-img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.offer-title { font-weight: 600; }
.offer-prices { margin-top: 0.2rem; }
.old-price { color: #888; margin-right: 0.5rem; }
.new-price { color: var(--color-primary); font-weight: 700; }
.totals-summary { background: #f7f9fc; border-radius: 8px; padding: 1rem; margin-bottom: 1rem; }

.producto-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.producto-card .card-img-top {
    transition: transform 0.3s ease;
}

.producto-card:hover .card-img-top {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .producto-card:hover {
        transform: none;
    }
}

.fortisol-topbar {
    background: #050505;
    color: #fff;
    font-size: .83rem;
    font-weight: 700;
    padding: .55rem 0;
}

.fortisol-topbar a {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
}

.fortisol-topbar a:hover {
    color: #fff;
}

.topbar-promo {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    text-align: center;
}

.topbar-promo span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .28rem .72rem;
    background: var(--color-accent);
    color: #fff;
    line-height: 1;
}

.topbar-promo strong {
    color: rgba(255, 255, 255, .95);
    font-weight: 700;
}

.fortisol-navbar {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(5, 5, 5, .06);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
    backdrop-filter: blur(14px);
}

.fortisol-navbar .container {
    position: relative;
    min-height: 92px;
}

.fortisol-navbar .navbar-brand {
    position: static;
    justify-content: center;
    margin: 0;
    z-index: 2;
}

.fortisol-navbar .navbar-brand img {
    width: auto;
    height: 46px;
}

.fortisol-navbar .nav-link {
    color: #050505;
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: 0;
    padding-inline: .76rem !important;
}

.fortisol-navbar .nav-link i {
    color: #050505;
}

.fortisol-navbar .nav-link:hover,
.fortisol-navbar .nav-link.active {
    color: #e5252a;
}

.fortisol-actions {
    align-items: center;
    order: 3;
}

.fortisol-actions .fortisol-action-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #050505;
    padding: 0 !important;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.fortisol-actions .fortisol-action-icon i {
    font-size: 1.12rem;
}

.fortisol-actions .fortisol-action-icon:hover {
    background: #050505;
    color: #fff;
    transform: translateY(-2px);
}

.fortisol-actions .dropdown-toggle::after {
    display: none;
}

.fortisol-wa-btn.fortisol-action-icon {
    background: #e5252a;
    color: #fff;
    border: 0;
    box-shadow: 0 10px 22px rgba(37, 211, 102, .25);
}

.fortisol-wa-btn.fortisol-action-icon:hover {
    background: #bf1519;
    color: #fff;
    box-shadow: 0 14px 28px rgba(37, 211, 102, .32);
}

@media (min-width: 992px) {
    .fortisol-navbar .navbar-brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .fortisol-navbar .navbar-collapse {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .fortisol-main-menu {
        width: calc(50% - 120px);
        justify-content: center;
        order: 1;
    }

    .fortisol-actions {
        width: calc(50% - 120px);
        justify-content: flex-end;
    }
}

@media (max-width: 991px) {
    .fortisol-topbar .container {
        justify-content: center !important;
        text-align: center;
    }

    .topbar-links:first-child {
        display: none !important;
    }

    .topbar-promo {
        flex-wrap: wrap;
        justify-content: center;
    }

    .fortisol-navbar .container {
        min-height: 72px;
    }

    .fortisol-navbar .navbar-brand {
        justify-content: flex-start;
    }

    .fortisol-navbar .navbar-collapse {
        padding: 1rem 0 .75rem;
    }

    .fortisol-navbar .navbar-brand img {
        height: 42px;
    }

    .fortisol-actions {
        flex-direction: row;
        gap: .65rem;
        padding-top: .65rem;
    }

    .fortisol-actions .fortisol-action-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 50%;
    }
}

.fortisol-home {
    background: #f6f3ee;
}

.fortisol-hero {
    background: radial-gradient(circle at 80% 20%, rgba(242, 184, 75, .18), transparent 34%), #050505;
    color: #fff;
    padding: 76px 0 56px;
    overflow: hidden;
}

.hero-copy {
    max-width: 620px;
}

.hero-kicker,
.section-head span,
.viral-category {
    color: var(--color-accent);
    display: inline-block;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-copy h1 {
    font-size: clamp(2.35rem, 5vw, 4.8rem);
    line-height: 1.02;
    font-weight: 800;
    margin: 14px 0 18px;
}

.hero-copy p {
    color: rgba(255, 255, 255, .76);
    font-size: 1.08rem;
    max-width: 560px;
}

.hero-actions,
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-actions {
    margin-top: 28px;
}

.hero-trust {
    margin-top: 24px;
    color: rgba(255, 255, 255, .72);
    font-size: .92rem;
}

.hero-trust span {
    display: inline-flex;
    gap: 7px;
    align-items: center;
}

.hero-product {
    display: block;
    color: #171717;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

.hero-product:hover {
    color: #171717;
    text-decoration: none;
}

.hero-product-media {
    background: linear-gradient(180deg, #ffffff 0%, #f1eee8 100%);
    aspect-ratio: 1 / .78;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.hero-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-product-panel {
    padding: 24px;
}

.offer-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #fff3d6;
    color: #6a4200;
    font-size: .78rem;
    font-weight: 800;
    padding: 7px 12px;
    margin-bottom: 12px;
}

.hero-product-panel h2 {
    font-size: 1.45rem;
    font-weight: 800;
    margin: 0 0 10px;
}

.hero-price {
    color: #050505;
    font-size: 1.7rem;
    font-weight: 900;
}

.hero-link {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    margin-top: 12px;
    font-weight: 800;
}

.fortisol-products,
.fortisol-steps,
.fortisol-final-cta {
    padding: 64px 0;
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 38px;
}

.section-head h2,
.fortisol-final-cta h2 {
    color: #171717;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
    font-weight: 900;
    margin: 8px 0 12px;
}

.section-head p,
.fortisol-final-cta p {
    color: #666;
    margin: 0;
}

.viral-product {
    background: #fff;
    border: 1px solid rgba(5, 5, 5, .08);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 48px rgba(20, 20, 20, .08);
}

.viral-product-img {
    position: relative;
    background: #f1eee8;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.viral-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.viral-product-img span {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #050505;
    color: #fff;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
    padding: 7px 12px;
}

.viral-product-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.viral-product-body h3 {
    color: #171717;
    font-size: 1.35rem;
    font-weight: 900;
    margin: 6px 0 10px;
}

.viral-product-body p {
    color: #6a6a6a;
}

.viral-product-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.viral-product-body li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: #323232;
    margin-bottom: 8px;
    font-size: .94rem;
}

.viral-product-body li i {
    color: #e5252a;
    margin-top: 2px;
}

.viral-buy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(5, 5, 5, .08);
}

.viral-buy-row small {
    display: block;
    color: #777;
    font-weight: 700;
}

.viral-buy-row strong {
    display: block;
    color: #050505;
    font-size: 1.55rem;
    line-height: 1;
}

.fortisol-steps {
    background: #050505;
    color: #fff;
}

.step-box {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 28px;
    background: rgba(255, 255, 255, .04);
}

.step-box b {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: #050505;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.step-box h3 {
    font-size: 1.25rem;
    font-weight: 900;
}

.step-box p {
    color: rgba(255, 255, 255, .68);
    margin: 0;
}

.fortisol-final-cta {
    background: #fff;
}

@media (max-width: 767px) {
    .fortisol-hero {
        padding: 48px 0 42px;
    }

    .hero-actions .btn,
    .fortisol-final-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-product-panel,
    .viral-product-body {
        padding: 20px;
    }

    .viral-buy-row {
        align-items: stretch;
        flex-direction: column;
    }
}

.contact-hero,
.about-hero {
    background: radial-gradient(circle at 82% 18%, rgba(242, 184, 75, .16), transparent 32%), #050505;
    color: #fff;
    padding: 76px 0 58px;
}

.contact-hero span,
.about-hero span,
.about-panel > span,
.contact-address span {
    color: var(--color-accent);
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-hero h1,
.about-hero h1 {
    font-size: clamp(2.25rem, 5vw, 4.3rem);
    font-weight: 900;
    line-height: 1.04;
    margin: 12px auto 14px;
    max-width: 820px;
}

.contact-hero p,
.about-hero p {
    color: rgba(255, 255, 255, .72);
    font-size: 1.08rem;
    margin: 0 auto 28px;
    max-width: 680px;
}

.contact-hero {
    text-align: center;
}

.contact-options,
.about-story {
    background: #f6f3ee;
    padding: 62px 0;
}

.contact-tile {
    min-height: 188px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    background: #fff;
    color: #171717;
    border: 1px solid rgba(5, 5, 5, .08);
    border-radius: 8px;
    padding: 24px;
    text-decoration: none;
    box-shadow: 0 16px 42px rgba(20, 20, 20, .07);
}

.contact-intro {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.contact-intro h2 {
    color: #171717;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 0 10px;
}

.contact-intro p {
    color: #666;
    margin: 0;
}

.contact-tile:hover {
    color: #171717;
    text-decoration: none;
    transform: translateY(-4px);
}

.contact-tile i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    color: #fff;
    border-radius: 50%;
    font-size: 1.3rem;
}

.contact-tile small {
    color: #777;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-tile strong {
    font-size: 1rem;
    line-height: 1.25;
    word-break: break-word;
}

.contact-address {
    margin-top: 28px;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(5, 5, 5, .08);
}

.contact-address h2 {
    color: #171717;
    font-size: 1.35rem;
    font-weight: 900;
    margin: 8px 0;
}

.contact-address p {
    color: #666;
    margin: 0;
}

.about-brand-box,
.about-panel,
.about-values,
.about-mini-card {
    border-radius: 8px;
    border: 1px solid rgba(5, 5, 5, .08);
    box-shadow: 0 16px 42px rgba(20, 20, 20, .07);
}

.about-brand-box {
    background: linear-gradient(180deg, #242424, #0b0b0b);
    padding: 34px;
}

.about-brand-box img {
    height: 46px;
    width: auto;
    margin-bottom: 24px;
}

.about-brand-box p {
    margin: 0;
}

.about-panel,
.about-values,
.about-mini-card {
    background: #fff;
    padding: 30px;
}

.about-content h2 {
    color: #171717;
    font-size: 2rem;
    font-weight: 900;
    margin: 8px 0 14px;
}

.about-content p {
    color: #555;
    font-size: 1.02rem;
}

.about-values {
    display: grid;
    gap: 18px;
}

.about-values div {
    border-bottom: 1px solid rgba(5, 5, 5, .08);
    padding-bottom: 18px;
}

.about-values div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.about-values i,
.about-mini-card i {
    color: #e5252a;
    font-size: 1.6rem;
}

.about-values strong,
.about-mini-card h3 {
    display: block;
    color: #171717;
    font-weight: 900;
    margin-top: 8px;
}

.about-values p,
.about-mini-card p {
    color: #666;
    margin: 4px 0 0;
}

.about-mini-card h3 {
    font-size: 1.35rem;
}

@media (max-width: 767px) {
    .contact-address {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-address .btn {
        width: 100%;
    }
}

.catalog-page {
    background: #f6f3ee;
}

.catalog-hero {
    background: radial-gradient(circle at 86% 12%, rgba(242, 184, 75, .18), transparent 32%), #050505;
    color: #fff;
    padding: 54px 0 42px;
}

.catalog-hero .breadcrumb a,
.catalog-hero .breadcrumb .active,
.catalog-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .68);
}

.catalog-hero span {
    color: var(--color-accent);
    display: inline-block;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.catalog-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 8px 0 10px;
}

.catalog-hero p {
    color: rgba(255, 255, 255, .72);
    margin: 0;
    font-size: 1.04rem;
}

.catalog-search {
    background: #fff;
    border-radius: 999px;
    padding: 8px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 8px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}

.catalog-search > i {
    color: #777;
    font-size: 1.15rem;
    padding-left: 12px;
}

.catalog-search input {
    border: 0;
    outline: 0;
    min-width: 0;
    font-weight: 700;
}

.catalog-search a {
    color: #555;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.catalog-search button {
    background: #050505;
    color: #fff;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    padding: 12px 22px;
}

.catalog-list {
    padding: 54px 0 70px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.catalog-card {
    background: #fff;
    border: 1px solid rgba(5, 5, 5, .08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(20, 20, 20, .08);
    display: grid;
    grid-template-columns: minmax(220px, 42%) 1fr;
    min-height: 330px;
}

.catalog-card-media {
    position: relative;
    background: #f1eee8;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-card-media img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: contain;
}

.catalog-card-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.catalog-card-badges span {
    background: #050505;
    color: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: .74rem;
    font-weight: 900;
}

.catalog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.catalog-card-category {
    color: var(--color-accent);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.catalog-card h2 {
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.14;
    margin: 8px 0 10px;
}

.catalog-card h2 a {
    color: #171717;
}

.catalog-card h2 a:hover {
    text-decoration: none;
}

.catalog-card p {
    color: #666;
    margin-bottom: 12px;
}

.catalog-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.catalog-card li {
    color: #323232;
    display: flex;
    gap: 8px;
    font-size: .92rem;
    margin-bottom: 7px;
}

.catalog-card li i {
    color: #e5252a;
    margin-top: 2px;
}

.catalog-card-bottom {
    border-top: 1px solid rgba(5, 5, 5, .08);
    padding-top: 16px;
    margin-top: auto;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
}

.catalog-card-bottom small {
    color: #777;
    display: block;
    font-weight: 800;
}

.catalog-card-bottom strong {
    color: #050505;
    font-size: 1.45rem;
    line-height: 1;
}

.catalog-empty {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 48px 22px;
    border: 1px solid rgba(5, 5, 5, .08);
}

.catalog-empty i {
    color: #050505;
    font-size: 2.4rem;
}

.official-product-page {
    background: #f6f3ee;
    padding-bottom: 72px;
}

.product-detail-container {
    padding-top: 18px;
}

.official-breadcrumb {
    gap: 10px;
    color: #777;
    font-size: .88rem;
    margin-bottom: 18px;
}

.official-breadcrumb a {
    color: #555;
    font-weight: 700;
}

.official-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
    gap: 32px;
    align-items: start;
}

.product-gallery {
    position: relative;
}

@media (min-width: 992px) {
    .product-gallery {
        position: sticky;
        top: 92px;
    }
}

.official-main-img,
.gallery-slide {
    background: linear-gradient(180deg, #fff 0%, #f1eee8 100%);
    border: 1px solid rgba(5, 5, 5, .08);
    border-radius: 8px;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 18px 48px rgba(20, 20, 20, .08);
}

.main-product-img,
.gallery-img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
}

.product-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.product-thumbnails button {
    border: 1px solid rgba(5, 5, 5, .1);
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    width: 76px;
    height: 76px;
}

.product-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.official-buy-panel {
    background: #fff;
    border: 1px solid rgba(5, 5, 5, .08);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 18px 48px rgba(20, 20, 20, .08);
}

.official-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
}

.official-badges span {
    background: #f6f3ee;
    color: #171717;
    border: 1px solid rgba(5, 5, 5, .08);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: .78rem;
    font-weight: 900;
}

.official-buy-panel h1 {
    color: #171717;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.04;
    margin: 0 0 12px;
}

.official-summary {
    color: #5f5f5f;
    font-size: 1.04rem;
    margin-bottom: 12px;
}

.official-rating {
    color: var(--color-accent);
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    align-items: center;
    margin-bottom: 18px;
}

.official-rating small {
    color: #777;
    font-weight: 700;
    margin-left: 8px;
}

.official-benefits {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
}

.official-benefits div {
    display: flex;
    gap: 10px;
    color: #323232;
}

.official-benefits i {
    color: #e5252a;
    margin-top: 2px;
}

.official-price-box {
    background: #f9f7f2;
    border: 1px solid rgba(5, 5, 5, .08);
    border-radius: 8px;
    padding: 20px;
    margin: 18px 0;
}

.official-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.official-price-row strong {
    color: #050505;
    font-size: clamp(2.3rem, 5vw, 3.4rem);
    line-height: 1;
}

.official-price-row span {
    color: #777;
    text-decoration: line-through;
    font-size: 1.12rem;
}

.official-price-row em {
    background: #dc3545;
    color: #fff;
    border-radius: 999px;
    padding: 5px 10px;
    font-style: normal;
    font-weight: 900;
}

.official-stock-link {
    color: #050505;
    font-size: 1.35rem;
    font-weight: 900;
}

#mainBuyBtn.cta-shake {
    position: relative;
    background: linear-gradient(135deg, #ff8a00 0%, #ff5722 50%, #e53935 100%) !important;
    background-size: 200% 200% !important;
    border: 0;
    box-shadow: 0 8px 24px rgba(229, 57, 53, .35), 0 0 0 0 rgba(255, 138, 0, .7);
    animation: ctaPulse 2.2s ease-in-out infinite, ctaGradient 4s ease infinite;
    overflow: hidden;
}

#mainBuyBtn.cta-shake::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 -60%;
    width: 42%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: skewX(-20deg);
    animation: ctaShine 3.2s ease-in-out infinite;
}

#mainBuyBtn .cta-spark {
    display: inline-flex;
    margin-left: 8px;
    animation: ctaWiggle 1.6s ease-in-out infinite;
}

.official-buy-note {
    color: #777;
    text-align: center;
    font-size: .86rem;
    margin: 10px 0 0;
}

.official-packs,
.official-info-section {
    background: #fff;
    border: 1px solid rgba(5, 5, 5, .08);
    border-radius: 8px;
    padding: 30px;
    margin-top: 28px;
    box-shadow: 0 18px 48px rgba(20, 20, 20, .06);
}

.official-packs h2,
.official-info-section h2 {
    color: #171717;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 900;
    margin: 0 0 22px;
}

.pack-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.pack-card {
    border: 1px solid rgba(5, 5, 5, .1);
    border-radius: 8px;
    padding: 18px;
    text-align: center;
}

.pack-card strong {
    display: block;
    color: #050505;
    font-size: 2rem;
    line-height: 1;
}

.pack-card span,
.pack-card small {
    display: block;
    color: #777;
}

.pack-card b {
    display: block;
    color: #050505;
    font-size: 1.25rem;
    margin: 8px 0;
}

.product-description-content .sales-story {
    --story-red: #ed1c24;
    --story-black: #080808;
    --story-paper: #f4f1ec;
    color: #202020;
    overflow: hidden;
}

.product-description-content .sales-story__hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    background: var(--story-black);
    isolation: isolate;
}

.product-description-content .sales-story__hero .sales-story__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.product-description-content .sales-story__hero .sales-story__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .64) 44%, rgba(0, 0, 0, .08) 78%);
}

.product-description-content .sales-story__hero .sales-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-description-content .sales-story__hero-copy {
    max-width: 650px;
    padding: clamp(36px, 7vw, 84px);
}

.product-description-content .sales-story__hero h2,
.product-description-content .sales-story__hero p,
.product-description-content .sales-story__bundle h3,
.product-description-content .sales-story__bundle p {
    color: #fff;
}

.product-description-content .sales-story__feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp(24px, 5vw, 68px);
    padding: clamp(46px, 7vw, 88px);
}

.product-description-content .sales-story__feature--reverse .sales-story__media {
    order: -1;
}

.product-description-content .sales-story__eyebrow {
    color: var(--story-red);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-description-content .sales-story h2,
.product-description-content .sales-story h3 {
    color: var(--story-black);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.product-description-content .sales-story h2 {
    font-size: clamp(2.15rem, 5vw, 4.5rem);
}

.product-description-content .sales-story h3 {
    font-size: clamp(1.55rem, 3vw, 2.55rem);
}

.product-description-content .sales-story .sales-story__hero h2,
.product-description-content .sales-story .sales-story__hero p,
.product-description-content .sales-story .sales-story__bundle h3,
.product-description-content .sales-story .sales-story__bundle p,
.product-description-content .sales-story .sales-story__bundle .sales-story__eyebrow {
    color: #fff;
}

.product-description-content .sales-story p {
    color: #5f5f5f;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.75;
}

.product-description-content .sales-story__media img {
    display: block;
    width: 100%;
    height: auto;
}

.product-description-content .sales-story__benefits {
    background: var(--story-paper);
    padding: clamp(46px, 7vw, 88px);
}

.product-description-content .sales-story__benefits-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.product-description-content .sales-story__benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(0, 0, 0, .18);
    border-left: 1px solid rgba(0, 0, 0, .18);
}

.product-description-content .sales-story__benefit {
    min-height: 190px;
    padding: clamp(22px, 3vw, 36px);
    background: #fff;
    border-right: 1px solid rgba(0, 0, 0, .18);
    border-bottom: 1px solid rgba(0, 0, 0, .18);
}

.product-description-content .sales-story__benefit i {
    color: var(--story-red);
    display: block;
    font-size: 1.65rem;
    margin-bottom: 20px;
}

.product-description-content .sales-story__benefit strong {
    color: var(--story-black);
    display: block;
    font-size: 1.08rem;
    margin-bottom: 7px;
}

.product-description-content .sales-story__benefit span {
    color: #686868;
    font-size: .94rem;
    line-height: 1.55;
}

.product-description-content .sales-story__bundle {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    background: var(--story-red);
    color: #fff;
}

.product-description-content .sales-story__bundle-copy {
    padding: clamp(42px, 7vw, 84px);
}

.product-description-content .sales-story__bundle-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.product-description-content .sales-story__bundle-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .32);
}

.product-description-content .sales-story__bundle-item b {
    font-size: 2.1rem;
    line-height: 1;
}

.product-description-content .sales-story__bundle-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.product-description-content .sales-story__routine {
    background: var(--story-black);
    color: #fff;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-description-content .sales-story__step {
    padding: clamp(24px, 4vw, 42px);
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.product-description-content .sales-story__step:last-child {
    border-right: 0;
}

.product-description-content .sales-story__step b {
    color: var(--story-red);
    display: block;
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.product-description-content .sales-story__step strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.product-description-content .sales-story__step span {
    color: #c9c9c9;
    font-size: .94rem;
    line-height: 1.55;
}

.product-description-content .sales-story__closing {
    background: #fff;
    display: grid;
    grid-template-columns: 1.2fr auto;
    align-items: center;
    gap: 30px;
    padding: clamp(42px, 7vw, 84px);
}

.product-description-content .sales-story__closing h3 {
    margin-bottom: 10px;
}

.product-description-content .sales-story__closing p {
    margin: 0;
}

.product-description-content .sales-story__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 210px;
    padding: 16px 24px;
    background: var(--story-red);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.product-description-content .sales-story__notice {
    background: #fff;
    border-top: 1px solid #d8d8d8;
    color: #707070;
    font-size: .82rem;
    line-height: 1.6;
    padding: 22px clamp(24px, 7vw, 84px);
}

@media (max-width: 767.98px) {
    .official-description-section {
        padding: 0;
    }

    .product-description-content .sales-story__hero {
        min-height: 620px;
    }

    .product-description-content .sales-story__hero .sales-story__media::after {
        background: linear-gradient(0deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .52) 48%, rgba(0, 0, 0, .04) 76%);
    }

    .product-description-content .sales-story__hero-copy {
        padding: 34px 22px;
    }

    .product-description-content .sales-story h2 {
        font-size: clamp(2.35rem, 12vw, 3.3rem);
    }

    .product-description-content .sales-story__feature,
    .product-description-content .sales-story__benefits,
    .product-description-content .sales-story__bundle-copy,
    .product-description-content .sales-story__closing {
        padding: 42px 22px;
    }

    .product-description-content .sales-story__feature,
    .product-description-content .sales-story__bundle,
    .product-description-content .sales-story__closing {
        grid-template-columns: 1fr;
    }

    .product-description-content .sales-story__feature--reverse .sales-story__media {
        order: initial;
    }

    .product-description-content .sales-story__benefit-grid,
    .product-description-content .sales-story__routine {
        grid-template-columns: 1fr;
    }

    .product-description-content .sales-story__benefit {
        min-height: auto;
        display: grid;
        grid-template-columns: 36px 1fr;
        column-gap: 8px;
    }

    .product-description-content .sales-story__benefit i {
        grid-row: span 2;
        margin: 0;
    }

    .product-description-content .sales-story__bundle-media {
        order: -1;
    }

    .product-description-content .sales-story__bundle-media img {
        min-height: 420px;
    }

    .product-description-content .sales-story__step {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }

    .product-description-content .sales-story__step:last-child {
        border-bottom: 0;
    }

    .product-description-content .sales-story__closing {
        gap: 20px;
    }

    .product-description-content .sales-story__cta {
        width: 100%;
    }
}

.ingredient-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ingredient-list span {
    background: #f6f3ee;
    border: 1px solid rgba(5, 5, 5, .08);
    border-radius: 999px;
    color: #171717;
    font-weight: 800;
    padding: 9px 14px;
}

.usage-list p {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.usage-list span {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    color: #fff;
    border-radius: 50%;
    font-weight: 900;
}

.gallery-float-btns {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.gallery-float-btns .glass-btn {
    pointer-events: auto;
}

.glass-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .7);
    color: #171717;
    text-decoration: none;
}

.gallery-dots {
    bottom: 10px;
}

.gallery-dots [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(5, 5, 5, .28);
}

.gallery-dots [data-bs-target].active {
    width: 22px;
    border-radius: 999px;
    background: #050505;
}

.share-toast {
    position: fixed;
    left: 50%;
    bottom: 90px;
    transform: translateX(-50%) translateY(20px);
    background: #171717;
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 1080;
}

.share-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.floating-buy-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid #e6e8eb;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .08);
    transform: translateY(120%);
    transition: transform .28s ease;
}

.floating-buy-bar.is-visible {
    transform: translateY(0);
}

.floating-buy-bar .fb-info {
    min-width: 0;
    flex: 1;
}

.floating-buy-bar .fb-name {
    color: #171717;
    font-size: .92rem;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.floating-buy-bar .fb-price {
    color: #777;
    font-size: .82rem;
}

.floating-buy-bar .fb-price strong {
    color: #050505;
}

.floating-buy-bar .fb-cta {
    background: #050505;
    border: 0;
    border-radius: 999px;
    padding: 12px 20px;
}

.pm-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
}

.pm-product-card {
    background: #f8f9fa;
}

.pm-product-image,
.pm-name-manual {
    display: none;
}

.pm-brand-text {
    color: var(--color-primary);
}

#purchaseModal .modal-dialog-scrollable .modal-body {
    max-height: calc(90vh - 130px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#purchaseModal .modal-footer {
    position: sticky;
    bottom: 0;
    z-index: 10;
    background: #fff;
}

#purchaseModal .form-control,
#purchaseModal .form-select {
    border: 1.5px solid #ced4da;
    border-radius: .6rem;
    padding: .65rem .85rem;
    font-size: 1rem;
    background-color: #fff;
}

#purchaseModal .form-control::placeholder {
    color: #9aa0a6;
    opacity: 1;
}

#purchaseModal .form-control:focus,
#purchaseModal .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 .2rem rgba(5, 5, 5, .14);
}

#purchaseModal .form-select:disabled {
    background-color: #f1f3f5;
    color: #9aa0a6;
}

#purchaseModal .shipping-mode-btn {
    transition: border-color .15s, background-color .15s, color .15s;
}

#purchaseModal .shipping-mode-btn.active,
#pm-mode-cards .shipping-mode-btn.active {
    color: #fff !important;
    border-color: var(--color-primary) !important;
    background: var(--color-primary) !important;
}

.pm-invalid,
.pm-invalid .form-select,
.pm-invalid .form-control,
#purchaseModal .form-control.is-invalid,
#purchaseModal .form-select.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 .18rem rgba(220, 53, 69, .18) !important;
}

#pm-mode-cards.pm-invalid {
    border-radius: .5rem;
    box-shadow: none !important;
}

#pm-mode-cards.pm-invalid .btn {
    border-color: #dc3545 !important;
}

.pm-feedback {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: -.35rem 0 .75rem;
    color: #dc3545;
    font-size: .82rem;
    font-weight: 600;
    animation: pmFbIn .2s ease;
}

.pm-feedback::before {
    content: "";
    font-size: .9rem;
    line-height: 1;
}

.pm-shake {
    animation: pmShake .4s ease;
}

#purchaseModal .agency-results {
    max-height: 45vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#purchaseModal .agency-results .agency-item {
    cursor: pointer;
    padding: .5rem .75rem;
    border: 1px solid #eee;
    border-radius: .5rem;
    margin-bottom: .25rem;
}

#purchaseModal .agency-results .agency-item:hover {
    border-color: var(--color-primary);
    background: #f8f8f8;
}

#purchaseModal .agency-results .agency-item .small {
    color: #666;
}

@keyframes pmFbIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pmShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@media (max-width: 575.98px) {
    #purchaseModal .modal-dialog {
        width: 100vw;
        max-width: none;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        margin: 0;
    }

    #purchaseModal .modal-content {
        display: flex;
        flex-direction: column;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        overflow: hidden;
        border-radius: 0;
    }

    #purchaseModal .modal-header,
    #purchaseModal .modal-footer {
        flex: 0 0 auto;
    }

    #purchaseModal .modal-body {
        flex: 1 1 auto;
        min-height: 0;
        max-height: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@keyframes ctaPulse {
    0% { box-shadow: 0 8px 24px rgba(229,57,53,.35), 0 0 0 0 rgba(255,138,0,.7); }
    70% { box-shadow: 0 8px 24px rgba(229,57,53,.35), 0 0 0 14px rgba(255,138,0,0); }
    100% { box-shadow: 0 8px 24px rgba(229,57,53,.35), 0 0 0 0 rgba(255,138,0,0); }
}

@keyframes ctaGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes ctaShine {
    0% { left: -60%; }
    60%, 100% { left: 120%; }
}

@keyframes ctaWiggle {
    0%, 100% { transform: rotate(0) scale(1); }
    25% { transform: rotate(-12deg) scale(1.12); }
    75% { transform: rotate(12deg) scale(1.12); }
}

@media (max-width: 1199px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .official-product-hero {
        grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
        gap: 24px;
    }

    .official-main-img {
        min-height: 500px;
    }
}

@media (max-width: 991px) {
    .catalog-card {
        min-height: 300px;
    }

    .official-product-hero {
        display: block;
    }

    .product-gallery {
        position: static;
        margin-bottom: 22px;
    }

    .official-buy-panel {
        padding: 24px;
    }

    .pack-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    body.product-detail-mobile-shell .fortisol-topbar,
    body.product-detail-mobile-shell .fortisol-navbar {
        display: none !important;
    }

    body.product-detail-mobile-shell {
        background: #050505;
        overflow-x: hidden;
    }

    .catalog-hero {
        padding: 36px 0 30px;
    }

    .catalog-search {
        border-radius: 8px;
        grid-template-columns: auto 1fr auto;
    }

    .catalog-search button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .catalog-grid {
        gap: 18px;
    }

    .catalog-card {
        display: block;
        min-height: 0;
    }

    .catalog-card-media {
        aspect-ratio: 1 / .78;
    }

    .catalog-card-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .official-product-page {
        padding-bottom: 86px;
    }

    .product-detail-mobile-shell .official-product-page {
        background: #fff !important;
        padding-bottom: 132px;
        overflow: visible;
    }

    .product-detail-container {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
    }

    .product-detail-mobile-shell .official-product-hero {
        margin: 0;
    }

    .product-detail-mobile-shell .product-gallery {
        position: relative;
        margin-bottom: 0;
        background: #050505;
        overflow: hidden;
    }

    .product-detail-mobile-shell .product-gallery::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        z-index: 4;
        height: 96px;
        background: linear-gradient(180deg, rgba(5, 5, 5, .86) 0%, rgba(5, 5, 5, .48) 52%, rgba(5, 5, 5, 0) 100%);
        pointer-events: none;
    }

    .product-detail-mobile-shell .gallery-float-btns {
        top: max(14px, env(safe-area-inset-top));
        left: 14px;
        right: 14px;
        z-index: 6;
    }

    .product-detail-mobile-shell .glass-btn {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, .94);
        border: 1px solid rgba(255, 255, 255, .78);
        color: #050505;
        box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
    }

    .gallery-slide {
        min-height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        padding: 18px;
    }

    .product-detail-mobile-shell .gallery-slide {
        align-items: stretch;
        background: #fff;
        border: 0;
        padding: 0;
        min-height: min(112vw, 500px);
        box-shadow: none;
    }

    .product-detail-mobile-shell .gallery-img {
        max-height: none;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .product-detail-mobile-shell .gallery-dots {
        bottom: 12px;
        z-index: 7;
    }

    .product-detail-mobile-shell .gallery-dots [data-bs-target] {
        background: rgba(255, 255, 255, .65);
    }

    .product-detail-mobile-shell .gallery-dots [data-bs-target].active {
        background: #fff;
    }

    .official-buy-panel,
    .official-packs,
    .official-info-section {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 22px 18px;
        margin-top: 14px;
    }

    .product-detail-mobile-shell .official-buy-panel {
        position: relative;
        z-index: 8;
        margin-top: -34px;
        padding: 28px 18px 24px;
        border: 0;
        border-radius: 28px 28px 0 0;
        background: #fff;
        box-shadow: 0 -18px 36px rgba(0, 0, 0, .12);
    }

    .product-detail-mobile-shell .official-buy-panel::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 50%;
        width: 46px;
        height: 4px;
        border-radius: 999px;
        background: rgba(5, 5, 5, .12);
        transform: translateX(-50%);
    }

    .product-detail-mobile-shell .official-buy-panel h1 {
        margin-top: 14px;
        margin-bottom: 12px;
        font-size: clamp(1.55rem, 7.2vw, 2.05rem);
        line-height: 1.08;
        letter-spacing: -.04em;
    }

    .product-detail-mobile-shell .official-summary {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 16px;
    }

    .product-detail-mobile-shell .official-rating {
        margin-bottom: 18px;
    }

    .product-detail-mobile-shell .official-benefits {
        padding-top: 4px;
    }

    .product-detail-mobile-shell .floating-buy-bar {
        left: 14px;
        right: 14px;
        bottom: calc(54px + env(safe-area-inset-bottom, 0px));
        z-index: 1080;
        border: 1px solid rgba(5, 5, 5, .08);
        border-radius: 22px;
        padding: 10px 10px 10px 14px;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
        backdrop-filter: blur(10px);
        transform: translateY(calc(130% + 24px));
    }

    .product-detail-mobile-shell .floating-buy-bar.is-visible {
        transform: translateY(0);
    }

    .product-detail-mobile-shell .floating-buy-bar .fb-name {
        font-size: .78rem;
        line-height: 1.15;
        max-width: 190px;
    }

    .product-detail-mobile-shell .floating-buy-bar .fb-price {
        font-size: .78rem;
    }

    .product-detail-mobile-shell .floating-buy-bar .fb-cta {
        flex: 0 0 auto;
        padding: 11px 18px;
        background: #e5252a;
        box-shadow: 0 10px 24px rgba(229, 37, 42, .28);
    }

    .official-badges {
        gap: 6px;
    }

    .official-badges span {
        font-size: .72rem;
        padding: 6px 9px;
    }

    .official-price-box {
        padding: 18px;
    }

    .pack-grid {
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #mainBuyBtn.cta-shake,
    #mainBuyBtn.cta-shake::before,
    #mainBuyBtn .cta-spark {
        animation: none !important;
    }
}

.fortisol-home-v2 {
    background: #f6f3ee;
    overflow: hidden;
}

.home-slider {
    position: relative;
    background: #050505;
    overflow: hidden;
}

.home-slider::before,
.home-slider::after {
    display: none;
}

.home-slide {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    color: #050505;
    padding: 104px 0 112px;
    background-color: #050505;
    isolation: isolate;
}

.home-slide::before {
    display: none;
}

.home-slide::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,5,5,.24) 0%, rgba(5,5,5,.06) 44%, transparent 68%);
    pointer-events: none;
}

.home-slide.has-dark-copy::after {
    background: linear-gradient(90deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.04) 42%, transparent 68%);
}

.home-slide .container {
    position: relative;
    z-index: 4;
}

.home-slide-feature {
    position: absolute;
    z-index: 3;
    right: 10%;
    top: 50%;
    width: min(660px, 44vw);
    aspect-ratio: 1;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.home-slide-feature img {
    display: block;
    width: 78%;
    height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 30px 38px rgba(0, 0, 0, .24));
    transform: translateY(2%);
}

.home-slide-copy {
    position: relative;
    z-index: 4;
    max-width: 660px;
    text-align: left;
}

.home-slide-copy span,
.home-product-copy > span {
    color: var(--color-accent);
    display: inline-block;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-slide-copy h1 {
    color: #050505;
    font-size: clamp(2.65rem, 5vw, 5rem);
    font-weight: 650;
    line-height: 1;
    margin: 12px 0 18px;
    max-width: 780px;
}

.home-slide-copy p {
    color: rgba(5, 5, 5, .66);
    font-size: 1.16rem;
    max-width: 620px;
    margin-bottom: 28px;
}

.home-slide.has-light-copy .home-slide-copy h1 {
    color: #fff;
}

.home-slide.has-light-copy .home-slide-copy p {
    color: rgba(255,255,255,.78);
}

.home-slide.has-light-copy .home-slide-copy .btn-light {
    background: #e5252a;
}

.home-slide-copy .btn-light {
    background: #050505;
    color: #fff;
    border: 0;
    min-width: 170px;
    box-shadow: 0 16px 34px rgba(6, 72, 50, .22);
}

.home-slide-copy .btn-light:hover {
    background: #e5252a;
    color: #fff;
    transform: translateY(-2px);
}

.home-slider .carousel-indicators {
    margin-bottom: 28px;
}

.home-slider .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
}

.home-slider .carousel-indicators .active {
    width: 28px;
    border-radius: 999px;
}

.home-product-band {
    position: relative;
    background:
        linear-gradient(180deg, #f8f5ef 0%, #ffffff 100%);
    margin-top: 0;
    padding: 96px 0;
    color: #050505;
    overflow: hidden;
    isolation: isolate;
    clip-path: none;
    border-top: 1px solid rgba(5, 5, 5, .08);
}

.home-product-band:nth-of-type(even) {
    background:
        radial-gradient(circle at 92% 14%, rgba(229, 37, 42, .08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f3ec 100%);
}

.home-product-band.cut-diagonal,
.home-product-band.cut-arrow,
.home-product-band.cut-ribbon,
.home-product-band.cut-wave {
    clip-path: none;
}

.home-product-band::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: min(620px, 48vw);
    aspect-ratio: 1;
    right: -10%;
    top: 12%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(229, 37, 42, .10) 0 34%, transparent 35%),
        repeating-linear-gradient(135deg, rgba(5, 5, 5, .045) 0 1px, transparent 1px 18px);
    opacity: .9;
    pointer-events: none;
}

.home-product-band::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 37, 42, .28), transparent);
    pointer-events: none;
}

.home-product-band.is-reverse::before {
    right: auto;
    left: -10%;
}

.home-product-band.is-light,
.home-product-band.is-dark {
    color: #050505;
}

.home-product-band.is-light .home-product-copy,
.home-product-band.is-dark .home-product-copy {
    background: #fff;
}

.home-band-skew,
.cut-arrow .home-band-skew.top,
.cut-arrow .home-band-skew.bottom,
.cut-ribbon .home-band-skew.top,
.cut-ribbon .home-band-skew.bottom,
.cut-wave .home-band-skew.top,
.cut-wave .home-band-skew.bottom {
    display: none;
}

.home-product-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(360px, .92fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.home-product-band.is-reverse .home-product-image {
    order: 2;
}

.home-product-band.is-reverse .home-product-copy {
    order: 1;
}

.home-product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(360px, 42vw, 560px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 245, 239, .96));
    border: 1px solid rgba(5, 5, 5, .10);
    border-radius: 0;
    padding: clamp(14px, 2.5vw, 28px);
    box-shadow: 0 28px 70px rgba(5, 5, 5, .10);
    overflow: hidden;
}

.home-product-image::before {
    content: "Articulo Fortisol";
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    padding: .45rem .7rem;
    background: #050505;
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-product-image::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 190px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(229, 37, 42, .12);
    pointer-events: none;
}

.home-product-image:hover {
    text-decoration: none;
}

.home-product-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-height: clamp(340px, 42vw, 540px);
    object-fit: contain;
    filter: drop-shadow(0 24px 24px rgba(0, 0, 0, .18));
    transition: transform .35s ease, filter .35s ease;
}

.home-product-image:hover img {
    transform: scale(1.025);
    filter: drop-shadow(0 34px 30px rgba(0, 0, 0, .24));
}

.home-product-copy {
    position: relative;
    border-left: 0;
    padding: clamp(30px, 4vw, 48px);
    color: #050505;
    background: #fff;
    border: 1px solid rgba(5, 5, 5, .08);
    box-shadow: 0 24px 60px rgba(5, 5, 5, .08);
}

.home-product-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #e5252a;
}

.home-product-copy h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 800;
    line-height: 1.08;
    margin: 10px 0 12px;
    color: #050505;
}

.home-product-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.home-product-price strong {
    font-size: 1.7rem;
    line-height: 1;
    color: #e5252a;
}

.home-product-price small {
    color: rgba(5, 5, 5, .58);
    font-weight: 800;
    text-transform: uppercase;
}

.home-product-copy p {
    color: rgba(5, 5, 5, .72);
    font-size: 1.08rem;
    max-width: 650px;
}

.home-product-copy ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 8px;
}

.home-product-copy li {
    display: flex;
    gap: 9px;
    color: rgba(5, 5, 5, .76);
}

.home-product-copy li i {
    color: #e5252a;
    margin-top: 2px;
}

.home-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-product-actions .btn-light {
    background: #050505;
    color: #fff;
    border: 0;
}

.home-product-actions .btn-light:hover {
    background: #e5252a;
    color: #fff;
}

.home-product-actions .fortisol-wa-btn {
    background: transparent;
    color: #050505;
    border: 1px solid rgba(5, 5, 5, .18);
    box-shadow: none;
}

.home-product-actions .fortisol-wa-btn:hover {
    background: #e5252a;
    color: #fff;
    border-color: #e5252a;
}

.blog-hero {
    background:
        radial-gradient(circle at 88% 10%, rgba(229, 37, 42, .10), transparent 28%),
        linear-gradient(180deg, #f8f5ef 0%, #fff 100%);
    padding: 72px 0 56px;
    border-bottom: 1px solid rgba(5, 5, 5, .08);
}

.blog-hero span,
.blog-article-head span {
    display: inline-block;
    color: #e5252a;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-hero h1,
.blog-article-head h1 {
    color: #050505;
    font-size: clamp(2.35rem, 5vw, 4.6rem);
    font-weight: 800;
    line-height: 1.05;
    max-width: 900px;
}

.blog-hero p,
.blog-article-head p {
    color: rgba(5, 5, 5, .68);
    font-size: 1.12rem;
    max-width: 720px;
}

.blog-list {
    padding: 72px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.blog-card {
    color: #050505;
    text-decoration: none;
}

.blog-card:hover {
    color: #050505;
}

.blog-card-media {
    display: block;
    min-height: 245px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(5, 5, 5, .08);
}

.blog-card-body {
    display: block;
    padding-top: 16px;
}

.blog-card-body small {
    display: inline-flex;
    background: #e5252a;
    color: #fff;
    padding: .32rem .58rem;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.blog-card-body strong {
    display: block;
    font-size: 1.42rem;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 8px;
}

.blog-card-body em {
    display: block;
    color: rgba(5, 5, 5, .62);
    font-style: normal;
    line-height: 1.45;
}

.blog-article {
    padding: 64px 0 86px;
}

.blog-article-head {
    max-width: 920px;
    margin-bottom: 34px;
}

.blog-article-head small {
    color: rgba(5, 5, 5, .54);
    font-weight: 700;
}

.blog-article-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border: 1px solid rgba(5, 5, 5, .08);
    margin-bottom: 38px;
}

.blog-article-content {
    max-width: 840px;
    color: rgba(5, 5, 5, .78);
    font-size: 1.08rem;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .home-slide {
        min-height: 480px;
        padding: 62px 0 82px;
    }

    .home-slide::before {
        width: 430px;
        right: -120px;
        opacity: .58;
    }

    .home-slide-feature {
        right: -120px;
        width: 430px;
        opacity: .92;
    }

    .home-slide::after {
        background: linear-gradient(90deg, rgba(255,230,200,.94), rgba(255,230,200,.58));
    }

    .home-product-band {
        padding: 74px 0;
        clip-path: none;
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-product-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .home-product-band.is-reverse .home-product-image,
    .home-product-band.is-reverse .home-product-copy {
        order: initial;
    }

    .home-product-image {
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .home-slide {
        min-height: 430px;
        padding: 48px 0 68px;
    }

    .home-slider::before {
        width: 110px;
        height: 60px;
        left: -34px;
        top: 26px;
    }

    .home-slider::after {
        width: 84px;
        height: 84px;
        right: -28px;
    }

    .home-slide-copy {
        text-align: center;
        margin-inline: auto;
    }

    .home-slide-feature {
        position: relative;
        right: auto;
        top: auto;
        width: min(340px, 88vw);
        aspect-ratio: auto;
        margin: 2rem auto 0;
        transform: none;
    }

    .home-slide-feature img {
        width: min(280px, 82vw);
        height: auto;
        max-height: 300px;
    }

    .home-slide-copy h1 {
        font-size: clamp(2.2rem, 13vw, 3.5rem);
    }

    .home-slide-copy p {
        font-size: 1rem;
    }

    .home-product-band {
        padding: 58px 0;
        clip-path: none;
    }

    .home-band-skew {
        display: none;
    }

    .home-product-image {
        min-height: 300px;
    }

    .home-product-image img {
        max-height: 360px;
    }

    .home-product-band::before {
        width: 300px;
        right: -140px;
        top: 8%;
        opacity: .65;
    }

    .home-product-copy {
        padding: 28px 22px;
    }

    .home-product-actions .btn {
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-media {
        min-height: 210px;
    }
}
