/* ===== Variables ===== */
:root {
    --primary-red: #E50C2B;
    --hover-red: #C50A25;
    --text-hero: #FFF7D7;
    --text-nav: #FFFAE6;
    --text-white: #FFFFFF;
    --bg-dark: #121212;
    --font-main: 'Epilogue', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== Header ===== */
.header {
    background-color: var(--primary-red);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 101px;
    padding: 0 54px;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
}

/* Nav */
.nav {
    display: flex;
    gap: 70px;
    align-items: center;
    margin-left: auto;
    margin-right: 60px;
}

.nav-link {
    color: var(--text-nav);
    text-decoration: none;
    font-weight: 800;
    font-size: 24px;
    transition: var(--transition-fast);
}

.nav-link:hover {
    opacity: 0.8;
}

/* Locate Us in nav - visible everywhere */
.nav-locate-btn {
    display: inline-flex;
}

/* Desktop Locate Us removed from HTML, kept via nav */
.desktop-locate {
    display: none;
}

/* Hamburger - hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-family: var(--font-main);
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-secondary {
    background-color: var(--text-nav);
    color: var(--primary-red);
    font-size: 24px;
    font-weight: 700;
    width: 200px;
    height: 60px;
}

.btn-secondary:hover {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    width: 250px;
    height: auto;
    padding: 15px;
}

.btn-primary:hover {
    background-color: var(--hover-red);
    box-shadow: 0 8px 16px rgba(229, 12, 43, 0.3);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    margin-top: 101px;
    height: 990px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #000;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.51);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--text-hero);
    margin-bottom: 21px;
    max-width: 1054px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    color: var(--text-hero);
    margin-bottom: 21px;
    max-width: 910px;
}

/* ===== Categories Section ===== */
.categories-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.section-heading {
    text-align: center;
    color: #E50C2B;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 50px;
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E50C2B;
    color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.carousel-btn:hover {
    background: #C50A25;
}

.carousel-btn.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.categories-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 20px 20px;
    flex: 1;
}

.categories-grid::-webkit-scrollbar {
    display: none;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    width: 160px;
    flex: 0 0 160px;
    cursor: pointer;
    transition: transform 0.2s ease;
    scroll-snap-align: start;
}

.category:hover {
    transform: scale(1.02);
}

.category-circle {
    background-color: #A2041A;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: border 0.2s ease;
}

.category.active .category-circle {
    border: 5px solid #FFB006;
}

.category-circle img {
    width: 75%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 12px rgba(0, 0, 0, 0.4));
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: #22252A;
    line-height: 1.1;
}

/* ===== Product Grid ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 20px;
}

/* 2-Column layout for consolidated sections */
.product-grid.grid-horizontal {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1600px;
    /* Wider for 2 side-by-side large boxes */
}

.card {
    background-color: #FFF7D7;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 20px;
    border: 1px solid #FFB006;
    border-radius: 20px;
    box-sizing: border-box;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-container {
    background-color: #A2041A;
    width: 100%;
    flex: 2.5;
    border-radius: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    min-height: 0;
}

.product-img {
    width: 65%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 12px rgba(0, 0, 0, 0.4));
}

.price-tag {
    position: absolute;
    top: -1px;
    right: -1px;
    background-color: #FFF7D7;
    color: #E50C2B;
    font-size: 20px;
    font-weight: 700;
    padding: 8px 16px;
    border-bottom-left-radius: 16px;
    z-index: 10;
}

.price-tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: -16px;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border-top-right-radius: 16px;
    box-shadow: 5px -5px 0 5px #FFF7D7;
}

.price-tag::after {
    content: "";
    position: absolute;
    bottom: -16px;
    right: 0;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border-top-right-radius: 16px;
    box-shadow: 5px -5px 0 5px #FFF7D7;
}

.title {
    width: 100%;
    text-align: center;
    margin: auto 0;
    color: #22252A;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 10px 05px 10px;
}

.card-desc {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0;
    line-height: 1.4;
    margin-top: 10px;
}

/* ===== Horizontal Card Layout ===== */
.card.horizontal {
    aspect-ratio: auto;
    flex-direction: row;
    grid-column: span 1;
    /* Fits into 2-column grid */
    height: auto;
    min-height: 280px;
    padding: 25px;
    align-items: stretch;
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

.card.horizontal .image-container {
    width: 250px;
    flex: 0 0 250px;
    height: 100%;
}

.card.horizontal .product-img {
    width: 80%;
}

.listing-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    padding: 0 10px;
}

.listing-title {
    font-size: 28px;
    font-weight: 800;
    color: #A2041A;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFB006;
}

.listing-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.listing-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    font-family: var(--font-main);
}

.item-name {
    font-size: 18px;
    font-weight: 700;
    color: #22252A;
}

.item-dots {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px;
}

.item-price {
    font-size: 18px;
    font-weight: 800;
    color: #E50C2B;
    white-space: nowrap;
}

/* Responsive adjustment for horizontal cards */
@media (max-width: 992px) {
    .product-grid.grid-horizontal {
        grid-template-columns: repeat(2, 1fr);
        /* Preserves the 2x2 grid */
    }

    .card.horizontal {
        flex-direction: column;
        grid-column: span 1;
        height: auto;
        padding: 20px;
        gap: 20px;
    }

    .card.horizontal .image-container {
        width: 100%;
        height: 200px;
        flex: none;
    }
}

@media (max-width: 768px) {
    .product-grid.grid-horizontal {
        grid-template-columns: repeat(2, 1fr);
        /* Ensures 2x2 grid on mobile */
    }

    .card.horizontal {
        grid-column: span 1;
        /* Match the 2-column mobile grid */
        gap: 15px;
        padding: 15px;
    }

    .card.horizontal .image-container {
        height: 120px;
        /* Scaled for smaller mobile width */
    }

    .listing-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .item-name,
    .item-price {
        font-size: 13px;
    }
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 1200px) {
    .hero-content {
        padding-left: 40px;
    }

    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 992px) {
    .nav {
        gap: 30px;
        margin-right: 30px;
    }

    .btn-secondary {
        width: 160px;
        height: 50px;
        font-size: 20px;
    }

    .nav-link {
        font-size: 20px;
    }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {

    /* Padding */
    .container {
        padding: 0 10px;
    }

    /* Header */
    .header-content {
        padding: 0 10px;
        height: 80px;
    }

    .logo-img {
        height: 70px;
    }

    .desktop-locate {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Nav dropdown */
    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--primary-red);
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 20px;
        display: none;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }

    .nav.open {
        display: flex;
    }

    .nav-locate-btn {
        display: inline-flex;
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: calc(100vh - 80px);
        margin-top: 80px;
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .hero-content {
        padding-left: 10px;
        width: 100%;
        height: auto;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 20px;
    }

    .btn-primary {
        width: 200px;
        height: 50px;
        font-size: 16px;
    }

    /* Categories */
    .categories-section {
        margin-bottom: 40px;
    }

    .section-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .categories-grid {
        gap: 16px;
        padding: 10px 16px;
    }

    .category {
        width: 110px;
        flex: 0 0 110px;
        gap: 8px;
    }

    .category-circle {
        width: 100px;
        height: 100px;
    }

    .category-title {
        font-size: 14px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/* ===== Bucket Promo Section ===== */
.bucket-promo {
    background-color: var(--primary-red);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bucket-promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bucket-promo-logo {
    height: 200px;
    margin-bottom: 40px;
}

.bucket-promo-title {
    font-size: 128px;
    font-weight: 900;
    color: var(--text-hero);
    line-height: 1.1;
    letter-spacing: -5%;
    margin-bottom: 30px;
}

.bucket-promo-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #FFF7D7;
    line-height: 1.5;
    max-width: 800px;
    margin-bottom: 50px;
}

.bucket-promo-btn {
    background-color: var(--text-hero);
    color: var(--primary-red);
    font-size: 24px;
    font-weight: 800;
    padding: 18px 48px;
    border-radius: 50px;
    margin-bottom: 60px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bucket-promo-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.bucket-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto -60px auto;
    /* Pull image down off the bottom edge */
    z-index: 1;
    display: flex;
    justify-content: center;
}

.bucket-promo-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.section-kicker {
    color: #FFB006;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 18px;
}

.testimonials-section {
    background: linear-gradient(180deg, #fcf5e3 0%, #fff8e8 100%);
    padding: 110px 0;
    overflow: hidden;
}

.testimonials-shell {
    max-width: 1480px;
}

.testimonials-heading,
.location-heading {
    color: #E50C2B;
    text-align: left;
    margin-bottom: 20px;
}

.testimonials-intro,
.location-lead {
    color: #5F2B22;
    font-size: 22px;
    line-height: 1.6;
    max-width: 760px;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 70px;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.testimonial-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #E50C2B;
    color: #FFF7D7;
    font-size: 28px;
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.testimonial-arrow:hover {
    background: #A2041A;
    transform: translateY(-2px);
}

.testimonial-track-wrap {
    overflow: hidden;
    padding: 14px 6px 24px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.45s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    background: #E50C2B;
    color: #FFF8E8;
    border-radius: 28px;
    padding: 42px 38px;
    min-height: 300px;
    box-shadow: 0 22px 40px rgba(162, 4, 26, 0.2);
    border: 4px solid rgba(255, 176, 6, 0.18);
    transform: scale(0.96);
    opacity: 0.75;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.testimonial-card.active {
    transform: scale(1);
    opacity: 1;
}

.testimonial-stars {
    color: #FFB006;
    font-size: 30px;
    letter-spacing: 0.14em;
    margin-bottom: 22px;
}

.testimonial-text {
    font-size: 29px;
    line-height: 1.45;
    font-weight: 700;
    max-width: 980px;
}

.testimonial-author {
    display: inline-block;
    margin-top: 28px;
    color: #FFD88B;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: rgba(229, 12, 43, 0.25);
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.testimonial-dot.active {
    background: #E50C2B;
    transform: scale(1.15);
}

.location-section {
    background: #E50C2B;
    padding: 110px 0;
}

.location-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 42px;
    align-items: stretch;
}

.location-card {
    margin-top: 34px;
    background: rgba(255, 247, 215, 0.08);
    border: 1px solid rgba(255, 176, 6, 0.22);
    border-radius: 28px;
    padding: 34px;
    backdrop-filter: blur(10px);
}

.location-card-title {
    color: #FFF7D7;
    font-size: 30px;
    margin-bottom: 16px;
}

.location-heading,
.location-lead {
    color: #FFF7D7;
}

.location-address {
    color: #FFF8E8;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 600;
}

.location-actions {
    margin-top: 28px;
}

.location-btn {
    width: auto;
    padding: 16px 28px;
    background-color: #FFFFFF;
    color: #E50C2B;
}

.location-btn:hover {
    background-color: #FFF7D7;
    color: #C50A25;
}

.location-map-shell {
    display: flex;
}

.location-map-frame {
    width: 100%;
    min-height: 520px;
    background: #FFF7D7;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.32);
    border: 6px solid rgba(255, 255, 255, 0.08);
}

.location-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

.offers-anchor {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.offer-toast {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: min(360px, calc(100vw - 32px));
    background: #FFF7D7;
    color: #5F2B22;
    border-left: 6px solid #E50C2B;
    border-radius: 20px;
    padding: 18px 18px 18px 20px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
    z-index: 1100;
}

.offer-toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.offer-toast-title {
    color: #A2041A;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.offer-toast-text {
    font-size: 15px;
    line-height: 1.5;
    padding-right: 28px;
}

.offer-toast-close,
.offer-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: transparent;
    color: #A2041A;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.offer-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 18, 18, 0.58);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1200;
}

.offer-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.offer-modal {
    position: relative;
    width: min(480px, 100%);
    background: #FFF7D7;
    color: #5F2B22;
    border-radius: 28px;
    padding: 36px 30px 28px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.offer-modal h3 {
    color: #A2041A;
    font-size: 34px;
    margin-bottom: 14px;
}

.offer-modal p {
    font-size: 18px;
    line-height: 1.6;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(229, 12, 43, 0.1);
    color: #E50C2B;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.site-footer {
    background: #202125;
    padding: 42px 0 20px;
}

.footer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.8fr));
    gap: 32px;
    align-items: start;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-brand {
    max-width: 460px;
}

.footer-logo {
    height: 200px;
    width: auto;
    margin-bottom: 12px;
}

.footer-copy,
.footer-address,
.footer-credit {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column-location {
    justify-self: end;
    max-width: 290px;
}

.footer-title {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.7;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 16px;
}

.footer-credit a {
    color: #FFB006;
    text-decoration: none;
    font-weight: 400;
}

.footer-credit a:hover {
    color: #FFF7D7;
}

@media (max-width: 768px) {
    .bucket-promo {
        padding-top: 60px;
    }

    .bucket-promo-logo {
        height: 150px;
        margin-bottom: 30px;
    }

    .bucket-promo-title {
        font-size: 48px;
    }

    .bucket-promo-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .bucket-promo-btn {
        font-size: 20px;
        padding: 14px 40px;
        margin-bottom: 40px;
    }

    .bucket-img-wrapper {
        max-width: 100%;
        margin-bottom: -40px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 10px;
    }

    .card {
        aspect-ratio: auto;
        height: auto;
        padding: 8px;
    }

    .image-container {
        height: 160px;
        flex: none;
    }

    .title {
        font-size: 16px;
        padding: 8px 4px;
    }

    .card-desc {
        font-size: 11px;
    }

    .price-tag {
        font-size: 14px;
        padding: 6px 10px;
    }

    .testimonials-section,
    .location-section {
        padding: 72px 0;
    }

    .testimonials-heading,
    .location-heading {
        text-align: left;
    }

    .testimonials-intro,
    .location-lead {
        font-size: 16px;
    }

    .testimonial-slider {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 10px;
        margin-top: 34px;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .testimonial-track-wrap {
        padding: 10px 0 16px;
    }

    .testimonial-card {
        border-radius: 20px;
        padding: 24px 18px;
        min-height: 260px;
    }

    .testimonial-stars {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .testimonial-text {
        font-size: 17px;
        line-height: 1.55;
    }

    .testimonial-author {
        font-size: 12px;
        margin-top: 20px;
    }

    .location-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .location-card {
        padding: 22px 18px;
    }

    .location-card-title {
        font-size: 22px;
    }

    .location-address {
        font-size: 17px;
    }

    .location-btn {
        width: 100%;
    }

    .location-map-frame,
    .location-map-frame iframe {
        min-height: 340px;
    }

    .offer-toast {
        left: 12px;
        bottom: 12px;
        width: min(340px, calc(100vw - 24px));
    }

    .offer-modal {
        padding: 28px 18px 22px;
    }

    .offer-modal h3 {
        font-size: 26px;
    }

    .offer-modal p {
        font-size: 16px;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-logo {
        height: 140px;
    }

    .footer-bottom {
        padding-top: 14px;
    }

    .footer-credit,
    .footer-address,
    .footer-copy,
    .footer-link {
        text-align: left;
    }

    .footer-column-location {
        justify-self: start;
        max-width: none;
    }
}
