* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dark: #17100b;
  --brown: #8a613c;
  --cream: #fbf5ec;
  --sand: #efe2d2;
  --white: #ffffff;
  --gold: #c99b54;
  --soft: rgba(255, 255, 255, 0.74);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--dark);
  background:
    radial-gradient(circle at 10% 0%, rgba(201,155,84,0.22), transparent 30%),
    radial-gradient(circle at 90% 16%, rgba(138,97,60,0.14), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, #fbf5ec 45%, #efe2d2 100%);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, 0.86);
  border-bottom: 1px solid rgba(23, 16, 11, 0.10);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(23, 16, 11, 0.06);
}

.nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  box-shadow: 0 10px 26px rgba(23, 16, 11, 0.08);
}

.logo img {
  width: 140px;
  height: auto;
  display: block;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.menu a {
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(23, 16, 11, 0.76);
  transition: 0.25s ease;
}

.menu a:hover {
  color: var(--dark);
  border-color: rgba(23, 16, 11, 0.14);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 8px 22px rgba(23, 16, 11, 0.07);
}

.hero {
  min-height: 82vh;
  padding: 118px 24px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23,16,11,0.76), rgba(23,16,11,0.40)),
    radial-gradient(circle at 18% 20%, rgba(201,155,84,0.35), transparent 28%),
    linear-gradient(135deg, #3a2517, #b98548 42%, #efe2d2);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 34px;
  pointer-events: none;
}

.hero::after {
  content: "OUTLET";
  position: absolute;
  right: -42px;
  bottom: 44px;
  font-family: Arial, sans-serif;
  font-size: clamp(64px, 12vw, 170px);
  font-weight: 800;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.08);
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-card {
  max-width: 920px;
  text-align: center;
  padding: 70px 48px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.52);
  border-radius: 34px;
  box-shadow:
    0 34px 90px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.86);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 1;
}

.eyebrow,
.label {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--brown);
  font-size: 12px;
  margin-bottom: 18px;
  font-weight: 700;
}

h1 {
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
}

h3 {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 400;
}

.hero-text,
.lead {
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: #4b382a;
}

.hero-text {
  max-width: 730px;
  margin: 0 auto 34px;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 176px;
  padding: 15px 25px;
  border-radius: 999px;
  border: 1px solid var(--dark);
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: 0.25s ease;
  box-shadow: 0 12px 28px rgba(23, 16, 11, 0.12);
}

.btn-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: 0 0 auto;
}

.btn.primary {
  background: var(--dark);
  color: var(--white);
}

.btn.secondary {
  background: rgba(255,255,255,0.56);
  color: var(--dark);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(23, 16, 11, 0.18);
}

.content-section,
.outlet-section,
.contact-section,
.newsletter {
  padding: 92px 24px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.two-columns {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 58px;
  align-items: start;
}

.content-section .lead {
  max-width: 780px;
  margin-bottom: 18px;
}

.info-box {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(23, 16, 11, 0.10);
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 24px 70px rgba(23, 16, 11, 0.11);
  position: relative;
  overflow: hidden;
}

.info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--brown), var(--dark));
}

.info-box h3 {
  margin-bottom: 16px;
}

.info-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 16, 11, 0.10);
  font-family: Arial, sans-serif;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row span {
  display: block;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 5px;
}

.outlet-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(201,155,84,0.24), transparent 25%),
    linear-gradient(135deg, rgba(239,226,210,0.98), rgba(255,250,242,0.98));
}

.cards {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: rgba(255,255,255,0.80);
  padding: 38px;
  min-height: 220px;
  border: 1px solid rgba(23, 16, 11, 0.10);
  border-radius: 30px;
  box-shadow: 0 20px 54px rgba(23, 16, 11, 0.10);
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -48px;
  bottom: -48px;
  border-radius: 999px;
  background: rgba(201,155,84,0.22);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(23, 16, 11, 0.14);
}

.card h3 {
  margin-bottom: 14px;
}

.card p {
  font-family: Arial, sans-serif;
  color: #4b382a;
}

.products-section {
  padding: 96px 24px;
  background:
    linear-gradient(180deg, #fffaf2 0%, #fbf5ec 45%, #efe2d2 100%);
}

.products-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: end;
  margin-bottom: 40px;
}

.products-intro {
  font-family: Arial, sans-serif;
  color: #4b382a;
  font-size: 17px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(23, 16, 11, 0.10);
  border-radius: 32px;
  box-shadow: 0 22px 60px rgba(23, 16, 11, 0.12);
  overflow: hidden;
  transition: 0.25s ease;
  position: relative;
}

.product-card::before {
  content: "SALE";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 82px rgba(23, 16, 11, 0.18);
}

.product-image {
  height: 300px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.95), transparent 34%),
    linear-gradient(135deg, rgba(201,155,84,0.20), rgba(239,226,210,0.92)),
    repeating-linear-gradient(45deg, rgba(23,16,11,0.06) 0 1px, transparent 1px 20px);
  border-bottom: 1px solid rgba(23, 16, 11, 0.08);
}

.product-image span {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: rgba(23, 16, 11, 0.54);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px dashed rgba(23, 16, 11, 0.32);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
}

.product-content {
  padding: 30px;
}

.product-tag {
  display: inline-block;
  margin-bottom: 13px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(201,155,84,0.18);
  color: var(--brown);
  font-family: Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
}

.product-content h3 {
  margin-bottom: 10px;
}

.product-content p {
  font-family: Arial, sans-serif;
  color: #4b382a;
}

.product-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 16, 11, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-bottom strong {
  font-size: 25px;
  font-weight: 400;
}

.product-bottom a {
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid var(--dark);
  background: var(--dark);
  color: var(--white);
  transition: 0.25s ease;
}

.product-bottom a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(23, 16, 11, 0.18);
}

.contact-card {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,155,84,0.36), transparent 35%),
    linear-gradient(135deg, #17100b, #3b2618);
  color: var(--white);
  padding: 68px 30px;
  border-radius: 34px;
  box-shadow: 0 30px 84px rgba(23, 16, 11, 0.18);
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 26px;
  pointer-events: none;
}

.contact-card .label,
.contact-card .lead {
  color: rgba(255,255,255,0.78);
}

.phone {
  display: inline-block;
  margin-top: 24px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.newsletter {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,155,84,0.22), transparent 32%),
    linear-gradient(135deg, rgba(255,250,242,1), rgba(239,226,210,1));
}

.newsletter h2 {
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.08em;
}

.newsletter-form {
  margin: 30px auto 0;
  max-width: 620px;
  display: flex;
  gap: 12px;
  padding: 10px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(23, 16, 11, 0.10);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(23, 16, 11, 0.10);
}

.newsletter-form input {
  flex: 1;
  padding: 15px 18px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
}

.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid var(--dark);
  background: var(--dark);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.newsletter-form button .btn-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: 0 0 auto;
}

footer {
  background: #120c08;
  color: var(--white);
  padding: 46px 24px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

footer img {
  width: 150px;
  margin-bottom: 18px;
  object-fit: contain;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 14px 34px rgba(0,0,0,0.24);
}

.footer-small-logo {
  width: 58px;
  margin: 16px auto 0;
  display: block;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 10px 28px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(255, 255, 255, 0.28);
}

.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
}

.contact-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-main-button {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
  transition: 0.25s ease;
}

.contact-main-button svg,
.contact-item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-main-button:hover {
  transform: translateY(-3px);
}

.contact-main-button .close-icon {
  display: none;
}

.contact-toggle:checked ~ .contact-main-button .open-icon {
  display: none;
}

.contact-toggle:checked ~ .contact-main-button .close-icon {
  display: block;
}

.contact-popup {
  position: absolute;
  right: 0;
  bottom: 78px;
  display: grid;
  gap: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  transition: 0.25s ease;
}

.contact-toggle:checked ~ .contact-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.contact-item {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.22);
  transition: 0.25s ease;
}

.contact-item:hover {
  transform: translateX(-4px);
}

.contact-item.whatsapp {
  background: #25D366;
}

.contact-item.email {
  background: var(--brown);
}

.contact-item.x-twitter {
  background: #000000;
}

.contact-item.facebook {
  background: #1877F2;
}

@media (max-width: 860px) {
  .nav,
  .menu {
    flex-direction: column;
  }

  .menu {
    gap: 12px;
  }

  .two-columns,
  .cards,
  .products-head,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 46px 24px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 28px;
  }
}

@media (max-width: 520px) {
  .floating-contact {
    right: 18px;
    bottom: 18px;
  }

  .contact-main-button {
    width: 58px;
    height: 58px;
  }
}

/* Premium creative motion background */
.hero,
.products-section,
.outlet-section {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.24), transparent 20%),
    radial-gradient(circle at 80% 18%, rgba(201, 155, 84, 0.34), transparent 24%),
    radial-gradient(circle at 52% 90%, rgba(255, 255, 255, 0.16), transparent 26%);
  filter: blur(2px);
  animation: premiumAura 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  width: 62%;
  height: 150%;
  left: -72%;
  top: -25%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.04) 43%,
    rgba(255, 255, 255, 0.24) 50%,
    rgba(255, 255, 255, 0.04) 57%,
    transparent 64%,
    transparent 100%
  );
  transform: rotate(8deg);
  animation: premiumLightSweep 7s ease-in-out infinite;
}

.hero-card {
  position: relative;
  z-index: 2;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(201,155,84,0.35),
    rgba(255,255,255,0.45),
    rgba(138,97,60,0.22)
  );
  z-index: -2;
  animation: premiumCardGlow 8s ease-in-out infinite alternate;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: rgba(255,255,255,0.78);
  z-index: -1;
}

.products-section::before,
.outlet-section::before {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 70%, rgba(201,155,84,0.22), transparent 18%),
    radial-gradient(circle at 82% 24%, rgba(255,255,255,0.62), transparent 18%),
    radial-gradient(circle at 50% 42%, rgba(138,97,60,0.10), transparent 24%);
  animation: premiumSoftFloat 16s ease-in-out infinite alternate;
}

.products-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.36), transparent),
    linear-gradient(135deg, transparent 0 44%, rgba(201,155,84,0.10) 50%, transparent 56% 100%);
  opacity: 0.55;
  transform: translateX(-65%);
  animation: premiumProductShine 9s ease-in-out infinite;
}

.products-section .container,
.outlet-section .container {
  position: relative;
  z-index: 1;
}

.product-card {
  position: relative;
  isolation: isolate;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 50% 0%, rgba(201,155,84,0.22), transparent 48%);
  opacity: 0;
  transition: 0.25s ease;
}

.product-card:hover::after {
  opacity: 1;
}

@keyframes premiumAura {
  0% {
    transform: translate3d(-1%, -1%, 0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translate3d(1.5%, 0.5%, 0) scale(1.04);
    opacity: 1;
  }
  100% {
    transform: translate3d(2%, 1%, 0) scale(1.08);
    opacity: 0.84;
  }
}

@keyframes premiumLightSweep {
  0% {
    left: -72%;
    opacity: 0;
  }
  18% {
    opacity: 0.85;
  }
  48% {
    left: 118%;
    opacity: 0;
  }
  100% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes premiumCardGlow {
  0% {
    opacity: 0.42;
    filter: blur(0px);
  }
  100% {
    opacity: 0.78;
    filter: blur(1px);
  }
}

@keyframes premiumSoftFloat {
  0% {
    transform: translate3d(-2%, 1%, 0) scale(1);
    opacity: 0.70;
  }
  100% {
    transform: translate3d(2%, -1%, 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes premiumProductShine {
  0% {
    transform: translateX(-70%);
    opacity: 0;
  }
  25% {
    opacity: 0.52;
  }
  55% {
    transform: translateX(70%);
    opacity: 0;
  }
  100% {
    transform: translateX(70%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .hero-card::before,
  .products-section::before,
  .products-section::after,
  .outlet-section::before {
    animation: none;
  }
}

.map-buttons {
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 162px;
  padding: 13px 18px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border: 1px solid rgba(255,255,255,0.24);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(0,0,0,0.24);
  transition: 0.25s ease;
  backdrop-filter: blur(10px);
}

.map-btn svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex: 0 0 auto;
}

.map-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.30);
}

.google-map {
  background:
    radial-gradient(circle at 24% 24%, rgba(255,255,255,0.32), transparent 30%),
    linear-gradient(135deg, #1a73e8, #34a853 55%, #fbbc04);
}

.apple-map {
  background:
    radial-gradient(circle at 24% 24%, rgba(255,255,255,0.28), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06)),
    #2d2d2f;
}

.map-btn {
  min-width: 58px;
  width: 58px;
  height: 58px;
  padding: 0;
}

.map-btn .maps-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.map-btn .apple-logo {
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.22));
}

/* Black & white premium motion map logos */
.map-buttons {
  gap: 12px;
}

.map-btn {
  min-width: 62px;
  width: 62px;
  height: 62px;
  padding: 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  color: #111111;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.95), rgba(255,255,255,0.52) 42%, rgba(255,255,255,0.18) 72%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(210,210,210,0.92));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 16px 36px rgba(0,0,0,0.28);
}

.map-btn::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.92) 48%, transparent 66%);
  transform: translateX(-90%) rotate(12deg);
  animation: mapLogoShine 4.8s ease-in-out infinite;
  z-index: -1;
}

.map-btn::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  pointer-events: none;
}

.map-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 24px 52px rgba(0,0,0,0.34);
}

.map-btn .maps-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.22));
}

.map-fold,
.map-pin,
.app-square,
.nav-arrow {
  fill: #111111;
}

.map-fold,
.app-square {
  opacity: 0.94;
}

.map-line,
.app-road {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-line {
  stroke-width: 3;
  opacity: 0.88;
}

.app-road {
  stroke-width: 3.4;
  opacity: 0.95;
}

.map-dot {
  fill: #ffffff;
}

.map-pulse {
  fill: none;
  stroke: rgba(17,17,17,0.26);
  stroke-width: 2;
  transform-origin: center;
  animation: mapPulseRing 2.8s ease-in-out infinite;
}

.bw-google-map-logo .map-pin {
  transform-origin: 32px 30px;
  animation: mapPinFloat 2.6s ease-in-out infinite;
}

.bw-google-map-logo .map-dot {
  transform-origin: 32px 28.8px;
  animation: mapDotPop 2.6s ease-in-out infinite;
}

.bw-apple-map-logo .nav-arrow {
  transform-origin: 35px 34px;
  animation: mapArrowDrift 3.2s ease-in-out infinite;
}

.bw-apple-map-logo .road-one,
.bw-apple-map-logo .road-two,
.bw-apple-map-logo .road-three {
  stroke-dasharray: 52;
  stroke-dashoffset: 0;
  animation: mapRoadMove 4.2s linear infinite;
}

@keyframes mapLogoShine {
  0% {
    transform: translateX(-90%) rotate(12deg);
    opacity: 0;
  }
  22% {
    opacity: 0.85;
  }
  45% {
    transform: translateX(90%) rotate(12deg);
    opacity: 0;
  }
  100% {
    transform: translateX(90%) rotate(12deg);
    opacity: 0;
  }
}

@keyframes mapPulseRing {
  0% {
    transform: scale(0.78);
    opacity: 0.08;
  }
  45% {
    opacity: 0.36;
  }
  100% {
    transform: scale(1.15);
    opacity: 0.02;
  }
}

@keyframes mapPinFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2.5px);
  }
}

@keyframes mapDotPop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.86);
  }
}

@keyframes mapArrowDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(1.8px, -2px, 0) rotate(3deg);
  }
}

@keyframes mapRoadMove {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -104;
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-btn::before,
  .map-pulse,
  .bw-google-map-logo .map-pin,
  .bw-google-map-logo .map-dot,
  .bw-apple-map-logo .nav-arrow,
  .bw-apple-map-logo .road-one,
  .bw-apple-map-logo .road-two,
  .bw-apple-map-logo .road-three {
    animation: none;
  }
}

/* Final map icon replacement: exact provided logos, same size */
.map-buttons {
  gap: 14px;
}

.map-btn,
.map-btn.google-map,
.map-btn.apple-map {
  width: 64px;
  height: 64px;
  min-width: 64px;
  padding: 0;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 16px 36px rgba(0,0,0,0.26);
}

.map-btn .map-real-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  filter: none;
}

.map-btn.google-map .map-real-icon {
  width: 48px;
  height: 48px;
}

.map-btn.apple-map .map-real-icon {
  width: 44px;
  height: 44px;
}

.map-btn:hover {
  transform: translateY(-3px) scale(1.03);
}

/* Balanced final map logo sizing */
.map-btn,
.map-btn.google-map,
.map-btn.apple-map {
  width: 66px;
  height: 66px;
  min-width: 66px;
  border-radius: 20px;
}

.map-btn .map-real-icon,
.map-btn.google-map .map-real-icon,
.map-btn.apple-map .map-real-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Elite final map icons */
.map-btn,
.map-btn.google-map,
.map-btn.apple-map {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 22px;
  padding: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,1), rgba(255,255,255,0.80) 42%, rgba(230,230,230,0.95));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 18px 42px rgba(0,0,0,0.30);
}

.map-btn .map-real-icon,
.map-btn.google-map .map-real-icon,
.map-btn.apple-map .map-real-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  border-radius: 18px;
}

.map-btn:hover {
  transform: translateY(-4px) scale(1.04);
}

/* Matching generated map icons - no asset images */
.map-btn,
.map-btn.google-map,
.map-btn.apple-map {
  width: 68px;
  height: 68px;
  min-width: 68px;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.98), rgba(255,255,255,0.66) 46%, rgba(220,220,220,0.96) 100%);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 18px 42px rgba(0,0,0,0.28);
}

.map-btn .matching-map-icon {
  width: 54px;
  height: 54px;
  display: block;
  filter: drop-shadow(0 5px 9px rgba(0,0,0,0.22));
}

.mmi-tile {
  fill: #111111;
}

.mmi-map-line {
  fill: none;
  stroke: rgba(255,255,255,0.92);
  stroke-width: 4.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mmi-line-two {
  opacity: 0.76;
}

.mmi-line-three {
  opacity: 0.62;
}

.mmi-pin,
.mmi-arrow {
  fill: #ffffff;
}

.mmi-pin-hole {
  fill: #111111;
}

.mmi-letter {
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 8px;
  fill: #ffffff;
  dominant-baseline: middle;
}

.mmi-arrow-dot {
  fill: #111111;
}

.google-map .matching-map-icon {
  animation: mapIconFloatA 3.6s ease-in-out infinite;
}

.apple-map .matching-map-icon {
  animation: mapIconFloatB 3.6s ease-in-out infinite;
}

.google-map .mmi-pin {
  transform-origin: 32px 29px;
  animation: mapPinSoft 2.8s ease-in-out infinite;
}

.apple-map .mmi-arrow {
  transform-origin: 36px 34px;
  animation: mapArrowSoft 2.8s ease-in-out infinite;
}

.map-btn:hover {
  transform: translateY(-4px) scale(1.04);
}

@keyframes mapIconFloatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1.5px); }
}

@keyframes mapIconFloatB {
  0%, 100% { transform: translateY(-1px); }
  50% { transform: translateY(1px); }
}

@keyframes mapPinSoft {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.02); }
}

@keyframes mapArrowSoft {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(1.5px,-1.5px,0) rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .google-map .matching-map-icon,
  .apple-map .matching-map-icon,
  .google-map .mmi-pin,
  .apple-map .mmi-arrow {
    animation: none;
  }
}

/* OMEN-style final map icons: matching, clear, no asset images */
.map-buttons {
  gap: 12px;
}

.map-btn,
.map-btn.google-map,
.map-btn.apple-map {
  width: 58px;
  height: 58px;
  min-width: 58px;
  padding: 0;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
    #111111;
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 18px 42px rgba(0,0,0,0.34);
  backdrop-filter: blur(12px);
}

.map-btn::before {
  content: "";
  position: absolute;
  inset: -55%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.24), transparent 65%);
  transform: translateX(-80%) rotate(15deg);
  transition: 0.5s ease;
}

.map-btn:hover::before {
  transform: translateX(80%) rotate(15deg);
}

.map-btn .omen-map-icon {
  width: 39px;
  height: 39px;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 5px 9px rgba(0,0,0,0.28));
}

.omi-bg {
  fill: none;
  stroke: rgba(255,255,255,0.26);
  stroke-width: 1.7;
}

.omi-route,
.omi-road {
  fill: none;
  stroke: rgba(255,255,255,0.72);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.omi-road-soft {
  opacity: 0.45;
}

.omi-pin,
.omi-arrow {
  fill: #ffffff;
}

.omi-pin-hole {
  fill: #111111;
}

.omi-g {
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 8px;
  fill: #ffffff;
  dominant-baseline: middle;
}

.google-map .omi-pin {
  transform-origin: 32px 30px;
  animation: omenPinFloat 2.8s ease-in-out infinite;
}

.apple-map .omi-arrow {
  transform-origin: 36px 34px;
  animation: omenArrowFloat 2.8s ease-in-out infinite;
}

.map-btn:hover {
  transform: translateY(-3px) scale(1.04);
}

@keyframes omenPinFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes omenArrowFloat {
  0%, 100% {
    transform: translate3d(0,0,0) rotate(0deg);
  }
  50% {
    transform: translate3d(1.5px,-1.5px,0) rotate(3deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .google-map .omi-pin,
  .apple-map .omi-arrow {
    animation: none;
  }
}

/* New OMEN-style map buttons */
.map-buttons {
  gap: 14px;
}

.map-btn,
.map-btn.google-map,
.map-btn.apple-map {
  width: 60px;
  height: 60px;
  min-width: 60px;
  padding: 0;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,0.18), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)),
    #050505;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(255,255,255,0.05),
    0 18px 44px rgba(0,0,0,0.38);
  backdrop-filter: blur(14px);
}

.map-btn::before {
  content: "";
  position: absolute;
  inset: -55%;
  background: conic-gradient(
    from 160deg,
    transparent,
    rgba(255,255,255,0.16),
    transparent 34%
  );
  animation: omen2RotateGlow 5.5s linear infinite;
}

.map-btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  pointer-events: none;
}

.map-btn .omen2-icon {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 2;
  display: block;
  filter: drop-shadow(0 7px 12px rgba(0,0,0,0.36));
}

.omen2-frame {
  fill: none;
  stroke: rgba(255,255,255,0.30);
  stroke-width: 1.6;
}

.omen2-grid {
  fill: none;
  stroke: rgba(255,255,255,0.58);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.omen2-grid-soft {
  opacity: 0.45;
}

.omen2-pin,
.omen2-nav {
  fill: #ffffff;
}

.omen2-hole {
  fill: #050505;
}

.omen2-g {
  fill: #ffffff;
}

.omen2-nav-cut {
  fill: rgba(5,5,5,0.92);
}

.google-map .omen2-pin {
  transform-origin: 32px 30px;
  animation: omen2PinPulse 2.7s ease-in-out infinite;
}

.apple-map .omen2-nav {
  transform-origin: 36px 35px;
  animation: omen2NavDrift 2.9s ease-in-out infinite;
}

.map-btn:hover {
  transform: translateY(-4px) scale(1.045);
  border-color: rgba(255,255,255,0.36);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 24px 56px rgba(0,0,0,0.46);
}

@keyframes omen2RotateGlow {
  0% { transform: rotate(0deg); opacity: 0.6; }
  100% { transform: rotate(360deg); opacity: 0.6; }
}

@keyframes omen2PinPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-1.8px) scale(1.025); }
}

@keyframes omen2NavDrift {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(1.6px,-1.6px,0) rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .map-btn::before,
  .google-map .omen2-pin,
  .apple-map .omen2-nav {
    animation: none;
  }
}

/* WhatsApp appointment booking */
.booking-form {
  width: min(680px, 100%);
  margin: 34px auto 0;
  padding: 28px;
  position: relative;
  z-index: 1;
  border-radius: 26px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 46px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
}

.booking-form h3 {
  margin-bottom: 18px;
  color: var(--white);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  outline: none;
  background: rgba(255,255,255,0.92);
  color: var(--dark);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.booking-form textarea {
  min-height: 104px;
  margin-top: 12px;
  resize: vertical;
}

.booking-whatsapp-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 15px 24px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: #25D366;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0,0,0,0.24);
  transition: 0.25s ease;
}

.booking-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.30);
}

@media (max-width: 620px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
}


/* Elite mobile menu */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(23, 16, 11, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--dark);
  box-shadow: 0 12px 30px rgba(23, 16, 11, 0.10);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: 0.25s ease;
}

.mobile-menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(23, 16, 11, 0.14);
}

.menu-toggle-text {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.menu-toggle-icon {
  width: 20px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle-icon span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: 0.25s ease;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    position: relative;
  }

  .logo {
    padding: 7px 10px;
    position: relative;
    z-index: 25;
  }

  .logo img {
    width: 110px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 25;
  }

  .site-header.menu-open .mobile-menu-toggle {
    background: var(--dark);
    color: var(--white);
    border-color: rgba(255,255,255,0.18);
  }

  .site-header.menu-open .menu-toggle-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    border-radius: 28px;
    background:
      radial-gradient(circle at top right, rgba(201,155,84,0.20), transparent 34%),
      linear-gradient(180deg, rgba(255,255,255,0.95), rgba(251,245,236,0.92));
    border: 1px solid rgba(23, 16, 11, 0.10);
    box-shadow:
      0 24px 60px rgba(23, 16, 11, 0.18),
      inset 0 1px 0 rgba(255,255,255,0.80);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition: 0.28s ease;
  }

  .menu::before {
    content: "Navigation";
    display: block;
    margin-bottom: 2px;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(138, 97, 60, 0.88);
    text-align: center;
  }

  .site-header.menu-open .menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(23, 16, 11, 0.08);
    background: rgba(255,255,255,0.74);
    color: rgba(23, 16, 11, 0.86);
    box-shadow: 0 8px 22px rgba(23, 16, 11, 0.06);
  }

  .menu a:hover,
  .menu a:focus-visible {
    border-color: rgba(23, 16, 11, 0.16);
    background: rgba(255,255,255,0.94);
    box-shadow: 0 14px 30px rgba(23, 16, 11, 0.10);
    outline: none;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 520px) {
  .nav {
    padding: 12px 14px;
  }

  .logo img {
    width: 96px;
  }

  .mobile-menu-toggle {
    padding: 10px 12px;
    gap: 8px;
  }

  .menu {
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    padding: 16px;
    border-radius: 24px;
  }

  .menu a {
    min-height: 46px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }
}


.booking-note {
  margin: 10px 0 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}


/* Booking area design refinement */
.booking-form {
  width: min(620px, 100%);
  margin: 34px auto 0;
  padding: 32px 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 22px 52px rgba(0,0,0,0.22);
  backdrop-filter: blur(14px);
}

.booking-form h3 {
  margin-bottom: 20px;
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.booking-grid {
  gap: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  color: var(--dark);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.25;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
  appearance: none;
  -webkit-appearance: none;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(23, 16, 11, 0.34);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(201,155,84,0.75);
  box-shadow: 0 0 0 4px rgba(201,155,84,0.16);
}

.booking-form select,
.booking-form input[type="time"] {
  text-align: left;
  display: block;
}

.booking-form textarea {
  min-height: 132px;
  margin-top: 14px;
}

.booking-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.76);
}

.booking-whatsapp-btn {
  margin-top: 16px;
  min-height: 60px;
  padding: 16px 24px;
  font-size: 14px;
  letter-spacing: 0.10em;
}

.booking-whatsapp-btn span {
  line-height: 1.2;
}

@media (max-width: 620px) {
  .booking-form {
    width: min(100%, 520px);
    margin-top: 28px;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .booking-form h3 {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .booking-grid {
    gap: 12px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    min-height: 54px;
    padding: 15px 16px;
    border-radius: 18px;
    font-size: 16px;
  }

  .booking-form textarea {
    min-height: 122px;
    margin-top: 12px;
  }

  .booking-whatsapp-btn {
    min-height: 58px;
    padding: 15px 20px;
    border-radius: 999px;
  }
}


.booking-form select {
  cursor: pointer;
}


.footer-logo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: 0.25s ease;
}

.footer-logo-button:hover {
  transform: translateY(-2px) scale(1.03);
}

.created-by {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.72);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: 0.25s ease;
}

.instagram-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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


/* Instagram logo button refinement */
.instagram-button {
  background:
    radial-gradient(circle at 30% 105%, #fdf497 0 18%, #fd5949 42%, #d6249f 68%, #285AEB 100%);
  border: 1px solid rgba(255,255,255,0.30);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.instagram-button svg {
  width: 20px;
  height: 20px;
  padding: 2px;
  border-radius: 7px;
  background: rgba(255,255,255,0.14);
}

.instagram-button:hover {
  background:
    radial-gradient(circle at 30% 105%, #fdf497 0 18%, #fd5949 42%, #d6249f 68%, #285AEB 100%);
  transform: translateY(-2px) scale(1.03);
}


/* Clean Instagram button: minimal colors */
.instagram-button {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.24);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.instagram-button svg {
  width: 20px;
  height: 20px;
  padding: 2px;
  border-radius: 7px;
  background: transparent;
}

.instagram-button:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px) scale(1.03);
}


.product-photo {
  padding: 0;
  background: #fffaf2;
}

.product-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.size-options {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-options span {
  min-width: 38px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(201,155,84,0.14);
  border: 1px solid rgba(138,97,60,0.18);
  color: var(--brown);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}


/* Hero background photo refinement */
.hero {
  background:
    linear-gradient(135deg, rgba(23,16,11,0.72), rgba(23,16,11,0.38)),
    radial-gradient(circle at 18% 20%, rgba(201,155,84,0.26), transparent 30%),
    url("assets/hero-background.avif") center center / cover no-repeat;
}

.hero-card {
  background: rgba(255,255,255,0.86);
}

.hero-card::after {
  background: rgba(255,255,255,0.86);
}
