@charset "UTF-8";
/*   GLOBALS
========================================================================== */
/* ACCESSIBILITIES */
/* SHORTCUT BUTTON (appears on bottom right of the page) */
/* GULP WARNINGS */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,700,900");
 /* --- RESET & VARIABLE WARNA --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-color: #FFFDF9;       
    --primary-color: #D3756B;   /* Terracotta hangat */
    --accent-color: #F0A04B;    /* Kuning madu panggangan */
    --text-dark: #4A3E3D;       
    --text-light: #7C7370;      
    --card-bg: #FFFFFF;         
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 100px; 
}

/* --- NAVBAR --- */
header {
    background-color: var(--bg-color);
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    height: 45px; 
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-img-placeholder {
    height: 45px;
    width: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

/* --- UTILITY CLASSES --- */
section {
    padding: 80px 8%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
}

/* --- SLIDESHOW BANNER (HERO) --- */
.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #FDF8F4;
    padding: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.slide-text {
    flex: 1;
}

.slogan-badge {
    display: inline-block;
    background-color: rgba(240, 160, 75, 0.15);
    color: #d07e26;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.slide-text h1 span {
    color: var(--primary-color);
}

.slide-text p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 500px;
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-img {
width: 100%;
height: 350px;       /* Sesuaikan tinggi ini dengan tinggi slider Anda */
object-fit: cover;   /* Berfungsi agar foto otomatis terpotong rapi/tidak gepeng */
border-radius: 15px; /* Memberikan efek lengkung halus di pojok gambar */
}

.bread-graphic {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    text-align: center;
    padding: 30px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--primary-color);
    color: white;
}

.prev { left: 2%; }
.next { right: 2%; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-color);
    width: 25px;
    border-radius: 10px;
}

/* --- SEKSI KEUNGGULAN --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform 0.3s;
}

.feature-card:hover { transform: translateY(-5px); }

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #FFFDF9;
    border: 2px dashed var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 28px;
}

.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: 14px; }

/* --- NEWS AREA: HALAL CERTIFICATION --- */
.news-section { background-color: #FFFDF9; }

.news-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #FFF9F3;
    border-radius: 24px;
    border: 1px solid rgba(240, 160, 75, 0.2);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 10px 35px rgba(213, 117, 107, 0.03);
}

.news-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.halal-badge-frame {
    width: 280px;
    height: 380px;
    background-color: #FFFFFF;
    border-radius: 16px;
    border: 8px solid #EFE9E7;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.halal-icon-placeholder {
    width: 100px;
    height: 100px;
    background-color: #E8F5E9;
    color: #2E7D32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 2px solid #4CAF50;
}

.news-content-area { flex: 1.3; }
.news-tag {
    display: inline-block;
    background-color: #E8F5E9;
    color: #2E7D32;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content-area h3 { font-size: 26px; color: var(--text-dark); line-height: 1.3; margin-bottom: 15px; }
.news-content-area p { color: var(--text-light); font-size: 15px; margin-bottom: 15px; }
.halal-meta-list { list-style: none; margin-top: 20px; }
.halal-meta-list li { font-size: 14px; color: var(--text-dark); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.halal-meta-list li::before { content: "✓"; color: #2E7D32; font-weight: 700; }

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1100px; /* Diperlebar sedikit agar muat 4 kolom dengan pas */
    margin: 0 auto;
}

.step-item { flex: 1; text-align: center; }

/* --- 2 CATEGORY PRODUCTS SECTION WITH SCROLL HORIZONTAL --- */
.products-section {
    background-color: #FAF4F0;
    position: relative;
}

/* Navigasi Tab Kategori */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.tab-btn {
    background-color: #EFE9E7;
    color: var(--text-dark);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(211, 117, 107, 0.3);
}

.category-container {
    display: none;
    position: relative;
}

.category-container.active {
    display: block;
}

/* Scroll Wrapper & Track */
.product-scroll-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    padding: 10px 5px 25px 5px;
}

.product-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.product-grid-scroll {
    display: flex;
    gap: 25px;
    width: max-content;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 290px; /* Lebar statis agar scroll konsisten */
    flex-shrink: 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.product-img-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #A08470;
    font-size: 16px;
    text-align: center;
    padding: 15px;
}

.product-img {
width: 100%;
height: 200px;       /* Tinggi area foto menu */
object-fit: cover;   /* Menjaga rasio foto tetap proporsional saat dipotong otomatis */
display: block;
}

.bg-food-1 { background-color: #F5EBE6; }
.bg-food-2 { background-color: #FDF6EC; }
.bg-food-3 { background-color: #EFE9E7; }
.bg-food-4 { background-color: #FCECDD; }
.bg-drink-1 { background-color: #E3F2FD; }
.bg-drink-2 { background-color: #FFF3E0; }
.bg-drink-3 { background-color: #E8F5E9; }
.bg-drink-4 { background-color: #F3E5F5; }

.product-info { padding: 22px; }
.product-info h3 { font-size: 19px; margin-bottom: 8px; }
.product-info p { color: var(--text-light); font-size: 13.5px; margin-bottom: 20px; height: 44px; overflow: hidden; }
.product-bottom { display: flex; justify-content: space-between; align-items: center; }
.price { font-size: 18px; font-weight: 700; }

/* Tombol Panah Kiri Kanan Menu */
.menu-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    color: var(--text-dark);
    border: 1px solid rgba(0,0,0,0.06);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-arrow-btn:hover { background: var(--primary-color); color: white; }
.menu-arrow-left { left: -25px; }
.menu-arrow-right { right: -25px; }

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn:hover { background-color: #be6259; transform: translateY(-2px); }

.btn-sm {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-sm:hover { background-color: var(--accent-color); color: white; }

.quantity-control { display: flex; align-items: center; gap: 10px; }
.btn-qty {
    background-color: #EFE9E7;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
    transition: background 0.2s;
}
.btn-qty:hover { background-color: var(--accent-color); color: white; }

/* --- ALUR PEMESANAN --- */
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.step-item { flex: 1; text-align: center; }
.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px auto;
    box-shadow: 0 5px 15px rgba(240, 160, 43, 0.3);
}

.step-item h4 { font-size: 18px; margin-bottom: 8px; }
.step-item p { font-size: 14px; color: var(--text-light); }

/* --- INTERACTIVE TESTIMONIALS SLIDER --- */
.testimonials-section { background-color: #FFF9F3; position: relative; }
.testimonials-slider-container { position: relative; max-width: 1200px; margin: 0 auto; overflow: hidden; padding: 10px 0; }
.testimonials-track { display: flex; gap: 30px; transition: transform 0.5s ease-in-out; will-change: transform; }

.testi-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
    position: relative;
    flex: 0 0 calc(33.333% - 20px);
    box-sizing: border-box;
}

.quote-icon { font-size: 40px; color: rgba(213, 117, 107, 0.15); position: absolute; top: 15px; left: 20px; line-height: 1; }
.testi-text { font-style: italic; font-size: 14px; color: var(--text-dark); margin-bottom: 20px; position: relative; z-index: 2; height: 66px; overflow: hidden; }
.testi-user { display: flex; align-items: center; gap: 15px; }
.user-avatar { width: 45px; height: 45px; background-color: #EFE9E7; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--primary-color); }
.user-info h5 { font-size: 15px; margin-bottom: 2px; }
.user-info span { font-size: 12px; color: var(--text-light); }

.testi-nav {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    background: var(--card-bg);
    color: var(--text-dark);
    border: 1px solid rgba(0,0,0,0.05);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-nav:hover { background: var(--primary-color); color: white; }
.testi-prev { left: 2%; }
.testi-next { right: 2%; }

/* --- SEKSI GALERI INSTAGRAM --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.gallery-item { position: relative; border-radius: 15px; overflow: hidden; height: 240px; box-shadow: 0 5px 15px rgba(0,0,0,0.02); text-decoration: none; }
.gi-1 { background-color: #FCECDD; }
.gi-2 { background-color: #FEF1E6; }
.gi-3 { background-color: #F9E4D4; }
.gi-4 { background-color: #F7D6BF; }

.gallery-content-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 14px; color: #A68A78; font-weight: 500; text-align: center; padding: 20px; }
.gallery-content-placeholder span { font-size: 24px; margin-bottom: 10px; }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(213, 117, 107, 0.85); display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.instagram-icon { font-size: 28px; margin-bottom: 5px; }
.gallery-overlay p { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }

/* --- INFO PENGIRIMAN & FAQ --- */
.faq-section { background-color: #FAF4F0; }
.info-shipping { max-width: 800px; margin: 0 auto; background: var(--card-bg); border-radius: 20px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.02); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.info-box h4 { font-size: 18px; margin-bottom: 12px; color: var(--primary-color); display: flex; align-items: center; gap: 10px; }
.info-box p { font-size: 14px; color: var(--text-light); margin-bottom: 8px; }

/* --- POP-UP CONTACT US MODAL --- */
.contact-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(74, 62, 61, 0.5); display: flex; align-items: center; justify-content: center; z-index: 3000; opacity: 0; pointer-events: none; transition: all 0.3s ease-in-out; padding: 20px; }
.contact-modal.active { opacity: 1; pointer-events: auto; }
.modal-content { background-color: var(--card-bg); width: 100%; max-width: 500px; border-radius: 24px; padding: 35px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); position: relative; transform: translateY(-30px); transition: transform 0.3s ease-in-out; }
.contact-modal.active .modal-content { transform: translateY(0); }
.close-modal { position: absolute; top: 20px; right: 20px; background: #FAF4F0; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; cursor: pointer; color: var(--text-dark); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.close-modal:hover { background-color: var(--primary-color); color: white; }
.modal-header { margin-bottom: 25px; text-align: center; }
.modal-header h3 { font-size: 24px; color: var(--text-dark); margin-bottom: 5px; }
.modal-header p { font-size: 14px; color: var(--text-light); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.form-control { width: 100%; padding: 12px 16px; border: 2px solid #EFE9E7; border-radius: 12px; font-family: inherit; font-size: 14px; color: var(--text-dark); background-color: #FFFDF9; transition: border-color 0.2s; }
.form-control:focus { outline: none; border-color: var(--primary-color); }
textarea.form-control { resize: none; height: 100px; }
.btn-submit-contact { width: 100%; background-color: var(--primary-color); color: white; border: none; padding: 14px; border-radius: 30px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; }
.btn-submit-contact:hover { background-color: #be6259; }

/* --- BAR NOTIFIKASI STICKY CART --- */
.sticky-cart-bar { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #4A3E3D; color: #FFFDF9; padding: 15px 8%; display: flex; justify-content: space-between; align-items: center; z-index: 2000; box-shadow: 0 -5px 25px rgba(0,0,0,0.15); transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.sticky-cart-bar.show { transform: translateY(0); }
.cart-summary-text { display: flex; flex-direction: column; }
.cart-summary-text .item-count { font-size: 14px; color: #E2938A; font-weight: 600; }
.cart-summary-text .total-price { font-size: 20px; font-weight: 700; color: var(--accent-color); }
.cart-actions { display: flex; align-items: center; gap: 15px; }
.btn-clear { background-color: transparent; color: #E2938A; border: 1px dashed #E2938A; padding: 10px 20px; border-radius: 30px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.2s; }
.btn-clear:hover { background-color: rgba(226, 147, 138, 0.1); color: #FFFDF9; border-style: solid; }
.btn-checkout { background-color: var(--primary-color); color: white; border: none; padding: 12px 28px; border-radius: 30px; font-weight: 700; font-size: 15px; cursor: pointer; transition: background 0.2s, transform 0.2s; display: flex; align-items: center; gap: 10px; }
.btn-checkout:hover { background-color: #be6259; transform: scale(1.03); }

/* --- FOOTER MODEREN --- */
footer {
    background-color: #3d3231;
    color: #FFFDF9;
    text-align: center;
    padding: 50px 5% 30px 5%;
    font-size: 14px;
}

/* Seksi Sosmed Follow Us */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 25px;
    color: #FFFDF9;
    text-decoration: none;
    font-weight: 500;
    font-size: 13.5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-link span {
    font-size: 18px;
}

.footer-nav {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 25px;
}

.footer-nav a { text-decoration: none; color: #D3C3C1; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent-color); }
.copyright-text { color: #A39694; font-size: 13px; }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    header { padding: 15px 5%; }
    .nav-links { display: none; }
    section { padding: 50px 5%; }
    
    .slider-container { height: 550px; }
    .slide-content { flex-direction: column; text-align: center; padding-top: 30px; }
    .slide-text h1 { font-size: 32px; }
    .slide-text p { margin: 0 auto 20px auto; }
    .bread-graphic { width: 200px; height: 200px; font-size: 14px; }
    .slider-nav { width: 40px; height: 40px; font-size: 16px; }

    .news-container { flex-direction: column; padding: 25px; gap: 25px; }
    .halal-badge-frame { width: 100%; height: auto; padding: 30px 20px; }

    /* Penyesuaian panah pada mobile agar tidak keluar layar */
    .menu-arrow-btn { display: none; } /* Pengguna mobile disarankan swipe sentuh langsung */
    .product-card { width: 260px; }

    .steps-container { flex-direction: column; gap: 40px; }
    .info-grid { grid-template-columns: 1fr; gap: 25px; }
    .info-shipping { padding: 25px; }
    
    .testi-card { flex: 0 0 100%; }
    .testi-nav { width: 36px; height: 36px; font-size: 14px; }
    .testi-prev { left: 0%; }
    .testi-next { right: 0%; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    
    .sticky-cart-bar { padding: 15px 5%; flex-direction: column; gap: 12px; text-align: center; }
    .cart-actions { width: 100%; justify-content: center; }
    .cart-summary-text { font-size: 18px; }

    .footer-socials { flex-direction: column; align-items: center; gap: 10px; }
    .social-link { width: 200px; justify-content: center; }
    .footer-nav { gap: 15px; }
}