/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

a, button, .product-card {
    transition: all 0.25s ease;
}

::selection {
    background: #fead38;
    color: #391612;
}

.section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.section-animate.show {
    opacity: 1;
    transform: translateY(0);
}

.product-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #444;
    overflow-x: hidden;
    width: 100%;
}

img {
    display: block;
    max-width: 100%;
}

/* ========== HEADER / HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(90deg, #fead38, #ffcc70);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 1.25rem;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 1.25rem;
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slogan,
#slogan {
    font-size: clamp(1.45rem, 2.4vw, 2.35rem);
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin: 0.5rem 0;
    font-weight: 700;
    line-height: 1.2;
    position: static;
    transform: none;
}

#header-img {
    width: min(18rem, 52vw);
    max-width: 70%;
    height: auto;
    margin-top: 0;
    transition: 0.3s;
}

#header-img:hover {
    transform: scale(1.05);
}

/* ========== NAVIGATION ========== */
nav {
    position: absolute;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.875rem;
    background: rgba(57, 22, 18, 0.6);
    padding: 0.625rem 1.25rem;
    border-radius: 0.9375rem;
    backdrop-filter: blur(10px);
}

nav ul li {
    background-color: #391612;
    border: 0.125rem solid #111;
    border-radius: 0.625rem;
    transition: 0.3s;
}

.btn-header {
    display: block;
    padding: 0.625rem 1.25rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: #fead38;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

nav ul li:hover {
    background: #fdfeee;
    transform: scale(1.05) translateY(-5%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

nav ul li:hover .btn-header {
    color: #391612;
}

/* ========== HAMBURGER MENU ========== */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.35rem;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
    position: relative;
}

.menu-toggle span {
    width: 1.5rem;
    height: 0.2rem;
    background-color: #fead38;
    border-radius: 0.1rem;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(0.5rem);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-0.5rem);
}

/* ========== LANGUAGE SWITCH ========== */
.lang-switch {
    position: absolute;
    top: 1.5625rem;
    right: 1.875rem;
    display: flex;
    gap: 0.875rem;
    z-index: 1000;
}

.lang-switch a {
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    border-radius: 0.875rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff;
    background: #391612;
    border: 0.125rem solid #fead38;
    box-shadow: 0 0.375rem 1.125rem rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.lang-switch a:hover {
    transform: translateY(-2px);
    background: #5a241c;
}

.lang-switch .active {
    background: #fead38;
    color: #391612;
    border: 2px solid #391612;
    transform: scale(1.1);
    pointer-events: none;
}

/* ========== BUTTON ========== */
.download-btn {
    background: linear-gradient(135deg, #fead38, #ffcc70);
    position: static;
    margin-top: 0.5rem;
    color: #391612;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 2.5rem;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    box-shadow: 0 0.5rem 1.5625rem rgba(254, 173, 56, 0.3);
    text-decoration: none;
    border: 0.125rem solid #391612;
    transition: 0.3s;
    cursor: pointer;
}

.download-btn:hover {
    background-color: #fdfeee;
    color: #391612;
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 6.25rem 3.125rem;
    background-color: #fdfaf3;
}

.about-section,
.catalog-section,
.contacts-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 56.25rem;
}

.container {
    max-width: 75rem;
    margin: auto;
    display: flex;
    gap: 3.75rem;
}

.section-title {
    font-size: 3.5rem;
    font-family: 'Poppins';
    color: #391612;
    margin-right: 12.5rem;
}

.about-content {
    flex: 1;
    max-width: 600px;
    font-family: 'Montserrat';
    line-height: 1.7;
    color: #444;
    font-size: 1.125rem;
    display: block;
    border-bottom: 0.25rem solid #391612;
}

.about-content p {
    margin-bottom: 1.25rem;
}

/* ========== CATALOG SECTION ========== */
.catalog-section {
    padding: 5rem 1.25rem;
    background-color: #fdfaf3;
    text-align: center;
}

.catalog-title {
    font-size: 3rem;
    font-family: 'Poppins';
    color: #391612;
    margin-bottom: 1.875rem;
}

.category-title,
.mixes-title {
    margin: 3.75rem 0 1.25rem;
    font-size: 2rem;
    color: #391612;
    font-family: 'Poppins';
    text-align: left;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.mixes-title {
    font-size: 1.6rem;
}

/* ========== PRODUCTS GRID ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 1.5625rem;
    max-width: 75rem;
    margin: auto;
}

/* ========== PRODUCT CARD ========== */
.product-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 0.9375rem;
    text-align: center;
    box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease 0.3s;
}

.product-card:hover {
    will-change: transform;
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4); 
}

.product-card img {
    width: 100%;
    height: 11.25rem;
    object-fit: cover;
    background: #fff;
    border-radius: 0.9375rem;
    border-bottom: 0.125rem solid #391612;
    filter: blur(10px);
    opacity: 0;
    transform: scale(1.05);
    transition: filter 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
}

.product-card img.loaded {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
}

.product-card img:hover {
    transform: scale(1.05);
    
}

.product-card::after {
    content: "View";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
    border-radius: 1.25rem;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card img.mixes {
    width: auto;
    height: 25rem;
    max-width: 100%;
    object-fit: cover;
    background-color: transparent;
    margin: 0 auto;
    display: block;
    padding: 0.3125rem;
    border-bottom: 0.125rem solid #391612;
}

.product-card h3,
.product-card h4 {
    margin-top: 0.9375rem;
    font-family: 'Poppins', sans-serif;
    color: #391612;
    font-size: 1.1rem;
}

.product-card h3 {
    margin: 0.625rem 0;
}

.product-card p {
    font-size: 0.875rem;
    color: #555;
}

.product-card span {
    display: block;
    font-size: 0.8125rem;
    color: #777;
}

.product-card .product-badge {
    position: absolute;
    top: 1.15rem;
    left: 0.05rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5.6rem;
    padding: 0.32rem 0.75rem;
    transform: rotate(-35deg);
    transform-origin: center;
    background: linear-gradient(135deg, #FEAD38 0%, #FF8C1A 45%, #E53935 100%);
    color: #fff;
    border: 0.15rem solid #fff;
    border-radius: 999px;
    box-shadow: 0 0.35rem 0.9rem rgba(57, 22, 18, 0.28), inset 0 0.08rem 0 rgba(255, 255, 255, 0.45);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 0.08rem 0.15rem rgba(0, 0, 0, 0.28);
    pointer-events: none;
}

/* ========== MODAL ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 1.25rem;

}

.modal-box {
    background: #fdfaf3;
    padding: 0.625rem;
    border-radius: 0.9375rem;
    width: 90%;
    max-width: 31.25rem;
    max-height: calc(100vh - 2.5rem);
    margin: auto;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    touch-action: pan-y;

}

.modal-box img {
    width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: 0.625rem;
    transition: transform 0.3s ease;
    cursor: zoom-in;
    will-change: transform;
}

.modal img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.modal img:active {
    cursor: grabbing;
}

.modal-info {
    padding: 0.875rem 0.75rem 0.5rem;
    text-align: center;
}

.modal-category {
    color: #fead38;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.modal-info h3 {
    color: #391612;
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.modal-info p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 0.55rem;
}

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
}

.modal-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 1.75rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(254, 173, 56, 0.22);
    color: #391612;
    font-size: 0.78rem;
    font-weight: 600;
}

/* ========== CONTACTS / FOOTER SECTION ========== */
.contacts-section {
    background: #391612;
    color: #fdfaf3;
    padding: 4.375rem 1.875rem;
}

.contact-title {
    text-align: center;
    font-size: 2.375rem;
    color: #fead38;
    margin-bottom: 3.125rem;
}

.brand-description {
    max-width: 53.125rem;
    margin: 0 auto 2.1875rem;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 62.5rem;
    margin: auto;
}

.contact-column {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.875rem;
    border-radius: 1.25rem;
    transition: 0.3s ease;
}

.contact-column:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.contact-column h3 {
    color: #fead38;
    margin-bottom: 1.25rem;
}

.contact-column p {
    margin: 0.75rem 0;
    font-size: 1.0625rem;
}

.email {
    letter-spacing: 0.8px;
}

.contact-column a {
    color: #fead38;
    text-decoration: none;
    transition: 0.3s;
    display: inline;
    padding-right: 10%;
}

.contact-column a:hover {
    color: white;
    border: 1px solid #fead38;
}

.copyright {
    text-align: center;
    margin-top: 2.5rem;
    color: #bbb;
    font-size: 0.875rem;
}

/* ========== IFRAME ========== */
iframe {
    width: 100%;
    height: 18.75rem;
}

/* ========== TOUCH & NO-HOVER DEVICES ========== */
@media (hover: none) {
    .product-card:hover {
        transform: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .product-card img:hover {
        transform: none;
    }

    .product-card:active {
    transform: scale(0.98);
    }
}

/* ========== DESKTOP ZOOM SUPPORT (1200px and below) ========== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 3rem;
        margin-right: 8rem;
    }

    .download-btn {
        font-size: 1.3rem;
        padding: 0.75rem 1.5rem;
    }

    .hero-slogan,
    #slogan {
        font-size: 2.5rem;
    }
}

/* ========== TABLET (1024px and below) ========== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.8rem;
        margin-right: 6rem;
    }

    .download-btn {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
    }

    .hero-slogan,
    #slogan {
        font-size: 2.8rem;
    }
}

/* ========== MOBILE (768px and below) ========== */
@media (max-width: 768px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero {
        min-height: 100svh;
        padding: 1rem 0.9375rem 2rem;
        justify-content: flex-start;
    }

    header {
        height: auto;
        min-height: 100svh;
        padding: 1rem 0.9375rem 2rem;
        justify-content: flex-start;
    }

    nav {
        position: absolute;
        top: 0.75rem;
        left: 0.75rem;
        width: auto;
        transform: none;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        z-index: 1001;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        background: #391612;
        border: 0.125rem solid #fead38;
        border-radius: 0.75rem;
    }


    nav ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        justify-content: center;
        padding: 0;
        background: transparent;
        border-radius: 0;
        z-index: 1001;
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        right: auto;
        width: min(14rem, calc(100vw - 1.5rem));
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    nav ul.active {
        max-height: 100vh;
        opacity: 1;
        pointer-events: auto;
        background: rgba(57, 22, 18, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 0.875rem;
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.22);
    }

    nav ul li {
        width: 100%;
        text-align: center;
        border: none;
        border-bottom: 0.0625rem solid rgba(254, 173, 56, 0.2);
        background-color: transparent;
        padding: 0;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        padding: 1rem 1.25rem;
        display: block;
    }

    nav ul li:hover {
        background: rgba(254, 173, 56, 0.1);
    }

    .hero-slogan,
    #slogan {
        position: static;
        transform: none;
        font-size: clamp(1.75rem, 7vw, 2.4rem);
        margin-top: 1rem;
        padding: 0 0.625rem;
    }

    #header-img {
        width: min(74vw, 18rem);
        max-width: 100%;
        margin-top: 0;
    }

    .download-btn {
        position: static;
        transform: none;
        margin-top: 1rem;
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        max-width: 100%;
        text-align: center;
        line-height: 1.25;
        white-space: normal;
    }

    .hero-content {
        width: 100%;
        margin-top: 4rem;
        padding: 0.5rem 0;
        order: 2;
    }

    .about-section {
        padding: 3rem 1.25rem;
    }

    .container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }

    .about-content {
        max-width: 100%;
        font-size: 1rem;
    }

    .section-title {
        text-align: center;
        margin-right: 0;
        font-size: 2.2rem;
    }

    .catalog-title {
        font-size: 1.8rem;
    }

    .catalog-section {
        overflow-x: hidden;
    }

    .category-title,
    .mixes-title {
        font-size: 1.4rem;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .product-card {
        min-width: 0;
        padding: 0.75rem;
        border-radius: 1rem;
    }

    .product-card:hover {
        transform: none;
        box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.08);
    }

    .product-card:active {
        transform: scale(0.97);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.18);
    }

    .product-card::after {
        display: none;
    }

    .product-card img:hover {
        transform: none;
    }

    .product-card img {
        height: clamp(8rem, 28vw, 11rem);
        border-radius: 0.75rem;
    }

    .product-card img.mixes {
        width: 100%;
        height: clamp(11rem, 45vw, 18rem);
        object-fit: contain;
    }

    .product-card h3,
    .product-card h4 {
        font-size: 0.95rem;
        line-height: 1.25;
    }

    .product-card p,
    .product-card span {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .contacts-section {
        padding: 3rem 1.25rem;
    }

    .contact-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-column {
        padding: 1rem;
    }

    .brand-description {
        font-size: 0.95rem;
        margin: 0 auto 1.5rem;
    }

    .lang-switch {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        justify-content: flex-end;
        margin-bottom: 0;
        transform: scale(1);
        order: 1;
    }

    .lang-switch a {
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
        border-radius: 0.75rem;
    }

    .btn-header {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    iframe {
        height: 14rem;
    }
}





/* ========== SMALL MOBILE (480px and below) ========== */
@media (max-width: 480px) {
    .hero {
        min-height: 100svh;
        padding: 0.75rem;
    }

    .hero-slogan,
    #slogan {
        font-size: 1.3rem;
        margin: 0.75rem 0;
    }

    #header-img {
        width: min(86vw, 18rem);
        margin-top: 0.5rem;
    }


    nav ul li {
        width: 100%;
    }

    .btn-header {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .download-btn {
        font-size: 0.95rem;
        padding: 0.65rem 1rem;
        margin-top: 0.75rem;
    }

    .catalog-title {
        font-size: 1.6rem;
    }

    .category-title,
    .mixes-title {
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .product-card {
        padding: 0.5rem;
    }

    .product-card img {
        height: 7.5rem;
    }

    .product-card img.mixes {
        height: 10rem;
    }

    .product-card h3,
    .product-card h4 {
        font-size: 0.78rem;
    }

    .product-card p,
    .product-card span {
        font-size: 0.68rem;
    }

    .about-section {
        padding: 2rem 0.75rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-content {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .contacts-section {
        padding: 2rem 0.75rem;
    }

    .contact-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-column {
        padding: 0.75rem;
    }

    .brand-description {
        font-size: 0.8rem;
    }

    .lang-switch {
        justify-content: center;
        gap: 0.4rem;
        transform: none;
        margin-bottom: 0.5rem;
    }

    .lang-switch a {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    iframe {
        height: 10rem;
    }
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10000;
    border-radius: 10px;
    transition: 0.3s;
}

.arrow:hover {
    background: rgba(0,0,0,0.7);
}

.arrow.left {
    left: 20px;
}

.arrow.right {
    right: 20px;
}

/* мобілка */
@media (max-width: 768px) {
    .arrow {
        font-size: 2rem;
        padding: 0.4rem 0.8rem;
    }

    .modal {
        padding: 0.75rem;
    }

    .modal-box {
        width: 94%;
        max-height: calc(100svh - 1.5rem);
    }

    .modal-box img {
        max-height: 58svh;
    }

    .modal-info h3 {
        font-size: 1.1rem;
    }

    .modal-info p {
        font-size: 0.85rem;
    }
}

/* Final mobile header override */
@media (max-width: 768px) {
    header.hero nav {
        display: flex !important;
    }

    header.hero .menu-toggle {
        display: flex !important;
    }

    header.hero .lang-switch {
        position: absolute !important;
        top: 0.75rem !important;
        right: 0.75rem !important;
        left: auto !important;
        justify-content: flex-end !important;
        margin: 0 !important;
    }

    header.hero .hero-content {
        margin-top: 4.25rem !important;
        order: 2 !important;
    }

    header.hero #header-img {
        width: min(70vw, 17rem) !important;
        max-width: 100% !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 480px) {
    header.hero .hero-content {
        margin-top: 4.25rem !important;
    }

    header.hero #header-img {
        width: min(70vw, 14rem) !important;
    }
}

/* Hero cleanup */
header.hero .hero-content {
    height: auto !important;
}

header.hero .hero-slogan {
    font-family: 'Montserrat', sans-serif !important;
    font-size: clamp(1.45rem, 2.4vw, 2.35rem) !important;
    margin: 0.5rem 0 !important;
}

header.hero .download-btn {
    font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
    padding: 0.75rem 1.5rem !important;
}

header.hero #header-img {
    width: min(18rem, 52vw) !important;
    height: auto !important;
}

@media (max-width: 768px) {
    header.hero .hero-slogan {
        font-size: clamp(1.15rem, 5vw, 1.55rem) !important;
    }

    header.hero .download-btn {
        font-size: 0.95rem !important;
        padding: 0.65rem 1rem !important;
    }

    header.hero #header-img {
        width: min(64vw, 13rem) !important;
    }
}

