:root {
    --red: #ec3237;
    --red-dark: #c41e23;
    --red-light: #ff6b6e;
    --orange: #f6930f;
    --lime: #c4d601;
    --bg: #faf8f5;
    --bg-card: #ffffff;
    --text: #1a1205;
    --text-muted: #7a6e60;
    --border: #ede8e0;
    --shadow: rgba(236,50,55,0.12);
    --shadow-deep: rgba(26,18,5,0.15);
    --header-h: 80px;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; width: 100%; }
body {
    font-family: 'Outfit', sans-serif;
    background: #fcf9f8;
    color: var(--text);
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Roboto', sans-serif !important; font-weight: 700 !important; letter-spacing: -0.5px; line-height: 1.2; }
p, span, a, button, div, li { font-family: 'Outfit', sans-serif !important; }
h1 { font-size: 2.5rem; font-weight: 800 !important; letter-spacing: -1px; }
h2 { font-size: 2rem; font-weight: 700 !important; letter-spacing: -0.5px; }
h3 { font-size: 1.5rem; font-weight: 700 !important; }
h4 { font-size: 1.25rem; font-weight: 700 !important; }
.material-icons,
.material-symbols-outlined {
    font-family: 'Material Icons' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-flex;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
}
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.text-primary { color: #ec3237 !important; }
.bg-primary { background-color: #ec3237 !important; }
.border-primary { border-color: #ec3237 !important; }
.hover\:text-primary:hover { color: #ec3237 !important; }
header { transition: all 0.3s ease; background: rgba(255,255,255,0.98); backdrop-filter: blur(2px); }

#main-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--header-h);
    background: rgba(250,248,245,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 200;
    transition: box-shadow 0.3s;
}
#main-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.07); }
.header-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.header-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.header-logo-circle {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 2px solid var(--red);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    background: white;
}
.header-logo-circle img { width: 100%; height: 100%; object-fit: cover; }
.desktop-logo-wrap {
    width: 64px !important;
    height: 64px !important;
    transform-origin: center center;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

#mobile-menu .mobile-logo-wrap {
    width: 64px !important;
    height: 64px !important;
}

@media (min-width: 768px) {
    .desktop-logo-wrap {
        width: 104px !important;
        height: 104px !important;
    }
}
.desktop-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
    position: relative;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--red); background: rgba(236,50,55,0.07); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 16px 40px var(--shadow-deep);
    z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s;
}
.nav-dropdown-menu a:hover { background: rgba(236,50,55,0.06); color: var(--red); padding-left: 20px; }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-contact:hover { border-color: var(--red); color: var(--red); background: rgba(236,50,55,0.04); }
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: none;
    border: none;
    transition: background 0.2s;
}
.hamburger:hover { background: rgba(236,50,55,0.08); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

#mobile-menu {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 500;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
    font-family: 'Outfit', sans-serif;
    font-weight: 400 !important;
    font-size: 16px;
    line-height: 24px;
}
#mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}
.mobile-close {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--text);
    transition: all 0.2s;
}
.mobile-close:hover { background: rgba(236,50,55,0.1); color: var(--red); }
.mobile-nav-list { flex: 1; padding: 20px 16px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s;
}
.mobile-nav-link:hover { background: rgba(236,50,55,0.07); color: var(--red); }
.mobile-nav-link i { width: 20px; text-align: center; color: var(--red); }
.mobile-dropdown-btn {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px;
    font-size: 15px; font-weight: 600;
    color: var(--text); background: none; border: none;
    cursor: pointer; width: 100%; border-radius: 12px;
    transition: all 0.2s;
}
.mobile-dropdown-btn:hover { background: rgba(236,50,55,0.07); color: var(--red); }
.mobile-dropdown-btn .left { display: flex; align-items: center; gap: 12px; }
.mobile-dropdown-btn .left i { width: 20px; text-align: center; color: var(--red); }
.mobile-dropdown-btn .chevron { transition: transform 0.3s; font-size: 13px; color: var(--text-muted); }
.mobile-dropdown-btn.expanded .chevron { transform: rotate(180deg); }
.mobile-sub-list { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding-left: 48px; }
.mobile-sub-list.open { max-height: 400px; }
.mobile-sub-list a {
    display: block; padding: 10px 16px;
    font-size: 14px; font-weight: 500;
    color: var(--text-muted); text-decoration: none;
    border-left: 2px solid var(--border); border-radius: 0 8px 8px 0;
    margin-bottom: 4px;
    transition: all 0.15s;
}
.mobile-sub-list a:hover { color: var(--red); border-left-color: var(--red); background: rgba(236,50,55,0.04); padding-left: 20px; }
.mobile-footer { padding: 20px 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.mobile-wa-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px; background: linear-gradient(135deg, #25d366, #128c7e);
    color: white; border-radius: 14px; font-weight: 700; font-size: 15px;
    text-decoration: none; box-shadow: 0 4px 16px rgba(37,211,102,0.3);
    transition: all 0.2s;
}
.mobile-wa-btn:hover { transform: translateY(-2px); }

.hero-slider-container {
    position: relative;
    width: 100vw !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow: hidden;
    margin-top: 96px;
    background: #fcf9f8;
}
.hero-slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); width: 100%; will-change: transform; }
.hero-slide { flex: 0 0 100%; width: 100%; min-width: 100%; }
.hero-slide img { width: 100%; height: auto; max-height: 650px; object-fit: cover; display: block; border-radius: 0 !important; box-shadow: none; }
@media (max-width: 640px) { .hero-slide img { max-height: 400px; } }
.slider-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: #ec3237; border: 2px solid #c4d601; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 20; transition: all 0.25s ease; box-shadow: 0 6px 14px rgba(236,50,55,0.35); color: #c4d601; }
.slider-nav-btn:hover { background: #c4d601; color: #ec3237; transform: translateY(-50%) scale(1.08); }
.slider-nav-btn.prev { left: 20px; }
.slider-nav-btn.next { right: 20px; }
.slider-dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; justify-content: center; gap: 12px; z-index: 20; }
.slider-dot { width: 10px; height: 10px; background: rgba(236,50,55,0.5); border-radius: 50%; cursor: pointer; transition: all 0.2s; border: 1px solid white; }
.slider-dot.active { background: #c4d601; transform: scale(1.3); box-shadow: 0 0 0 2px #ec3237; }
.slide-progress-bar { position: absolute; bottom: 0; left: 0; width: 0%; height: 5px; background: linear-gradient(90deg, #ec3237, #f6930f, #c4d601); z-index: 25; transition: width 0.05s linear; }

.page-hero {
    margin-top: var(--header-h);
    background: #EC3237;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; }
.page-hero::after {
    content: none;
}
.page-hero-inner { max-width: 1360px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }
.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 99px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.page-hero h1 {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
}
.page-hero h1 span { color: var(--red); }
.page-hero p { color: #ffffff; font-size: 16px; max-width: 540px; margin: 0 auto; line-height: 1.7; }
.page-hero .hero-accent { color: #ffffff !important; }
.page-body { max-width: 1360px; margin: 0 auto; padding: 50px 24px 80px; }

.filter-bar {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 36px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.filter-bar-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter-bar-label i { color: var(--red); }
.filter-bar-divider { width: 1px; height: 28px; background: var(--border); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; }
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1.5px solid var(--border);
    border-radius: 99px;
    background: white;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    white-space: nowrap;
}
.filter-chip:hover { border-color: var(--red); color: var(--red); background: rgba(236,50,55,0.04); }
.filter-chip.active { border-color: var(--red); background: var(--red); color: white; }
.filter-chip .chip-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.7; }
.price-filter-wrap { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.price-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
.price-display { font-size: 13px; font-weight: 700; color: var(--red); white-space: nowrap; }
.range-wrap { display: flex; align-items: center; gap: 8px; }
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--red) 0%, var(--red) var(--pct, 50%), #e0d8cf var(--pct, 50%), #e0d8cf 100%);
    border-radius: 4px;
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: white;
    border: 2.5px solid var(--red);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(236,50,55,0.25);
    transition: all 0.15s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); box-shadow: 0 4px 12px rgba(236,50,55,0.4); }
input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: white; border: 2.5px solid var(--red); cursor: pointer; }
.filter-reset-btn {
    padding: 7px 16px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.filter-reset-btn:hover { border-color: var(--red); color: var(--red); background: rgba(236,50,55,0.04); }
.results-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; gap: 12px; flex-wrap: wrap; }
.results-count { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.results-count strong { color: var(--text); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
@media (max-width: 640px) { .product-grid { grid-template-columns: repeat(1, 1fr); gap: 14px; } }
@media (max-width: 400px) { .product-grid { grid-template-columns: repeat(1,1fr); } }

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1.5px solid var(--border);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), border-color 0.3s;
    position: relative;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    animation: fadeInUp 0.5s both;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.12); border-color: rgba(236,50,55,0.25); }
.card-image-wrap { position: relative; overflow: hidden; background: #f5f0ea; height: 240px; flex-shrink: 0; }
.card-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.product-card:hover .card-image-wrap img { transform: scale(1.07); }
.card-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; background: var(--red); color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; border-radius: 99px; box-shadow: 0 2px 8px rgba(236,50,55,0.4); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,18,5,0.7) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; justify-content: center; padding: 20px; }
.product-card:hover .card-overlay { opacity: 1; }
.overlay-actions { display: flex; gap: 10px; }
.overlay-btn { display: flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 99px; font-size: 12px; font-weight: 700; cursor: pointer; text-decoration: none; transition: all 0.2s; border: none; white-space: nowrap; }
.overlay-btn-primary { background: var(--red); color: white; box-shadow: 0 4px 16px rgba(236,50,55,0.4); }
.overlay-btn-primary:hover { background: white; color: var(--red); }
.overlay-btn-secondary { background: rgba(255,255,255,0.2); color: white; border: 1.5px solid rgba(255,255,255,0.5); backdrop-filter: blur(8px); }
.overlay-btn-secondary:hover { background: white; color: var(--text); }
.card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.card-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; color: var(--orange); background: rgba(246,147,15,0.1); padding: 3px 8px; border-radius: 4px; border-left: 2px solid var(--orange); }
.card-title { font-family: 'Roboto', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 8px; }
.card-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border); }
.card-price { font-family: 'Roboto', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); line-height: 1; }
.card-price sup { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 500; vertical-align: super; color: var(--text-muted); }
.card-price small { display: block; font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 400; color: var(--text-muted); margin-top: 2px; }
.card-cta { display: flex; gap: 8px; }
.cta-icon-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 10px; border: 1.5px solid var(--border); background: var(--bg); color: var(--text-muted); cursor: pointer; transition: all 0.2s; font-size: 14px; }
.cta-icon-btn:hover { border-color: var(--red); color: var(--red); background: rgba(236,50,55,0.06); }
.cta-icon-btn.liked { border-color: var(--red); background: rgba(236,50,55,0.08); color: var(--red); }
.cta-main-btn { display: flex; align-items: center; gap: 7px; padding: 9px 18px; background: var(--text); color: white; border: none; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; white-space: nowrap; text-decoration: none; }
.cta-main-btn:hover { background: var(--red); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(236,50,55,0.3); }

.no-results { text-align: center; padding: 80px 24px; grid-column: 1/-1; display: none; }
.no-results-icon { width: 80px; height: 80px; background: rgba(236,50,55,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px; color: var(--red); opacity: 0.6; }
.no-results h3 { font-family: 'Roboto', sans-serif; font-size: 22px; color: var(--text); margin-bottom: 8px; }
.no-results p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.no-results button { padding: 10px 24px; background: var(--red); color: white; border: none; border-radius: 99px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.no-results button:hover { background: var(--red-dark); transform: translateY(-2px); }

footer { background: #ec3237 !important; color: rgba(255,255,255,0.8); margin-top: 80px; }
.footer-brand-section { background: #f5f5e4; width: 100%; padding: 2.5rem 1rem; }
@media (min-width:768px){ .footer-brand-section { width: 35%; } .footer-content-section { width: 65%; } }
.footer-content-section { background: #ec3237; display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.8rem; }
@media (min-width:768px){ .footer-content-section { grid-template-columns: repeat(2,1fr); } }
.footer-col h4 { color: white; font-weight: 700; letter-spacing: 1px; margin-bottom: 1.2rem; }
.footer-col ul li a, .footer-contact-item p, .footer-contact-item i { color: #ffe0e0; transition: 0.2s; }
.footer-col ul li a:hover { color: white; }
.social-icons a { border: 2px solid white; color: white; width: 2.4rem; height: 2.4rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: 0.25s; }
.social-icons a:hover { background: white; color: #ec3237; transform: translateY(-3px); }
.footer-counter-box { background: rgba(255,255,255,0.12); border-radius: 16px; padding: 0.8rem; text-align: center; }
.footer-bottom { background: #1f1f1f !important; color: white; text-align: center; padding: 1rem; font-size: 0.75rem; font-weight: 500; }
.footer-bottom-inner { max-width: 1360px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.3); gap: 8px; flex-wrap: wrap; text-align: center; }
.footer-bottom-inner span { color: var(--red); }

.container-custom { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width:768px){ .container-custom { padding: 0 2rem; } }
section, .hero-slider-container { max-width: 100%; }

.hero-accent { color: #f89310 !important; }
.page-body-compact { padding-bottom: 0; padding-top: 0; }
.price-label-icon { color: var(--red); margin-right: 4px; }
.visitor-count-label { color: #ffe0e0; }
.footer-bottom-custom { text-align: center; padding: 10px; font-size: 14px; background: #111; color: #fff; }
.footer-legal-link { color: #f1c40f; text-decoration: none; margin: 0 5px; }

@media (max-width: 1024px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
    .btn-contact { display: none; }
}
@media (min-width: 768px) {
    #main-header { overflow: visible !important; }
}
@media (max-width: 768px) {
    .filter-bar { flex-direction: column; align-items: flex-start; }
    .filter-bar-divider { display: none; }
}

.product-grid .product-card {
    border: 2px solid #ec3237 !important;
}

.product-grid .product-card:hover {
    border-color: #f6930f !important;
}

.scroll-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 44px; height: 44px;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(236,50,55,0.4);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-2px); }