:root {
    --bg-color: #FCF8F2;
    --header-bg: #FFFFFF;
    --text-dark: #3E2413;
    --text-primary: #523116;
    --text-muted: #8A6E5C;
    --accent-gold: #BC9676;
    --bg-light: #F2EBE1;
    --btn-bg: #3E2413;
    --border-light: #EBE4DB;
    --max-width: 1600px;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    background: var(--bg-color);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================================================================
   ANNOUNCE BAR
   ================================================================ */
.announce-bar {
    background: var(--btn-bg);
    color: #E8D5C4;
    text-align: center;
    padding: 10px 20px;
    font-size: clamp(11px, 1.2vw, 13px);
    letter-spacing: 0.5px;
    word-spacing: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.announce-bar span {
    margin: 0 10px;
    color: var(--accent-gold);
}

/* ================================================================
   HEADER
   ================================================================ */
.header {
    background: var(--header-bg);
    padding: 15px clamp(20px, 4vw, 60px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.header-left {
    flex: 1;
    display: flex;
}

.search-box {
    background: #F6F1EA;
    padding: 10px 16px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-light);
    width: clamp(200px, 20vw, 320px);
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    margin-left: 10px;
    font-size: 14px;
    color: var(--text-dark);
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.header-center {
    flex: 1;
    text-align: center;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2vw, 26px);
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 2.5px;
    white-space: nowrap;
}

.logo-sub {
    font-size: clamp(10px, 1vw, 11px);
    font-style: italic;
    color: var(--text-muted);
    font-family: 'Playfair Display', serif;
    margin-top: 4px;
    letter-spacing: 1px;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    color: var(--text-dark);
}

.cart-icon {
    position: relative;
}

.badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--btn-bg);
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================================
   NAV
   ================================================================ */
.main-nav {
    background: var(--header-bg);
    padding: 18px clamp(20px, 4vw, 60px);
    display: flex;
    justify-content: center;
    gap: clamp(20px, 3vw, 40px);
    border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin: 0 auto;
}

.main-nav a {
    font-size: clamp(11px, 1vw, 12px);
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-gold);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    display: flex;
    height: clamp(400px, 50vw, 600px);
    background: #FFFBF6;
    overflow: hidden;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    padding: 0 clamp(30px, 6vw, 8%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.15;
    margin: 10px 0;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.hero-text p {
    font-size: clamp(14px, 1.2vw, 16px);
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 35px;
}

.btn-dark {
    background: var(--btn-bg);
    color: #fff;
    padding: 14px 36px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-dark:hover {
    background: #5C3A24;
}

.btn-small {
    padding: 10px 28px;
}

.hero-dots {
    margin-top: 40px;
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #D9C8BB;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background: var(--accent-gold);
}

.hero-video {
    flex: 1;
    position: relative;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
}

/* ================================================================
   GLOBAL COMPONENTS
   ================================================================ */
.pattern-border {
    width: 100%;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='20' viewBox='0 0 30 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 2L24 10L15 18L6 10Z' fill='none' stroke='%23C5AE9D' stroke-width='1.2'/%3E%3Ccircle cx='15' cy='10' r='2' fill='%23C5AE9D'/%3E%3Cpath d='M0 10H6M24 10H30' stroke='%23C5AE9D' stroke-width='1.2'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    margin: 6px 0;
    opacity: 0.8;
}

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    padding: 0 clamp(20px, 4vw, 60px);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.section-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.title-underline {
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin-top: 8px;
}

/* ================================================================
   CURATED COLLECTION
   ================================================================ */
.curated {
    max-width: var(--max-width);
    margin: 0 auto;
}

.curated-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(20px, 3vw, 40px) clamp(15px, 3vw, 40px);
    gap: clamp(20px, 3vw, 40px);
    background: #d8d2c8;
}

.preview-box {
    flex: 1;
    min-width: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-box img {
    width: 100%;
    max-width: 500px;
    height: clamp(400px, 45vw, 650px);
    object-fit: contain;
    transition: 0.5s ease;
}

.slider-container {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease;
}

.curated-card {
    flex: 0 0 calc(33.333% - 14px);
    background: #fff;
    padding: clamp(10px, 1.5vw, 15px);
    border-radius: 20px;
    text-align: center;
    opacity: 0.6;
    transition: 0.4s;
    cursor: pointer;
}

.curated-card.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.curated-card img {
    width: 100%;
    height: clamp(120px, 14vw, 200px);
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 12px;
}

.curated-card h3 {
    font-size: clamp(11px, 1.1vw, 14px);
    margin: 8px 0 4px;
    font-family: 'Playfair Display', serif;
}

.curated-card p {
    font-size: clamp(10px, 0.9vw, 12px);
    color: var(--text-muted);
}

/* ================================================================
   PRODUCT GRID
   ================================================================ */
.products {
    padding: clamp(30px, 3vw, 40px) 0;
    max-width: var(--max-width);
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(16px, 2vw, 30px);
    padding: 0 clamp(16px, 3vw, 40px);
}

.product-card {
    cursor: pointer;
    transition: 0.3s;
    background: transparent;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-img-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #eee;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .main-img {
    transform: scale(1.05);
}

.rating-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    letter-spacing: 1px;
    white-space: nowrap;
}

.tag-new {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: 600;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.product-info {
    padding: 0 4px;
}

.product-title {
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Playfair Display', serif;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(13px, 1.1vw, 16px);
    flex-wrap: wrap;
}

.price {
    font-weight: 600;
    color: var(--text-primary);
}

.old-price {
    color: #A69284;
    text-decoration: line-through;
    font-size: clamp(12px, 1vw, 14px);
}

.discount {
    background: #EADDCF;
    color: var(--btn-bg);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

/* Celebration background */
.celebration-bg {
    background: #F9F1E8;
}

/* ================================================================
   BANNER SECTION
   ================================================================ */
.banner-section {
    display: flex;
    gap: clamp(16px, 2vw, 20px);
    padding: clamp(20px, 3vw, 40px) clamp(16px, 3vw, 40px);
    background-color: #F9F1E8;
    max-width: var(--max-width);
    margin: 0 auto;
}

.promo-banner-custom {
    flex: 1;
    background-color: #E8DAD0;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: clamp(20px, 3vw, 40px);
    height: clamp(300px, 30vw, 450px);
    overflow: hidden;
    background-image: url('artisan-illustration-faint.png');
    background-size: cover;
    background-blend-mode: multiply;
    border-radius: 8px;
}

.banner-text-content {
    flex: 1;
    text-align: center;
    z-index: 2;
    padding-bottom: clamp(20px, 3vw, 40px);
}

.banner-text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    color: #4E2C1E;
    margin: 10px 0;
    letter-spacing: 2px;
}

.banner-text-content .overline {
    font-size: clamp(12px, 1.2vw, 16px);
    letter-spacing: 4px;
    color: #4E2C1E;
    margin: 0;
    text-transform: uppercase;
}

.banner-text-content .desc {
    font-size: clamp(12px, 1.1vw, 14px);
    font-style: italic;
    color: #4E2C1E;
}

.banner-image-box {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
}

.banner-image-box img {
    height: clamp(280px, 32vw, 450px);
    width: auto;
    display: block;
    margin-bottom: -40px;
    object-fit: contain;
}

.exclusive-reverse {
    flex-direction: row-reverse;
}

/* ================================================================
   SHOP BY OCCASION
   ================================================================ */
.occasion-grid-container {
    display: grid;
    gap: 20px;
    margin-top: 30px;
    padding: 0 clamp(16px, 3vw, 40px);
}

/* FIRST ROW → ALWAYS 2 SIDE BY SIDE */
.occasion-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* SECOND ROW → 3 ON DESKTOP */
.occasion-grid-container:last-of-type {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card */
.occasion-card-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 350px;
    background: #fdf8f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image (NO CROPPING) */
.occasion-card-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* important */
    object-position: center;
    padding: 10px;
}

/* Tablet */
@media (max-width: 992px) {
    .occasion-grid-container:first-of-type {
        grid-template-columns: 1fr 1fr;
    }

    .occasion-grid-container:last-of-type {
        grid-template-columns: 1fr 1fr;
    }

    .occasion-card-item {
        height: 300px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .occasion-grid-container:first-of-type,
    .occasion-grid-container:last-of-type {
        grid-template-columns: 1fr;
        /* stack all */
    }

    .occasion-card-item {
        height: 260px;
    }
}

/* ================================================================
   VIDEO CALL SECTION
   ================================================================ */
.video-call-section {
    background-color: #F9F1E8;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.video-container-box {
    width: 100%;
    max-width: 1400px;
    height: clamp(350px, 38vw, 500px);
    background: white;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0% 100%, 0% 60%, 12% 60%, 12% 35%, 22% 35%, 22% 20%, 40% 10%, 60% 10%, 78% 20%, 78% 35%, 88% 35%, 88% 60%, 100% 60%, 100% 100%);
    border: 1px solid #D4B996;
}

.video-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0.4) 50%, transparent 80%);
    display: flex;
    align-items: center;
    padding-left: clamp(30px, 6vw, 80px);
}

.video-text-content {
    max-width: 500px;
}

.video-text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.5vw, 56px);
    color: #4E2C1E;
    line-height: 1.1;
    margin-bottom: 20px;
    margin-left: clamp(20px, 7vw, 100px);
    margin-top: clamp(60px, 8vw, 100px);
}

.video-text-content .title-underline {
    margin-left: clamp(20px, 7vw, 100px);
}

.video-text-content p {
    margin-left: clamp(20px, 7vw, 100px);
}

/* ================================================================
   FOOTER
   ================================================================ */
.main-footer {
    background: #2A170F;
    color: #F8F1E9;
    padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px) clamp(20px, 3vw, 40px);
    margin-top: 0;
}

.main-footer .section-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: clamp(30px, 4vw, 60px);
    margin-bottom: clamp(30px, 4vw, 60px);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col.branding .logo-title {
    color: var(--accent-gold);
    margin-bottom: 20px;
    margin-left: 0 !important;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #C5AE9D;
    margin-bottom: 30px;
    margin-left: 0 !important;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 14px;
    color: #F8F1E9;
    text-decoration: none;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
    margin-left: 0 !important;
}

.social-links a:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #C5AE9D;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

.newsletter-box {
    display: flex;
    margin-top: 20px;
    border-bottom: 1px solid #C5AE9D;
}

.newsletter-box input {
    background: transparent;
    border: none;
    color: #FFF;
    padding: 10px 0;
    font-size: 14px;
    width: 100%;
    outline: none;
}

.newsletter-box button {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-box button:hover {
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: clamp(20px, 3vw, 40px);
    border-top: 1px solid rgba(197, 174, 157, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #8C6F5E;
}

.footer-bottom p {
    margin-left: 0 !important;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons span {
    letter-spacing: 1px;
    opacity: 0.6;
}

/* ================================================================
   RESPONSIVE — EXTRA LARGE DESKTOP (1440px+)
   ================================================================ */
@media (min-width: 1440px) {
    .product-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ================================================================
   RESPONSIVE — LARGE DESKTOP
   ================================================================ */
@media (max-width: 1400px) {
    .product-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .curated-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

/* ================================================================
   RESPONSIVE — STANDARD DESKTOP (1200px)
   ================================================================ */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .curated-card {
        flex: 0 0 calc(50% - 10px);
    }

    .banner-image-box img {
        height: clamp(250px, 28vw, 400px);
    }
}

/* ================================================================
   RESPONSIVE — LAPTOP (1024px)
   ================================================================ */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .curated-card {
        flex: 0 0 calc(50% - 10px);
    }

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

    .curated-section {
        flex-direction: column;
    }

    .preview-box {
        width: 100%;
    }

    .preview-box img {
        max-width: 400px;
        height: clamp(350px, 40vw, 500px);
    }

    .slider-container {
        width: 100%;
    }

    .hero {
        height: clamp(350px, 45vw, 500px);
    }

    .hero-text h2 {
        font-size: clamp(26px, 3.5vw, 42px);
    }

    .banner-section {
        gap: 16px;
    }

    .promo-banner-custom {
        height: clamp(280px, 28vw, 380px);
        padding: 24px;
    }
}

/* ================================================================
   RESPONSIVE — TABLET (768px)
   ================================================================ */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        height: auto;
    }

    .hero-text {
        padding: 40px 30px;
        order: 2;
    }

    .hero-video {
        height: 300px;
        order: 1;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 16px;
    }

    .banner-section {
        flex-direction: column;
    }

    .promo-banner-custom {
        height: clamp(300px, 50vw, 400px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
    }

    .exclusive-reverse {
        flex-direction: column;
    }

    .banner-image-box img {
        height: clamp(200px, 40vw, 320px);
        margin-bottom: -20px;
    }

    .video-container-box {
        height: auto;
        min-height: 300px;
        clip-path: none;
        border-radius: 8px;
        margin: 0 16px;
    }

    .video-text-content {
        padding: 40px;
        text-align: center;
    }

    .video-text-content h2 {
        margin-left: 0;
        margin-top: 40px;
        font-size: clamp(28px, 5vw, 40px);
    }

    .video-text-content .title-underline,
    .video-text-content p {
        margin-left: 0;
    }

    .video-content-overlay {
        padding-left: 0;
        justify-content: center;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.5) 70%, transparent 100%);
    }

    .occasion-grid-container:first-of-type,
    .occasion-grid-container:last-of-type {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .section-title h3 {
        margin-left: 20px !important;
    }

    .title-underline {
        margin-left: 20px !important;
    }

    .main-nav {
        gap: 16px;
        padding: 14px 16px;
    }

    .search-box {
        width: 100%;
    }

    .header {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 16px;
    }

    .header-left {
        order: 3;
        flex: 0 0 100%;
    }

    .header-center {
        order: 1;
        flex: 1;
        text-align: left;
    }

    .header-right {
        order: 2;
        flex: 0;
    }
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (480px)
   ================================================================ */
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 12px;
    }

    .curated-card {
        flex: 0 0 calc(100% - 10px);
    }

    .curated-card img {
        height: 150px;
    }

    .preview-box img {
        height: 300px;
    }

    .announce-bar {
        font-size: 10px;
        white-space: normal;
        line-height: 1.5;
    }

    .announce-bar span {
        margin: 0 4px;
    }

    .promo-banner-custom {
        padding: 16px;
        height: auto;
        min-height: 280px;
    }

    .banner-image-box img {
        height: 200px;
    }



    .section-header {
        padding: 0 12px;
        flex-wrap: wrap;
        gap: 12px;
    }
}