/* ======================================================
   CAFE DELICE — Landing Page Styles
   Dark premium theme: black, beige/gold, white accents
   ====================================================== */

/* ============ VARIABLES ============ */
:root {
    --clr-bg:       #0a0a0a;
    --clr-bg-card:  #141414;
    --clr-bg-light: #f5f0e8;
    --clr-accent:   #d4a574;
    --clr-accent-hover: #c49463;
    --clr-text:     #ffffff;
    --clr-muted:    #8a8a8a;
    --clr-border:   rgba(255, 255, 255, 0.08);
    --clr-border-light: rgba(255, 255, 255, 0.12);
    --font-body:    'Nunito', sans-serif;
    --ease:         0.3s ease;
    --container:    1320px;
}

/* ============ RESET ============ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; transition: color var(--ease); }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============ UTILITIES ============ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section--dark  { background-color: var(--clr-bg); }
.section--light { background-color: var(--clr-bg-light); }

/* Title color for light sections */
.section--light .section__title {
    color: #0a0a0a;
}

/* Section title with gold lines */
.section__title {
    color: var(--clr-text);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 56px;
}

.section__title--center {
    justify-content: center;
    text-align: center;
}

.section__line {
    width: 50px;
    height: 2px;
    background: var(--clr-accent);
    flex-shrink: 0;
}

.section__line--dark {
    background: #b8864e;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--ease);
    text-align: center;
}

.btn--primary {
    padding: 14px 40px;
    background: var(--clr-accent);
    color: var(--clr-bg);
    font-size: 0.85rem;
    border-radius: 4px;
}

.btn--primary:hover {
    background: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.btn--cart {
    width: 100%;
    padding: 10px 0;
    background: var(--clr-accent);
    color: var(--clr-bg);
    font-size: 0.75rem;
    border-radius: 4px;
}

.btn--cart:hover {
    background: var(--clr-accent-hover);
}

.btn--full {
    width: 100%;
    padding: 16px;
    background: var(--clr-accent);
    color: var(--clr-bg);
    font-size: 0.9rem;
    border-radius: 4px;
    border: none;
}

.btn--full:hover {
    background: var(--clr-accent-hover);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background var(--ease), box-shadow var(--ease);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo__icon {
    font-size: 1.8rem;
    color: var(--clr-accent);
}

.logo__text {
    font-size: 1rem;
    font-weight: 800;
    color: var(--clr-accent);
    letter-spacing: 2px;
    line-height: 1.15;
}

.logo__text em {
    font-style: normal;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--clr-text);
}

/* Nav links */
.nav__list {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--ease);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent);
    transition: width var(--ease);
}

.nav__link:hover,
.nav__link.active {
    color: var(--clr-accent);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

/* Right-side icons */
.header__actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header__icon {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    transition: color var(--ease);
}

.header__icon:hover {
    color: var(--clr-accent);
}

/* ============ LANGUAGE SELECTOR ============ */
.lang-selector {
    position: relative;
    margin-right: 4px;
}

.lang-selector__current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--clr-border);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--ease);
}

.lang-selector__current:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.lang-selector__current .fa-chevron-down {
    font-size: 0.65rem;
    transition: transform var(--ease);
}

.lang-selector__current.open .fa-chevron-down {
    transform: rotate(180deg);
}

.lang-selector__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1a1a1a;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 6px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--ease);
    z-index: 100;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.lang-selector__dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--ease);
    text-align: left;
}

.lang-option:hover {
    background: rgba(212, 165, 116, 0.1);
    color: var(--clr-text);
}

.lang-option.active {
    color: var(--clr-accent);
    background: rgba(212, 165, 116, 0.08);
}

/* Hamburger */
.nav__toggle,
.nav__close {
    display: none;
    color: var(--clr-text);
    font-size: 1.5rem;
    z-index: 1002;
}

/* Mobile overlay */
.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--ease);
}

.nav__overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Dark gradient hero background — resembles coffee beans atmosphere */
.hero__bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero.jpg') center/cover no-repeat;
    z-index: 0;
}

/* Subtle dark overlay to ensure text contrast */
.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.2) 30%, transparent 100%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 90px;
    width: 100%;
}

.hero__content {
    max-width: 620px;
}

.hero__title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, var(--clr-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__text {
    font-size: 0.95rem;
    color: var(--clr-muted);
    max-width: 460px;
    margin-bottom: 36px;
    line-height: 1.8;
}

/* ============ CARD (Menu product) ============ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 165, 116, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(145deg, #1e1510, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card__img--2 { background: linear-gradient(145deg, #1a1512, #111); }
.card__img--3 { background: linear-gradient(145deg, #1c1612, #111); }
.card__img--4 { background: linear-gradient(145deg, #181410, #111); }
.card__img--5 { background: linear-gradient(145deg, #1d1713, #111); }
.card__img--6 { background: linear-gradient(145deg, #1b1410, #111); }

.card__img-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(180, 130, 80, 0.08));
    border: 1px solid rgba(212, 165, 116, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--ease);
}

.card:hover .card__img-circle {
    transform: scale(1.08);
}

.card__icon {
    font-size: 2.8rem;
    color: var(--clr-accent);
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* Card mini version for testimonial area */
.card--mini {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.card__img--mini {
    width: 110px;
    min-width: 110px;
    aspect-ratio: auto;
    height: 100px;
    border-radius: 0;
    border-right: 1px solid var(--clr-border);
}

.card__icon--mini {
    font-size: 1.8rem;
}

.card__body {
    padding: 20px;
    text-align: center;
}

.card--mini .card__body {
    padding: 12px 16px;
    text-align: center;
    flex: 1;
}

.card__title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card__price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.card__price-new {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--clr-accent);
}

.card__price-old {
    font-size: 0.82rem;
    color: var(--clr-muted);
    text-decoration: line-through;
}

/* ============ PRODUCTS (bag-style cards) ============ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--ease), border-color var(--ease);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 165, 116, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.product-card__wrapper {
    position: relative;
    overflow: hidden;
}

.product-card__img {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(160deg, #1e1812, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Colored bag placeholders */
.product-card__img::before {
    content: '';
    width: 60px;
    height: 80px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--clr-accent), #9a7248);
    opacity: 0.4;
    display: block;
}

.product-card__img--2::before { background: linear-gradient(180deg, #5a8a4a, #3a6a2a); opacity: 0.5; }
.product-card__img--3::before { background: linear-gradient(180deg, #8a6a4a, #5a3a1a); opacity: 0.5; }
.product-card__img--4::before { background: linear-gradient(180deg, #6a8a6a, #4a6a4a); opacity: 0.5; }

.product-card__badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(-12px);
    transition: all var(--ease);
}

.product-card:hover .product-card__badges {
    opacity: 1;
    transform: translateX(0);
}

.product-card__badges button {
    width: 38px;
    height: 38px;
    background: var(--clr-accent);
    color: var(--clr-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: transform var(--ease), background var(--ease);
}

.product-card__badges button:hover {
    transform: scale(1.15);
    background: var(--clr-accent-hover);
}

.product-card__body {
    padding: 16px;
    text-align: center;
}

.product-card__body h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-card__price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--clr-accent);
}

/* ============ ABOUT US ============ */
.about-section {
    background: #0e0e0e;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    background: linear-gradient(160deg, #1e1510 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about__image-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.about__img-placeholder::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.08), transparent 70%);
}

.about__img-icon {
    font-size: 5rem;
    color: var(--clr-accent);
    opacity: 0.3;
    position: relative;
    z-index: 1;
}

.about__heading {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--clr-text);
}

.about__text {
    color: var(--clr-muted);
    font-size: 0.92rem;
    margin-bottom: 14px;
    line-height: 1.85;
}

.about__text:last-child { margin-bottom: 0; }

/* ============ TESTIMONIAL ============ */
.testimonial__layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Quote box */
.quote-box {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: 32px;
    transition: border-color var(--ease);
}

.quote-box:hover {
    border-color: rgba(212, 165, 116, 0.2);
}

/* Center featured quote box — overlaps the area like the reference */
.quote-box--featured {
    padding: 44px;
    background: linear-gradient(145deg, #1a1410, var(--clr-bg-card));
    border-color: rgba(212, 165, 116, 0.15);
    border-radius: 10px;
}

.quote-box__icon {
    color: var(--clr-accent);
    font-size: 1.6rem;
    margin-bottom: 16px;
    opacity: 0.7;
}

.quote-box__text {
    font-size: 0.9rem;
    color: var(--clr-muted);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 22px;
}

.quote-box__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid var(--clr-border);
}

.quote-box__avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.quote-box__name {
    font-style: normal;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--clr-text);
    display: block;
}

.quote-box__stars {
    display: flex;
    gap: 3px;
    color: var(--clr-accent);
    font-size: 0.7rem;
    margin-top: 3px;
}

/* Stacked mini cards area */
.testimonial__left {
    display: flex;
    flex-direction: column;
}

/* ============ CONTACT ============ */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.contact__form .form__group {
    margin-bottom: 20px;
}

.contact__form input,
.contact__form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #333;
    background: #f8f5f0;
    border: 1px solid #e0d8cd;
    border-radius: 4px;
    transition: border-color var(--ease), box-shadow var(--ease);
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: #aaa;
}

.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

.contact__form textarea {
    resize: vertical;
}

.contact__map {
    min-height: 400px;
    width: 100%;
}

.contact__map-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__map-placeholder .fa-location-dot {
    font-size: 3.5rem;
    color: var(--clr-accent);
    opacity: 0.4;
}

/* ============ FOOTER ============ */
.footer {
    background: #050505;
    padding: 80px 0 0;
    border-top: 1px solid var(--clr-border);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Footer brand */
.footer__brand .logo__icon {
    font-size: 2.2rem;
}

.footer__brand .logo__text {
    font-size: 1.05rem;
}

.footer__desc {
    color: var(--clr-muted);
    font-size: 0.88rem;
    margin: 18px 0 22px;
    line-height: 1.75;
    max-width: 300px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-muted);
    font-size: 0.92rem;
    transition: all var(--ease);
}

.footer__social a:hover {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: var(--clr-bg);
}

.footer__col h4 {
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 26px;
    color: var(--clr-text);
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: var(--clr-muted);
    font-size: 0.88rem;
    transition: all var(--ease);
}

.footer__links a:hover {
    color: var(--clr-accent);
    padding-left: 6px;
}

.footer__hours li {
    margin-bottom: 14px;
    color: var(--clr-muted);
    font-size: 0.88rem;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.footer__hours li span:first-child {
    color: var(--clr-text);
    font-weight: 600;
    white-space: nowrap;
}

.footer__contact-info li {
    margin-bottom: 14px;
    color: var(--clr-muted);
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer__contact-info li i {
    color: var(--clr-accent);
    margin-top: 4px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer__bottom {
    text-align: center;
    padding: 26px 0;
    border-top: 1px solid var(--clr-border);
    color: var(--clr-muted);
    font-size: 0.84rem;
}

/* ============ RESPONSIVE — MOBILE-FIRST OVERRIDES ============ */

/* Tablets and below */
@media (max-width: 1200px) {
    .testimonial__layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial__left {
        flex-direction: row;
        gap: 16px;
    }

    .testimonial__left .card--mini {
        flex: 1;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image {
        max-width: 450px;
        margin: 0 auto;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__map-placeholder {
        aspect-ratio: 16 / 9;
    }
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav__toggle,
    .nav__close {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85%);
        height: 100vh;
        background: var(--clr-bg);
        padding: 80px 28px 28px;
        transition: right var(--ease);
        z-index: 1001;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.6);
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 18px;
    }

    .nav__link {
        font-size: 0.95rem;
    }

    .section {
        padding: 70px 0;
    }

    .section__title {
        font-size: 1.3rem;
        flex-wrap: wrap;
    }

    .section__line {
        width: 35px;
    }

    /* Stack cards to 1 column */
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .hero__title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__desc {
        max-width: none;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__contact-info li {
        justify-content: center;
    }

    /* Footer responsive styles */
    .footer__col--social .footer__social-links {
        justify-content: center;
    }

    .footer__col--cta .footer__btn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .footer__col--cta {
        text-align: center;
    }

    .footer__resources-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer__col--resources {
        text-align: center;
    }

    .footer__bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer__payment-methods {
        justify-content: center;
    }

    .testimonial__left {
        flex-direction: column;
    }

    .quote-box--featured {
        padding: 28px;
    }

    .contact__form-wrapper {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .header__inner {
        height: 72px;
    }

    .logo__text {
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .card--mini {
        flex-direction: column;
    }

    .card__img--mini {
        width: 100%;
        min-width: unset;
        border-right: none;
        aspect-ratio: 2 / 1;
    }

    .card__img--mini img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
