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

html {
    scroll-behavior: smooth;
}

:root {
    --surface-dark: rgba(26, 26, 26, 0.97);
    --surface-dark-deep: #141414;
    --surface-dark-elevated: #222222;
    --surface-dark-card: #252525;
    --surface-dark-border: rgba(255, 255, 255, 0.1);
    --surface-dark-text: #fafafa;
    --surface-dark-text-muted: rgba(255, 255, 255, 0.62);
    --surface-dark-accent: #e8b4b8;
    --surface-dark-accent-soft: #f0c8cc;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    background-color: #faf8f8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Buttons ── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.35s ease;
    border: 1.5px solid transparent;
    text-transform: uppercase;
}

.btn-primary {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

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

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1fb855;
    border-color: #1fb855;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 42px;
    font-size: 13px;
}

/* ── WhatsApp Float ── */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes whatsappPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── Mobile Drawer ── */

.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 10100;
    pointer-events: none;
    visibility: hidden;
}

.mobile-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-drawer__backdrop {
    position: fixed;
    inset: 0;
    z-index: 10100;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.35s ease;
    border: none;
    padding: 0;
    cursor: pointer;
}

.mobile-drawer.is-open .mobile-drawer__backdrop {
    opacity: 1;
}

.mobile-drawer__panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10101;
    width: 400px;
    max-width: 100%;
    height: 100%;
    height: 100dvh;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
}

.mobile-drawer.is-open .mobile-drawer__panel {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: max(16px, env(safe-area-inset-top)) 20px 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2426 100%);
    flex-shrink: 0;
}

.mobile-drawer__logo img {
    height: 28px;
    width: auto;
    display: block;
}

.mobile-drawer__close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 18px;
    transition: background 0.2s ease;
}

.mobile-drawer__close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.mobile-drawer__search {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 20px 0;
    padding: 0 16px;
    height: 48px;
    background: #f8f4f4;
    border: 1px solid #efe4e6;
    border-radius: 12px;
    flex-shrink: 0;
}

.mobile-drawer__search i {
    color: #b76e79;
    font-size: 15px;
}

.mobile-drawer__search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    min-width: 0;
}

.mobile-drawer__search input::placeholder {
    color: #999;
}

.mobile-drawer__search input:focus {
    outline: none;
}

.mobile-drawer__body {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px 0 24px;
    -webkit-overflow-scrolling: touch;
}

.mobile-drawer__nav {
    display: flex;
    flex-direction: column;
}

.mobile-drawer__link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #2a2a2a;
    border-bottom: 1px solid #f5efef;
    transition: color 0.2s ease, background 0.2s ease;
}

.mobile-drawer__link i {
    width: 20px;
    text-align: center;
    color: #b76e79;
    font-size: 16px;
}

.mobile-drawer__link:active {
    background: #fdf8f8;
    color: #b76e79;
}

.mobile-drawer__group {
    border-bottom: 1px solid #f5efef;
}

.mobile-drawer__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #2a2a2a;
    background: none;
    text-align: left;
}

.mobile-drawer__trigger-label {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-drawer__trigger-label i {
    width: 20px;
    text-align: center;
    color: #b76e79;
    font-size: 16px;
}

.mobile-drawer__chevron {
    font-size: 12px;
    color: #999;
    transition: transform 0.28s ease;
}

.mobile-drawer__group.is-open .mobile-drawer__chevron {
    transform: rotate(180deg);
    color: #b76e79;
}

.mobile-drawer__sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-drawer__group.is-open .mobile-drawer__sub {
    max-height: 2000px;
}

.mobile-drawer__quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 16px;
}

.mobile-drawer__chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #555;
    background: #f8f4f4;
    border-radius: 999px;
    border: 1px solid #efe4e6;
    transition: all 0.2s ease;
}

.mobile-drawer__chip--primary {
    background: #b76e79;
    border-color: #b76e79;
    color: #fff;
}

.mobile-drawer__section-title {
    padding: 8px 20px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #999;
}

.mobile-drawer__cat-list {
    list-style: none;
    margin: 0;
    padding: 0 12px 8px;
}

.mobile-drawer__cat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px;
    border-radius: 10px;
    color: #333;
    font-size: 14px;
    transition: background 0.2s ease;
}

.mobile-drawer__cat img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f5f5f5;
}

.mobile-drawer__cat span {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
}

.mobile-drawer__cat i {
    font-size: 10px;
    color: #ccc;
}

.mobile-drawer__cat:active {
    background: #fdf8f8;
}

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

.mobile-drawer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #faf7f7;
    border: 1px solid #f0e4e6;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #444;
    min-width: 0;
}

.mobile-drawer__brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #fff;
}

.mobile-drawer__brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-drawer__brand.is-house-brand {
    border-color: rgba(183, 110, 121, 0.45);
    background: linear-gradient(135deg, #fff 0%, #fdf5f6 100%);
}

.mobile-drawer__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px max(16px, env(safe-area-inset-bottom));
    border-top: 1px solid #f0e4e6;
    background: #faf7f7;
    flex-shrink: 0;
}

.mobile-drawer__lang {
    border-color: #e8d8db;
}

.mobile-drawer__lang a {
    color: #888;
}

.mobile-drawer__lang a.active {
    background: #b76e79;
    color: #fff;
}

.mobile-drawer__wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #25d366;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
}

.mobile-drawer__wa i {
    font-size: 18px;
}

html.mobile-nav-open {
    overflow: hidden;
    height: 100%;
}

html.mobile-nav-open body {
    overflow: visible !important;
    touch-action: none;
    position: fixed;
    top: calc(-1 * var(--scroll-lock-y, 0px));
    left: 0;
    right: 0;
    width: 100%;
}

body.mobile-nav-open {
    touch-action: none;
}

body.mobile-nav-open .main-nav.sticky {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--surface-dark) !important;
    z-index: 1000;
}

body.mobile-nav-open .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mobile-overlay {
    display: none;
}

@media (min-width: 769px) {
    .mobile-drawer {
        display: none;
    }
}


/* ── Header Top Bar ── */

.page-home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9990;
}

.page-inner .site-header {
    position: relative;
    z-index: 9990;
}

.page-inner .main-nav {
    background: var(--surface-dark);
}

.page-inner .header-top {
    background: var(--surface-dark);
}

.header-top {
    background: var(--surface-dark);
    color: var(--surface-dark-text);
    padding: 6px 0;
    font-size: 12px;
    letter-spacing: 0.3px;
    border-bottom: 1px solid var(--surface-dark-border);
}

.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-left a {
    color: var(--surface-dark-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.header-top-left a:hover {
    color: var(--surface-dark-accent);
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    overflow: hidden;
}

.lang-switcher a {
    padding: 3px 10px;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.lang-switcher a.active {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.lang-switcher a:hover {
    color: #fff;
}

.social-links-header a {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    transition: color 0.3s;
}

.social-links-header a:hover {
    color: var(--surface-dark-accent);
}

/* ── Main Navigation ── */

.main-nav {
    background: transparent;
    padding: 16px 0;
    box-shadow: none;
    border-bottom: none;
    position: relative;
    z-index: 1000;
    transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 0;
    background: var(--surface-dark) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15);
    z-index: 9995;
}

.main-nav.sticky + .nav-spacer {
    display: block;
}

.nav-spacer {
    display: none;
}

.page-home .nav-spacer {
    display: none !important;
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

/* Logo */

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: #b76e79;
    letter-spacing: 4px;
}

/* Nav Menu */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    position: static;
}

.nav-menu > li > a {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #e8b4b8;
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

.nav-menu > li > a:hover {
    color: #fff;
}

/* Mega Menu v2 */

.has-mega-menu {
    position: static;
}

.mega-menu-trigger {
    gap: 5px;
}

.mega-chevron {
    font-size: 10px;
    transition: transform 0.25s ease;
}

.has-mega-menu:hover .mega-chevron,
.has-mega-menu.mega-open .mega-chevron,
.has-mega-menu:focus-within .mega-chevron {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 100vw;
    background: linear-gradient(180deg, #fff 0%, #fdfafa 100%);
    border-top: 1px solid rgba(183, 110, 121, 0.18);
    box-shadow: 0 24px 60px rgba(36, 20, 24, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 200;
}

.has-mega-menu:hover .mega-menu,
.has-mega-menu.mega-open .mega-menu,
.has-mega-menu:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) minmax(240px, 300px);
    gap: 0;
    padding: 22px 0 26px;
    align-items: stretch;
}

.mega-panel {
    min-width: 0;
}

.mega-panel-promo {
    padding-right: 28px;
    border-right: 1px solid #f0e4e6;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mega-promo-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 18px;
    border-radius: 14px;
    background: linear-gradient(145deg, #2a2224 0%, #4a3539 55%, #b76e79 100%);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mega-promo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(183, 110, 121, 0.35);
    color: #fff;
}

.mega-promo-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    opacity: 0.75;
}

.mega-promo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.mega-promo-desc {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.88;
    max-width: 20em;
}

.mega-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.mega-promo-cta i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.mega-promo-card:hover .mega-promo-cta i {
    transform: translateX(4px);
}

.mega-quick-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #555;
    background: #faf5f6;
    border: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.mega-quick-link:hover {
    color: #b76e79;
    border-color: #f0dde0;
    background: #fff;
}

.mega-quick-link i {
    width: 16px;
    color: #b76e79;
    font-size: 12px;
}

.mega-panel-meta {
    margin: auto 0 0;
    font-size: 11px;
    color: #999;
    letter-spacing: 0.2px;
}

.mega-panel-categories {
    padding: 0 28px;
    border-right: 1px solid #f0e4e6;
}

.mega-panel-brands {
    padding-left: 24px;
}

.mega-panel-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.mega-panel-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #b76e79;
    margin: 0;
}

.mega-panel-link {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.mega-panel-link:hover {
    color: #b76e79;
}

.mega-panel-hint {
    font-size: 11px;
    color: #aaa;
}

.mega-cat-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 20px;
}

.mega-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-cat-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    margin: 0 -8px;
    border-radius: 8px;
    color: #444;
    font-size: 13px;
    line-height: 1.3;
    transition: background 0.18s ease, color 0.18s ease;
}

.mega-cat-link:hover {
    background: #faf5f6;
    color: #b76e79;
}

.mega-cat-thumb {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5ecee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-cat-letter {
    font-size: 13px;
    font-weight: 600;
    color: #b76e79;
}

.mega-cat-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mega-brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.mega-brand-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #f3e8ea;
    background: #fff;
    color: #444;
    font-size: 12px;
    font-weight: 500;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mega-brand-card:hover {
    border-color: #e8c4ca;
    box-shadow: 0 6px 16px rgba(183, 110, 121, 0.12);
    transform: translateY(-1px);
    color: #b76e79;
}

.mega-brand-card.is-house-brand {
    border-color: #e0b8bf;
    background: linear-gradient(135deg, #fff 0%, #fdf5f6 100%);
}

.mega-brand-logo {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    background: #faf5f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.mega-brand-name {
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 1200px) {
    .mega-menu-inner {
        grid-template-columns: 220px minmax(0, 1fr) 260px;
    }

    .mega-cat-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .mega-menu-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 20px;
    }

    .mega-panel-promo,
    .mega-panel-categories {
        border-right: none;
        padding-right: 0;
        padding-bottom: 16px;
        border-bottom: 1px solid #f0e4e6;
    }

    .mega-panel-brands {
        padding-left: 0;
    }

    .mega-brand-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Nav Right */

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.nav-search {
    position: relative;
}

.nav-search input {
    width: 170px;
    padding: 8px 36px 8px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    font-size: 11px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-search input::placeholder {
    color: rgba(255,255,255,0.4);
}

.nav-search input:focus {
    border-color: rgba(255,255,255,0.5);
    width: 210px;
    background: rgba(255,255,255,0.12);
}

.nav-search button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    padding: 0;
    transition: color 0.3s;
}

.nav-search:focus-within button {
    color: rgba(255,255,255,0.8);
}

/* Mobile Toggle */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    background: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ── */

.hero {
    position: relative;
    height: 100vh;
    background: #0e0e0e;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    mix-blend-mode: screen;
    opacity: 0.7;
    pointer-events: none;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 150px;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: #fff;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #e8b4b8;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.2s forwards;
}

.hero-title {
    font-size: 52px;
    color: #fff;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 1px;
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 35px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.8s forwards;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    background: #fff;
    border: none;
    transition: all 0.4s ease;
}

.btn-hero-primary:hover {
    background: #e8b4b8;
    color: #1a1a1a;
    letter-spacing: 2.5px;
}

.btn-hero-primary i {
    font-size: 10px;
    transition: transform 0.3s;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.4s ease;
}

.btn-hero-wa:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 35px;
    opacity: 0;
    animation: fadeUp 0.6s ease 1s forwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: #e8b4b8;
    line-height: 1.1;
}

.hero-stat span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

/* Hero Showcase (right side trending products) */

.hero-showcase {
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-showcase-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 18px;
}

.hero-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.showcase-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.showcase-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(232,180,184,0.3);
    transform: translateY(-3px);
}

.showcase-img {
    aspect-ratio: 1;
    overflow: hidden;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    opacity: 0.9;
}

.showcase-item:hover .showcase-img img {
    transform: scale(1.06);
    opacity: 1;
}

.showcase-name {
    display: block;
    padding: 10px 12px;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: calc(50% - 14px);
    z-index: 5;
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.6s ease 1.4s forwards;
    transition: border-color 0.3s;
}

.hero-scroll-down:hover {
    border-color: rgba(255,255,255,0.8);
}

.hero-scroll-down span {
    display: block;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    margin-top: 8px;
    animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%   { transform: translateY(0); opacity: 1; }
    50%  { transform: translateY(18px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ── Section Styles ── */

.section-title {
    font-size: 34px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1.5px;
    background: #b76e79;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.section-header .section-title {
    text-align: left;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 28px;
}

.section-header .section-title::after {
    display: none;
}

.view-all-link {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
}

.view-all-link:hover {
    color: #b76e79;
    border-color: #b76e79;
    gap: 10px;
}

/* ── Categories ── */

.categories-showcase {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 15px;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    aspect-ratio: 0.85;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.85);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: background 0.4s ease;
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(0deg, rgba(183,110,121,0.85) 0%, rgba(183,110,121,0.15) 60%, transparent 100%);
}

.category-card-overlay h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 6px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-overlay h3 {
    transform: translateY(0);
}

.category-card-cta {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.05s;
}

.category-card:hover .category-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.category-card-cta i {
    font-size: 10px;
    transition: transform 0.3s;
}

.category-card:hover .category-card-cta i {
    transform: translateX(3px);
}

/* ── Unified dark surface (brands, stats, why-albi, footer) ── */

.brands-showcase,
.stats-banner,
.why-albi,
.site-footer {
    position: relative;
    background-color: var(--surface-dark) !important;
    color: var(--surface-dark-text);
    overflow: hidden;
}

.brands-showcase::before,
.stats-banner::before,
.why-albi::before,
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 55% at 12% -8%, rgba(183, 110, 121, 0.12) 0%, transparent 58%),
        radial-gradient(ellipse 55% 45% at 88% 108%, rgba(232, 180, 184, 0.08) 0%, transparent 52%),
        linear-gradient(180deg, var(--surface-dark-deep) 0%, rgba(26, 26, 26, 0.97) 50%, var(--surface-dark-elevated) 100%);
    animation: dark-surface-glow 20s ease-in-out infinite;
}

.brands-showcase::after,
.stats-banner::after,
.why-albi::after,
.site-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 92% 82% at 50% 45%, #000 22%, transparent 100%);
}

.brands-showcase > .container,
.brands-showcase > .brands-carousel,
.stats-banner > .container,
.why-albi > .container,
.site-footer > .footer-main,
.site-footer > .footer-bottom {
    position: relative;
    z-index: 1;
}

@keyframes dark-surface-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.78; }
}

@media (prefers-reduced-motion: reduce) {
    .brands-showcase::before,
    .stats-banner::before,
    .why-albi::before,
    .site-footer::before {
        animation: none;
    }
}

/* ── Brands ── */

.brands-showcase {
    padding: 80px 0;
}

.brands-showcase__header {
    text-align: center;
    margin-bottom: 48px;
}

.brands-showcase .section-title {
    color: var(--surface-dark-text);
}

.brands-showcase .section-title::after {
    background: var(--surface-dark-accent);
}

.brands-showcase .section-subtitle {
    color: var(--surface-dark-text-muted);
    margin-bottom: 0;
}

.brands-carousel {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.brands-carousel__track {
    display: flex;
    width: max-content;
    animation: brands-marquee var(--brands-marquee-duration, 45s) linear infinite;
    will-change: transform;
}

.brands-carousel:hover .brands-carousel__track {
    animation-play-state: paused;
}

.brands-carousel__group {
    display: flex;
    gap: 20px;
    padding-right: 20px;
    flex-shrink: 0;
}

.brands-carousel .brand-card {
    flex: 0 0 280px;
    width: 280px;
}

.brand-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    aspect-ratio: 1;
    background: var(--surface-dark-card);
    border: 1px solid var(--surface-dark-border);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.brand-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.brand-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

.brand-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 26, 26, 0.82) 0%, rgba(26, 26, 26, 0.2) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: background 0.4s ease;
}

.brand-card:hover .brand-card-overlay {
    background: linear-gradient(0deg, rgba(183, 110, 121, 0.88) 0%, rgba(183, 110, 121, 0.32) 60%, transparent 100%);
}

.brand-card-overlay h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
}

.brand-card-meta {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.brand-card-cta {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-card:hover .brand-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.brand-card-cta i {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-card-cta i {
    transform: translateX(4px);
}

@keyframes brands-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .brands-carousel__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        gap: 20px;
    }

    .brands-carousel__group[aria-hidden="true"] {
        display: none;
    }

    .brands-carousel .brand-card {
        flex: 0 1 calc(25% - 15px);
        width: auto;
        max-width: 280px;
    }
}

@media (max-width: 992px) {
    .brands-carousel .brand-card {
        flex: 0 0 240px;
        width: 240px;
    }
}

@media (max-width: 768px) {
    .brands-showcase {
        padding: 60px 0;
    }

    .brands-showcase__header {
        margin-bottom: 32px;
    }

    .brands-carousel__group {
        gap: 15px;
        padding-right: 15px;
    }

    .brands-carousel .brand-card {
        flex: 0 0 200px;
        width: 200px;
    }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .brands-carousel .brand-card {
        flex: 0 1 calc(50% - 10px);
    }
}

/* ── Products ── */

.products-section {
    padding: 70px 0;
    background: #faf8f8;
}

.new-arrivals-section .brands-showcase__header .section-subtitle,
.best-sellers-section .brands-showcase__header .section-subtitle {
    margin-bottom: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    border: 1px solid #e8d5d8;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 45px rgba(0,0,0,0.14);
    border-color: #d4b0b5;
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #ffffff;
    padding: 20px;
}

.product-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.badge-new {
    background: #1a1a1a;
    color: #fff;
}

.badge-featured {
    background: #b76e79;
    color: #fff;
    top: 14px;
    left: auto;
    right: 14px;
}

.product-card-quick {
    display: none;
}

.product-card-order-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b76e79;
    margin-top: 10px;
    transition: all 0.3s;
}

.product-card-order-link i {
    font-size: 9px;
    transition: transform 0.3s;
}

.product-card-order-link:hover {
    color: #a25d68;
}

.product-card-order-link:hover i {
    transform: translateX(4px);
}

.product-card-body {
    padding: 16px 18px 20px;
    background: #e8d5d88a;
}

.product-card-category {
    display: block;
    font-size: 10px;
    color: #b76e79;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-card-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.product-card-title a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s;
}

.product-card-title a:hover {
    color: #b76e79;
}

.product-card-price {
    margin-top: 10px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-current {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
}

.price-old {
    font-size: 13px;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
}

/* ── Product Detail ── */

.product-detail {
    padding: 20px 0 80px;
}

.breadcrumbs {
    padding: 15px 0 25px;
    font-size: 11px;
    color: #aaa;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.breadcrumbs a {
    color: #999;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #1a1a1a;
}

.breadcrumbs span {
    margin: 0 8px;
    color: #ddd;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
    background: #f5f0f0;
}

.gallery-main img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-thumb {
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
    background: #f5f0f0;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: #1a1a1a;
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

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

.product-title {
    font-size: 30px;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.product-brand,
.product-category-link {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.info-label {
    font-weight: 600;
    color: #333;
}

.product-category-link a {
    color: #b76e79;
}

.product-category-link a:hover {
    text-decoration: underline;
}

.product-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: #b76e79;
    margin: 20px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
}

.product-price-detail .price-old {
    font-size: 18px;
}

.product-meta {
    border-top: 1px solid #f0e6e8;
    padding-top: 18px;
    margin-bottom: 20px;
}

.meta-item {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.product-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.product-actions {
    margin-top: 35px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-actions .btn-whatsapp {
    padding: 16px 50px;
    font-size: 13px;
    border-radius: 0;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.related-section {
    padding-top: 60px;
    border-top: 1px solid #f0e6e8;
}

/* ── Stats Banner ── */

.stats-banner {
    padding: 70px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    padding: 22px 16px;
    position: relative;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--surface-dark-border);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.stat-item + .stat-item::before {
    display: none;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    color: var(--surface-dark-accent);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--surface-dark-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* ── Features / Why ALBI ── */

.why-albi {
    padding: 90px 0;
    text-align: center;
}

.why-albi .section-title {
    color: var(--surface-dark-text);
}

.why-albi .section-title::after {
    background: var(--surface-dark-accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 45px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    transition: all 0.4s ease;
    border: 1px solid var(--surface-dark-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.feature-card:hover {
    border-color: var(--surface-dark-accent);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(232, 180, 184, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--surface-dark-accent);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: #b76e79;
    color: #fff;
    border-color: #b76e79;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--surface-dark-text);
}

/* ── Promo Banner ── */

.promo-banner {
    width: 100%;
    overflow: hidden;
}

.promo-banner a {
    display: block;
    line-height: 0;
}

.promo-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.promo-banner img:hover {
    opacity: 0.92;
}

/* ── CTA Section ── */

.cta-section {
    position: relative;
    padding: 90px 0;
    background: #faf8f8;
}

.cta-section__bg {
    display: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-panel {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(245, 213, 206, 0.65) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(232, 180, 184, 0.35) 100%);
    box-shadow: 0 12px 40px rgba(183, 110, 121, 0.12);
}

.cta-panel__inner {
    margin: 1px;
    border-radius: 19px;
    padding: 36px 40px 40px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cta-panel__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #faf5f4;
    border: 1px solid #f0ddd9;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #b76e79;
}

.cta-panel__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
    animation: cta-pulse 2s ease infinite;
    flex-shrink: 0;
}

@keyframes cta-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
    70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.cta-panel__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
}

.cta-panel__copy h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3.5vw, 38px);
    color: #1a1a1a;
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    text-align: left;
}

.cta-panel__copy p {
    font-size: 15px;
    line-height: 1.75;
    color: #666;
    margin-bottom: 24px;
    max-width: 480px;
    font-weight: 400;
    text-align: left;
}

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

.cta-panel__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #555;
}

.cta-panel__feature-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #faf5f4;
    border: 1px solid #f0ddd9;
    color: #b76e79;
    font-size: 13px;
    flex-shrink: 0;
}

.cta-panel__actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    background: #faf8f8;
    border: 1px solid #f0eaea;
}

.cta-panel__actions-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    margin: 0;
    text-align: center;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.cta-btn--wa {
    background: #25d366;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.22);
}

.cta-btn--wa:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    background: #1fb855;
    color: #fff;
}

.cta-btn--wa i {
    font-size: 17px;
}

.cta-btn--ghost {
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #ddd;
}

.cta-btn--ghost:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-1px);
    color: #fff;
}

.cta-btn--ghost i {
    font-size: 10px;
    transition: transform 0.25s ease;
}

.cta-btn--ghost:hover i {
    transform: translateX(3px);
}

.cta-panel__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    margin-top: 4px;
    border-top: 1px solid #f0eaea;
}

.cta-panel__meta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #777;
    transition: color 0.2s ease;
    word-break: break-all;
}

.cta-panel__meta a:hover {
    color: #b76e79;
}

.cta-panel__meta i {
    font-size: 11px;
    color: #b76e79;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .cta-panel__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cta-panel__inner {
        padding: 28px 24px 32px;
    }

    .cta-panel__copy h2,
    .cta-panel__copy p {
        text-align: center;
    }

    .cta-panel__copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-panel__features {
        max-width: 340px;
        margin: 0 auto;
    }

    .cta-panel__badge {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 70px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cta-panel__pulse {
        animation: none;
    }

    .cta-btn:hover {
        transform: none;
    }
}

/* ── Contact ── */

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-card {
    background: #faf8f8;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #f0eaea;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
}

.contact-info-item + .contact-info-item {
    border-top: 1px solid #f5f0f0;
}

.contact-info-item > i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f5d5ce, #e8b4b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #b76e79;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 14px;
    color: #666;
}

.contact-info-item a {
    color: #666;
}

.contact-info-item a:hover {
    color: #b76e79;
}

.contact-social {
    margin-top: 24px;
}

.contact-social h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b76e79;
    font-size: 14px;
    font-weight: 500;
}

.social-link:hover {
    color: #a25d68;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e8b4b8;
    border-radius: 8px;
    font-size: 14px;
    background: #fef9f7;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #b76e79;
    box-shadow: 0 0 0 3px rgba(183,110,121,0.1);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ── Page Header (internal pages) ── */

.page-header {
    background: #fff;
    padding: 55px 0 50px;
    text-align: center;
    border-bottom: 1px solid #f0eaea;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ── About / Privacy Pages ── */

.page-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

.page-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p {
    margin-bottom: 15px;
    color: #555;
}

/* ── Products Listing Page ── */

.products-page {
    padding: 40px 0 80px;
}

.products-page-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.products-sidebar {
    position: sticky;
    top: 100px;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f5d5ce;
}

.filter-section a {
    display: block;
    padding: 8px 0;
    font-size: 13px;
    color: #555;
    transition: all 0.2s;
}

.filter-section a:hover,
.filter-section a.active {
    color: #b76e79;
    padding-left: 5px;
}

.products-count {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

/* ── Footer ── */

.footer-main {
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--surface-dark-border);
}

.footer-col h4 {
    color: var(--surface-dark-text);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background: #b76e79;
}

.footer-about p {
    color: var(--surface-dark-text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 15px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(10);
}

.footer-col ul li a {
    display: block;
    color: var(--surface-dark-text-muted);
    font-size: 14px;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--surface-dark-accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--surface-dark-text-muted);
}

.footer-contact li i {
    color: #b76e79;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.footer-contact a {
    color: var(--surface-dark-text-muted);
}

.footer-contact a:hover {
    color: var(--surface-dark-accent);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #b76e79;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    color: var(--surface-dark-text-muted);
    font-size: 13px;
}

/* ── Pagination ── */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 40px 0;
    flex-wrap: nowrap;
}

.pagination--mobile {
    display: none;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #ddd;
    color: #666;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.pagination-btn.active {
    background: #f5d5ce;
    border-color: #e8b4b8;
    color: #b76e79;
    font-weight: 600;
}

.pagination-dots {
    padding: 0 4px;
    font-size: 14px;
    color: #999;
    letter-spacing: 1px;
}

.pagination .disabled {
    opacity: .35;
    pointer-events: none;
    cursor: default;
}

/* ── Search ── */

.search-page {
    padding: 40px 0 80px;
    min-height: 50vh;
}

.search-page h1 {
    font-size: 28px;
    margin-bottom: 8px;
}

.search-meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

/* ── 404 ── */

.page-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.page-404 h1 {
    font-size: 120px;
    color: #f5d5ce;
    line-height: 1;
    margin-bottom: 15px;
}

.page-404 h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.page-404 p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

/* ── Products Listing Page Layout ── */

.products-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 30px;
}

.filters-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.filter-group {
    margin-bottom: 28px;
}

.filter-group h3 {
    font-size: 15px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f5d5ce;
    color: #1a1a1a;
}

.filter-list li a {
    display: block;
    padding: 7px 0;
    font-size: 13px;
    color: #555;
    transition: all 0.2s;
}

.filter-list li a:hover,
.filter-list li a.active {
    color: #b76e79;
    padding-left: 6px;
    font-weight: 500;
}

.filter-group-all {
    margin-bottom: 20px;
}

.filter-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #faf5f4;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    transition: background 0.2s;
}

.filter-all-link:hover,
.filter-all-link.active {
    background: #f5d5ce;
    color: #b76e79;
}

.filter-context {
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: #fff8f7;
    border: 1px solid #f0ddd9;
    font-size: 13px;
}

.filter-context-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #888;
    margin-bottom: 4px;
}

.filter-context strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.filter-context-clear {
    font-size: 12px;
    color: #b76e79;
}

.filter-list-visual .filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 6px;
    border-radius: 6px;
    color: #555;
    transition: background 0.2s;
}

.filter-list-visual .filter-item:hover,
.filter-list-visual .filter-item.active {
    background: #faf5f4;
    color: #b76e79;
}

.filter-item-thumb {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background: #f5f5f5;
}

.filter-item-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.filter-item-label {
    font-size: 13px;
    line-height: 1.3;
    word-break: break-word;
}

.filter-item-count {
    font-size: 11px;
    color: #999;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e8b4b8;
    color: #b76e79;
    transition: all 0.3s;
}

.filter-tag:hover,
.filter-tag.active {
    background: #b76e79;
    color: #fff;
    border-color: #b76e79;
}

.products-content {
    min-height: 300px;
}

.products-content .products-grid {
    grid-template-columns: repeat(3, 1fr);
}

.results-count {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.page-header-desc {
    font-size: 15px;
    color: #666;
    margin-top: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.no-results {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-results i {
    font-size: 48px;
    color: #e8b4b8;
    margin-bottom: 20px;
    display: block;
}

.no-results p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* ── Search Page ── */

.search-section {
    padding: 40px 0 80px;
    min-height: 50vh;
}

.search-form-large {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-form-large input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e8b4b8;
    border-radius: 30px;
    font-size: 15px;
    background: #fff;
    transition: all 0.3s;
}

.search-form-large input:focus {
    border-color: #b76e79;
    box-shadow: 0 0 0 3px rgba(183,110,121,0.1);
}

.search-form-large .btn {
    flex-shrink: 0;
}

/* ── 404 Page ── */

.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.error-content {
    max-width: 500px;
}

.error-code {
    font-size: 120px;
    color: #f5d5ce;
    line-height: 1;
    margin-bottom: 15px;
}

.error-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.error-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Brand Page ── */

.brand-logo-section {
    padding: 30px 0;
    text-align: center;
}

.brand-logo-img {
    max-height: 80px;
    margin: 0 auto;
}

/* ── Lazy Images ── */

img[data-src] {
    opacity: 0;
    transition: opacity 0.4s ease;
}

img[data-src].loaded {
    opacity: 1;
}

/* ─────────────────────────────────────
   Responsive
   ───────────────────────────────────── */

@media (max-width: 1024px) {
    .categories-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .slide-content h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 30px;
    }

    .products-layout {
        grid-template-columns: 200px 1fr;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: block;
        font-size: 0;
        padding: 5px 0;
    }

    .header-top-left a {
        font-size: 0;
    }

    .header-top-left a i {
        font-size: 13px;
    }

    .header-top-left {
        gap: 12px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-search {
        display: none;
    }

    .hero {
        height: 100vh;
        height: 100dvh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 20px 0;
    }

    .hero-text {
        padding-top: 20px;
        text-align: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        align-items: center;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .hero-showcase {
        display: none;
    }

    .hero-stats {
        gap: 25px;
    }

    .hero-stat strong {
        font-size: 24px;
    }

    .hero-scroll-down {
        bottom: 20px;
    }

    .page-home .main-nav {
        background: transparent;
    }

    .nav-logo img {
        height: 40px;
    }

    .hero-actions {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .btn-hero-primary,
    .btn-hero-wa {
        text-align: center;
        justify-content: center;
    }

    .categories-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .products-content .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-number {
        font-size: 36px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .products-layout {
        grid-template-columns: 1fr;
    }

    .pagination--desktop {
        display: none;
    }

    .pagination--mobile {
        display: flex;
        gap: 4px;
        padding: 28px 0;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: center;
        scrollbar-width: none;
    }

    .pagination--mobile::-webkit-scrollbar {
        display: none;
    }

    .pagination--mobile .pagination-btn {
        min-width: 32px;
        height: 32px;
        padding: 0 6px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .pagination--mobile .pagination-dots {
        padding: 0 2px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .filters-sidebar {
        position: static;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .products-content .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 0px 15px 0;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-desc {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .hero-eyebrow {
        font-size: 8px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .btn-hero-primary,
    .btn-hero-wa {
        padding: 12px 24px;
        font-size: 10px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat strong {
        font-size: 22px;
    }

    .section-title {
        font-size: 24px;
    }

    .page-404 h1 {
        font-size: 80px;
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 14px;
    }

    .product-title {
        font-size: 24px;
    }

    .product-price-detail {
        font-size: 22px;
    }
}
