/* =========================================================
   VEGA PREMIUM E-COMMERCE UI
   Header Navigation + Footer
   ========================================================= */


/* ---------------------------------------------------------
   DESKTOP PRIMARY MENU
   --------------------------------------------------------- */

@media (min-width: 821px) {

    .vega-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
    }

    .vega-nav .vega-menu {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 3px;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        padding: 5px;
        list-style: none;
        border: 1px solid rgba(22, 26, 20, .07);
        border-radius: 14px;
        background: rgba(244, 246, 241, .86);
    }

    .vega-nav .vega-menu > li {
        position: relative;
        margin: 0;
    }

    .vega-nav .vega-menu > li > a {
        position: relative;
        display: flex;
        align-items: center;
        gap: 6px;
        min-height: 39px;
        padding: 9px 12px;
        border-radius: 10px;
        color: var(--vega-text);
        font-size: 12px;
        font-weight: 750;
        line-height: 1;
        white-space: nowrap;
        text-decoration: none;
        transition:
            background .18s ease,
            color .18s ease,
            transform .18s ease,
            box-shadow .18s ease;
    }

    .vega-nav .vega-menu > li > a:hover {
        background: #fff;
        color: var(--vega-text);
        box-shadow: 0 5px 16px rgba(17, 21, 16, .07);
        transform: translateY(-1px);
    }

    .vega-nav .vega-menu > .current-menu-item > a,
    .vega-nav .vega-menu > .current-menu-ancestor > a,
    .vega-nav .vega-menu > .current_page_item > a {
        background: var(--vega-dark);
        color: #fff;
        box-shadow: 0 7px 18px rgba(15, 17, 14, .15);
    }

    .vega-nav .vega-menu > .menu-item-has-children > a::after {
        content: "";
        width: 6px;
        height: 6px;
        margin-top: -3px;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: rotate(45deg);
        opacity: .55;
        transition: transform .18s ease;
    }

    .vega-nav .vega-menu > .menu-item-has-children:hover > a::after {
        transform: rotate(225deg) translate(-2px, -2px);
    }

    .vega-nav .vega-menu .sub-menu {
        min-width: 225px;
        padding: 8px;
        border: 1px solid rgba(18, 22, 17, .08);
        border-radius: 16px;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 22px 55px rgba(15, 18, 14, .13);
    }

    .vega-nav .vega-menu .sub-menu li {
        margin: 0;
    }

    .vega-nav .vega-menu .sub-menu a {
        display: block;
        padding: 11px 12px;
        border-radius: 10px;
        color: #3d423b;
        font-size: 12px;
        font-weight: 650;
        text-decoration: none;
        transition: .18s ease;
    }

    .vega-nav .vega-menu .sub-menu a:hover {
        padding-left: 16px;
        background: #f4f6f1;
        color: #111410;
    }
}


/* ---------------------------------------------------------
   HEADER REFINEMENTS
   --------------------------------------------------------- */

.vega-header {
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
}

.vega-header.is-scrolled {
    box-shadow: 0 10px 35px rgba(20, 24, 18, .06);
}

.vega-header__actions a,
.vega-menu-toggle {
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.vega-header__actions a:hover,
.vega-menu-toggle:hover {
    transform: translateY(-1px);
}


/* ---------------------------------------------------------
   CTA ABOVE FOOTER
   --------------------------------------------------------- */

.vega-cta-strip--premium {
    position: relative;
    overflow: hidden;
}

.vega-cta-strip--premium::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -170px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    pointer-events: none;
}

.vega-cta-strip--premium .vega-cta-strip__inner {
    position: relative;
    z-index: 2;
    gap: 36px;
    padding-top: 34px;
    padding-bottom: 34px;
}

.vega-cta-strip--premium .vega-cta-strip__copy {
    max-width: 760px;
}

.vega-cta-strip--premium h2 {
    max-width: 680px;
    margin-top: 6px;
    font-size: clamp(25px, 3vw, 38px);
    letter-spacing: -.04em;
}

.vega-footer-wa-cta {
    flex: 0 0 auto;
    min-height: 52px;
    border-radius: 14px !important;
    padding-inline: 20px !important;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .10);
}


/* ---------------------------------------------------------
   PREMIUM FOOTER
   --------------------------------------------------------- */

.vega-footer {
    position: relative;
    overflow: hidden;
    padding: 0 0 24px;
    color: #c5cbc1;
    background: #0d100d;
    border-top: 1px solid rgba(255, 255, 255, .04);
}

.vega-footer::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    left: -330px;
    bottom: -420px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(76, 124, 69, .12),
        transparent 68%
    );
    pointer-events: none;
}

.vega-footer__trust {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .018);
}

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

.vega-footer-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 23px 22px;
    border-right: 1px solid rgba(255, 255, 255, .07);
}

.vega-footer-trust-item:first-child {
    padding-left: 0;
}

.vega-footer-trust-item:last-child {
    border-right: 0;
}

.vega-footer-trust-icon {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 12px;
    background: rgba(255, 255, 255, .055);
    color: #fff;
}

.vega-footer-trust-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.vega-footer-trust-item > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.vega-footer-trust-item strong {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -.01em;
}

.vega-footer-trust-item small {
    overflow: hidden;
    color: #7f887d;
    font-size: 10px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* Main footer grid — proper FOUR column ecommerce layout */
.vega-footer__grid {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(250px, 1.45fr)
        minmax(145px, .68fr)
        minmax(145px, .68fr)
        minmax(270px, 1.12fr);
    gap: clamp(28px, 4vw, 62px);
    align-items: start;
    padding-top: 56px;
    padding-bottom: 10px;
}

.vega-footer__brand-column {
    max-width: 440px;
}

.vega-footer__brand {
    margin: 0 0 5px;
    color: #fff;
    font-size: clamp(23px, 2vw, 29px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.vega-footer__tagline {
    margin-bottom: 18px;
    color: #97a092;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .01em;
}

.vega-footer .vega-footer__about {
    max-width: 410px;
    margin: 0;
    color: #899187;
    font-size: 12px;
    line-height: 1.75;
}

.vega-footer__service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 20px;
}

.vega-footer__service-badges span {
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    color: #aeb5aa;
    background: rgba(255, 255, 255, .035);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .025em;
}

.vega-footer__column h3,
.vega-footer__contact-card h3 {
    margin: 0 0 17px;
    color: #fff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.vega-footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vega-footer-menu li {
    margin: 0;
}

.vega-footer-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 5px 0;
    color: #8f978c;
    font-size: 12px;
    font-weight: 560;
    line-height: 1.4;
    text-decoration: none;
    transition:
        color .18s ease,
        transform .18s ease;
}

.vega-footer-menu a::before {
    content: "";
    width: 0;
    height: 1px;
    margin-right: 0;
    background: #fff;
    transition:
        width .18s ease,
        margin .18s ease;
}

.vega-footer-menu a:hover {
    color: #fff;
    transform: translateX(2px);
}

.vega-footer-menu a:hover::before {
    width: 8px;
    margin-right: 6px;
}


/* Contact card */
.vega-footer__contact-card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .06),
            rgba(255, 255, 255, .025)
        );
    box-shadow: 0 18px 50px rgba(0, 0, 0, .13);
}

.vega-footer__contact-kicker {
    display: block;
    margin-bottom: 7px;
    color: #7f897b;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .14em;
}

.vega-footer__contact-card h3 {
    margin-bottom: 18px;
    font-size: 13px;
    letter-spacing: -.01em;
    text-transform: none;
}

.vega-footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    padding: 9px;
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    transition: background .18s ease;
}

.vega-footer-contact-link:hover {
    background: rgba(255, 255, 255, .055);
}

.vega-footer-contact-link__icon {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.vega-footer-contact-link__icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.vega-footer-contact-link > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}

.vega-footer-contact-link small {
    color: #727a70;
    font-size: 9px;
}

.vega-footer-contact-link strong {
    overflow: hidden;
    color: #dfe4dc;
    font-size: 11px;
    font-weight: 720;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vega-footer__address {
    margin-top: 13px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: #81897e;
    font-size: 10px;
    line-height: 1.55;
}

.vega-footer__whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 43px;
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--vega-wa);
    color: #fff !important;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(20, 130, 70, .18);
    transition:
        transform .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.vega-footer__whatsapp svg {
    width: 18px;
    height: 18px;
}

.vega-footer__whatsapp:hover {
    background: var(--vega-wa-dark);
    box-shadow: 0 13px 30px rgba(20, 130, 70, .25);
    transform: translateY(-1px);
}


/* Bottom bar */
.vega-footer__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, .075);
    color: #666f64;
    font-size: 9px;
    line-height: 1.5;
}

.vega-footer__bottom a {
    color: inherit;
    text-decoration: none;
}

.vega-footer__bottom a:hover {
    color: #cbd1c7;
}


/* Keyboard accessibility */
.vega-nav a:focus-visible,
.vega-footer a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1080px) and (min-width: 821px) {

    .vega-nav .vega-menu > li > a {
        padding-inline: 9px;
        font-size: 11px;
    }

    .vega-footer__grid {
        grid-template-columns:
            minmax(240px, 1.3fr)
            minmax(130px, .7fr)
            minmax(240px, 1fr);
        gap: 35px;
    }

    .vega-footer__brand-column {
        grid-column: span 1;
    }

    .vega-footer__contact-card {
        grid-column: auto;
    }

    .vega-footer__grid > .vega-footer__column:nth-of-type(3) {
        display: none;
    }
}


/* ---------------------------------------------------------
   MOBILE MENU
   --------------------------------------------------------- */

@media (max-width: 820px) {

    .vega-nav {
        padding: 14px 14px 80px !important;
        background: rgba(246, 248, 244, .985) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .vega-nav .vega-menu {
        gap: 8px;
    }

    .vega-nav .vega-menu > li {
        overflow: hidden;
        margin: 0 0 8px;
        border: 1px solid rgba(21, 26, 19, .07) !important;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 5px 18px rgba(18, 22, 17, .035);
    }

    .vega-nav .vega-menu > li > a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        min-height: 50px;
        padding: 14px 15px !important;
        color: #171b16;
        font-size: 14px !important;
        font-weight: 760;
        text-decoration: none;
    }

    .vega-nav .vega-menu > .current-menu-item > a,
    .vega-nav .vega-menu > .current_page_item > a {
        color: var(--vega-accent-dark);
    }

    .vega-nav .vega-menu .sub-menu {
        margin: 0 !important;
        padding: 0 12px 12px 22px !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .vega-nav .vega-menu .sub-menu li {
        border: 0 !important;
    }

    .vega-nav .vega-menu .sub-menu a {
        display: block;
        padding: 8px 8px !important;
        color: #697067;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
    }


    /* Footer trust rail */
    .vega-footer__trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vega-footer-trust-item {
        padding: 17px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .vega-footer-trust-item:first-child {
        padding-left: 12px;
    }

    .vega-footer-trust-item:nth-child(2) {
        border-right: 0;
    }

    .vega-footer-trust-item:nth-child(3),
    .vega-footer-trust-item:nth-child(4) {
        border-bottom: 0;
    }


    /* Footer columns */
    .vega-footer__grid {
        grid-template-columns: 1.25fr .75fr !important;
        gap: 32px 26px !important;
        padding-top: 42px;
    }

    .vega-footer__brand-column {
        grid-column: 1 / -1 !important;
        max-width: 620px;
    }

    .vega-footer__contact-card {
        grid-column: 1 / -1;
    }

    .vega-footer__bottom {
        margin-top: 32px;
    }
}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 540px) {

    .vega-cta-strip--premium .vega-cta-strip__inner {
        gap: 22px;
        padding-top: 27px;
        padding-bottom: 28px;
    }

    .vega-footer-wa-cta {
        width: 100%;
        justify-content: center;
    }

    .vega-footer__trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vega-footer-trust-item {
        align-items: flex-start;
        gap: 9px;
        padding: 14px 8px;
    }

    .vega-footer-trust-item:first-child {
        padding-left: 8px;
    }

    .vega-footer-trust-icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }

    .vega-footer-trust-icon svg {
        width: 17px;
        height: 17px;
    }

    .vega-footer-trust-item strong {
        font-size: 10px;
    }

    .vega-footer-trust-item small {
        white-space: normal;
        font-size: 8px;
    }

    .vega-footer__grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px 16px !important;
        padding-top: 36px;
    }

    .vega-footer__brand-column,
    .vega-footer__contact-card {
        grid-column: 1 / -1 !important;
    }

    .vega-footer__brand {
        font-size: 25px;
    }

    .vega-footer__column h3 {
        margin-bottom: 11px;
        font-size: 10px;
    }

    .vega-footer-menu a {
        min-height: 29px;
        font-size: 11px;
    }

    .vega-footer__contact-card {
        padding: 18px;
        border-radius: 17px;
    }

    .vega-footer__bottom {
        flex-direction: column !important;
        align-items: flex-start;
        gap: 6px;
    }
}

/* ===== LIVE ELEMENTOR FOOTER V2 ===== */

/*
 * Actual live footer is Elementor Vega Footer Pro.
 * These rules intentionally override widget/preset styling.
 */

body .vega-el-footer-pro {
    position: relative !important;
    overflow: hidden !important;
    padding: 0 0 24px !important;
    background:
        radial-gradient(circle at 0 100%, rgba(64,103,59,.18), transparent 34%),
        #0b0f0c !important;
    color: #aeb6ab !important;
    border-top: 1px solid rgba(255,255,255,.07) !important;
}

body .vega-el-footer-pro::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -250px;
    top: -250px;
    border-radius: 50%;
    background: rgba(255,255,255,.025);
    pointer-events: none;
}


/* Main shell */
body .vega-el-footer-pro > .vega-container {
    position: relative;
    z-index: 2;
    padding-top: 58px !important;
}


/* MAIN 4 COLUMN ECOMMERCE GRID */
body .vega-el-footer-pro__grid {
    display: grid !important;

    grid-template-columns:
        minmax(270px,1.38fr)
        minmax(145px,.68fr)
        minmax(145px,.68fr)
        minmax(260px,1.05fr) !important;

    gap: clamp(28px,4vw,58px) !important;
    align-items: start !important;
}


/* ----------------------------
   BRAND COLUMN
   ---------------------------- */

body .vega-el-footer-pro__grid > div:first-child {
    max-width: 440px;
}

body .vega-el-footer-pro__grid > div:first-child::before {
    content: "WEDDING • EVENTS • CELEBRATIONS";
    display: inline-flex;
    margin-bottom: 13px;
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    color: #99a296;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .12em;
}

body .vega-el-footer-pro__brand {
    margin: 0 0 11px !important;
    color: #fff !important;
    font-size: clamp(24px,2.3vw,31px) !important;
    font-weight: 900 !important;
    line-height: 1.03 !important;
    letter-spacing: -.045em !important;
}

body .vega-el-footer-pro__grid > div:first-child p {
    max-width: 390px !important;
    margin: 0 !important;
    color: #899286 !important;
    font-size: 12px !important;
    line-height: 1.75 !important;
}


/* ----------------------------
   COLUMN TITLES
   ---------------------------- */

body .vega-el-footer-pro__grid h3 {
    position: relative;
    margin: 0 0 18px !important;
    padding-bottom: 10px;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    letter-spacing: .095em !important;
    text-transform: uppercase !important;
}

body .vega-el-footer-pro__grid h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--vega-accent);
}


/* ----------------------------
   FOOTER LINKS
   ---------------------------- */

body .vega-el-footer-pro .vega-footer-menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body .vega-el-footer-pro .vega-footer-menu li {
    margin: 0 !important;
    padding: 0 !important;
}

body .vega-el-footer-pro .vega-footer-menu a {
    position: relative;
    display: inline-flex !important;
    align-items: center !important;
    min-height: 32px;
    padding: 5px 0 !important;
    color: #8b9488 !important;
    font-size: 12px !important;
    font-weight: 580 !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
    transition:
        color .18s ease,
        transform .18s ease !important;
}

body .vega-el-footer-pro .vega-footer-menu a::before {
    content: "";
    width: 0;
    height: 1px;
    margin-right: 0;
    background: #fff;
    transition:
        width .18s ease,
        margin-right .18s ease;
}

body .vega-el-footer-pro .vega-footer-menu a:hover {
    color: #fff !important;
    transform: translateX(3px);
}

body .vega-el-footer-pro .vega-footer-menu a:hover::before {
    width: 8px;
    margin-right: 6px;
}


/* ----------------------------
   CONTACT COLUMN AS PREMIUM CARD
   ---------------------------- */

body .vega-el-footer-pro__grid > div:last-child {
    padding: 22px !important;
    border: 1px solid rgba(255,255,255,.09) !important;
    border-radius: 20px !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.022)
        ) !important;

    box-shadow:
        0 20px 50px rgba(0,0,0,.18) !important;
}

body .vega-el-footer-pro__grid > div:last-child h3 {
    font-size: 13px !important;
    letter-spacing: -.01em !important;
    text-transform: none !important;
}

body .vega-el-footer-pro__grid > div:last-child p {
    margin: 8px 0 !important;
    color: #899286 !important;
    font-size: 11px !important;
    line-height: 1.55 !important;
}

body .vega-el-footer-pro__grid > div:last-child a {
    color: #dfe4dc !important;
    font-weight: 680 !important;
    text-decoration: none !important;
}

body .vega-el-footer-pro__grid > div:last-child a:hover {
    color: #fff !important;
}


/* ----------------------------
   BOTTOM BAR
   ---------------------------- */

body .vega-el-footer-pro__bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;

    margin-top: 48px !important;
    padding-top: 20px !important;

    border-top: 1px solid rgba(255,255,255,.08) !important;

    color: #667064 !important;
    font-size: 9px !important;
    line-height: 1.5 !important;
}

body .vega-el-footer-pro__bottom span:last-child {
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 999px;
    color: #7d867a;
}


/* ----------------------------
   TABLET
   ---------------------------- */

@media (max-width: 1050px) {

    body .vega-el-footer-pro__grid {
        grid-template-columns:
            minmax(240px,1.25fr)
            minmax(140px,.75fr)
            minmax(140px,.75fr) !important;
    }

    body .vega-el-footer-pro__grid > div:last-child {
        grid-column: 1 / -1;
    }
}


/* ----------------------------
   MOBILE
   ---------------------------- */

@media (max-width: 820px) {

    body .vega-el-footer-pro > .vega-container {
        padding-top: 40px !important;
    }

    body .vega-el-footer-pro__grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 31px 22px !important;
    }

    body .vega-el-footer-pro__grid > div:first-child,
    body .vega-el-footer-pro__grid > div:last-child {
        grid-column: 1 / -1 !important;
    }

    body .vega-el-footer-pro__brand {
        font-size: 26px !important;
    }

    body .vega-el-footer-pro__bottom {
        margin-top: 34px !important;
    }
}


/* ----------------------------
   SMALL MOBILE
   ---------------------------- */

@media (max-width: 520px) {

    body .vega-el-footer-pro > .vega-container {
        padding-top: 34px !important;
    }

    body .vega-el-footer-pro__grid {
        gap: 28px 15px !important;
    }

    body .vega-el-footer-pro__grid h3 {
        margin-bottom: 12px !important;
        font-size: 9px !important;
    }

    body .vega-el-footer-pro .vega-footer-menu a {
        min-height: 29px;
        font-size: 11px !important;
    }

    body .vega-el-footer-pro__grid > div:last-child {
        padding: 18px !important;
        border-radius: 16px !important;
    }

    body .vega-el-footer-pro__bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
}

