/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-background);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); margin: 0; line-height: 1.2; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 0.9rem; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; }
.muted { color: color-mix(in srgb, var(--color-text) 60%, transparent); font-size: 0.85rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--color-primary);
}
.eyebrow-light { color: #F3E5AB; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.85rem 1.5rem; border-radius: 14px; border: 1px solid transparent;
  font-weight: 700; font-size: 0.9rem; transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-secondary); box-shadow: 0 10px 24px -8px color-mix(in srgb, var(--color-primary) 60%, transparent); }
.btn-primary:hover { opacity: 0.92; }
.btn-gold { background: var(--color-secondary); color: var(--color-text); border-color: var(--color-secondary); }
.btn-outline { background: transparent; border-color: var(--color-primary); color: var(--color-primary); }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.8rem; }
.btn-block { width: 100%; }
.btn-link { background: none; border: none; color: var(--color-text); opacity: 0.6; font-size: 0.8rem; text-decoration: underline; }

/* ===== Header ===== */
.site-header { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--color-background) 95%, transparent); backdrop-filter: blur(8px); border-bottom: 1px solid color-mix(in srgb, var(--color-secondary) 35%, transparent); box-shadow: 0 1px 8px rgba(0,0,0,0.04); }
.top-bar { background: var(--color-primary); color: var(--color-background); font-size: 0.78rem; padding: 0.5rem 0; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.announcement { display: flex; align-items: center; gap: 0.5rem; }
.announcement i { color: var(--color-accent); }
.top-bar-links { display: flex; align-items: center; gap: 1.25rem; }
.top-link { display: flex; align-items: center; gap: 0.4rem; }
.top-link:hover { color: var(--color-secondary); }
.whatsapp-link i { color: var(--color-success); }

.main-nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 0.9rem 1.25rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-secondary); }
.brand-mark { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--color-primary), #5c1328); border: 2px solid var(--color-secondary); color: var(--color-secondary); }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--color-primary); }
.brand-tagline { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-secondary); font-weight: 600; }

.desktop-nav { display: none; align-items: center; gap: 1.5rem; font-size: 0.88rem; font-weight: 500; }
.desktop-nav a:hover { color: var(--color-primary); }
.desktop-nav .nav-cta { display: flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 0.78rem; font-weight: 700; background: linear-gradient(135deg, var(--color-primary), #5c1328); color: var(--color-secondary); border: 1px solid color-mix(in srgb, var(--color-secondary) 50%, transparent); }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.icon-btn { position: relative; width: 40px; height: 40px; border-radius: 50%; border: none; background: transparent; display: flex; align-items: center; justify-content: center; color: var(--color-text); }
.icon-btn:hover { background: color-mix(in srgb, var(--color-primary) 8%, transparent); color: var(--color-primary); }
.cart-count { position: absolute; top: -2px; right: -2px; background: var(--color-accent); color: var(--color-text); font-size: 0.65rem; font-weight: 800; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mobile-menu-toggle { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: none; background: transparent; font-size: 1.2rem; }

.mobile-nav { display: none; flex-direction: column; gap: 0.9rem; padding: 1.25rem 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-secondary) 30%, transparent); background: var(--color-background); }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-weight: 500; padding: 0.35rem 0; }

@media (min-width: 992px) {
  .desktop-nav { display: flex; }
  .mobile-menu-toggle { display: none; }
}

/* ===== Hero ===== */
.hero-slider { position: relative; height: 62vh; min-height: 420px; max-height: 640px; overflow: hidden; background: var(--color-text); color: #fff; }
.hero-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity 0.8s ease; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide-img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--color-text) 95%, transparent) 10%, color-mix(in srgb, var(--color-primary) 78%, transparent) 45%, transparent 85%); }
.hero-slide-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 1.1rem; max-width: 640px; z-index: 2; }
.hero-slide-content h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
.hero-slide-content p { font-size: 1rem; opacity: 0.92; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.5rem; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--color-secondary) 40%, transparent); background: rgba(0,0,0,0.35); color: #fff; }
.hero-arrow-prev { left: 1rem; }
.hero-arrow-next { right: 1rem; }
.hero-dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 3; }
.hero-dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.4); border: none; transition: width 0.2s ease, background 0.2s ease; }
.hero-dot.active { width: 28px; background: var(--color-secondary); }

/* ===== Sections ===== */
.section { padding: 3.5rem 1.25rem; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; border-bottom: 1px solid color-mix(in srgb, var(--color-secondary) 30%, transparent); padding-bottom: 1.25rem; margin-bottom: 2rem; }
.section-title { font-size: 1.9rem; font-weight: 800; color: var(--color-primary); }
.section-dark { background: var(--color-text); color: #fff; border-top: 1px solid var(--color-secondary); border-bottom: 1px solid var(--color-secondary); }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.grid-cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 768px) { .grid-cats { grid-template-columns: repeat(4, 1fr); } }

.why-us-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; text-align: center; }
.why-us-card { padding: 1.75rem 1.25rem; border-radius: 20px; background: rgba(255,255,255,0.06); border: 1px solid color-mix(in srgb, var(--color-secondary) 35%, transparent); }
.why-us-card i { font-size: 1.8rem; color: var(--color-secondary); margin-bottom: 0.75rem; }
.why-us-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.why-us-card p { font-size: 0.85rem; opacity: 0.85; }

/* ===== Cards ===== */
.category-card { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; padding: 1.5rem 1rem; border-radius: 18px; background: #fff; border: 1px solid color-mix(in srgb, var(--color-secondary) 30%, transparent); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.category-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px -10px color-mix(in srgb, var(--color-primary) 25%, transparent); }
.category-card-media { width: 68px; height: 68px; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--color-secondary) 15%, transparent); font-size: 1.6rem; color: var(--color-primary); }
.category-card-media img { width: 100%; height: 100%; object-fit: cover; }
.category-card h3 { font-size: 0.95rem; }

.product-card { display: flex; flex-direction: column; border-radius: 20px; background: #fff; border: 1px solid color-mix(in srgb, var(--color-secondary) 25%, transparent); box-shadow: 0 4px 20px -8px color-mix(in srgb, var(--color-primary) 10%, transparent); overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px -10px color-mix(in srgb, var(--color-primary) 18%, transparent); }
.product-card-media { position: relative; aspect-ratio: 4/3; background: color-mix(in srgb, var(--color-secondary) 12%, transparent); }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; }
.product-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--color-secondary); }
.badge { position: absolute; top: 0.6rem; left: 0.6rem; padding: 0.25rem 0.6rem; border-radius: 999px; font-size: 0.65rem; font-weight: 800; }
.badge-primary { background: var(--color-primary); color: #fff; }
.badge-accent { top: 0.6rem; left: auto; right: 0.6rem; background: #10b981; color: #fff; }
.product-card-body { padding: 1.1rem 1.1rem 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.product-card-category { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-primary); }
.product-card-body h3 { font-size: 1.05rem; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; margin: 0.3rem 0 0.6rem; }
.price { font-weight: 800; font-size: 1.1rem; color: var(--color-primary); }
.price-strike { text-decoration: line-through; opacity: 0.5; font-size: 0.8rem; margin-left: 0.4rem; }
.product-card-rating { display: flex; align-items: center; gap: 0.3rem; font-size: 0.85rem; font-weight: 700; color: #d97706; }

.royal-card { background: #fff; border: 1px solid color-mix(in srgb, var(--color-secondary) 30%, transparent); border-radius: 20px; box-shadow: 0 4px 20px -8px color-mix(in srgb, var(--color-primary) 10%, transparent); padding: 1.75rem; }

/* ===== Reviews ===== */
.review-card { display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; }
.review-stars { color: #d97706; }
.review-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; border-top: 1px solid #eee; font-size: 0.85rem; }
.verified-badge { background: #d1fae5; color: #065f46; font-size: 0.68rem; font-weight: 800; padding: 0.2rem 0.5rem; border-radius: 999px; }

/* ===== Forms / modals ===== */
label { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.8rem; font-weight: 700; margin-bottom: 0.85rem; }
input[type=text], input[type=tel], input[type=email], input[type=number], input[type=date], input[type=datetime-local], textarea, select {
  padding: 0.65rem 0.8rem; border-radius: 12px; border: 1px solid #d8d0c8; background: #fff; font-weight: 400;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--color-primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.modal-overlay { position: fixed; inset: 0; z-index: 60; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal-box { position: relative; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; background: var(--color-background); border-radius: 24px; border: 1px solid var(--color-secondary); box-shadow: 0 24px 60px rgba(0,0,0,0.35); padding: 1.75rem; }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%; border: none; background: #fff; }
.modal-close:hover { background: var(--color-primary); color: #fff; }

.search-box-header { display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid #ddd; padding-bottom: 0.9rem; }
.search-box-header input { flex: 1; border: none; background: transparent; font-size: 0.95rem; font-weight: 600; }
.search-box-header input:focus { outline: none; }
.search-results { margin-top: 1rem; max-height: 320px; overflow-y: auto; display: flex; flex-direction: column; gap: 0.5rem; }
.search-result-item { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.6rem; border-radius: 12px; background: #fff; border: 1px solid #eee; }
.search-result-item img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; }
.search-result-left { display: flex; align-items: center; gap: 0.75rem; }

.inquiry-summary { background: #fff; border: 1px solid color-mix(in srgb, var(--color-secondary) 30%, transparent); border-radius: 16px; padding: 0.85rem; margin: 0.75rem 0 1.25rem; font-size: 0.85rem; }
.inquiry-product-name { font-weight: 700; color: var(--color-primary); }
.inquiry-success { text-align: center; padding: 1.5rem 0; }
.success-icon { font-size: 3rem; color: #10b981; margin-bottom: 0.5rem; }

/* ===== Cart drawer ===== */
#cart-drawer .modal-box { display: none; }
#cart-drawer { justify-content: flex-end; padding: 0; }
.cart-drawer-panel { width: 100%; max-width: 420px; height: 100%; background: var(--color-background); display: flex; flex-direction: column; box-shadow: -10px 0 30px rgba(0,0,0,0.2); }
.cart-drawer-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 0.75rem; color: var(--color-primary); }
.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; background: var(--color-primary); color: #fff; }
.cart-drawer-items { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: 0.9rem; }
.cart-item { display: flex; gap: 0.85rem; background: #fff; border-radius: 16px; padding: 0.8rem; border: 1px solid color-mix(in srgb, var(--color-secondary) 25%, transparent); }
.cart-item img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; }
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.cart-item-price { font-weight: 800; color: var(--color-primary); }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; }
.qty-stepper { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 10px; }
.qty-stepper button { width: 28px; height: 28px; border: none; background: none; font-weight: 700; }
.qty-stepper span { width: 28px; text-align: center; font-weight: 700; color: var(--color-primary); }
.cart-remove-btn { border: none; background: none; color: #999; }
.cart-remove-btn:hover { color: #dc2626; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: #999; }
.cart-empty i { font-size: 2.5rem; margin-bottom: 0.5rem; }
.cart-drawer-footer { padding: 1.25rem; border-top: 1px solid #eee; background: #fff; display: flex; flex-direction: column; gap: 0.75rem; }
.cart-subtotal { display: flex; align-items: center; justify-content: space-between; font-size: 1rem; }
.cart-subtotal strong { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-primary); }

/* ===== Footer ===== */
.site-footer { background: var(--color-text); color: #fdf7f0; padding: 3.5rem 0 2rem; margin-top: 3rem; }
.footer-inner { display: flex; flex-direction: column; gap: 3rem; }
.newsletter-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; background: linear-gradient(120deg, var(--color-primary), #5c1328, var(--color-text)); border: 1px solid color-mix(in srgb, var(--color-secondary) 40%, transparent); border-radius: 24px; padding: 2rem; }
.newsletter-copy h3 { font-size: 1.5rem; margin: 0.3rem 0; }
.newsletter-form { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 200px; background: rgba(255,255,255,0.1); border: 1px solid color-mix(in srgb, var(--color-secondary) 50%, transparent); color: #fff; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form button { padding: 0.65rem 1.25rem; border-radius: 12px; border: none; background: var(--color-secondary); color: var(--color-text); font-weight: 800; }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; font-size: 0.85rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer-col h5 { color: var(--color-secondary); font-size: 1rem; margin-bottom: 0.9rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a:hover { color: var(--color-secondary); }
.footer-brand p { opacity: 0.75; margin: 0.75rem 0; max-width: 320px; }
.social-links { display: flex; gap: 0.75rem; font-size: 1.1rem; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.08); }
.contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; }
.contact-list i { color: var(--color-secondary); margin-top: 0.15rem; }

.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; font-size: 0.8rem; opacity: 0.8; }
.footer-bottom-links { display: flex; align-items: center; gap: 1.25rem; }
.footer-bottom-links .icon-btn { background: rgba(255,255,255,0.08); color: #fff; }

/* ===== Messages ===== */
.page-messages { max-width: 1240px; margin: 1rem auto 0; padding: 0 1.25rem; }
.alert { padding: 0.85rem 1.1rem; border-radius: 12px; margin-bottom: 0.75rem; font-size: 0.88rem; font-weight: 600; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-error, .alert-warning { background: #fee2e2; color: #991b1b; }
.alert-info { background: #dbeafe; color: #1e3a8a; }

/* ===== Utility page layouts ===== */
.page-header { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.stepper-badge { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--color-primary); color: #fff; font-weight: 800; font-size: 0.8rem; }
.builder-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 992px) { .builder-grid { grid-template-columns: 1fr; } }
.builder-summary { position: sticky; top: 100px; }
.builder-step { background: #fff; border: 1px solid color-mix(in srgb, var(--color-secondary) 30%, transparent); border-radius: 20px; padding: 1.5rem; margin-bottom: 1.5rem; }
.builder-step h3 { display: flex; align-items: center; gap: 0.6rem; font-size: 1.2rem; margin-bottom: 1rem; }
.box-option { display: flex; align-items: center; gap: 0.75rem; border: 2px solid #eee; border-radius: 16px; padding: 0.85rem; cursor: pointer; }
.box-option img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; }
.box-option.selected { border-color: var(--color-primary); background: color-mix(in srgb, var(--color-primary) 6%, transparent); }
.gift-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.75rem; margin-top: 1rem; }
.gift-product-option { border: 1px solid #eee; border-radius: 14px; padding: 0.5rem; cursor: pointer; font-size: 0.75rem; }
.gift-product-option.selected { border-color: var(--color-primary); background: color-mix(in srgb, var(--color-primary) 8%, transparent); }
.gift-product-option img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; margin-bottom: 0.4rem; }
.ribbon-options { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.ribbon-option { display: flex; align-items: center; gap: 0.5rem; border: 1px solid #ddd; border-radius: 999px; padding: 0.45rem 0.85rem; font-size: 0.78rem; font-weight: 700; cursor: pointer; }
.ribbon-option.selected { border-color: var(--color-primary); box-shadow: 0 0 0 2px var(--color-primary); }
.ribbon-swatch { width: 14px; height: 14px; border-radius: 50%; }
.gift-weight-row { display: flex; align-items: center; justify-content: space-between; background: var(--color-background); border: 1px solid color-mix(in srgb, var(--color-secondary) 20%, transparent); border-radius: 12px; padding: 0.5rem 0.8rem; font-size: 0.8rem; margin-top: 0.5rem; }
.capacity-bar { height: 10px; border-radius: 999px; background: #eee; overflow: hidden; margin: 0.75rem 0; }
.capacity-bar-fill { height: 100%; background: var(--color-secondary); transition: width 0.2s ease; }

.tabs { display: flex; gap: 1.5rem; border-bottom: 1px solid #eee; margin-bottom: 1.5rem; }
.tab-btn { background: none; border: none; padding-bottom: 0.75rem; font-weight: 700; color: #999; border-bottom: 2px solid transparent; }
.tab-btn.active { color: var(--color-primary); border-color: var(--color-primary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.filters-sidebar { background: #fff; border: 1px solid color-mix(in srgb, var(--color-secondary) 30%, transparent); border-radius: 20px; padding: 1.5rem; height: fit-content; }
.filters-sidebar h4 { margin-bottom: 1rem; }
.filter-group { margin-bottom: 1.25rem; }
.filter-group label { font-weight: 700; text-transform: uppercase; font-size: 0.7rem; }
.filter-group select { width: 100%; }
.checkbox-row { display: flex; flex-direction: row; align-items: center; text-align: left; gap: 0.5rem; font-weight: 500; margin-bottom: 0.5rem; }
.checkbox-row input { width: auto; }
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }

.gallery-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.75rem; }
.gallery-tab { padding: 0.45rem 1rem; border-radius: 999px; border: 1px solid #ddd; font-size: 0.8rem; font-weight: 700; background: #fff; }
.gallery-tab.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.gallery-grid { column-count: 1; column-gap: 1rem; }
@media (min-width: 640px) { .gallery-grid { column-count: 2; } }
@media (min-width: 992px) { .gallery-grid { column-count: 3; } }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; border-radius: 16px; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; display: block; }
.gallery-item-caption { position: absolute; inset: auto 0 0 0; background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent); color: #fff; padding: 0.75rem; font-size: 0.8rem; font-weight: 700; }

.blog-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--color-secondary) 25%, transparent); }
.blog-card img { aspect-ratio: 16/10; object-fit: cover; }
.blog-card-body { padding: 1.25rem; }
.blog-card-meta { font-size: 0.7rem; text-transform: uppercase; font-weight: 700; color: var(--color-primary); margin-bottom: 0.5rem; }

.details-fact { background: var(--color-background); border-radius: 14px; padding: 1rem; }
.details-fact strong { display: flex; align-items: center; gap: 0.5rem; color: var(--color-primary); margin-bottom: 0.3rem; }

.contact-map-box { height: 200px; border-radius: 18px; background: color-mix(in srgb, var(--color-accent) 15%, transparent); border: 1px solid color-mix(in srgb, var(--color-secondary) 30%, transparent); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0.3rem; }
.contact-map-box i { font-size: 1.8rem; color: var(--color-primary); }

.auth-card { max-width: 440px; margin: 3rem auto; }
.thumb-preview { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; }
