/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0.0
*/


/* HEADER */

.custom-header,
.custom-header * {
    font-family: "Helvetica World", sans-serif !important;
}

/* FOOTER */

.custom-footer,
.custom-footer * {
    font-family: "Helvetica World", sans-serif !important;
}

.custom-header {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 9999;

    display: flex;
    justify-content: center;

    padding: 0 20px;
    pointer-events: none;
}

.custom-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;

    background: #dff16a;
    padding: 14px 34px;

    border-radius: 999px;

    pointer-events: auto;
}

.custom-nav a {
    text-decoration: none;
    color: #252525;

    font-size: 1rem;
    font-weight: 600;
    line-height: 1;

    white-space: nowrap;

    transition: opacity .2s ease;
}

.custom-nav a:hover {
    opacity: .7;
}

.custom-nav a.active {
    font-style: italic;
    color: #6b6b6b;
}

.cart-button {
    margin-left: 8px;
}

.cart-count {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #222;
    color: #fff;

    border-radius: 50%;

    font-size: .9rem;
    font-weight: 700;
}

/* TABLET */

@media (max-width: 768px) {
    .custom-header {
        top: 16px;
        padding: 0 14px;
    }

    .custom-nav {
        width: 100%;
        gap: 24px;
        padding: 12px 20px;
    }

    .custom-nav a {
        font-size: .95rem;
    }

    .cart-count {
        width: 30px;
        height: 30px;
        font-size: .8rem;
    }
}

/* MOBILE */

@media (max-width: 480px) {
    .custom-header {
        top: 12px;
        padding: 0 10px;
    }

    .custom-nav {
        width: 100%;
        gap: 14px;
        padding: 10px 14px;

        overflow-x: auto;
        justify-content: flex-start;

        scrollbar-width: none;
    }

    .custom-nav::-webkit-scrollbar {
        display: none;
    }

    .custom-nav a {
        font-size: .85rem;
    }

    .cart-button {
        margin-left: 0;
    }

    .cart-count {
        min-width: 28px;
        width: 28px;
        height: 28px;
        font-size: .75rem;
    }
}





/* ========================================
   FOOTER
======================================== */

.custom-footer {
    background: #dff16a;
    padding: 60px 30px;
}

.custom-footer-inner {
    max-width: 1140px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 40px;

    align-items: start;
}

.custom-footer p,
.custom-footer a,
.custom-footer span,
.custom-footer strong {
    font-size: 14px;
    line-height: 1.3;
}

.custom-footer p {
    margin: 0;
}

.custom-footer strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: #111;
}

.custom-footer a {
    display: block;
    text-decoration: none;
    color: #8b8b8b;
    transition: opacity .2s ease;
}

.custom-footer a:hover {
    opacity: .7;
}

.footer-location {
    margin-top: 40px;
}

.footer-contact > div + div {
    margin-top: 24px;
}

.footer-links a {
    margin-bottom: 2px;
}

.footer-brand {
    align-self: center;

    font-size: 36px;
    font-weight: 700;
    line-height: 1;

    color: #edf77d;

    white-space: nowrap;

    justify-self: end;
}

/* TABLET */

@media (max-width: 1024px) {

    .custom-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        font-size: 42px;
    }
}

/* MOBILE */

@media (max-width: 768px) {

    .custom-footer {
        padding: 40px 24px;
    }

    .custom-footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-location {
        margin-top: 20px;
    }

    .footer-contact > div + div {
        margin-top: 16px;
    }

    .footer-brand {
        font-size: 32px;
    }
}

.custom-footer,
.custom-footer p,
.custom-footer a,
.custom-footer span,
.custom-footer strong,
.custom-footer div {
    font-family: "Helvetica World", Sans-serif !important;
    font-weight: 400;
}

.custom-footer strong {
    font-weight: 700;
}

.footer-brand {
    font-family: "Helvetica World", Sans-serif !important;
    font-weight: 700;
}