:root {
  --black: #050505;
  --surface: #0d0d0d;
  --surface-raised: #14120d;
  --gold: #d8a936;
  --gold-light: #ffda72;
  --white: #fffaf0;
  --muted: #c7bfad;
  --line: rgba(216, 169, 54, 0.24);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 169, 54, 0.13), transparent 30rem),
    var(--black);
  color: var(--white);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  transform: translateY(-140%);
  background: var(--gold-light);
  color: #080808;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #070707;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(216, 169, 54, 0.2);
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.brand-copy span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  position: fixed;
  top: 72px;
  right: 16px;
  left: 16px;
  display: none;
  flex-direction: column;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.98);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 13px 12px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--gold-light);
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: #111;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle {
  gap: 4px;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn.desktop-cta {
  display: none;
}

.btn,
.whatsapp-product,
.category-pill {
  min-height: 46px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn,
.whatsapp-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  gap: 9px;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn-primary,
.whatsapp-product {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #080808;
  box-shadow: 0 12px 30px rgba(216, 169, 54, 0.2);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
}

.btn:hover,
.whatsapp-product:hover,
.category-pill:hover {
  transform: translateY(-2px);
}

.hero {
  padding-bottom: 54px;
  background: #050505;
}

.hero-media {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #030303;
}

.hero-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  content: "";
  background: linear-gradient(to bottom, transparent, rgba(5, 5, 5, 0.82));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: auto;
}

.hero-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  margin-top: -22px;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(216, 169, 54, 0.14), transparent 45%),
    rgba(10, 10, 10, 0.97);
  box-shadow: var(--shadow);
}

.hero-kicker,
.eyebrow {
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-header h2,
.about-panel h2,
.contact-card h2,
.final-cta h2 {
  font-family: Montserrat, Inter, sans-serif;
  text-transform: uppercase;
}

.hero h1 {
  margin: 9px 0 12px;
  font-size: clamp(2.2rem, 10vw, 4.4rem);
  line-height: 0.96;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  display: grid;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-button {
  border-color: rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, #833ab4 0%, #c13584 42%, #e1306c 68%, #fd7e14 100%);
  color: #fff;
}

.instagram-button:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  filter: brightness(1.08);
}

.hero-facts {
  display: grid;
  gap: 10px;
}

.hero-facts div {
  padding: 13px 15px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: var(--white);
  font-size: 0.9rem;
}

.hero-facts span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 64px 0;
}

.section-muted {
  border-block: 1px solid rgba(216, 169, 54, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.section-header {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-header h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(1.8rem, 8vw, 3.5rem);
  line-height: 1.05;
}

.section-header p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.text-link {
  color: var(--gold-light);
  font-weight: 800;
}

.catalog-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.search-field {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: #0a0a0a;
  color: var(--white);
}

.search-field::placeholder {
  color: #8e8778;
}

.search-field:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(216, 169, 54, 0.14);
}

.category-list {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 2px 0 6px;
  scrollbar-width: none;
}

.category-list::-webkit-scrollbar {
  display: none;
}

.category-pill {
  flex: 0 0 auto;
  padding: 0 15px;
  border-color: var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.category-pill.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #080808;
}

.catalog-meta {
  display: flex;
  min-height: 20px;
  align-items: center;
  justify-content: space-between;
}

.catalog-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-grid {
  display: grid;
  gap: 16px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  transition: transform 200ms ease, border-color 200ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 218, 114, 0.52);
}

.product-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #080808;
}

.product-media.is-square {
  aspect-ratio: 1;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 350ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  background: rgba(216, 169, 54, 0.97);
  color: #070707;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 17px;
}

.product-content h3 {
  margin: 0;
  font-size: 1.14rem;
}

.product-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  white-space: pre-line;
}

.product-price {
  margin-top: auto;
  padding-top: 5px;
  color: var(--white);
  font-size: 1.04rem;
}

.product-price.is-pending {
  color: var(--gold-light);
  font-size: 0.9rem;
}

.product-payment-prices {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: auto 0 0;
  padding-top: 5px;
}

.product-payment-prices div {
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.05);
}

.product-payment-prices dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-payment-prices dd {
  margin: 4px 0 0;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
}

.whatsapp-product {
  width: 100%;
  margin-top: 3px;
}

.empty-state {
  padding: 36px 22px;
  border: 1px dashed var(--line);
  text-align: center;
}

.empty-state strong {
  font-size: 1.15rem;
}

.empty-state p {
  margin: 8px 0 18px;
  color: var(--muted);
}

.whisky-section {
  border-block: 1px solid rgba(216, 169, 54, 0.16);
  background:
    radial-gradient(circle at 8% 20%, rgba(216, 169, 54, 0.12), transparent 28rem),
    #080704;
}

.whisky-grid {
  display: grid;
  gap: 14px;
}

.whisky-card {
  padding: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(216, 169, 54, 0.1), transparent 48%), #0d0d0d;
}

.whisky-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 13px;
}

.whisky-card-title h3 {
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.06rem;
  text-transform: uppercase;
}

.whisky-card-title > span {
  padding: 5px 8px;
  background: var(--gold);
  color: #080808;
  font-size: 0.72rem;
  font-weight: 900;
}

.whisky-option {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.whisky-option:last-child {
  padding-bottom: 0;
}

.whisky-option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.whisky-option-header strong {
  color: var(--white);
  font-size: 0.86rem;
}

.whisky-option-header a {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.whisky-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 0;
}

.whisky-prices div {
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.045);
}

.whisky-prices dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.whisky-prices dd {
  margin: 4px 0 0;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 900;
}

.responsible-notice {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.84rem;
}

.responsible-notice strong {
  color: var(--white);
}

.about-grid {
  display: grid;
  gap: 18px;
}

.about-panel,
.contact-card,
.final-cta {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.about-panel h2,
.contact-card h2,
.final-cta h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.75rem, 7vw, 3rem);
  line-height: 1.06;
}

.about-panel > p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.highlight-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.highlight-list li {
  padding: 12px 0 12px 15px;
  border-left: 3px solid var(--gold);
}

.highlight-list strong,
.highlight-list span {
  display: block;
}

.highlight-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-card {
  background:
    linear-gradient(145deg, rgba(216, 169, 54, 0.17), transparent 55%),
    #0d0d0d;
}

.contact-list {
  display: grid;
  gap: 0;
  margin: 20px 0 22px;
}

.contact-list div {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 5px 0 0;
  color: var(--white);
}

.final-cta {
  display: grid;
  gap: 22px;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(216, 169, 54, 0.2), transparent 55%),
    #0d0d0d;
}

.site-footer {
  padding: 30px 0 96px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 7px 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-grid {
  display: grid;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--white);
  font-weight: 700;
}

.footer-links .instagram-link {
  gap: 6px;
}

.footer-links .instagram-link .social-icon {
  width: 18px;
  height: 18px;
  color: #e1306c;
}

.float-whatsapp {
  position: fixed;
  z-index: 40;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 9px;
  padding: 8px 15px 8px 9px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: #25d366;
  color: #06140b;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
}

.float-whatsapp .whatsapp-icon {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 7px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.float-whatsapp strong {
  font-size: 0.84rem;
}

[hidden] {
  display: none !important;
}

@media (min-width: 640px) {
  .hero-actions,
  .contact-actions {
    grid-template-columns: repeat(2, max-content);
  }

  .hero-facts,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-panel {
    padding: 22px;
  }

  .final-cta {
    grid-template-columns: 1fr auto;
  }

  .whisky-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .btn.desktop-cta {
    display: inline-flex;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .hero-media img {
    height: clamp(440px, 42vw, 560px);
    object-fit: cover;
    object-position: center 46%;
  }

  .hero-card {
    grid-template-columns: minmax(0, 1.25fr) auto;
    margin-top: -82px;
    padding: 30px 32px;
  }

  .hero h1 {
    font-size: clamp(3rem, 4.5vw, 3.6rem);
  }

  .hero-copy {
    grid-row: span 2;
  }

  .hero-actions {
    align-content: center;
    justify-content: end;
  }

  .hero-facts {
    align-content: end;
  }

  .section {
    padding: 82px 0;
  }

  .section-header-row {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .category-list {
    flex-wrap: wrap;
    overflow: visible;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .about-panel,
  .contact-card,
  .final-cta {
    padding: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    font-size: 0.82rem;
  }

  .hero-card {
    padding: 20px;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .float-whatsapp strong {
    display: none;
  }

  .float-whatsapp {
    width: 56px;
    padding: 8px;
  }

  .float-whatsapp .whatsapp-icon {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
