/* =============================================
   BOOMBITE OVERRIDE CSS
   Fixes Webflow elements that normally need
   Webflow's JS runtime to become visible.
============================================= */

/* Make hero content visible (Webflow JS normally animates these in) */
.bb-visible,
.bb-visible * {
    opacity: 1 !important;
    transform: none !important;
}

/* Hero background — Webflow JS animates width/height from 0 to 100% */
.bb-hero-bg-visible {
    width: 100% !important;
    height: 100% !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
}

/* Dark overlay on hero */
.bb-overlay-visible {
    opacity: 0.35 !important;
}

/* =============================================
   NAVBAR OVERRIDES
============================================= */
.navbar_section {
    z-index: 99999 !important;
    position: fixed !important;
}

.navbar-new {
    z-index: 99999 !important;
}

.nav-list-item {
    list-style: none;
}

.nav-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* New bubbly logo — constrain size, show on red navbar */
.navbar-logo-image {
    height: 48px !important;
    width: auto !important;
    max-width: none !important;
    display: block;
    filter: brightness(0) invert(1); /* force white in case any edge pixels remain */
}

/* Footer logo */
.footer-logo .image-default {
    height: 60px;
    width: auto;
    display: block;
}

/* Hamburger icon — visible on all sizes, white on red navbar */
.navbar-toggle-icon {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 26px;
    gap: 5px;
    cursor: pointer;
}

.navbar-toggle-bar-middle,
.navbar-toggle-bar-bottom {
    background-color: #fff !important;
    width: 24px !important;
    height: 2px !important;
    border-radius: 99px;
    display: block !important;
}

.navbar-toggle-bar-middle-inner {
    display: none;
}

/* =============================================
   MARQUEE ANIMATION
   .marquee-row-02 is position:absolute with
   rotate(-2deg) — we animate translateX on the
   inner flex row to create the scroll effect.
============================================= */
.bb-marquee-scroll {
    display: flex !important;
    position: relative !important;
    width: max-content;
    animation: bb-marquee 24s linear infinite;
}

@keyframes bb-marquee {
    from { transform: rotate(-2deg) translateX(0); }
    to   { transform: rotate(-2deg) translateX(-50%); }
}

/* Clip horizontal overflow at the section level so the rotated band
   can be fully visible vertically while text scrolls off-screen */
.section_global_marquee {
    overflow: hidden;
}

.section_global_marquee .section-inner.marquee {
    overflow: visible;
    width: 100%;
    min-height: 120px;
    justify-content: flex-start !important;
}

/* =============================================
   INSTAGRAM SECTION TITLE
============================================= */
.instagram-title-tag-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.follow-tag {
    position: absolute;
    right: -48px;
    top: -16px;
    width: 80px;
    pointer-events: none;
}

.section-global-instagram-feed .padding-80x0 {
    padding-top: 80px;
    padding-bottom: 48px;
}

/* =============================================
   INSTAGRAM MARQUEE ANIMATION
============================================= */
.instagram-marquee-image {
    position: relative;
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

.instagram-marquee-image .image-default {
    display: block;
    width: 280px;
    height: 280px;
    object-fit: cover;
}

.instagram-hover-wrap {
    position: absolute;
    inset: 0;
    background-color: rgba(230, 45, 14, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    color: #fff;
}

.instagram-marquee-image:hover .instagram-hover-wrap {
    opacity: 1;
}

.instagram-svg {
    width: 40px;
    height: 40px;
}

.instagram_marquee {
    overflow: hidden;
    width: 100%;
}

.bb-instagram-scroll {
    animation: bb-instagram-scroll 30s linear infinite;
    display: flex !important;
    width: max-content;
    gap: 8px;
}

@keyframes bb-instagram-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =============================================
   HERO IMAGE — show full photo, anchored right
============================================= */
.home_hero-bg {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero_bg {
    object-fit: contain !important;
    height: 100% !important;
    width: auto !important;
    max-height: 100% !important;
    display: block;
}

/* =============================================
   HERO SECTION — ensure text is white & visible
============================================= */
.section_home-hero .section-inner.home_hero h1,
.section_home-hero .section-inner.home_hero h2,
.section_home-hero .section-inner.home_hero p {
    opacity: 1 !important;
    transform: none !important;
}

/* =============================================
   PRODUCT GRID — ensure items are visible
============================================= */
.global_menu-collection-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
}

.menu_card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.menu_card_image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
    background: color-mix(in srgb, var(--accent, #E07B39) 12%, #fff);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu_card_image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, color-mix(in srgb, var(--accent, #E07B39) 20%, transparent), transparent 70%);
    pointer-events: none;
}

.menu_card_image .image-default {
    width: 75%;
    height: 75%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.menu_card:hover .image-default {
    transform: scale(1.04);
}

/* =============================================
   ABOUT PAGE — photo grid
============================================= */
.bb-about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.bb-about-grid-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
}

/* Behind-the-head images: show the first one by default */
.behid-head-move-element .image-default {
    display: none;
}

.behid-head-move-element .image-default.is_first {
    display: block;
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* =============================================
   SECTION TITLE — make sure headings show
============================================= */
.section-title-left h3,
.section-title-left h2,
.section-title-instagram h2,
.secton-title-center h2,
.meet-passtion-right h2,
.meet-passtion-tag h2 {
    opacity: 1 !important;
    transform: none !important;
}

.meet-passtion-image,
.meet-passtion-mask,
.portaint_image,
.meet-passtion-tag {
    opacity: 1 !important;
    transform: none !important;
}

/* =============================================
   CONTACT PAGE
============================================= */
.contact-image {
    transform: none !important;
    filter: none !important;
}

/* =============================================
   FOOTER LINK STYLES
============================================= */
.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #fff;
}

/* =============================================
   PRODUCT DETAIL PAGE (XileChile-inspired layout)
============================================= */
.bb-pd-page {
    background-color: var(--color--off-white, #fdf6f0);
    min-height: 80vh;
    padding: 100px 0 80px;
}

.bb-pd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 60px;
    align-items: start;
}

/* --- Gallery (left) --- */
.bb-pd-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bb-pd-main-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: #f0ece8;
}

.bb-pd-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.bb-pd-thumbs {
    display: flex;
    gap: 12px;
}

.bb-pd-thumb-img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: none;
    text-decoration: none;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

.bb-pd-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bb-pd-thumb-img.bb-pd-thumb-active,
.bb-pd-thumb-img:hover {
    border-color: var(--color--red-theme);
}

/* --- Info panel (right) --- */
.bb-pd-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
}

.bb-pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--color--primary);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bb-pd-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.bb-pd-breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.bb-pd-name {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--color--primary);
    line-height: 1;
    margin: 0;
}

.bb-pd-price {
    font-size: 1.8rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--color--red-theme);
}

.bb-pd-currency {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.bb-pd-shipping {
    font-size: 0.85rem;
    color: var(--color--primary);
    opacity: 0.6;
    margin-top: -12px;
}

/* --- Related products --- */
.bb-pd-related-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color--primary);
    margin-bottom: 12px;
}

.bb-pd-related-cards {
    display: flex;
    gap: 12px;
}

.bb-pd-related-card {
    display: block;
    text-decoration: none;
    color: var(--color--primary);
    width: 110px;
    flex-shrink: 0;
}

.bb-pd-related-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    display: block;
}

.bb-pd-related-card:hover img {
    border-color: var(--color--red-theme);
}

.bb-pd-related-name {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.bb-pd-related-price {
    font-size: 0.75rem;
    color: var(--color--red-theme);
    font-weight: 600;
}

/* --- Quantity & Size rows --- */
.bb-pd-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(75, 16, 7, 0.12);
}

.bb-pd-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color--primary);
}

.bb-pd-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--color--primary);
    border-radius: 100px;
    overflow: hidden;
}

.bb-qty-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--color--primary);
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bb-qty-btn:hover {
    background: var(--color--red-theme);
    color: #fff;
}

.bb-qty-num {
    min-width: 36px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color--primary);
}

.bb-pd-select {
    border: 1.5px solid var(--color--primary);
    border-radius: 8px;
    padding: 10px 36px 10px 16px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    color: var(--color--primary);
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%234b1007' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    min-width: 120px;
}

/* --- FAQ Accordions --- */
.bb-pd-faqs {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(75, 16, 7, 0.12);
}

.bb-faq-item {
    border-bottom: 1px solid rgba(75, 16, 7, 0.12);
    overflow: hidden;
}

.bb-faq-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 14px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
}

.bb-faq-icon {
    color: var(--color--red-theme);
    font-size: 0.7rem;
}

.bb-faq-chevron {
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: var(--color--primary);
}

.bb-faq-item.open .bb-faq-chevron {
    transform: rotate(180deg);
}

.bb-faq-body {
    max-height: 0;
    overflow: hidden;
    font-size: 0.9rem;
    color: var(--color--primary);
    opacity: 0.8;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.bb-faq-item.open .bb-faq-body {
    max-height: 200px;
    padding-bottom: 14px;
}

/* --- CTA Buttons --- */
.bb-pd-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bb-cta-primary {
    display: block;
    width: 100%;
    padding: 18px 24px;
    background-color: var(--color--red-theme);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 8px;
    transition: background-color 0.2s, transform 0.15s;
}

.bb-cta-primary:hover {
    background-color: #a81206;
    transform: translateY(-1px);
}

.bb-cta-secondary {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background-color: var(--color--primary);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 8px;
    transition: background-color 0.2s, transform 0.15s;
}

.bb-cta-secondary:hover {
    background-color: #2a0803;
    transform: translateY(-1px);
}

/* --- Description --- */
.bb-pd-desc {
    font-size: 0.95rem;
    color: var(--color--primary);
    line-height: 1.7;
    opacity: 0.8;
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(75, 16, 7, 0.12);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .bb-pd-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .bb-pd-main-img-wrap {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 767px) {
    .bb-pd-page {
        padding: 80px 0 60px;
    }
    .bb-pd-container {
        padding: 0 20px;
    }
    .bb-pd-thumb-img {
        width: 80px;
        height: 80px;
    }
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 991px) {
    .global_menu-collection-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .bb-about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .global_menu-collection-list {
        grid-template-columns: 1fr;
    }
    .bb-about-grid {
        grid-template-columns: 1fr;
    }
    .navbar-new {
        padding: 12px 20px;
    }
}

/* =============================================
   PEEK PRODUCTS SECTION
   Products straddle the top edge of the red
   block — bottom portion hidden inside it.
   Hover lifts each bag with a springy bounce.
============================================= */
.bb-peek-section {
    position: relative;
    background-color: var(--color--grey, #fdf6f0);
    padding-top: 60px !important;
}

.bb-peek-products {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    margin-bottom: -70px;
}

.bb-peek-item {
    flex: 0 1 250px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transform-origin: bottom center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.bb-peek-item.bb-peek-up {
    transform: none;
}

.bb-peek-item:hover {
    transform: scale(1.18) !important;
}

.bb-peek-item img {
    width: 240px;
    height: 290px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.22));
    transition: filter 0.3s ease;
}

.bb-peek-item:hover img {
    filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.30));
}

.bb-peek-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.bb-peek-item:hover .bb-peek-name {
    opacity: 1;
}

.bb-peek-block {
    background: #8B1A1A;
    padding: 60px 40px 90px;
    text-align: center;
    position: relative;
    z-index: 2; /* ON TOP of bags — red block masks the bag bottoms */
    overflow: hidden;
}

.bb-peek-heading {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.4rem, 5vw, 5rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 16px;
    line-height: 1;
}

.bb-peek-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin: 0 0 40px;
}

.bb-peek-cta {
    display: inline-block;
    background: #fff;
    color: #8B1A1A;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 48px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.bb-peek-cta:hover {
    background: #C0392B;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .bb-peek-section {
        padding-top: 60px !important;
    }
    .bb-peek-products {
        gap: 8px;
        padding: 0 16px;
        margin-bottom: -30px;
    }
    .bb-peek-item {
        flex: 0 1 180px;
    }
    .bb-peek-block {
        padding: 80px 32px 60px;
    }
}

@media (max-width: 767px) {
    .bb-peek-section {
        padding-top: 60px !important;
    }
    .bb-peek-products {
        gap: 6px;
        padding: 0 10px;
        margin-bottom: -20px;
        flex-wrap: wrap;
    }
    .bb-peek-item {
        flex: 0 1 110px;
    }
    .bb-peek-item.bb-peek-up {
        transform: none;
    }
    .bb-peek-block {
        padding: 70px 24px 56px;
    }
    .bb-peek-heading {
        font-size: 2rem;
    }
}

/* Reduce bottom padding on "more about us" section to close gap above dulces con actitud */
.section-global-made_food .section-padding.padding-120x120 {
    padding-top: 60px !important;
    padding-bottom: 50px !important;
}

.section-global-made_food {
    margin-bottom: 0 !important;
}

/* =============================================
   NAVBAR — left-align nav links, right-align icons
============================================= */
.navbar-wrap {
    justify-items: stretch;
}

.navbar-wrap > ul.nav-menu-items:first-child {
    justify-self: start;
    justify-content: flex-start !important;
}

.navbar-wrap > .navbar-logo {
    justify-self: center;
}

.navbar-wrap > .nav-right-main {
    justify-self: end;
    justify-content: flex-end !important;
}

/* =============================================
   FOOTER — legal links row
============================================= */
.footer-pages-links {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-legal-link:hover {
    color: #fff;
}


/* =============================================
   COLOR-BREATHING HERO OVERLAY
   Cycles through all 6 product accent colors
============================================= */
.background_overlay-home_hero.bb-overlay-visible {
    animation: bb-hero-breathe 18s ease-in-out infinite !important;
}

@keyframes bb-hero-breathe {
    0%    { background-color: rgba(224, 123, 57,  0.45); }
    16%   { background-color: rgba(192,  57, 43,  0.45); }
    33%   { background-color: rgba( 46, 134, 171, 0.45); }
    50%   { background-color: rgba( 39, 174,  96, 0.45); }
    66%   { background-color: rgba(216,  27,  96, 0.45); }
    83%   { background-color: rgba(108,  52, 131, 0.45); }
    100%  { background-color: rgba(224, 123, 57,  0.45); }
}

/* =============================================
   SHOP PAGE — scroll-reveal on product cards
============================================= */
.shop-card {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1),
                border-color .2s, box-shadow .2s;
}

.shop-card.bb-card-visible {
    opacity: 1;
    transform: translateY(0);
}

.shop-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* =============================================
   NAVBAR CART BADGE
============================================= */
.navbar-cart-link { position: relative; }

.navbar-cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #c0392b;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    pointer-events: none;
}

/* =============================================
   FOOTER PAYMENT ICONS
============================================= */
.footer-pages-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-cards {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-card-icon {
    width: 44px;
    height: 30px;
    border-radius: 4px;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
    transition: transform 0.15s;
}
.footer-card-icon:hover { transform: translateY(-2px); }

.footer-stripe-badge {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e0dbd3;
    border-radius: 4px;
    padding: 4px 8px;
    height: 30px;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .footer-pages-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
