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

:root {
  --bg: #f6f1ea;
  --bg-soft: #efe6da;
  --white: #ffffff;
  --text: #1c1815;
  --muted: #6f655d;
  --line: rgba(60, 40, 20, 0.12);
  --primary: #6d1f23;
  --primary-dark: #4c1518;
  --gold: #b68b4c;
  --shadow: 0 24px 60px rgba(33, 23, 14, 0.08);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(182, 139, 76, 0.08), transparent 24%),
    var(--bg);
  line-height: 1.65;
  padding-bottom: 78px;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  backdrop-filter: blur(16px);
  background: rgba(246, 241, 234, 0.92);
  box-shadow: 0 6px 20px rgba(33, 23, 14, 0.05);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-icon,
.logo-text {
  align-self: center;
}

.logo-icon {
  width: 82px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  height: 92px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.header-right {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  white-space: nowrap;
  min-width: 0;
  flex-shrink: 1;
}

.main-nav a,
.nav-dropdown-toggle {
  text-decoration: none;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-family: "Manrope", sans-serif;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}

.main-nav a:focus,
.main-nav a:active,
.nav-dropdown-toggle:focus,
.nav-dropdown-toggle:active {
  outline: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.cart-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--primary);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cart-link:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
}

.cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

/* DROPDOWN */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-dropdown-toggle {
  padding: 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 210px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.2;
  height: auto;
}

.nav-dropdown-menu a:hover {
  background: rgba(109, 31, 35, 0.05);
}

/* TYPO */

.eyebrow,
.section-label,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
}

.section-label-small {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.hero h1,
h2,
h3,
.wine-card h4,
.region-toggle,
.winery-toggle,
.inner-title,
.wine-link-pill {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  margin-top: 14px;
  margin-bottom: 20px;
  color: #211814;
  font-weight: 600;
}

/* HERO */

.hero {
  position: relative;
  padding: 150px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at left top, rgba(182, 139, 76, 0.16), transparent 28%),
    linear-gradient(135deg, #eadccb 0%, #f8f3ed 50%, #efe7dc 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: left;
}

.hero .eyebrow {
  display: block;
  max-width: 760px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.1rem);
  max-width: 760px;
  margin-top: 0;
  margin-bottom: 0;
  color: #201713;
  font-weight: 600;
}

.hero-text {
  margin-top: 26px;
  max-width: 760px;
  font-size: 1.02rem;
  color: var(--muted);
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* BUTTONS */

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

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

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(109, 31, 35, 0.12);
  color: var(--primary-dark);
}

/* SECTIONS */

.about,
.catalog,
.contact {
  padding: 110px 0;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.about-photo {
  min-height: 560px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    linear-gradient(rgba(24, 16, 12, 0.16), rgba(24, 16, 12, 0.16)),
    url("images/sobre-nosotros.png");
  background-size: cover;
  background-position: center;
}

.about-photo-text {
  padding: 46px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-photo-text p,
.section-description,
.contact p,
.winery-description,
.wine-card p,
.form-intro,
.contact-intro {
  color: var(--muted);
  font-size: 0.98rem;
}

.about-photo-text p + p {
  margin-top: 14px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.center-heading {
  text-align: center;
  margin: 0 auto 38px;
}

/* VALUE SECTION */

.value-section {
  padding: 0 0 110px;
}

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

.value-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.value-number {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.value-card p {
  color: var(--muted);
  font-size: 0.97rem;
}

/* PORTFOLIO SECTION */

.portfolio-section {
  padding: 0 0 110px;
}

.portfolio-box {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.portfolio-text p {
  color: var(--muted);
}

.portfolio-action {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CONTACT */

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-info,
.contact-form-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-list a {
  color: var(--muted);
  text-decoration: none;
}

.contact-form-card h3 {
  font-size: 2.1rem;
  margin: 12px 0 14px;
  color: var(--primary-dark);
}

.form-intro {
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.form-row input,
.form-row textarea,
.product-format-box select {
  width: 100%;
  border: 1px solid rgba(60, 40, 20, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  padding: 14px 16px;
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  color: var(--text);
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus,
.product-format-box select:focus {
  border-color: rgba(109, 31, 35, 0.35);
  box-shadow: 0 0 0 4px rgba(109, 31, 35, 0.06);
}

.form-button {
  margin-top: 8px;
  align-self: flex-start;
}

/* FORM CONSENT */

.form-consent {
  margin-top: 4px;
}

.form-consent .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
}

.form-consent .consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  accent-color: var(--primary);
}

.form-consent .consent-label span {
  display: inline;
}

.form-consent .consent-label a {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* INNER HERO */

.inner-hero {
  padding: 120px 0 50px;
  background:
    radial-gradient(circle at left top, rgba(182, 139, 76, 0.10), transparent 24%),
    var(--bg);
}

.inner-hero-centered {
  text-align: center;
}

.inner-hero-centered .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inner-title {
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  color: var(--primary-dark);
  margin-top: 14px;
  text-align: center;
}

.inner-text {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  max-width: 720px;
  text-align: center;
}

.inner-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0.8;
  text-align: center;
}

.inner-hero-centered .inner-text,
.inner-hero-centered .inner-note {
  margin-left: auto;
  margin-right: auto;
}

/* ACCORDION */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.regions-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-region,
.accordion-winery,
.wine-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.accordion-region {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion-winery {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(60, 40, 20, 0.10);
}

.accordion-toggle {
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.region-toggle {
  padding: 24px 30px;
  font-size: 2.2rem;
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.winery-toggle {
  padding: 24px 24px 18px;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text);
}

.plus {
  font-size: 1.5rem;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
}

.accordion-content {
  display: none;
  padding: 0 30px 30px;
}

.accordion-content.open {
  display: block;
}

.inner-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.winery-content {
  padding-top: 10px;
}

.winery-description {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* WINES INSIDE ACCORDION */

.winery-wines {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wine-item {
  padding: 20px 22px;
  border: 1px solid rgba(60, 40, 20, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wine-link-pill {
  display: inline-block;
  text-decoration: none;
  color: var(--primary);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 0;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.wine-link-pill:hover {
  color: var(--primary-dark);
  opacity: 0.88;
}

.wine-vintages {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wine-vintages li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(246, 241, 234, 0.95);
  border: 1px solid rgba(60, 40, 20, 0.08);
}

.wine-vintages a,
.wine-vintages a:visited,
.wine-vintages a:hover,
.wine-vintages a:focus,
.wine-vintages a:active {
  text-decoration: none;
  color: inherit;
}

.wine-vintages a:hover {
  color: var(--primary);
}

.wine-year {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1;
}

.wine-format {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
}

.wine-format::before {
  content: "·";
  margin-right: 10px;
  color: rgba(60, 40, 20, 0.28);
}

/* WINE GRID */

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

.wine-card {
  background: rgba(252, 249, 245, 0.96);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(90, 60, 30, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.wine-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(33, 23, 14, 0.08);
}

.wine-card h4 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.wine-card p {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--muted);
}

.wine-card p:last-child {
  margin-bottom: 0;
}

.wine-link {
  text-decoration: none;
  display: block;
  color: inherit;
  cursor: pointer;
}

.wine-link:hover h4 {
  color: var(--primary);
}

/* IMAGES IN CARDS */

.wine-image {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #f8f4ee;
  border: 1px solid rgba(90, 60, 30, 0.08);
  overflow: hidden;
  padding: 10px 14px 0;
}

.wine-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  transform: translateY(-6px);
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.15));
}

.placeholder-image {
  background: linear-gradient(135deg, #eadfce, #f7f2eb);
  color: #8e7967;
  border: 1px dashed rgba(90, 60, 30, 0.2);
  font-weight: 600;
  font-size: 0.88rem;
}

/* PRODUCT PAGE */

.product-section {
  padding: 0 0 110px;
}

.product-layout,
.product-layout-premium {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.product-layout-premium {
  gap: 42px;
  align-items: stretch;
}

.product-image-box,
.product-info-box,
.product-visual-card,
.product-content-card {
  width: 100%;
  min-width: 0;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.product-image-box,
.product-info-box {
  padding: 34px;
}

.product-visual-card {
  background: radial-gradient(circle at center, #ffffff 0%, #f3eee7 100%);
  padding: 40px 30px;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(60, 40, 20, 0.08);
  box-shadow: 0 24px 60px rgba(33, 23, 14, 0.10);
  overflow: hidden;
}

.product-content-card {
  padding: 40px;
}

.product-bottle-area {
  width: 100%;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
}

.product-bottle-area img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.18));
}

.product-lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 10px;
  margin-bottom: 22px;
}

.product-meta-grid,
.product-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.product-meta-card,
.product-info-item {
  min-width: 0;
  background: rgba(252, 249, 245, 0.96);
  border: 1px solid rgba(90, 60, 30, 0.08);
  border-radius: 18px;
  padding: 16px;
}

.product-meta-card span,
.product-info-item span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.product-meta-card p,
.product-info-item p,
.product-description,
.product-text-block p,
.product-note p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-format-box {
  margin: 0;
}

.product-format-box label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.product-format-box select {
  width: 100%;
  min-width: 220px;
  max-width: 320px;
}

.product-purchase-box {
  margin: 28px 0 10px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(252, 249, 245, 0.96);
  border: 1px solid rgba(90, 60, 30, 0.08);
  border-radius: 20px;
}

.product-price-box {
  flex-shrink: 0;
  text-align: left;
}

.product-price-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.product-price,
.product-price-value {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--primary-dark);
}

.product-quantity-box {
  min-width: 0;
}

.product-quantity-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(60, 40, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.quantity-selector button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.quantity-selector input {
  width: 58px;
  height: 40px;
  border: none;
  background: transparent;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-text-block {
  margin-top: 20px;
}

.product-text-block h3 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.product-text-block p + p {
  margin-top: 12px;
}

.product-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.product-note,
.premium-note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(60, 40, 20, 0.10);
}

/* RELATED */

.related-section {
  padding: 0 0 110px;
}

/* FEATURED LINK */

.featured-link-section {
  padding: 0 0 110px;
}

.featured-link-box {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
}

.featured-link-box p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 20px;
}

/* TOGGLE / VINTAGE LIST */

.toggle-btn {
  margin-top: 10px;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
}

.vintage-list {
  display: none;
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.6;
}

.wine-card.active .vintage-list {
  display: block;
}

.finewine-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.finewine-link:hover .finewine-name {
  color: var(--primary);
}

/* CART PAGE */

.cart-section {
  padding: 0 0 110px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  gap: 34px;
  align-items: start;
}

.cart-main-card,
.cart-summary-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.cart-main-card {
  padding: 34px;
}

.cart-summary-card {
  padding: 34px;
  position: sticky;
  top: 130px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(90, 60, 30, 0.08);
  border-radius: 22px;
  background: rgba(252, 249, 245, 0.96);
}

.cart-item-image {
  width: 120px;
  height: 160px;
  border-radius: 16px;
  background: #f8f4ee;
  border: 1px solid rgba(90, 60, 30, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
}

.cart-item-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.cart-item-content h3 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin: 8px 0 8px;
}

.cart-item-format {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 10px;
}

.cart-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-item-side {
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.cart-item-subtotal {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}

.cart-remove-btn {
  background: transparent;
  border: 1px solid rgba(109, 31, 35, 0.18);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cart-remove-btn:hover {
  background: rgba(109, 31, 35, 0.05);
  transform: translateY(-1px);
}

.cart-empty {
  text-align: left;
}

.cart-empty h2 {
  margin-top: 12px;
  margin-bottom: 16px;
}

.cart-empty p {
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 620px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(60, 40, 20, 0.10);
  color: var(--muted);
}

.cart-summary-total {
  margin-top: 8px;
  padding-top: 18px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.cart-summary-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* CHECKOUT PAGE */

.checkout-section {
  padding: 0 0 110px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: start;
}

.checkout-form-card,
.checkout-summary-card,
.checkout-success-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.checkout-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-row label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.checkout-row input[type="text"],
.checkout-row input[type="email"],
.checkout-row textarea {
  width: 100%;
  border: 1px solid rgba(60, 40, 20, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  padding: 14px 16px;
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  color: var(--text);
  outline: none;
  appearance: none;
}

.checkout-row input[type="text"]:focus,
.checkout-row input[type="email"]:focus,
.checkout-row textarea:focus {
  border-color: rgba(109, 31, 35, 0.35);
  box-shadow: 0 0 0 4px rgba(109, 31, 35, 0.06);
}

.checkout-row textarea {
  resize: vertical;
  min-height: 120px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(60, 40, 20, 0.10);
  color: var(--muted);
}

.checkout-item strong {
  color: var(--primary-dark);
  font-size: 1rem;
}

.checkout-item small {
  display: inline-block;
  margin-top: 4px;
  color: var(--muted);
}

.checkout-total {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(60, 40, 20, 0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.checkout-total strong {
  font-size: 1.5rem;
}

.checkout-empty {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

.checkout-success-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.checkout-success-text {
  color: var(--muted);
  max-width: 700px;
  margin: 18px auto 0;
}

.checkout-success-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.payment-options {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(60, 40, 20, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.payment-option:hover {
  border-color: rgba(109, 31, 35, 0.25);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

.payment-option input[type="radio"] {
  accent-color: var(--primary);
  flex-shrink: 0;
  margin: 0;
}

.payment-option span {
  font-size: 0.96rem;
  color: var(--text);
  font-weight: 600;
}

.checkout-summary-note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(60, 40, 20, 0.10);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.checkout-shipping-note {
  margin-top: -4px;
  margin-bottom: 6px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--primary-dark);
  font-weight: 600;
}

/* TOAST */

.cart-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(47, 36, 29, 0.96);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(33, 23, 14, 0.18);
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.cart-toast strong {
  font-weight: 700;
}

/* LEGAL PAGES */

.legal-page {
  padding: 140px 0 120px;
  min-height: 100vh;
}

.legal-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-page h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.legal-page .legal-updated {
  font-size: 0.86rem;
  color: var(--gold);
  margin-bottom: 30px;
  letter-spacing: 0.04em;
}

.legal-page h2 {
  font-family: "Manrope", sans-serif;
  font-size: 1.18rem;
  line-height: 1.35;
  color: var(--text);
  margin-top: 34px;
  margin-bottom: 12px;
  font-weight: 700;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
}

.legal-page ul {
  padding-left: 20px;
  margin-top: 10px;
}

.legal-page li + li {
  margin-top: 6px;
}

.legal-page a {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* FIXED LEGAL FOOTER */

.bottom-fixed-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  background: linear-gradient(
    135deg,
    rgba(109, 31, 35, 0.96),
    rgba(76, 21, 24, 0.96)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(182, 139, 76, 0.28);
  box-shadow: 0 -12px 30px rgba(33, 23, 14, 0.18);
}

.bottom-bar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.bottom-social,
.bottom-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.bottom-fixed-bar a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.bottom-fixed-bar a:hover {
  opacity: 1;
  color: var(--gold);
  transform: translateY(-1px);
}

.bottom-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.bottom-social i {
  font-size: 15px;
}

.bottom-legal a {
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* AGE GATE */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(28, 24, 21, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.hidden {
  display: none;
}

.age-gate-box {
  width: 100%;
  max-width: 560px;
  background: rgba(246, 241, 234, 0.96);
  border: 1px solid rgba(60, 40, 20, 0.12);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(33, 23, 14, 0.22);
  padding: 46px 42px;
  text-align: center;
}

.age-gate-box .section-label {
  display: block;
  margin-bottom: 14px;
}

.age-gate-box h2 {
  margin: 0 0 16px;
  color: var(--primary-dark);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.age-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 430px;
  margin: 0 auto;
}

.age-actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-actions .btn {
  min-width: 180px;
}

body.age-lock {
  overflow: hidden;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  body {
    padding-bottom: 108px;
  }

  .bottom-bar-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    text-align: center;
  }

  .bottom-social,
  .bottom-legal {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .about-photo-grid,
  .contact-layout,
  .value-grid,
  .portfolio-box,
  .wine-grid,
  .product-layout,
  .product-layout-premium,
  .product-meta-grid,
  .product-info-grid,
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    gap: 10px;
    min-height: auto;
  }

  .logo {
    align-items: center;
    justify-content: center;
  }

  .logo-icon {
    width: 72px;
  }

  .logo-text {
    height: 78px;
  }

  .header-right {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .main-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .cart-link {
    align-self: center;
  }

  .hero-content,
  .hero h1,
  .hero-text,
  .hero .eyebrow {
    max-width: 100%;
  }

  .about-photo {
    min-height: 400px;
  }

  .portfolio-action {
    justify-content: flex-start;
  }

  .product-visual-card {
    min-height: auto;
  }

  .product-bottle-area {
    height: 440px;
  }

  .product-bottle-area img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }

  .product-purchase-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-price-box {
    text-align: left;
  }

  .cart-summary-card {
    position: static;
  }

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

@media (max-width: 768px) {
  .cart-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 132px;
  }

  .container {
    padding: 0 22px;
  }

  .hero {
    padding: 110px 0 85px;
  }

  .about,
  .catalog,
  .contact {
    padding: 80px 0;
  }

  .inner-title {
    font-size: clamp(2.7rem, 10vw, 4rem);
  }

  .inner-text {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .inner-note {
    font-size: 0.9rem;
    margin-top: 10px;
  }

  .regions-list {
    gap: 10px;
  }

  .region-toggle {
    font-size: 1.8rem;
    padding: 22px;
  }

  .winery-toggle {
    font-size: 1.55rem;
    padding: 20px 20px 14px;
  }

  .accordion-content {
    padding: 0 22px 22px;
  }

  .wine-item {
    padding: 16px;
    gap: 12px;
  }

  .wine-link-pill {
    font-size: 1.45rem;
  }

  .wine-vintages {
    gap: 8px;
  }

  .wine-vintages li {
    padding: 9px 13px;
    gap: 10px;
  }

  .wine-year {
    font-size: 0.94rem;
  }

  .wine-format {
    font-size: 0.88rem;
  }

  .about-photo-text,
  .contact-info,
  .contact-form-card,
  .product-image-box,
  .product-info-box,
  .product-visual-card,
  .product-content-card,
  .cart-main-card,
  .cart-summary-card,
  .checkout-form-card,
  .checkout-summary-card,
  .checkout-success-card {
    padding: 28px;
  }

  .wine-card {
    padding: 18px;
  }

  .wine-card h4 {
    font-size: 1.45rem;
  }

  .wine-image {
    height: 220px;
    padding: 8px 12px 0;
  }

  .wine-image img {
    transform: translateY(-4px);
  }

  .logo-icon {
    width: 64px;
    height: auto;
  }

  .logo-text {
    height: 70px;
    width: auto;
  }

  .product-info-grid {
    grid-template-columns: 1fr;
  }

  .product-bottle-area {
    height: 320px;
  }

  .product-bottle-area img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }

  .product-purchase-box {
    padding: 18px;
    gap: 18px;
  }

  .product-price,
  .product-price-value {
    font-size: 1.7rem;
  }

  .cart-link {
    padding: 9px 14px;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cart-item-image {
    width: 100%;
    max-width: 180px;
    height: 220px;
  }

  .cart-item-side {
    align-items: flex-start;
  }

  .cart-item-content h3 {
    font-size: 1.7rem;
  }

  .checkout-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-total {
    flex-direction: column;
    align-items: flex-start;
  }

  .bottom-bar-inner {
    padding: 12px 14px;
  }

  .bottom-social {
    gap: 14px;
  }

  .bottom-legal {
    gap: 10px 14px;
  }

  .bottom-social a,
  .bottom-legal a {
    font-size: 12px;
  }

  .bottom-social i {
    font-size: 14px;
  }

  .legal-page {
    padding: 120px 0 110px;
  }

  .legal-page p,
  .legal-page li {
    font-size: 0.93rem;
  }

  .age-gate {
    padding: 18px;
  }

  .age-gate-box {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .age-text {
    font-size: 0.94rem;
  }

  .age-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .age-actions .btn {
    width: 100%;
    min-width: 0;
  }
}