@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3.5rem;
        padding-top: 2rem;
    }
    .hero-description {
        margin: 0 auto 2.5rem;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    .nav-list,
    .nav-cta {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .nav.active {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        border-bottom: 1px solid var(--color-border);
    }
    .nav.active .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
    }
    .nav.active .nav-cta {
        display: block;
        margin: 0;
        width: 100%;
    }
    .nav.active .btn {
        width: 100%;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero {
        padding-top: 140px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-lg {
        width: 100%;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .stat-separator {
        display: none;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .kits-grid {
        grid-template-columns: 1fr;
    }
    .kit-card.popular {
        transform: none;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
.woocommerce-notices-wrapper {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    width: 100%;
    max-width: 420px;
    pointer-events: none;
}
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info {
    pointer-events: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    animation: noticeSlideIn 0.4s ease-out forwards, noticeFadeOut 0.5s ease-in 5.5s forwards;
    margin-bottom: 10px !important;
    border-radius: 14px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
@keyframes noticeSlideIn {
    from {
        transform: translateX(110%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes noticeFadeOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(110%);
        opacity: 0;
    }
}
main .woocommerce-notices-wrapper {
    position: static;
    width: auto;
    max-width: none;
}
