
:root {
    --orange: #fd7e14;
    --yellow: #ffc107;
    --soft-bg: #fbf9f4;
    --card-bg: rgba(255, 255, 255, 0.75);
    --glass-edge: rgba(253, 126, 20, 0.1);
    --text-dark: #1a1e2b;
    --text-soft: #2f3545;
    --shadow-futuristic: 0 20px 35px -8px rgba(253, 126, 20, 0.15), 0 8px 18px rgba(0,0,0,0.02);
    --border-glow: 1px solid rgba(255, 193, 7, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--soft-bg);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* ===== TOP BAR REFINADA ===== */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 2px solid var(--yellow);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange) 20%, var(--yellow) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 2px 4px rgba(253,126,20,0.3));
}
.logo span {
    font-size: 1rem;
    background: none;
    color: var(--text-soft);
    font-weight: 400;
    margin-left: 0.2rem;
}

.search-area {
    width: 40%;
    position: relative;
}
.search-area i {
    position: absolute;
    left: 18px;
    top: 13px;
    color: var(--orange);
    font-size: 1rem;
    opacity: 0.7;
}
.search-area input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border-radius: 60px;
    border: 1.5px solid rgba(253,126,20,0.2);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    font-size: 1rem;
    transition: 0.25s;
    box-shadow: 0 2px 10px rgba(255,193,7,0.1);
}
.search-area input:focus {
    border-color: var(--orange);
    outline: none;
    box-shadow: 0 0 0 4px rgba(253,126,20,0.15);
}

.header-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}
.header-actions .icon-btn {
    background: transparent;
    border: none;
    font-size: 1.4rem;
    color: var(--text-dark);
    position: relative;
    cursor: pointer;
    transition: 0.2s;
}
.header-actions .icon-btn:hover { color: var(--orange); }
.badge-cart {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--orange);
    color: white;
    border-radius: 40px;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
}

/* ===== HERO SLIDER PROFISSIONAL ===== */
.hero {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
    box-shadow: var(--shadow-futuristic);
    display: flex;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.carousel-card {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.carousel-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 600px;
    color: white;
    z-index: 2;
    animation: fadeUp 0.8s;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-content span {
    color: var(--yellow);
    background: linear-gradient(145deg, #ffd966, #ffc107);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content button {
    padding: 14px 32px;
    border: none;
    background: linear-gradient(45deg, var(--orange), var(--yellow));
    color: #111;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px -8px rgba(253,126,20,0.5);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-content button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 25px -8px #fd7e14;
}

.control-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 28px;
    padding: 10px 18px;
    cursor: pointer;
    z-index: 10;
    border-radius: 60px;
    transition: 0.2s;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-prev { left: 20px; }
.button-next { right: 20px; }

.control-button:hover {
    background: var(--orange);
    border-color: white;
}

.indicator-panel {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
}

.indicator-point {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid transparent;
}

.indicator-point.active {
    background: var(--yellow);
    width: 30px;
    box-shadow: 0 0 12px #ffc107;
}

/* ===== SEGUNDO SLIDER (SWIPER) ===== */
.second-slider-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.swiper-slide-custom {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-futuristic);
    background: linear-gradient(145deg, #fffaf2, #fff3e0);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
    height: auto;
    min-height: 280px;
}

.slide-content {
    flex: 1;
    padding-right: 1.5rem;
}

.slide-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    background: linear-gradient(130deg, #fd7e14, #ffb347);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.slide-content p {
    font-size: 1.2rem;
    color: #4a4e5e;
    margin-bottom: 1rem;
}

.price-kz {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    margin: 1rem 0;
}

.btn-slide {
    background: var(--orange);
    border: none;
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 5px 15px rgba(253,126,20,0.4);
}

.btn-slide:hover {
    background: #e56700;
    transform: scale(1.03);
}

.slide-image img {
    max-width: 280px;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 12px 15px rgba(253,126,20,0.2));
    border-radius: 30px;
}

/* ===== SEÇÃO DE IMPACTO ===== */
.impact-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 2.5rem auto;
    padding: 0 1rem;
}

.impact-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    border: var(--border-glow);
    border-radius: 36px;
    padding: 1.8rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-futuristic);
    transition: 0.3s;
    border-bottom: 4px solid var(--orange);
}

.impact-card:hover {
    transform: translateY(-6px);
    background: white;
}

.impact-card i {
    font-size: 2.6rem;
    background: linear-gradient(45deg, var(--orange), var(--yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.8rem;
}

.impact-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

.impact-card p {
    color: #5f6479;
    font-size: 0.95rem;
}

/* ===== FILTROS ===== */
.filter-bar {
    max-width: 1400px;
    margin: 2rem auto 0.5rem;
    padding: 0.5rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255,255,240,0.6);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    border: 1px solid var(--orange);
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem 1.8rem;
}

.filter-group select, .filter-group input {
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    border: 1px solid #fd7e1440;
    background: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    outline: none;
    cursor: pointer;
}

.filter-group select {
    min-width: 140px;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23fd7e14" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.filter-group input {
    min-width: 200px;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-left: auto;
}

.filter-tag {
    background: white;
    border: 1px solid var(--orange);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange);
    cursor: pointer;
    transition: 0.2s;
}

.filter-tag.active, .filter-tag:hover {
    background: var(--orange);
    color: white;
}

/* ===== SWIPER DE PRODUTOS ===== */
.section-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 2rem 1rem 1rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.5rem;
}

.section-title h3 {
    font-size: 1.9rem;
    font-weight: 700;
    background: linear-gradient(to right, #fd7e14, #ffc107);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-title h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--orange);
    border-radius: 4px;
    margin-top: 4px;
}

.section-title a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 2px;
}

.product-swiper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 1rem 2rem;
    overflow: visible;
}

.product-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 28px;
    padding: 1rem 0.8rem 1.2rem;
    border: 1px solid rgba(253,126,20,0.15);
    box-shadow: 0 15px 25px -12px rgba(255,193,7,0.2);
    transition: 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 25px 30px -8px #fd7e14;
    background: rgba(255, 255, 255, 0.95);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
}

.badge {
    background: var(--orange);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 40px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.3);
}

.badge.yellow { background: var(--yellow); color: #1e1e2a; }
.badge.purple { background: #8b5cf6; }

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8ede1;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.8rem 0 0.8rem;
    padding: 0.8rem;
}

.product-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 6px 8px #fd7e1430);
    transition: 0.2s;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-brand {
    font-size: 0.7rem;
    font-weight: 600;
    color: #fd7e14;
    text-transform: uppercase;
}

.product-name {
    font-weight: 700;
    font-size: 1rem;
    margin: 0.1rem 0 0.2rem;
    color: #1a1e2b;
}

.product-sku {
    font-size: 0.6rem;
    color: #8d93a7;
    margin-bottom: 0.2rem;
}

.product-price-block {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.3rem 0.6rem;
    margin: 0.2rem 0;
}

.product-price { font-size: 1.3rem; font-weight: 700; color: var(--orange); }
.old-price { font-size: 0.8rem; text-decoration: line-through; color: #9da1b5; }
.promo-price { font-size: 1.3rem; font-weight: 700; color: #e53935; }

.stock-info {
    font-size: 0.7rem;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    margin-top: 0.2rem;
}

.stock-info.low { background: #ffecb3; color: #b26a00; }

/* Swiper navigation */
.swiper-button-next, .swiper-button-prev {
    color: var(--orange) !important;
    background: white;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--orange);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: var(--orange) !important;
}

/* ===== CARRINHO LATERAL ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: -10px 0 40px rgba(253,126,20,0.2);
    border-left: 3px solid var(--yellow);
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
}

.cart-sidebar.open { right: 0; }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #fd7e1430;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.cart-header h2 {
    font-size: 1.6rem;
    background: linear-gradient(145deg, #fd7e14, #ffc107);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cart-close {
    font-size: 2rem;
    cursor: pointer;
    color: var(--orange);
    line-height: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cart-item {
    display: flex;
    gap: 0.8rem;
    background: #fef7ed;
    border-radius: 28px;
    padding: 0.8rem;
    border: 1px solid #fd7e1430;
    align-items: center;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
}

.cart-item-img img { max-width: 90%; max-height: 90%; object-fit: contain; }

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.cart-item-price {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.4rem;
}

.cart-item-actions button {
    background: white;
    border: 1px solid var(--orange);
    width: 28px;
    height: 28px;
    border-radius: 30px;
    font-weight: 700;
    color: var(--orange);
    cursor: pointer;
    transition: 0.15s;
}

.cart-item-actions button:hover {
    background: var(--orange);
    color: white;
}

.cart-item-actions span {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-footer {
    border-top: 2px solid #fd7e1430;
    padding-top: 1.2rem;
    margin-top: 1rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.btn-cart-checkout {
    width: 100%;
    background: linear-gradient(145deg, var(--orange), #e56700);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.2s;
}

.btn-cart-checkout:hover { filter: brightness(1.08); transform: scale(1.02); }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 25px;
    background: #25d366;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37,211,102,0.4);
    z-index: 100;
    transition: 0.25s;
    border: 2px solid white;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background: #20b859;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

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

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 48px;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem 2rem 2rem 2.5rem;
    border: 2px solid var(--yellow);
    box-shadow: 0 40px 60px rgba(253,126,20,0.3);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--orange);
    cursor: pointer;
    background: rgba(255,255,255,0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    border: 1px solid var(--orange);
    z-index: 20;
}

.modal-close:hover {
    background: var(--orange);
    color: white;
}

.modal-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 2.5rem;
    margin-top: 1rem;
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.modal-main-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8ede1;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(253,126,20,0.2);
    padding: 1rem;
}

.modal-main-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.modal-thumbnails {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.thumb {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: #f8ede1;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.15s;
    padding: 0.4rem;
}

.thumb img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.thumb.active {
    border-color: var(--orange);
    background: white;
    box-shadow: 0 0 0 3px #fd7e1430;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-brand {
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.modal-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.modal-sku {
    color: #6b7280;
    font-size: 0.85rem;
}

.modal-pricing {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    margin: 0.5rem 0;
}

.modal-current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
}

.modal-old-price {
    font-size: 1.3rem;
    color: #aaa;
    text-decoration: line-through;
}

.modal-stock {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: #f3f4f6;
    border-radius: 60px;
    width: fit-content;
}

.modal-description {
    border-top: 2px dashed #fd7e1430;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.modal-description h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.modal-metrics {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0.8rem;
    background: #fef9f2;
    padding: 1rem;
    border-radius: 32px;
}

.btn-add-cart {
    background: var(--orange);
    border: none;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid var(--yellow);
}

.btn-add-cart:hover {
    background: #e56700;
    transform: scale(1.02);
}

/* ===== RODAPÉ ===== */
footer {
    background: rgba(255,255,240,0.7);
    backdrop-filter: blur(6px);
    border-top: 2px solid rgba(253,126,20,0.2);
    padding: 2.5rem 1.5rem 1.5rem;
    margin-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col .logo {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: #4f5466;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero { height: 380px; }
    .search-area { width: 100%; order: 3; margin-top: 0.8rem; }
    .modal-layout { grid-template-columns: 1fr; }
    .indicator-panel { bottom: 15px; }
    .cart-sidebar { width: 100%; right: -100%; }
    .filter-bar { flex-direction: column; align-items: stretch; border-radius: 40px; }
    .filter-tags { margin-left: 0; }
    .swiper-slide-custom { flex-direction: column; text-align: center; padding: 1.5rem; }
    .slide-content { padding-right: 0; }
}
