:root {
  --white: #ffffff;
  --gold: #e2bd74;
  --blue: #00358e;
  --dark: #20120b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, Arial, sans-serif;
  background: #fffdf9;
  color: #102245;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.6vw;
  color: var(--white);
  background: linear-gradient(180deg, rgba(22,13,8,.56), rgba(22,13,8,.08));
  transition: height .25s ease, background .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  height: 76px;
  background: rgba(20, 14, 12, .72);
  backdrop-filter: blur(12px);
}

.brand-logo {
  display: block;
  width: clamp(145px, 16vw, 245px);
  line-height: 0;
  position: relative;
  top: 50px;
  left: 15px;  
}

.brand-logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 4px 18px rgba(0,0,0,.36));
}

@media (max-width: 768px) {
    .site-header.logo-morphed .brand-logo .logo-small {
        top: -10px;
    }
}

.icon-whatsapp{
  display: block;
  width: 25px;
  line-height: 0;
  position: relative;
  top: 0px;
  left: 0px;  
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
}

.main-nav a:not(.contact-btn)::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.contact-btn {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.92);
  padding: 0 18px;
  transition: background .2s ease, transform .2s ease;
}

.contact-btn:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.wa { font-size: 10px; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  height: 760px;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(41,23,12,.78) 0%, rgba(41,23,12,.58) 34%, rgba(41,23,12,.18) 56%, rgba(41,23,12,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.04) 50%, rgba(0,0,0,.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-left: 8.9vw;
  margin-top: 95px;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .085em;
  font-size: clamp(22px, 2.25vw, 33px);
  text-shadow: 0 3px 18px rgba(0,0,0,.22);
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(78px, 8vw, 134px);
  line-height: .78;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .02em;
  text-shadow: 0 5px 25px rgba(0,0,0,.28);
}

.script-row {
  margin-top: 13px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.script {
  font-family: Parisienne, cursive;
  color: var(--gold);
  font-size: clamp(45px, 5vw, 80px);
  line-height: .85;
  text-shadow: 0 4px 20px rgba(0,0,0,.25);
}

.small-line,
.long-line {
  height: 2px;
  background: rgba(226,189,116,.92);
  display: block;
}

.small-line { width: 39px; }
.long-line { width: 142px; }

.hero-text {
  margin: 28px 0 24px;
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 600;
  line-height: 1.62;
  text-shadow: 0 3px 16px rgba(0,0,0,.32);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 52px;
  background: var(--blue);
  color: var(--white);
  padding: 0 31px;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .065em;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  transition: transform .22s ease, background .22s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  background: #052d78;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}

.hero-dots span {
  width: 11px;
  height: 11px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: transparent;
}

.hero-dots span:first-child { background: var(--white); }

/* Existing lower sections restored as image-based sections */
.visual-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.visual-section img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.hotspot {
  position: absolute;
  display: block;
  z-index: 10;
  font-size: 0;
  border-radius: 3px;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.hotspot:hover {
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.story-btn { left: 7.6%; top: 82.2%; width: 10.8%; height: 9.3%; }

.card { top: 23.5%; height: 61%; }
.sandals { left: 4.8%; width: 21.5%; }
.wedges { left: 27.4%; width: 21.5%; }
.heels { left: 50.2%; width: 21.5%; }
.elegant { left: 72.8%; width: 21.5%; }
.all-collection { left: 40.1%; top: 85.1%; width: 19.2%; height: 8%; }

.spain-btn { left: 7.6%; top: 78.5%; width: 12.4%; height: 9.2%; }
.whatsapp-btn { left: 53.2%; top: 27%; width: 28.4%; height: 39%; }

.story-btn:hover,
.all-collection:hover,
.spain-btn:hover,
.whatsapp-btn:hover { transform: translateY(-2px); }

.mobile-actions { display: none; }

@media (max-width: 980px) {
  .site-header {
    height: 82px;
    padding: 0 24px;
  }

  .brand-logo { width: 145px; }

  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
    padding: 25px;
    background: rgba(32,18,11,.94);
    backdrop-filter: blur(14px);
  }

  .main-nav.open { display: flex; }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    margin-left: 6vw;
    margin-right: 28px;
  }
}

@media (max-width: 640px) {
  .hero {
    height: 720px;
    min-height: 100vh;
  }

  .hero-bg { background-position: 62% center; }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(41,23,12,.86) 0%, rgba(41,23,12,.62) 58%, rgba(41,23,12,.22) 100%),
      linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.16));
  }

  .hero-content { margin-top: 90px; }

  .long-line { width: 68px; }

  .mobile-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-actions a {
    min-height: 48px;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
  }
}


/* =========================
   SECTION 2 - REAL STORY SECTION
   ========================= */

.story-real {
  min-height: 410px;
  display: grid;
  grid-template-columns: 44.5% 55.5%;
  align-items: stretch;
  background: linear-gradient(90deg, #fffdf9 0%, #fbf6ee 100%);
  overflow: hidden;
}

.story-copy {
  padding-left: clamp(42px, 7.7vw, 110px);
  padding-right: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-kicker {
  margin: 0 0 17px;
  color: #c89a51;
  font-size: 20px;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 700;
}

.story-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.4vw, 61px);
  line-height: 1.02;
  color: #102245;
  font-weight: 700;
}

.gold-divider {
  width: 42px;
  height: 2px;
  background: #c89a51;
  margin: 27px 0;
  display: block;
}

.story-text {
  max-width: 430px;
  margin: 0 0 29px;
  color: #66645f;
  line-height: 1.82;
  font-size: 17px;
}

.story-button {
  width: max-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #102245;
  color: #102245;
  padding: 0 27px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.story-button:hover {
  transform: translateY(-2px);
  background: #102245;
  color: #fff;
}

.story-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 410px;
  overflow: hidden;
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 900px) {
  .story-real {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding: 70px 28px 45px;
  }

  .story-visual {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .story-copy h2 {
    font-size: 40px;
  }
}


/* =========================
   SECTION 3 - REAL COLLECTION SECTION
   ========================= */

.collection-real {
  background: #ffffff;
  padding: 78px clamp(26px, 5.7vw, 82px) 88px;
  text-align: center;
}

.collection-heading {
  text-align: center;
  margin-bottom: 39px;
}

.collection-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.4vw, 61px);
  line-height: 1.02;
  color: #102245;
  font-weight: 700;
}

.gold-divider.center {
  margin-left: auto;
  margin-right: auto;
}

.collection-grid {
  width: min(100%, 1330px);
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.collection-card {
  background: #fbf7f0;
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

.collection-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(14, 24, 50, .12);
}

.collection-photo {
  height: 235px;
  background: #eee5db;
  overflow: hidden;
}

.collection-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.collection-card:hover .collection-photo img {
  transform: scale(1.045);
}

.collection-card-body {
  padding: 23px 15px 28px;
}

.collection-card h3 {
  margin: 0 0 11px;
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #102245;
  font-weight: 600;
}

.collection-card a {
  color: #102245;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  transition: color .2s ease;
}

.collection-card a:hover {
  color: #c89a51;
}

.collection-main-button {
  min-height: 48px;
  width: max-content;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00358e;
  color: #ffffff;
  padding: 0 28px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform .22s ease, background .22s ease;
}

.collection-main-button:hover {
  transform: translateY(-2px);
  background: #052d78;
}

@media (max-width: 1050px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-photo {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .collection-real {
    padding: 62px 22px 70px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-photo {
    height: 300px;
  }

  .collection-heading h2 {
    font-size: 40px;
  }
}


/* =========================
   SECTION 4 - MADE IN SPAIN
   ========================= */

.spain-real {
  min-height: 620px;
  display: grid;
  grid-template-columns: 48% 52%;
  background: linear-gradient(
    135deg,
    #07255f 0%,
    #0a316f 50%,
    #123f88 100%
  );
  color: #ffffff;
  overflow: hidden;
}

.spain-content {
  padding: clamp(60px, 8vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spain-content h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 700;
  color: #ffffff;
}

.spain-text {
  margin: 28px 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,.88);
}

.spain-features {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.spain-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.95);
  font-size: 14px;
  letter-spacing: .03em;
}

.spain-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e2bd74;
  font-weight: 700;
}

.spain-button {
  width: max-content;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,.85);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .09em;
  font-weight: 700;
  transition: all .25s ease;
}

.spain-button:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.spain-visual {
  position: relative;
  overflow: hidden;
}

.spain-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(0,0,0,.18),
      rgba(0,0,0,.18)
    ),
    url('assets/spain.jpg');
  background-size: 145%;
  background-position: center center;
  transform: scale(1.06);
  transition: transform .8s ease;
}

.spain-real:hover .spain-image {
  transform: scale(1.1);
}

@media (max-width: 900px) {

  .spain-real {
    grid-template-columns: 1fr;
  }

  .spain-content {
    padding: 60px 28px;
  }

  .spain-visual {
    min-height: 380px;
  }
}

@media (max-width: 640px) {

  .spain-content h2 {
    font-size: 44px;
  }

  .spain-visual {
    min-height: 300px;
  }
}


/* =========================
   SECTION 4 ICON UPDATE
   Uses exact uploaded PNG icons
   ========================= */

.spain-features {
  display: none !important;
}

.spain-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.2vw, 30px);
  max-width: 560px;
  margin: 38px 0 36px;
}

.spain-icon-card {
  text-align: center;
}

.spain-icon-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  margin: 0 auto 13px;
  transition: transform .25s ease, filter .25s ease;
}

.spain-icon-card:hover img {
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 12px rgba(226, 189, 116, .25));
}

.spain-icon-card p {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  font-weight: 500;
}

@media (max-width: 900px) {
  .spain-icons {
    grid-template-columns: repeat(2, 1fr);
    max-width: 420px;
  }

  .spain-icon-card img {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 520px) {
  .spain-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 20px;
  }
}


/* =========================
   SECTION 5 - REAL BENEFITS SECTION
   ========================= */

.benefits-real {
  position: relative;
  background: #fffdf9;
  padding: 78px clamp(24px, 5vw, 80px) 84px;
  overflow: hidden;
}

.benefits-real::before,
.benefits-real::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  opacity: .08;
  background:
    radial-gradient(circle at 30% 30%, transparent 18px, #102245 19px, transparent 20px),
    radial-gradient(circle at 70% 70%, transparent 18px, #102245 19px, transparent 20px);
  pointer-events: none;
}

.benefits-real::before {
  left: -70px;
  bottom: 15px;
}

.benefits-real::after {
  right: -70px;
  bottom: 15px;
}

.benefits-heading {
  text-align: center;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
}

.section-kicker.navy {
  color: #102245;
}

.benefits-grid {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #eadfce;
  position: relative;
  z-index: 1;
}

.benefit-card {
  text-align: center;
  padding: 42px 30px 20px;
  border-right: 1px solid #eadfce;
}

.benefit-card:last-child {
  border-right: 0;
}

.benefit-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  margin: 0 auto 18px;
}

.benefit-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #102245;
  font-weight: 700;
}

.benefit-card p {
  margin: 0 auto;
  max-width: 210px;
  color: #66645f;
  font-size: 17px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card:nth-child(2) {
    border-right: 0;
  }

  .benefit-card:nth-child(1),
  .benefit-card:nth-child(2) {
    border-bottom: 1px solid #eadfce;
  }
}

@media (max-width: 560px) {
  .benefits-real {
    padding: 62px 22px 72px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    border-right: 0;
    border-bottom: 1px solid #eadfce;
  }

  .benefit-card:last-child {
    border-bottom: 0;
  }
}


/* =========================
   FINAL SECTION - REAL CONTACT CTA + FOOTER
   ========================= */

.contact-real {
  background:
    radial-gradient(circle at 4% 50%, rgba(44, 86, 165, .35), transparent 31%),
    radial-gradient(circle at 96% 50%, rgba(44, 86, 165, .28), transparent 34%),
    linear-gradient(135deg, #061d50 0%, #082b70 55%, #06245f 100%);
  color: #ffffff;
  padding: 56px clamp(24px, 7vw, 110px);
  position: relative;
  overflow: hidden;
}

.contact-real::before,
.contact-real::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  opacity: .08;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  pointer-events: none;
}

.contact-real::before {
  left: -90px;
  top: -80px;
}

.contact-real::after {
  right: -90px;
  bottom: -95px;
}

.contact-inner {
  width: min(100%, 1040px);
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
  color: #ffffff;
}

.contact-copy p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 17px;
  line-height: 1.6;
}

.whatsapp-button {
  min-height: 54px;
  min-width: 330px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.78);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 12px;
  font-weight: 700;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.1);
  border-color: #ffffff;
}

.whatsapp-icon {
  font-size: 10px;
}

.site-footer {
  background: #041533;
  color: #ffffff;
  padding: 38px 24px;
  text-align: center;
}

.footer-brand img {
  width: 180px;
  height: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.site-footer p {
  margin: 3px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 8px;
}

@media (max-width: 760px) {
  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-button {
    width: 100%;
    min-width: 0;
  }

  .footer-brand img {
    width: 150px;
  }
}


/* =========================
   LOGO MORPH ON SCROLL
   ========================= */

.brand-logo {
  position: relative;
  display: block;
  width: clamp(145px, 16vw, 245px);
  line-height: 0;
  transition: width .38s ease, transform .38s ease;
}

.brand-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 4px 18px rgba(0,0,0,.36));
  transition: opacity .38s ease, transform .38s ease;
}

.brand-logo .logo-small {
  position: absolute;
  inset: 50% auto auto 0;
  transform: translateY(-50%) scale(.86);
  opacity: 0;
  pointer-events: none;
  top: 7px;
}

.site-header.logo-morphed .brand-logo {
  width: clamp(112px, 10vw, 160px);
}

.site-header.logo-morphed .brand-logo .logo-full {
  opacity: 0;
  transform: scale(.86);
}

.site-header.logo-morphed .brand-logo .logo-small {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

@media (max-width: 980px) {
  .site-header.logo-morphed .brand-logo {
    width: 112px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 138px;
  }

  .site-header.logo-morphed .brand-logo {
    width: 104px;
  }
}


/* =========================
   COLLECTION EXPAND / VIEW ALL
   ========================= */

.collection-main-button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.collection-extra-card {
  max-height: 0;
  opacity: 0;
  transform: translateY(24px);
  overflow: hidden;
  pointer-events: none;
  transition:
    max-height .55s ease,
    opacity .45s ease,
    transform .45s ease,
    margin .45s ease;
}

.collection-real.collection-expanded .collection-extra-card {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.collection-real.collection-expanded {
  animation: collectionSoftExpand .45s ease both;
}

.collection-main-button::after {
  content: " ↓";
  margin-left: 8px;
}

.collection-real.collection-expanded .collection-main-button::after {
  content: " ↑";
}

@keyframes collectionSoftExpand {
  from { padding-bottom: 88px; }
  to { padding-bottom: 96px; }
}

@media (max-width: 1050px) {
  .collection-real.collection-expanded .collection-extra-card {
    max-height: 470px;
  }
}

@media (max-width: 640px) {
  .collection-real.collection-expanded .collection-extra-card {
    max-height: 500px;
  }
}


/* WhatsApp button icons */
.wa-btn-icon{
    width:18px;
    height:18px;
    object-fit:contain;
    display:inline-block;
    vertical-align:middle;
    margin-right:10px;
    flex-shrink:0;
}

.header-contact-btn,
.contact-whatsapp-btn,
.whatsapp-button,
.contact-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
}


/* Active menu section indicator */
.main-nav a{
position:relative;
}
.main-nav a:not(.contact-btn)::after{
content:"";
position:absolute;
left:50%;
bottom:-8px;
width:0;
height:2px;
background:#d8b06a;
transition:all .3s ease;
transform:translateX(-50%);
}
.main-nav a.active:not(.contact-btn)::after{
width:100%;
}
