:root {
  --bg: #FAF8F5;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --muted: #7A7A7A;
  --line: #E5E0D5;
  --green: #25D366;
  --primary: #B5935A;
  /* Gold/Champagne */
  --gold2: #9A7B4A;
  --radius: 0px;
  --radius2: 0px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  --shadow2: 0 20px 60px rgba(0, 0, 0, 0.06);
  --max: 1200px;
  --serif: "Cormorant Garamond", "Playfair Display", serif;
  --sans: "Outfit", "Inter", -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

.section.compact {
  padding: 80px 0;
}

.grid {
  display: grid;
  gap: 40px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(229, 224, 213, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  transition: padding 0.3s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand .name {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.15em;
  font-size: clamp(22px, 4vw, 32px);
  color: #D32F2F;
  /* Touches of deep red/pink like Amaranta */
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu a.link {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text);
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.menu a.link:hover {
  opacity: 0.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: var(--sans);
  background: transparent;
  color: var(--text);
}

.btn:hover {
  background: var(--text);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn.primary:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  color: #fff;
}

.btn.secondary:hover {
  background: #f9fafb;
}

.btn.small {
  padding: 10px 16px;
  font-size: 11px;
}

.claim {
  display: none;
}

/* Removed to keep header extra clean */

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.2), rgba(26, 26, 26, 0.6));
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 40px 0;
  color: #FFFFFF;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.kicker .dot {
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 300;
  margin: 0 0 24px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.hero .lead {
  font-size: 16px;
  color: #FFFFFF;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Section Headers */
.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-head p {
  margin: 16px auto 0;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.6;
  font-size: 15px;
}

/* Cards & Products */
.cards-3 {
  grid-template-columns: 1fr;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .cards-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    padding: 0;
  }
}

.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 16px;
}

@media (min-width: 600px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.card,
.product {
  background: var(--surface);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid rgba(229, 224, 213, 0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover,
.product:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}

.card .media,
.product .p-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  height: auto;
  border-radius: 12px;
  margin-bottom: 16px;
}

.card .media img,
.product .p-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product .p-media:hover img {
  transform: scale(1.05);
}

.badge,
.tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--text);
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card .content,
.product .p-content {
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card h3,
.product h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.05em;
}

.card p,
.product p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.price {
  margin-top: 4px;
  font-weight: 300;
  color: var(--text);
  font-size: 15px;
  letter-spacing: 0.05em;
}

.card .actions,
.product .p-actions {
  padding: 20px 0 4px;
  display: flex;
  justify-content: center;
  margin-top: auto;
}

/* Tabs */
.tabs-wrap {
  width: 100%;
  margin: 0 auto;
}

.tabs-bar {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 30px;
  padding-left: 16px;
  padding-right: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tabs-bar::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .tabs-bar {
    justify-content: center;
    gap: 30px;
    padding-left: 0;
    padding-right: 0;
    overflow-x: visible;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
}

.tab {
  white-space: nowrap;
  flex-shrink: 0;
  appearance: none;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 0 8px;
  cursor: pointer;
  transition: 0.3s ease;
  border-bottom: 2px solid transparent;
  margin-bottom: -18px;
}

.tab:hover {
  color: var(--text);
}

.tab[aria-selected="true"] {
  color: var(--text);
  border-bottom-color: var(--text);
  font-weight: 500;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Forms */
.form-wrap {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 0;
  width: min(800px, 100%);
  margin: 0 auto;
  background: var(--surface);
}

.astral-client-data {
  background: rgba(181, 147, 90, 0.04);
  padding: 30px;
  margin: 30px 0;
  border: 1px solid var(--line);
}

.astral-client-data h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 20px;
  color: var(--text);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-wrap {
    padding: 24px 20px;
  }
}

label {
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

input[type="text"],
input[type="tel"],
input[type="date"],
textarea,
select {
  font-family: var(--sans);
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  outline: none;
  transition: border-color 0.4s;
  font-size: 14px;
  color: var(--text);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
  font-size: 24px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 50%;
}

/* Modal Catalogo - Amaranta Style */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #FAF8F5;
  width: min(460px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.modal-header {
  padding: 30px 30px 0;
}

.modal-header h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.modal-product {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  border-bottom: 1px solid var(--line);
}

.modal-product-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
}

.modal-product-info h4 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-product-info .coleccion {
  display: none;
}

.modal-product-info .precio {
  font-weight: 300;
  color: var(--text);
  font-size: 15px;
  letter-spacing: 0.05em;
}

.modal-form {
  padding: 24px 30px;
}

.modal-actions {
  padding: 0 30px 30px;
}

.modal-actions .btn {
  width: 100%;
  padding: 18px;
  font-size: 13px;
}

/* Size & Detail Field Fixes */
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.size-radio {
  cursor: pointer;
  flex: 1;
  min-width: 120px;
}

.size-radio input {
  display: none;
}

.size-radio span {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  transition: 0.2s;
}

.size-radio input:checked+span {
  border-color: var(--text);
  color: var(--text);
  font-weight: 500;
}

.size-radio.full-width {
  flex: 100%;
}

.char-count {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}

.delivery-info p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.modal-hint {
  display: none;
}

/* Footer */
footer {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.foot b {
  font-weight: 500;
  color: var(--text);
}

.foot-links {
  display: flex;
  gap: 20px;
}

/* Floating WhatsApp Amaranta style */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
}

.wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s;
}

.wa-btn:hover {
  transform: scale(1.05);
}

.wa-bubble {
  display: none;
}

/* Astral Section Special Styling */
#astrales {
  position: relative;
  background: url('fotos%20xilema/Astral.png') center top/cover no-repeat;
}

#astrales::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.65);
  z-index: 1;
}

#astrales>.container {
  position: relative;
  z-index: 2;
}

#astrales .section-head h2,
#astrales .section-head p {
  color: #fff;
}

#astrales .form-wrap {
  background: rgba(250, 248, 245, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

#astrales label,
#astrales .hint {
  color: rgba(255, 255, 255, 0.9);
}

#astrales input[type="text"],
#astrales input[type="tel"],
#astrales input[type="date"],
#astrales input[type="time"],
#astrales textarea {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

#astrales input::placeholder,
#astrales textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#astrales input:focus,
#astrales textarea:focus {
  border-bottom-color: var(--primary);
}

#astrales .astral-client-data {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

#astrales .astral-client-data h4 {
  color: #fff;
}

/* hide bubble, just button */

/* Suscripcion Section Special Styling */
#suscripcion .form-wrap {
  position: relative;
  background: url('fotos%20xilema/Xilematecuida.png') center top/cover no-repeat;
  border: none;
  overflow: hidden;
  color: #fff;
}

#suscripcion .form-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.25);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 0;
}

#suscripcion .form-wrap>* {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

#suscripcion .form-wrap label,
#suscripcion .form-wrap .hint {
  color: rgba(255, 255, 255, 0.9);
}

#suscripcion .form-wrap p {
  color: rgba(255, 255, 255, 0.8) !important;
}

#suscripcion .form-wrap input[type="text"],
#suscripcion .form-wrap input[type="tel"],
#suscripcion .form-wrap input[type="email"],
#suscripcion .form-wrap select,
#suscripcion .form-wrap textarea {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

#suscripcion .form-wrap input::placeholder,
#suscripcion .form-wrap textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#suscripcion .form-wrap input:focus,
#suscripcion .form-wrap select:focus,
#suscripcion .form-wrap textarea:focus {
  border-bottom-color: var(--primary);
}

#suscripcion .form-wrap select option {
  color: var(--text);
}

/* Fix plan boxes inside suscripcion form-wrap */
#suscripcion .form-wrap .grid>div {
  background: rgba(250, 248, 245, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(4px);
}

#suscripcion .form-wrap .grid>div h4,
#suscripcion .form-wrap .grid>div div,
#suscripcion .form-wrap .grid>div ul {
  color: #fff !important;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero {
    min-height: 55vh;
  }

  .hero-content {
    padding: 20px 0;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 42px);
    margin: 0 0 16px;
  }

  .hero .lead {
    font-size: 14px;
    margin: 0 auto 24px;
  }

  .kicker {
    margin-bottom: 16px;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .modal-content {
    max-height: 85vh;
    width: 100%;
    position: absolute;
    bottom: 0;
  }
}

/* Shopping Cart Drawer */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.4);
}

.cart-overlay.active {
  display: block;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  bottom: 0;
  width: min(400px, 100%);
  background: #FAF8F5;
  z-index: 1100;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.5, 0, 0, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  padding: 24px 30px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-close {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
  padding: 0;
  line-height: 1;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-empty {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 40px;
}

.cart-item {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.cart-item-img {
  width: 70px;
  height: 90px;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-item-title {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.cart-item-size {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 4px;
}

.cart-item-price {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: #D32F2F;
  font-size: 11px;
  cursor: pointer;
  text-transform: uppercase;
  padding: 0;
  margin-top: 8px;
  text-align: left;
}

.cart-footer {
  padding: 24px 30px;
  border-top: 1px solid var(--line);
  background: #fafafa;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cart-checkout-btn {
  width: 100%;
}

/* Cart Icon in Header */
.cart-icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 8px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.cart-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #D32F2F;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Menu Links and Burger */
.burger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

.menu-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 20px;
  gap: 20px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 40;
}

.menu-links.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.claim {
  display: none; /* Hide on mobile by default */
}

#btnContactHeader {
  display: none; /* Hide on mobile by default */
}

@media (min-width: 1024px) {
  .burger-btn {
    display: none;
  }
  .menu-links {
    position: static;
    flex-direction: row;
    width: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    backdrop-filter: none;
  }
  .claim {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--text);
    text-transform: uppercase;
    opacity: 0.7;
  }
  #btnContactHeader {
    display: inline-flex;
  }
}
