/* ==========================================================================
   Sakti Atelier — Global Stylesheet
   ========================================================================== */

/* BASE RESET & VARIABLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: 'Cormorant Garamond', serif;
  background: #F4F2EF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

:root {
  --cream: #E8E4DF;
  --warm: #DEDAD4;
  --sand: #D9CDBC;
  --stone: #BFB09C;
  --gold: #9B866A;
  --brown: #5C4A38;
  --dark: #2D3830;
  --deepdk: #1C2420;
  --muted: #7A6A5A;
  --bg: #F4F2EF;
  --bg2: #E8E3DC;
  --blue: #2C3A4A;
}

a {
  color: inherit;
  text-decoration: none
}

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

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

/* COMMON NAV (non-home pages) */
/* NAV */
.nav-topbar {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 12px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(45, 56, 48, .12);
  background: var(--dark)
}

.nav-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: .05em;
  color: rgba(245, 239, 230, .72)
}

.nav-toplinks {
  display: flex;
  gap: 32px;
  font-family: 'Jost', sans-serif;
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, .58)
}

.nav-toplinks a:hover {
  color: rgba(245, 239, 230, .9)
}



/* COMMON FOOTER */
/* FOOTER */
.foot {
  background: var(--deepdk);
  color: rgba(245, 239, 230, .45);
  padding: 56px 52px 36px
}

.foot-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 24px
}

.foot-tag {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 12px
}

.foot-desc {
  font-family: 'Jost', sans-serif;
  font-size: 8.5px;
  line-height: 1.85
}

.foot-h {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 7.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #F4F2EF;
  margin-bottom: 14px
}

.foot-lk {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.foot-lk a {
  font-family: 'Jost', sans-serif;
  font-size: 8.5px
}

.foot-ct {
  font-family: 'Jost', sans-serif;
  font-size: 8.5px;
  display: flex;
  flex-direction: column;
  gap: 7px
}

.foot-bt {
  display: flex;
  justify-content: space-between;
  font-family: 'Jost', sans-serif;
  font-size: 7.5px;
  color: rgba(245, 239, 230, .22)
}



/* SHARED COMPONENTS */
/* COOKIE BANNER */
.sakti-cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 36, 32, .35);
  backdrop-filter: blur(2px);
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s
}

.sakti-cookie-overlay.active {
  opacity: 1;
  visibility: visible
}

.sakti-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9991;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.25, .1, .25, 1);
  pointer-events: none
}

.sakti-cookie.active {
  transform: translateY(0);
  pointer-events: auto
}

.sakti-cookie-inner {
  max-width: 680px;
  margin: 0 auto 24px;
  background: #FAFAF8;
  border-radius: 12px;
  padding: 28px 32px 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .1), 0 1px 3px rgba(0, 0, 0, .06)
}

.sakti-cookie-text {
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.8;
  color: #7A6A5A;
  margin-bottom: 20px
}

.sakti-cookie-text a {
  color: #9B866A;
  text-decoration: underline;
  transition: color .3s
}

.sakti-cookie-text a:hover {
  color: #5C4A38
}

.sakti-cookie-btns {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px
}

.sakti-cookie-btn {
  flex: 1;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 6px;
  border: 1px solid #2D3830;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
  text-align: center
}

.sakti-cookie-btn--accept {
  background: #2D3830;
  color: #F4F2EF;
  border-color: #2D3830
}

.sakti-cookie-btn--accept:hover {
  background: #5C4A38;
  border-color: #5C4A38
}

.sakti-cookie-btn--reject {
  background: transparent;
  color: #2D3830;
  border-color: #2D3830
}

.sakti-cookie-btn--reject:hover {
  background: rgba(45, 56, 48, .06)
}

.sakti-cookie-config {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  font-weight: 300;
  color: #BFB09C;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color .3s;
  letter-spacing: .03em
}

.sakti-cookie-config:hover {
  color: #9B866A
}

/* COOKIE PREFERENCES PANEL */
.sakti-cookie-prefs {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9992;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.25, .1, .25, 1);
  pointer-events: none
}

.sakti-cookie-prefs.active {
  transform: translateY(0);
  pointer-events: auto
}

.sakti-cookie-prefs-inner {
  max-width: 680px;
  margin: 0 auto 24px;
  background: #FAFAF8;
  border-radius: 12px;
  padding: 32px 32px 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .1), 0 1px 3px rgba(0, 0, 0, .06)
}

.sakti-cookie-prefs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #2D3830;
  margin-bottom: 6px;
  letter-spacing: .04em
}

.sakti-cookie-prefs-sub {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #BFB09C;
  margin-bottom: 24px;
  line-height: 1.6
}

.sakti-cookie-cat {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(217, 205, 188, .35)
}

.sakti-cookie-cat:last-of-type {
  border-bottom: 1px solid rgba(217, 205, 188, .35)
}

.sakti-cookie-cat-info {
  flex: 1;
  padding-right: 20px
}

.sakti-cookie-cat-name {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #2D3830;
  letter-spacing: .04em;
  margin-bottom: 4px
}

.sakti-cookie-cat-desc {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #BFB09C;
  line-height: 1.7
}

.sakti-cookie-cat-tag {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9B866A;
  flex-shrink: 0;
  padding-top: 2px
}

/* Toggle switch */
.sakti-toggle {
  position: relative;
  width: 38px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px
}

.sakti-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute
}

.sakti-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(217, 205, 188, .5);
  border-radius: 20px;
  transition: background .3s
}

.sakti-toggle-slider::before {
  content: '';
  position: absolute;
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .3s
}

.sakti-toggle input:checked+.sakti-toggle-slider {
  background: #9B866A
}

.sakti-toggle input:checked+.sakti-toggle-slider::before {
  transform: translateX(18px)
}

.sakti-toggle input:disabled+.sakti-toggle-slider {
  opacity: .7;
  cursor: default
}

.sakti-cookie-prefs-btns {
  display: flex;
  gap: 10px;
  margin-top: 24px
}

.sakti-cookie-prefs-btns .sakti-cookie-btn {
  flex: 1
}

/* RESPONSIVE */
@media(max-width:640px) {

  .sakti-cookie-inner,
  .sakti-cookie-prefs-inner {
    margin: 0 12px 12px;
    padding: 24px 20px 20px;
    border-radius: 10px
  }

  .sakti-cookie-btns {
    flex-direction: column
  }

  .sakti-cookie-btn {
    width: 100%
  }

  .sakti-cookie-prefs-btns {
    flex-direction: column
  }
}


/* LANGUAGE SELECTOR */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding-left: 20px;
  border-left: 1px solid rgba(245, 239, 230, .15)
}

.nav-lang a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  opacity: .5;
  transition: opacity .3s;
  position: relative
}

.nav-lang a:hover,
.nav-lang a.active {
  opacity: 1
}

.nav-lang a svg {
  width: 20px;
  height: 20px
}

@media(max-width:1024px) {
  .gems {
    grid-template-columns: 1fr
  }

  .split {
    grid-template-columns: 1fr
  }

  .faqs {
    grid-template-columns: 1fr
  }

  .two-cols {
    grid-template-columns: 1fr
  }

  .drow {
    grid-template-columns: 1fr
  }
}

@media(max-width:768px) {
  .hero-topbar {
    padding: 10px 20px
  }

  .hero-tagline {
    display: none
  }

  .hero-toplinks {
    gap: 16px;
    font-size: 7px
  }

  .nav-lang {
    padding-left: 12px;
    margin-left: 4px;
    gap: 6px
  }

  .nav-lang a {
    width: 18px;
    height: 18px
  }

  .nav-lang a svg {
    width: 18px;
    height: 18px
  }

  .hero-bottom {
    padding: 0 20px 32px
  }

  .acompana {
    padding: 48px 20px
  }

  .gems {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .split {
    grid-template-columns: 1fr
  }

  .two-cols {
    grid-template-columns: 1fr
  }

  .drow {
    grid-template-columns: 1fr
  }

  .faqs {
    padding: 48px 20px;
    grid-template-columns: 1fr;
    gap: 32px
  }

  .cta-section {
    padding: 48px 20px
  }

  .foot {
    padding: 48px 20px 20px
  }

  .foot-g {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .foot-bt {
    flex-direction: column;
    text-align: center;
    gap: 6px
  }
}

@media(max-width:768px) {
  .inline-grid-2col {
    grid-template-columns: 1fr !important;
    padding-left: 20px !important;
    padding-right: 20px !important
  }
}

/* FLOATING CONTACT WIDGET */
.sakti-contact-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px
}

.sakti-contact-bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2D3830;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
  transition: background .3s, transform .2s
}

.sakti-contact-bubble:hover {
  background: #5C4A38;
  transform: scale(1.05)
}

.sakti-contact-bubble svg {
  width: 20px;
  height: 20px;
  stroke: #F4F2EF;
  stroke-width: 1.5;
  fill: none
}

.sakti-contact-bubble.open .sakti-cb-mail {
  display: none
}

.sakti-contact-bubble.open .sakti-cb-close {
  display: block
}

.sakti-contact-bubble .sakti-cb-close {
  display: none
}

.sakti-contact-card {
  width: 280px;
  background: #FAFAF8;
  border-radius: 14px;
  padding: 28px 24px 24px;
  box-shadow: 0 8px 36px rgba(0, 0, 0, .1), 0 1px 3px rgba(0, 0, 0, .05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.96);
  transition: opacity .35s, visibility .35s, transform .35s cubic-bezier(.25, .1, .25, 1);
  pointer-events: none
}

.sakti-contact-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto
}

.sakti-contact-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #2D3830;
  margin-bottom: 10px;
  letter-spacing: .03em
}

.sakti-contact-card-text {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: #7A6A5A;
  margin-bottom: 20px
}

.sakti-contact-card-email {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .06em;
  color: #2D3830;
  text-decoration: none;
  padding: 14px 0;
  border-top: 1px solid rgba(217, 205, 188, .35);
  border-bottom: 1px solid rgba(217, 205, 188, .35);
  text-align: center;
  transition: color .3s
}

.sakti-contact-card-email:hover {
  color: #9B866A
}

.sakti-contact-card-reply {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: #BFB09C;
  text-align: center;
  margin-top: 14px;
  letter-spacing: .04em
}

@media(max-width:480px) {
  .sakti-contact-float {
    bottom: 16px;
    right: 16px
  }

  .sakti-contact-card {
    width: calc(100vw - 32px);
    max-width: 300px
  }

  .sakti-contact-bubble {
    width: 44px;
    height: 44px
  }

  .sakti-contact-bubble svg {
    width: 18px;
    height: 18px
  }
}

/* ============================
   SAKTI RESPONSIVE SYSTEM v2
   ============================ */

/* HAMBURGER BUTTON — hidden on desktop */
.sakti-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 25;
  -webkit-tap-highlight-color: transparent
}

.sakti-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(245, 239, 230, .8);
  margin: 5px 0;
  transition: transform .3s, opacity .3s
}

.sakti-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.sakti-hamburger.open span:nth-child(2) {
  opacity: 0
}

.sakti-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

/* MOBILE NAV OVERLAY */
.sakti-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(28, 36, 32, .97);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
  -webkit-backdrop-filter: blur(12px)
}

.sakti-mobile-nav.open {
  opacity: 1;
  visibility: visible
}

.sakti-mobile-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, .7);
  padding: 18px 0;
  display: block;
  text-align: center;
  transition: color .3s;
  text-decoration: none;
  width: 100%
}

.sakti-mobile-nav a:hover,
.sakti-mobile-nav a:active {
  color: #9B866A
}

.sakti-mobile-nav .sakti-mobile-lang {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
  align-items: center
}

.sakti-mobile-nav .sakti-mobile-lang a {
  font-size: 0;
  padding: 8px;
  width: auto
}

.sakti-mobile-nav .sakti-mobile-lang a svg {
  width: 28px;
  height: 28px
}

.sakti-mobile-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px
}

.sakti-mobile-close svg {
  width: 24px;
  height: 24px;
  stroke: rgba(245, 239, 230, .6);
  stroke-width: 1.5
}

.sakti-mobile-close:hover svg {
  stroke: rgba(245, 239, 230, .9)
}

/* ---- TABLET: 1024px ---- */
@media(max-width:1024px) {

  /* Reduce horizontal padding globally */
  .hero-bottom {
    padding: 0 36px 40px
  }

  .acompana,
  .gems-section,
  .split,
  .two-cols,
  .cta-section,
  .faqs,
  .pilares,
  .comparativa,
  .como,
  .garantia,
  .pasos {
    padding-left: 36px;
    padding-right: 36px
  }

  .foot {
    padding-left: 36px;
    padding-right: 36px
  }

  .faq-body,
  .faq-cta {
    padding-left: 36px;
    padding-right: 36px
  }

  .legal-hero {
    padding-left: 36px;
    padding-right: 36px
  }

  .legal-body {
    padding-left: 36px;
    padding-right: 36px
  }
}

/* ---- MOBILE: 768px ---- */
@media(max-width:768px) {

  /* Show hamburger, hide desktop links */
  .sakti-hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
  }

  .hero-toplinks,
  .nav-toplinks {
    display: none !important
  }

  .nav-lang,
  .hero-topbar .nav-lang {
    display: none !important
  }

  /* Nav bar */
  .hero-topbar,
  .nav-topbar {
    padding: 12px 20px !important
  }

  .hero-tagline,
  .nav-tagline {
    display: none !important
  }

  /* Hero */
  .hero {
    min-height: 520px;
    height: 85vh;
    height: 85svh
  }

  .hero-logo-text {
    font-size: clamp(48px, 14vw, 80px)
  }

  .hero-bottom {
    padding: 0 20px 28px !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px
  }

  .hero-bottom-left {
    max-width: 100%
  }

  .hero-sub {
    font-size: 13px;
    line-height: 1.7
  }

  .btn-hero {
    font-size: 9px;
    padding: 14px 24px;
    width: 100%;
    text-align: center
  }

  /* Typography scaling */
  h1,
  .hero-title,
  .faq-hero h1 {
    font-size: clamp(28px, 8vw, 44px) !important
  }

  h2,
  .split-t,
  .cta-title {
    font-size: clamp(24px, 6vw, 36px) !important
  }

  .hero-eyebrow,
  .split-ey {
    font-size: 11px !important
  }

  .hero-sub-text,
  .split-b,
  .cta-sub {
    font-size: 13px !important;
    line-height: 1.75 !important
  }

  /* Grids → single column */
  .acompana {
    grid-template-columns: 1fr !important;
    gap: 32px;
    padding: 40px 20px !important
  }

  .acompana-left {
    padding-right: 0
  }

  .gems {
    grid-template-columns: 1fr !important;
    gap: 20px
  }

  .split {
    grid-template-columns: 1fr !important
  }

  .two-cols {
    grid-template-columns: 1fr !important
  }

  .drow {
    grid-template-columns: 1fr !important
  }

  .faqs {
    grid-template-columns: 1fr !important;
    gap: 24px
  }

  .inline-grid-2col {
    grid-template-columns: 1fr !important
  }

  .pilares-grid,
  .comp-grid {
    grid-template-columns: 1fr !important
  }

  .datos-grid,
  .colores-grid {
    grid-template-columns: 1fr !important
  }

  .tallas-grid {
    grid-template-columns: repeat(2, 1fr) !important
  }

  .como-steps {
    grid-template-columns: 1fr !important
  }

  .garantia-cols {
    grid-template-columns: 1fr !important
  }

  /* Split photo */
  .split-photo {
    min-height: 260px !important;
    max-height: 340px
  }

  .split-text {
    padding: 36px 20px !important
  }

  /* Sections padding */
  .gems-section,
  .cta-section,
  .como,
  .garantia,
  .pasos,
  .pilares,
  .comparativa {
    padding: 40px 20px !important
  }

  .faq-hero {
    padding: 56px 20px 32px !important
  }

  .faq-body {
    padding: 32px 20px 20px !important;
    max-width: 100%
  }

  .faq-cta {
    padding: 20px 20px 48px !important
  }

  .legal-hero {
    padding: 56px 20px 32px !important
  }

  .legal-body {
    padding: 32px 20px 48px !important;
    max-width: 100%
  }

  /* FAQ items */
  .faq-question {
    font-size: 14px !important;
    padding: 18px 0 !important
  }

  .faq-answer-inner {
    font-size: 13px !important
  }

  .faq-cat-title {
    font-size: 20px !important
  }

  /* Footer */
  .foot {
    padding: 40px 20px 20px !important
  }

  .foot-g {
    grid-template-columns: 1fr !important;
    gap: 24px !important
  }

  .foot-bt {
    flex-direction: column !important;
    text-align: center !important;
    gap: 6px
  }

  .foot-tag {
    font-size: 12px
  }

  .foot-desc {
    font-size: 10px
  }

  .foot-h {
    font-size: 9px
  }

  .foot-lk a {
    font-size: 10px
  }

  .foot-ct {
    font-size: 10px
  }

  /* Buttons — touch friendly */
  .btn-dark,
  .btn-ghost,
  .btn-ghost-lt {
    font-size: 10px !important;
    padding: 16px 28px !important;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center
  }

  a[data-sakti-form] {
    min-height: 48px
  }

  /* GEO/AISO blocks */
  .geo-strip,
  .geo-qa-section,
  .aiso-block {
    padding: 36px 20px !important
  }

  .geo-strip p,
  .geo-qa-section p,
  .aiso-block p {
    font-size: 13px !important;
    line-height: 1.8 !important
  }

  /* Process page specific */
  .intro {
    grid-template-columns: 1fr !important;
    gap: 24px
  }

  .paso {
    grid-template-columns: 1fr !important;
    gap: 16px
  }

  .paso-num {
    font-size: 36px !important
  }

  .paso-photo {
    display: none !important
  }

  /* Trust bar */
  .trust-bar {
    flex-direction: column !important;
    gap: 16px !important;
    padding: 24px 20px !important
  }

  /* Incluye section */
  .incluye-grid {
    grid-template-columns: 1fr !important
  }

  /* Cookie banner mobile */
  .sakti-cookie-inner {
    margin: 0 12px 12px !important;
    padding: 24px 20px 20px !important;
    border-radius: 10px
  }

  .sakti-cookie-btns {
    flex-direction: column !important
  }

  .sakti-cookie-btn {
    padding: 16px 20px !important;
    font-size: 10px !important;
    min-height: 48px
  }

  .sakti-cookie-text {
    font-size: 13px !important
  }

  .sakti-cookie-prefs-inner {
    width: calc(100vw - 24px) !important;
    max-width: 400px;
    margin: 0 auto;
    padding: 28px 20px !important;
    border-radius: 10px
  }

  /* Form panel mobile */
  .sakti-form-panel {
    width: 100vw !important
  }

  .sakti-form-inner {
    padding: 36px 20px 24px !important
  }

  .sakti-form-title {
    font-size: 24px !important
  }

  .sakti-input,
  .sakti-select,
  .sakti-textarea {
    font-size: 16px !important;
    padding: 12px 0 !important
  }

  .sakti-label {
    font-size: 10px !important
  }

  .sakti-submit {
    padding: 18px 24px !important;
    font-size: 10px !important;
    min-height: 52px
  }

  .sakti-check span {
    font-size: 12px !important
  }

  /* Contact widget */
  .sakti-contact-float {
    bottom: 16px !important;
    right: 16px !important
  }

  .sakti-contact-card {
    width: calc(100vw - 32px) !important;
    max-width: 300px
  }

  .sakti-contact-bubble {
    width: 48px;
    height: 48px
  }
}

/* ---- SMALL MOBILE: 480px ---- */
@media(max-width:480px) {
  .hero {
    min-height: 480px;
    height: 80vh;
    height: 80svh
  }

  .hero-logo-text {
    font-size: clamp(40px, 13vw, 60px)
  }

  .hero-bottom {
    padding: 0 16px 24px !important
  }

  .hero-sub {
    font-size: 12.5px
  }

  /* Tighter padding */
  .acompana,
  .gems-section,
  .split,
  .cta-section,
  .como,
  .garantia,
  .pasos,
  .pilares,
  .comparativa {
    padding: 32px 16px !important
  }

  .faq-body {
    padding: 28px 16px 16px !important
  }

  .faq-cta {
    padding: 16px 16px 40px !important
  }

  .legal-hero {
    padding: 48px 16px 28px !important
  }

  .legal-body {
    padding: 28px 16px 40px !important
  }

  .foot {
    padding: 32px 16px 16px !important
  }

  /* Cards */
  .tallas-grid {
    grid-template-columns: 1fr !important
  }

  .gem {
    border-radius: 10px
  }

  /* Form */
  .sakti-form-inner {
    padding: 32px 16px 20px !important
  }

  /* Buttons full width */
  .btn-dark,
  .btn-ghost,
  .btn-ghost-lt,
  .btn-hero {
    width: 100% !important;
    text-align: center !important
  }

  /* Cookie */
  .sakti-cookie-inner {
    margin: 0 8px 8px !important;
    padding: 20px 16px 16px !important
  }

  .sakti-cookie-prefs-inner {
    padding: 24px 16px !important
  }
}

/* ---- ULTRA SMALL: 360px ---- */
@media(max-width:360px) {
  .hero {
    min-height: 440px
  }

  .hero-logo-text {
    font-size: clamp(36px, 12vw, 52px)
  }

  h1,
  .hero-title,
  .faq-hero h1 {
    font-size: clamp(24px, 7vw, 32px) !important
  }

  h2,
  .split-t,
  .cta-title {
    font-size: clamp(20px, 6vw, 28px) !important
  }

  .sakti-mobile-nav a {
    font-size: 13px;
    padding: 14px 0
  }

  .faq-question {
    font-size: 13px !important
  }
}

/* Body scroll lock when mobile nav is open */
body.sakti-nav-open {
  overflow: hidden
}

/* ============================
   HOME-SPECIFIC MOBILE FIXES
   ============================ */

/* Gem detail modules: title + line + button header */
.sakti-gem-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px
}

.sakti-gem-header h2 {
  white-space: nowrap
}

.sakti-gem-header .sakti-gem-line {
  flex: 1;
  height: 1px;
  background: #BFB09C
}

@media(max-width:768px) {

  /* Hero: hide monumental logo on mobile, subtitle is enough */
  .hero-logo {
    display: none !important
  }

  .hero {
    height: 70vh !important;
    height: 70svh !important;
    min-height: 460px !important
  }

  .hero-bottom {
    padding: 0 20px 32px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important
  }

  .hero-bottom h1 {
    font-size: 14px !important;
    line-height: 1.75 !important;
    max-width: 100% !important
  }

  .btn-hero {
    font-size: 9px !important;
    padding: 16px 24px !important;
    width: auto !important
  }

  /* Hide large dog photo on mobile, show only ring photo full width */
  .acompana-photo-lg {
    display: none !important
  }

  .acompana-photos {
    grid-template-columns: 1fr !important;
    height: auto !important
  }

  .acompana-photo-sm {
    height: 280px !important
  }

  /* Gem detail headers: stack vertically */
  .sakti-gem-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important
  }

  .sakti-gem-header h2 {
    white-space: normal !important;
    font-size: clamp(28px, 7vw, 42px) !important;
    letter-spacing: .08em !important
  }

  .sakti-gem-header .sakti-gem-line {
    display: none !important
  }

  .sakti-gem-header a {
    font-size: 9px !important;
    padding: 14px 20px !important
  }

  /* Gem detail section padding */
  [style*="padding:56px 52px"] {
    padding: 36px 20px 0 !important
  }

  [style*="padding:0 52px 56px"] {
    padding: 0 20px 36px !important
  }

  /* CERCA SIEMPRE section */
  [style*="padding:64px 52px"] {
    padding: 40px 20px !important
  }

  [style*="font-size:clamp(48px,6vw,80px)"] {
    font-size: clamp(32px, 8vw, 48px) !important
  }

  /* QUE HACEMOS section */
  .que-hacemos {
    padding: 40px 20px !important
  }

  .sec-header {
    flex-direction: column !important;
    gap: 8px !important;
    margin-bottom: 32px !important
  }

  /* CTA section */
  .cta {
    padding: 48px 20px !important
  }

  .cta-ac {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important
  }

  .cta-ac a {
    width: 100% !important;
    text-align: center !important
  }

  .btn-light {
    font-size: 9px !important;
    padding: 16px 24px !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important
  }

  .btn-ghost {
    font-size: 9px !important;
    padding: 16px 24px !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important
  }
}

@media(max-width:480px) {
  .hero {
    height: 65vh !important;
    height: 65svh !important;
    min-height: 400px !important
  }

  .hero-bottom h1 {
    font-size: 13px !important
  }

  .sakti-gem-header h2 {
    font-size: clamp(24px, 7vw, 36px) !important
  }

  .sakti-gem-header a {
    width: 100% !important;
    text-align: center !important
  }

  .que-hacemos {
    padding: 32px 16px !important
  }

  .cta {
    padding: 40px 16px !important
  }
}





/* MOUSE EVENTS OVERRIDE FOR FLOATING WIDGET */
.sakti-contact-float {
  pointer-events: none !important;
}

.sakti-contact-bubble {
  pointer-events: auto !important;
}

.sakti-contact-card {
  pointer-events: auto !important;
}