
:root {
  --blue:       #003087;
  --blue-light: #1a4fa8;
  --red:        #E8211A;
  --yellow:     #F5A623;
  --green:      #2EAA3F;
  --dark:       #0a0f1e;
  --gray:       #f4f5f7;
  --text:       #1a1a2e;
  --muted:      #6b7280;
  --white:      #ffffff;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.16);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); border-bottom: 3px solid var(--blue);
  padding: 0 5%; display: flex; align-items: center;
  justify-content: space-between; height: 64px; transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: var(--shadow-lg); }
.nav-logo img { height: 100px; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; font-weight: 700; font-size: 14px; color: var(--text); letter-spacing: .5px; position: relative; padding-bottom: 4px; transition: color .2s; white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--red); border-radius: 2px; transition: width .3s; }
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--red); color: var(--white) !important; padding: 8px 18px !important; border-radius: 6px; transition: background .2s !important; }
.nav-cta:hover { background: #c0150f !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.hamburger span { width: 24px; height: 3px; background: var(--text); border-radius: 2px; transition: .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-drawer { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 3px solid var(--blue); padding: 20px 5% 24px; z-index: 999; box-shadow: 0 8px 32px rgba(0,0,0,.12); flex-direction: column; gap: 4px; }
.nav-drawer.open { display: flex; }
.nav-drawer a { text-decoration: none; font-weight: 700; font-size: 16px; color: var(--text); padding: 12px 16px; border-radius: 8px; transition: background .2s, color .2s; display: block; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.nav-drawer a:hover, .nav-drawer a:active { background: var(--gray); color: var(--blue); }
.nav-drawer a.nav-cta-mobile { background: var(--red); color: var(--white); text-align: center; margin-top: 8px; border-radius: 8px; }

/* ── HERO ── */
.paint-drips { display: flex; height: 8px; }
.drip { flex: 1; }
.drip:nth-child(1){background:var(--blue);} .drip:nth-child(2){background:var(--red);}
.drip:nth-child(3){background:var(--yellow);} .drip:nth-child(4){background:var(--green);}
.drip:nth-child(5){background:var(--blue);} .drip:nth-child(6){background:var(--red);}
.drip:nth-child(7){background:var(--yellow);} .drip:nth-child(8){background:var(--green);}

#inicio { min-height: 100svh; display: flex; flex-direction: column; align-items: center; position: relative; overflow: hidden; background: var(--dark); padding-top: 64px; }
.hero-bg { position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, rgba(0,48,135,.18) 0px, rgba(0,48,135,.18) 2px, transparent 2px, transparent 60px), linear-gradient(135deg, #0a1535 0%, #001a6e 40%, #0a0f1e 100%); }
.hero-accent { position: absolute; right: -80px; top: 30%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(232,33,26,.2) 0%, transparent 70%); pointer-events: none; }
.hero-accent-2 { position: absolute; left: -100px; bottom: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,.12) 0%, transparent 65%); pointer-events: none; }

.hero-top {
  position: relative; z-index: 2;
  width: 100%; max-width: 860px;
  padding: 52px 5% 36px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  animation: fadeUp .7s ease forwards;
}
.hero-logo-img { width: 1100px; max-width: 100%; }
.hero-subtitle { font-size: clamp(15px, 2.2vw, 20px); color: rgba(255,255,255,.7); font-weight: 600; font-style: italic; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: var(--white); padding: 19px 48px; border-radius: 10px; font-size: 18px; font-weight: 800; text-decoration: none; letter-spacing: .5px; transition: transform .2s, box-shadow .2s; box-shadow: 0 8px 36px rgba(232,33,26,.6); touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(232,33,26,.7); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.13); color: var(--white); padding: 19px 48px; border-radius: 10px; border: 2px solid rgba(255,255,255,.55); font-size: 18px; font-weight: 700; text-decoration: none; transition: border-color .2s, background .2s; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.22); }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; opacity: 0.38; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: rgba(255,255,255,.7); line-height: 1; }
.stat-label { font-size: 9px; color: rgba(255,255,255,.45); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }
.hero-gallery { position: relative; z-index: 2; width: 100%; max-width: 980px; padding: 0 5% 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; animation: fadeUp .8s ease .35s both; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; position: relative; border-radius: 8px; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; filter: brightness(.82) saturate(1.1); }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(.95) saturate(1.2); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,18,80,.7) 0%, transparent 55%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 12px 14px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { font-size: 11px; font-weight: 800; color: white; letter-spacing: 1px; text-transform: uppercase; }

/* ── SECTION BASE ── */
section { padding: 80px 5%; }
.section-label { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 5vw, 56px); color: var(--text); letter-spacing: 1.5px; line-height: 1.05; margin-bottom: 14px; }
.section-sub { font-size: 15px; color: var(--muted); max-width: 540px; line-height: 1.7; }

/* ── CATEGORY TABS ── */
.cat-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.cat-tab { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 100px; border: 2px solid #e5e7eb; background: var(--white); color: var(--muted); font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .2s; touch-action: manipulation; -webkit-tap-highlight-color: transparent; white-space: nowrap; }
.cat-tab:hover { border-color: var(--blue); color: var(--blue); }
.cat-tab.active { background: var(--blue); border-color: var(--blue); color: var(--white); box-shadow: 0 4px 16px rgba(0,48,135,.25); }

/* ── PRODUCTS ── */
#productos { background: var(--white); }
.products-header { max-width: 1100px; margin: 0 auto 40px; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.products-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.product-card { border-radius: var(--radius); background: var(--white); border: 1px solid #e5e7eb; overflow: hidden; cursor: pointer; opacity: 0; transform: translateY(24px); transition: opacity .5s, transform .5s, box-shadow .3s; display: flex; flex-direction: column; }
.product-card.visible { opacity: 1; transform: translateY(0); }
.product-card:hover { transform: translateY(-6px) !important; box-shadow: var(--shadow-lg); }
.product-card.hidden { display: none !important; }
.product-img { height: 190px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-img img { width: 75%; height: 75%; object-fit: contain; display: block; }
.product-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; }
.product-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-name { font-weight: 800; font-size: 15px; margin-bottom: 6px; }
.product-desc { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.5; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--blue); }
.btn-card { display: inline-flex; align-items: center; gap: 6px; background: #25D366; color: white; border: none; padding: 9px 16px; border-radius: 6px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s; font-family: 'Nunito', sans-serif; text-decoration: none; white-space: nowrap; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.btn-card:hover { background: #1ebe5d; }
.btn-card:active { transform: scale(.97); }
.btn-card svg { width: 14px; height: 14px; fill: white; flex-shrink: 0; }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 2000; align-items: center; justify-content: center; padding: 16px; backdrop-filter: blur(4px); overflow-y: auto; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); border-radius: 20px; padding: 32px 28px; max-width: 440px; width: 100%; box-shadow: 0 24px 80px rgba(0,0,0,.3); animation: modalIn .25s ease; position: relative; margin: auto; }
@keyframes modalIn { from { opacity:0; transform: translateY(20px) scale(.97); } to { opacity:1; transform: none; } }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--muted); line-height: 1; transition: color .2s; padding: 4px; touch-action: manipulation; }
.modal-close:hover { color: var(--red); }
.modal-header { margin-bottom: 22px; }
.modal-product-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 1px; color: var(--blue); margin-bottom: 2px; }
.modal-product-sub { font-size: 13px; color: var(--muted); }
.modal-label { font-weight: 800; font-size: 13px; margin-bottom: 10px; display: block; letter-spacing: .3px; }
.size-options { display: flex; gap: 10px; margin-bottom: 22px; }
.size-btn { flex: 1; padding: 12px 8px; border-radius: 12px; border: 2px solid #e5e7eb; background: var(--white); cursor: pointer; text-align: center; transition: all .2s; font-family: 'Nunito', sans-serif; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.size-btn:hover { border-color: var(--blue); }
.size-btn.selected { border-color: var(--blue); background: #EEF3FF; }
.size-btn .size-icon { font-size: 24px; display: block; margin-bottom: 5px; }
.size-btn .size-name { font-weight: 800; font-size: 13px; color: var(--text); display: block; }
.size-btn .size-vol { font-size: 11px; color: var(--muted); display: block; margin-top: 2px; }
.size-btn .size-price { font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--blue); display: block; margin-top: 4px; }
.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.qty-btn { width: 40px; height: 40px; border-radius: 8px; border: 2px solid #e5e7eb; background: var(--white); font-size: 20px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; color: var(--text); touch-action: manipulation; -webkit-tap-highlight-color: transparent; min-width: 40px; }
.qty-btn:hover { border-color: var(--blue); color: var(--blue); }
.qty-btn:active { background: var(--gray); }
.qty-num { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--text); min-width: 36px; text-align: center; }
.modal-total { background: var(--gray); border-radius: 12px; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.modal-total-label { font-weight: 700; font-size: 14px; color: var(--muted); }
.modal-total-price { font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--blue); }
.btn-wa-modal { width: 100%; background: #25D366; color: white; border: none; padding: 15px; border-radius: 10px; font-size: 15px; font-weight: 800; cursor: pointer; font-family: 'Nunito', sans-serif; display: flex; align-items: center; justify-content: center; gap: 10px; transition: background .2s; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.btn-wa-modal:hover { background: #1ebe5d; }
.btn-wa-modal svg { width: 20px; height: 20px; fill: white; }

/* ── SERVICES ── */
#servicios { background: var(--dark); }
#servicios .section-title { color: var(--white); }
#servicios .section-sub { color: rgba(255,255,255,.55); }
#servicios .section-label { color: var(--yellow); }
.services-header { max-width: 1100px; margin: 0 auto 44px; }
.services-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 32px 24px; opacity: 0; transform: translateY(24px); transition: opacity .5s, transform .5s, background .3s; }
.service-card.visible { opacity: 1; transform: none; }
.service-card:hover { background: rgba(255,255,255,.09); transform: translateY(-6px) !important; }
.service-icon-wrap { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.service-name { font-weight: 800; font-size: 17px; color: white; margin-bottom: 10px; }
.service-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 20px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--yellow); font-weight: 700; font-size: 13px; text-decoration: none; letter-spacing: .5px; cursor: pointer; touch-action: manipulation; }
.service-link:hover { text-decoration: underline; }
.service-link svg { width: 14px; height: 14px; fill: var(--yellow); flex-shrink: 0; }

/* ── ABOUT ── */
#nosotros { background: var(--gray); padding: 80px 5%; }
.about-inner { max-width: 1000px; margin: 0 auto; }
.about-text-img { display: flex; align-items: center; justify-content: center; gap: 48px; }
.about-text { max-width: 560px; flex: 1; }
.about-img { flex-shrink: 0; }
.about-img img { width: 240px; height: 240px; object-fit: contain; display: block; }

/* ── VIDEO ── */
#video { background: var(--dark); }
#video .section-label { color: var(--yellow); }
#video .section-title { color: var(--white); }
#video .section-sub { color: rgba(255,255,255,.55); margin-bottom: 36px; }
.video-inner { max-width: 500px; margin: 0 auto; }
.video-wrap { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.5); background: #000; max-width: 800px; margin: 0 auto; }
.video-wrap video { width: 100%; display: block; max-height: 800px; object-fit: cover; }

/* ── CONTACT ── */
#contacto { background: var(--gray); }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info { margin-top: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--blue); color: white; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item-title { font-weight: 800; font-size: 13px; margin-bottom: 2px; }
.contact-item-val { font-size: 14px; color: var(--muted); }
.contact-item-val a { color: var(--muted); text-decoration: none; }
.contact-item-val a:hover { color: var(--blue); text-decoration: underline; }
.contact-form { background: var(--white); border-radius: 20px; padding: 40px 36px; box-shadow: var(--shadow); }
.form-title { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 1px; margin-bottom: 8px; }
.form-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; font-size: 13px; margin-bottom: 6px; letter-spacing: .3px; }
input, textarea, select { width: 100%; padding: 12px 14px; border: 1.5px solid #e5e7eb; border-radius: 8px; font-size: 14px; font-family: 'Nunito', sans-serif; color: var(--text); background: white; outline: none; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none; }
input:focus, textarea:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,48,135,.08); }
textarea { resize: vertical; min-height: 110px; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.btn-submit { width: 100%; background: var(--red); color: white; border: none; padding: 15px; border-radius: 8px; font-size: 15px; font-weight: 800; cursor: pointer; letter-spacing: .5px; font-family: 'Nunito', sans-serif; transition: background .2s; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.btn-submit:hover { background: #c0150f; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 48px 5% 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo img { height: 110px; margin-bottom: 14px; display: block; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.45); font-style: italic; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 15px; color: white; text-decoration: none; transition: background .2s; touch-action: manipulation; }
.social-btn:hover { background: var(--blue); }
.footer-col-title { font-weight: 800; font-size: 12px; color: white; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }
.color-bar { display: flex; height: 5px; }
.color-bar span { flex: 1; }
.color-bar span:nth-child(1){background:var(--blue);} .color-bar span:nth-child(2){background:var(--red);}
.color-bar span:nth-child(3){background:var(--yellow);} .color-bar span:nth-child(4){background:var(--green);}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,.45); text-decoration: none; font-size: 26px; animation: pulse 2.5s infinite; transition: transform .2s; touch-action: manipulation; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); } 50% { box-shadow: 0 6px 40px rgba(37,211,102,.7); } }

/* ══ RESPONSIVE – TABLET ≤900px ══ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-logo-img { max-width: 400px; }
  .hero-gallery { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-text-img { flex-direction: column; text-align: center; gap: 28px; }
  .about-text { max-width: 100%; }
  .about-img img { width: 200px; height: 200px; }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-info { margin-top: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .products-header { flex-direction: column; align-items: flex-start; }
}

/* ══ RESPONSIVE – MOBILE ≤600px ══ */
@media (max-width: 600px) {
  section { padding: 56px 5%; }
  #inicio { padding-top: 64px; }
  .hero-top { padding: 36px 5% 28px; }
  .hero-logo-img { max-width: 300px; }
  .hero-subtitle { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; padding: 16px 20px; font-size: 16px; }
  .hero-stats { gap: 16px; }
  .hero-gallery { grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 0 5% 40px; }
  .hero-gallery .gallery-item:last-child { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; max-width: 400px; }
  .cat-tabs { gap: 8px; }
  .cat-tab { padding: 9px 18px; font-size: 13px; }
  .modal-box { padding: 24px 18px; border-radius: 16px; }
  .modal-product-name { font-size: 22px; }
  .size-options { gap: 8px; }
  .size-btn { padding: 10px 6px; }
  .size-btn .size-icon { font-size: 20px; }
  .size-btn .size-name { font-size: 12px; }
  .size-btn .size-price { font-size: 14px; }
  .modal-total-price { font-size: 26px; }
  .contact-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-logo img { height: 80px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; font-size: 24px; }
  .video-wrap video { max-height: 240px; }
}
@media (max-width: 380px) {
  .hero-logo-img { max-width: 240px; }
  .hero-gallery { grid-template-columns: 1fr 1fr; }
  .modal-box { padding: 20px 14px; }
}
