/* ============================================================
   MAISY SWITCH — COMPLETE MOBILE-FIRST STYLESHEET
   Mobile → Tablet → Desktop
   Primary: #CC1111 | Font: Poppins + Playfair Display
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

/* ===== VARIABLES ===== */
:root {
  --red:        #CC1111;
  --red-dark:   #A80E0E;
  --red-light:  #E41414;
  --red-pale:   rgba(204,17,17,0.08);
  --dark:       #1A1A1A;
  --dark2:      #222;
  --dark3:      #2C2C2C;
  --gray:       #6b7280;
  --gray-lt:    #9ca3af;
  --border:     #e5e7eb;
  --white:      #ffffff;
  --bg:         #f7f7f7;
  --font:       'Poppins', sans-serif;
  --serif:      'Playfair Display', serif;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow:     0 6px 30px rgba(0,0,0,0.09);
  --shadow-lg:  0 16px 60px rgba(0,0,0,0.14);
  --trans:      all 0.26s cubic-bezier(.4,0,.2,1);
  /* Spacing scale */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 40px;
  --sp-xl: 64px;
}

/* ===== RESET ===== */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }
body { font-family:var(--font); background:var(--white); color:var(--dark); line-height:1.65; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; height:auto; }
ul,ol { list-style:none; }
button,input,textarea,select { font-family:var(--font); }
button { cursor:pointer; }

/* ===== LAYOUT ===== */
.container { width:100%; max-width:1240px; margin:0 auto; padding:0 18px; }
@media(min-width:640px)  { .container { padding:0 24px; } }
@media(min-width:1280px) { .container { padding:0 28px; } }

.section    { padding:52px 0; }
.section-sm { padding:36px 0; }
@media(min-width:768px) { .section { padding:72px 0; } .section-sm { padding:52px 0; } }
@media(min-width:1024px){ .section { padding:88px 0; } }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display:inline-block;
  font-size:11px; font-weight:800;
  text-transform:uppercase; letter-spacing:2.5px;
  color:var(--red); margin-bottom:10px;
}
.section-title {
  font-family:var(--serif);
  font-size:clamp(24px,5vw,42px);
  font-weight:900; color:var(--dark);
  line-height:1.12; letter-spacing:-0.5px;
}
.section-sub {
  font-size:15.5px; color:var(--gray);
  margin-top:14px; line-height:1.75;
  max-width:580px; font-weight:400;
}
.section-head { margin-bottom:36px; }
@media(min-width:768px) { .section-head { margin-bottom:48px; } }
.section-head.center { text-align:center; }
.section-head.center .section-sub { margin-left:auto; margin-right:auto; }

/* ===== BUTTONS ===== */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:11px 22px; border-radius:var(--radius);
  font-weight:700; font-size:14px;
  border:2px solid transparent;
  transition:var(--trans); cursor:pointer;
  white-space:nowrap; line-height:1;
  -webkit-tap-highlight-color:transparent;
}
.btn-red    { background:var(--red); color:var(--white); border-color:var(--red); }
.btn-red:hover { background:var(--red-dark); border-color:var(--red-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(204,17,17,.35); }
.btn-outline-red { background:transparent; color:var(--red); border-color:var(--red); }
.btn-outline-red:hover { background:var(--red); color:var(--white); }
.btn-dark   { background:var(--dark); color:var(--white); border-color:var(--dark); }
.btn-dark:hover { background:var(--dark3); transform:translateY(-2px); }
.btn-outline-dark { background:transparent; color:var(--dark); border-color:var(--border); }
.btn-outline-dark:hover { border-color:var(--dark); }
.btn-sm     { padding:8px 16px; font-size:13px; }
.btn-lg     { padding:14px 30px; font-size:15px; }
@media(max-width:400px) { .btn { padding:10px 18px; font-size:13px; } .btn-lg { padding:13px 22px; } }

/* ===== TOPBAR ===== */
.topbar {
  background:var(--dark);
  border-bottom:2px solid var(--red);
  padding:7px 0;
  display:none; /* hidden on mobile */
}
@media(min-width:768px) { .topbar { display:block; } }
.topbar-inner {
  max-width:1240px; margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.topbar-left,.topbar-right { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.topbar-item {
  display:flex; align-items:center; gap:6px;
  font-size:12px; color:rgba(255,255,255,.6); font-weight:500;
}
.topbar-item svg { color:var(--red-light); flex-shrink:0; }
.topbar-item a { color:rgba(255,255,255,.6); transition:color .2s; }
.topbar-item a:hover { color:var(--red-light); }
.topbar-right span { font-size:11.5px; color:rgba(255,255,255,.4); }

/* ===== NAVBAR ===== */
.navbar {
  background:var(--white);
  position:sticky; top:0; z-index:999;
  box-shadow:0 2px 20px rgba(0,0,0,.07);
  transition:box-shadow .3s;
}
.navbar.scrolled { box-shadow:0 4px 30px rgba(0,0,0,.12); }
.nav-inner {
  max-width:1240px; margin:0 auto; padding:0 18px;
  display:flex; align-items:center; justify-content:space-between;
  height:62px; gap:16px;
}
@media(min-width:640px) { .nav-inner { padding:0 24px; height:68px; } }
@media(min-width:1024px){ .nav-inner { height:72px; } }

.logo {
  font-family:var(--font);
  font-size:20px; font-weight:800;
  color:var(--red); letter-spacing:-0.5px;
  white-space:nowrap; flex-shrink:0;
}
@media(min-width:640px) { .logo { font-size:22px; } }
.logo em { font-style:normal; color:var(--dark); }

/* Desktop nav links */
.nav-links { display:none; }
@media(min-width:1024px) {
  .nav-links {
    display:flex; align-items:center; gap:4px;
  }
  .nav-links a {
    font-size:14px; font-weight:600; color:var(--dark);
    padding:8px 13px; border-radius:6px; transition:var(--trans);
    white-space:nowrap;
  }
  .nav-links a:hover,.nav-links a.active { color:var(--red); background:var(--red-pale); }
}

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

.nav-social { display:none; }
@media(min-width:1024px) {
  .nav-social { display:flex; gap:8px; }
  .nav-social a {
    width:34px; height:34px;
    display:flex; align-items:center; justify-content:center;
    color:var(--gray); border-radius:8px; transition:var(--trans);
  }
  .nav-social a:hover { color:var(--red); background:var(--red-pale); }
}

.btn-nav-contact { display:none; }
@media(min-width:1024px) {
  .btn-nav-contact {
    display:inline-flex; align-items:center; gap:6px;
    background:var(--red); color:var(--white);
    padding:9px 18px; border-radius:var(--radius);
    font-weight:700; font-size:13.5px;
    transition:var(--trans);
  }
  .btn-nav-contact:hover { background:var(--red-dark); }
}

/* Mobile call button */
.nav-call {
  display:flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:8px;
  background:var(--red-pale); color:var(--red);
  transition:var(--trans); flex-shrink:0;
}
.nav-call:hover { background:var(--red); color:var(--white); }
@media(min-width:1024px) { .nav-call { display:none; } }

/* Hamburger */
.hamburger {
  display:flex; flex-direction:column; gap:5px;
  cursor:pointer; padding:6px; border-radius:6px;
  background:none; border:none; -webkit-tap-highlight-color:transparent;
}
.hamburger span {
  display:block; width:22px; height:2px;
  background:var(--dark); border-radius:2px;
  transition:var(--trans);
}
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
@media(min-width:1024px) { .hamburger { display:none; } }

/* Mobile menu */
.mobile-menu {
  display:none; flex-direction:column;
  background:var(--white);
  border-top:2px solid var(--red);
  padding:0; overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.1);
  max-height:0; transition:max-height .35s ease, padding .35s ease;
}
.mobile-menu.open {
  display:flex; max-height:600px; padding:8px 0 16px;
}
.mobile-menu a {
  font-size:15px; font-weight:600; color:var(--dark);
  padding:13px 20px;
  border-bottom:1px solid rgba(0,0,0,.05);
  transition:color .2s, background .2s;
  display:flex; align-items:center; justify-content:space-between;
}
.mobile-menu a:last-child { border-bottom:none; }
.mobile-menu a:hover,.mobile-menu a.active { color:var(--red); background:var(--red-pale); }
.mobile-menu .mobile-cta {
  margin:12px 20px 0;
  background:var(--red); color:var(--white) !important;
  border-radius:var(--radius); text-align:center;
  justify-content:center; border-bottom:none !important;
}
.mobile-menu .mobile-cta:hover { background:var(--red-dark) !important; }

/* Mobile bottom strip — phone+whatsapp */
.mobile-contact-strip {
  background:var(--dark);
  padding:8px 18px;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
}
@media(min-width:768px) { .mobile-contact-strip { display:none; } }
.mobile-contact-strip a {
  display:flex; align-items:center; gap:6px;
  font-size:12.5px; font-weight:600; color:rgba(255,255,255,.8);
}
.mobile-contact-strip a svg { color:var(--red-light); }

/* ===== PAGE HERO / BREADCRUMB ===== */
.page-hero {
  background:var(--dark);
  padding:36px 0;
  position:relative; overflow:hidden;
}
@media(min-width:768px) { .page-hero { padding:52px 0; } }
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(120deg,rgba(204,17,17,.18) 0%,transparent 55%);
  pointer-events:none;
}
.page-hero-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:44px 44px;
}
.page-hero-inner { max-width:1240px; margin:0 auto; padding:0 18px; position:relative; z-index:1; }
@media(min-width:640px) { .page-hero-inner { padding:0 24px; } }
.page-hero h1 {
  font-family:var(--serif);
  font-size:clamp(22px,5vw,42px);
  font-weight:900; color:var(--white);
  margin-bottom:12px; line-height:1.15;
}
.breadcrumb { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.breadcrumb a { font-size:12.5px; color:rgba(255,255,255,.5); font-weight:500; transition:color .2s; }
.breadcrumb a:hover { color:var(--red-light); }
.breadcrumb span { font-size:12.5px; color:rgba(255,255,255,.3); }
.breadcrumb .current { font-size:12.5px; color:rgba(255,255,255,.75); font-weight:600; }

/* ===== TRUST BAR ===== */
.trust-bar { background:var(--bg); border-bottom:1px solid var(--border); padding:14px 0; overflow-x:auto; }
.trust-inner {
  max-width:1240px; margin:0 auto; padding:0 18px;
  display:flex; align-items:center; justify-content:flex-start;
  gap:24px; white-space:nowrap;
}
@media(min-width:768px)  { .trust-inner { justify-content:center; gap:32px; } }
@media(min-width:1024px) { .trust-inner { gap:48px; } }
.trust-item {
  display:flex; align-items:center; gap:8px;
  font-size:12.5px; font-weight:600; color:var(--dark);
  flex-shrink:0;
}
.trust-item svg { color:var(--red); }
.trust-sep { width:1px; height:24px; background:var(--border); flex-shrink:0; display:none; }
@media(min-width:768px) { .trust-sep { display:block; } }

/* ===== CARDS ===== */
.card {
  background:var(--white); border-radius:var(--radius-lg);
  border:1px solid var(--border); overflow:hidden;
  transition:var(--trans);
}
.card:hover { box-shadow:var(--shadow); border-color:transparent; transform:translateY(-3px); }

/* ===== PRODUCT CARD ===== */
.product-card {
  background:var(--white); border-radius:var(--radius-lg);
  border:1px solid var(--border); overflow:hidden;
  transition:var(--trans);
}
.product-card:hover { box-shadow:var(--shadow); border-color:transparent; transform:translateY(-4px); }
.product-card-img {
  aspect-ratio:1; background:var(--bg);
  overflow:hidden; position:relative;
}
.product-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.product-card:hover .product-card-img img { transform:scale(1.07); }
.product-card-img-ph {
  width:100%; height:100%;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:10px; color:#ccc; font-size:12px;
}
.product-card-img-ph svg { color:var(--red); opacity:.35; }
.product-badge {
  position:absolute; top:10px; left:10px;
  background:var(--red); color:var(--white);
  font-size:10px; font-weight:700; text-transform:uppercase;
  letter-spacing:.8px; padding:3px 8px; border-radius:4px;
}
.product-card-body { padding:14px; }
@media(min-width:640px) { .product-card-body { padding:18px; } }
.product-card-cat { font-size:10.5px; font-weight:700; text-transform:uppercase; letter-spacing:1.2px; color:var(--red); margin-bottom:5px; }
.product-card-name { font-size:14px; font-weight:700; color:var(--dark); margin-bottom:7px; line-height:1.35; }
@media(min-width:640px) { .product-card-name { font-size:15px; } }
.product-card-desc { font-size:12.5px; color:var(--gray); line-height:1.6; margin-bottom:14px; }
.product-card-actions { display:flex; gap:8px; }
.product-card-actions .btn { flex:1; justify-content:center; padding:9px 8px; font-size:12px; border-radius:6px; }
@media(min-width:480px) { .product-card-actions .btn { font-size:12.5px; padding:9px 12px; } }

/* ===== CATEGORY CARD ===== */
.cat-card {
  background:var(--white); border-radius:var(--radius-lg);
  border:1px solid var(--border); padding:24px 18px;
  text-align:center; transition:var(--trans);
  display:block; position:relative; overflow:hidden;
}
@media(min-width:640px) { .cat-card { padding:30px 22px; } }
@media(min-width:1024px) { .cat-card { padding:34px 24px; } }
.cat-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:3px; background:var(--red);
  transform:scaleX(0); transition:transform .3s;
}
.cat-card:hover { box-shadow:var(--shadow); border-color:transparent; transform:translateY(-5px); }
.cat-card:hover::after { transform:scaleX(1); }
.cat-icon-wrap {
  width:64px; height:64px; background:var(--red-pale);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px; color:var(--red); transition:var(--trans);
}
@media(min-width:768px) { .cat-icon-wrap { width:72px; height:72px; margin-bottom:20px; } }
.cat-card:hover .cat-icon-wrap { background:var(--red); color:var(--white); }
.cat-card-name { font-size:15px; font-weight:700; color:var(--dark); margin-bottom:8px; }
@media(min-width:768px) { .cat-card-name { font-size:17px; } }
.cat-card-desc { font-size:12.5px; color:var(--gray); line-height:1.65; margin-bottom:14px; }
.cat-card-link { font-size:12.5px; font-weight:700; color:var(--red); display:inline-flex; align-items:center; gap:5px; transition:gap .2s; }
.cat-card:hover .cat-card-link { gap:9px; }

/* ===== FORM ELEMENTS ===== */
.form-group { margin-bottom:18px; }
.form-label { display:block; font-size:13px; font-weight:600; color:var(--dark); margin-bottom:6px; }
.form-label .req { color:var(--red); }
.form-control {
  width:100%; background:var(--white);
  border:1.5px solid var(--border); border-radius:var(--radius);
  padding:11px 14px; font-size:14px; color:var(--dark);
  font-family:var(--font); transition:border-color .2s,box-shadow .2s;
  outline:none; -webkit-appearance:none;
}
.form-control:focus { border-color:var(--red); box-shadow:0 0 0 3px rgba(204,17,17,.1); }
.form-control::placeholder { color:#b0b0b0; font-size:13px; }
textarea.form-control { resize:vertical; min-height:110px; }
select.form-control {
  appearance:none; -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 13px center;
  padding-right:38px;
}
/* Stack form rows on mobile */
.form-row { display:grid; grid-template-columns:1fr; gap:0; }
@media(min-width:640px) { .form-row { grid-template-columns:1fr 1fr; gap:18px; } }
.form-alert {
  padding:12px 15px; border-radius:var(--radius);
  font-size:13.5px; font-weight:500; margin-bottom:18px;
  display:flex; align-items:flex-start; gap:10px; line-height:1.5;
}
.form-alert.success { background:#f0fdf4; border:1px solid #86efac; color:#166534; }
.form-alert.error   { background:#fef2f2; border:1px solid #fca5a5; color:#991b1b; }

/* ===== WHY SECTION ===== */
.why-section { background:var(--dark); padding:60px 0; }
@media(min-width:1024px) { .why-section { padding:80px 0; } }
.why-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-lg); padding:28px 22px;
  text-align:center; transition:var(--trans);
}
.why-card:hover { background:rgba(204,17,17,.1); border-color:rgba(204,17,17,.3); transform:translateY(-4px); }
.why-icon { width:60px; height:60px; background:rgba(204,17,17,.15); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 18px; color:#ff5555; }
.why-title { font-size:16px; font-weight:700; color:var(--white); margin-bottom:9px; }
.why-desc  { font-size:13px; color:rgba(255,255,255,.5); line-height:1.65; }

/* ===== CTA SECTION ===== */
.cta-section {
  background:var(--red); padding:56px 0;
  text-align:center; position:relative; overflow:hidden;
}
@media(min-width:768px) { .cta-section { padding:72px 0; } }
.cta-section::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:40px 40px;
}
.cta-inner { position:relative; z-index:1; }
.cta-title {
  font-family:var(--serif);
  font-size:clamp(26px,4.5vw,46px);
  font-weight:900; color:var(--white); margin-bottom:14px; line-height:1.15;
  letter-spacing:-0.5px;
}
.cta-desc { font-size:15px; color:rgba(255,255,255,.85); max-width:540px; margin:0 auto 28px; line-height:1.7; }
.btn-cta-white {
  background:var(--white); color:var(--red);
  padding:14px 32px; border-radius:var(--radius);
  font-weight:800; font-size:14.5px;
  display:inline-flex; align-items:center; gap:8px;
  transition:var(--trans);
}
.btn-cta-white:hover { background:var(--bg); transform:translateY(-2px); box-shadow:0 10px 30px rgba(0,0,0,.2); }

/* ===== BULK BANNER ===== */
.bulk-banner {
  background:var(--bg);
  border-top:3px solid var(--red);
  border-bottom:3px solid var(--red);
  padding:40px 0;
}
@media(min-width:768px) { .bulk-banner { padding:52px 0; } }
.bulk-inner {
  display:flex; flex-direction:column; gap:24px;
  align-items:flex-start;
}
@media(min-width:768px) {
  .bulk-inner { flex-direction:row; align-items:center; justify-content:space-between; gap:28px; }
}
.bulk-btns { display:flex; gap:12px; flex-wrap:wrap; width:100%; }
@media(min-width:768px) { .bulk-btns { width:auto; } }
.bulk-btns .btn { flex:1; justify-content:center; }
@media(min-width:480px) { .bulk-btns .btn { flex:none; } }

/* ===== FOOTER ===== */
footer { background:#161616; }
.footer-main { padding:52px 0 36px; border-bottom:1px solid rgba(255,255,255,.07); }
@media(min-width:768px) { .footer-main { padding:64px 0 44px; } }
.footer-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:36px;
}
@media(min-width:640px) { .footer-grid { grid-template-columns:1fr 1fr; gap:32px; } }
@media(min-width:1024px) { .footer-grid { grid-template-columns:2.2fr 1fr 1fr 1.6fr; gap:48px; } }

.footer-logo { font-size:20px; font-weight:800; color:var(--red); margin-bottom:12px; display:block; }
.footer-logo em { font-style:normal; color:rgba(255,255,255,.8); }
.footer-tagline { font-size:13px; color:rgba(255,255,255,.45); line-height:1.75; margin-bottom:20px; }
.footer-social-row { display:flex; gap:9px; flex-wrap:wrap; }
.social-icon {
  width:36px; height:36px; border-radius:8px;
  background:rgba(255,255,255,.07);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.55); transition:var(--trans);
}
.social-icon:hover { background:var(--red); color:var(--white); }

.footer-col-title {
  font-size:12.5px; font-weight:700; text-transform:uppercase;
  letter-spacing:1.5px; color:rgba(255,255,255,.85);
  margin-bottom:18px; padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-links { display:flex; flex-direction:column; gap:9px; }
.footer-links a {
  font-size:13.5px; color:rgba(255,255,255,.5); transition:var(--trans);
  display:flex; align-items:center; gap:6px;
}
.footer-links a:hover { color:var(--red-light); padding-left:4px; }

.footer-contact-item { display:flex; align-items:flex-start; gap:11px; margin-bottom:14px; }
.footer-contact-item svg { color:var(--red); flex-shrink:0; margin-top:2px; }
.footer-contact-item p { font-size:13px; color:rgba(255,255,255,.52); line-height:1.65; }
.footer-contact-item a { color:rgba(255,255,255,.52); transition:color .2s; }
.footer-contact-item a:hover { color:var(--red-light); }

/* Newsletter in footer */
.newsletter-wrap { margin-top:18px; }
.newsletter-label { font-size:11.5px; font-weight:600; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:1px; margin-bottom:9px; }
.newsletter-row { display:flex; }
.newsletter-input {
  flex:1; background:rgba(255,255,255,.07);
  border:1.5px solid rgba(255,255,255,.1); border-right:none;
  border-radius:var(--radius) 0 0 var(--radius);
  padding:10px 13px; color:var(--white);
  font-size:13px; font-family:var(--font); outline:none;
  transition:border-color .2s; -webkit-appearance:none;
  min-width:0;
}
.newsletter-input::placeholder { color:rgba(255,255,255,.3); }
.newsletter-input:focus { border-color:var(--red); }
.newsletter-btn {
  background:var(--red); color:var(--white);
  border:none; padding:10px 14px;
  border-radius:0 var(--radius) var(--radius) 0;
  font-weight:700; font-size:12.5px; cursor:pointer;
  transition:background .2s; white-space:nowrap;
  font-family:var(--font);
}
.newsletter-btn:hover { background:var(--red-dark); }
.newsletter-success { font-size:12px; color:#4ade80; margin-top:7px; }

.footer-bottom { padding:16px 0; }
.footer-bottom-inner {
  display:flex; flex-direction:column; gap:10px;
}
@media(min-width:640px) { .footer-bottom-inner { flex-direction:row; align-items:center; justify-content:space-between; gap:12px; } }
.footer-copy { font-size:12.5px; color:rgba(255,255,255,.3); }
.footer-legal { display:flex; gap:16px; flex-wrap:wrap; }
@media(min-width:640px) { .footer-legal { gap:22px; } }
.footer-legal a { font-size:12.5px; color:rgba(255,255,255,.35); transition:color .2s; }
.footer-legal a:hover { color:var(--red-light); }

/* ===== PAGINATION ===== */
.pagination { display:flex; align-items:center; justify-content:center; gap:6px; margin-top:40px; flex-wrap:wrap; }
.page-btn {
  width:38px; height:38px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-size:13.5px; font-weight:600; color:var(--dark);
  border:1.5px solid var(--border); background:var(--white);
  transition:var(--trans); cursor:pointer; text-decoration:none;
}
.page-btn:hover,.page-btn.active { background:var(--red); color:var(--white); border-color:var(--red); }
.page-btn.disabled { opacity:.4; pointer-events:none; }

/* ===== SIDEBAR ===== */
.sidebar-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:22px;
  margin-bottom:20px;
}
.sidebar-card-title {
  font-size:13px; font-weight:700; color:var(--dark);
  text-transform:uppercase; letter-spacing:.8px;
  margin-bottom:14px; padding-bottom:10px;
  border-bottom:1px solid var(--border);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position:fixed; bottom:20px; right:16px; z-index:9999;
  width:52px; height:52px; background:#25d366;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 18px rgba(37,211,102,.55);
  transition:transform .2s, box-shadow .2s;
}
@media(min-width:768px) { .wa-float { width:56px; height:56px; bottom:24px; right:24px; } }
.wa-float:hover { transform:scale(1.1); box-shadow:0 6px 26px rgba(37,211,102,.7); }

/* ===== ANIMATE ON SCROLL ===== */
.anim { opacity:0; transform:translateY(24px); transition:opacity .5s ease,transform .5s ease; }
.anim-in { opacity:1; transform:none; }

/* ===== UTILITY ===== */
.text-center { text-align:center; }
.text-red { color:var(--red); }
.fw-700 { font-weight:700; }
.mt-8  { margin-top:8px; }
.mt-16 { margin-top:16px; }
.mt-24 { margin-top:24px; }
.mt-32 { margin-top:32px; }
.gap-12 { gap:12px; }
.d-flex { display:flex; }
.align-center { align-items:center; }
.flex-wrap { flex-wrap:wrap; }
