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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  background: #efe6d6;
  color: #24211d;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}


/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  background: rgba(245, 241, 232, 0.95);
  border-bottom: 1px solid rgba(36, 33, 29, 0.12);
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.logo > img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo > span {
  display: inline-block;
}

.logo > span > span {
  font-weight: 400;
  margin-left: 3px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 400;
}

.site-header nav a:not(.cart-link) {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.site-header nav a:not(.cart-link)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: #b68235;
  transition: width 0.3s ease;
}

.site-header nav a:not(.cart-link):hover,
.site-header nav a:not(.cart-link).active {
  color: #b68235;
}

.site-header nav a:not(.cart-link).active::after,
.site-header nav a:not(.cart-link):hover::after {
  width: 100%;
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #24211d;
  border-radius: 30px;
  transition: all 0.25s ease;
}

.cart-link svg {
  display: block;
}

.cart-link:hover {
  background: #24211d;
  color: #f5f1e8;
}

#cart-count {
  color: #7d5411;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}


/* =========================
   GENERAL
========================= */

.section {
  padding: 110px 6%;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  opacity: 0.65;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
}

.section-heading p:last-child {
  max-width: 600px;
  font-size: 1.05rem;
  opacity: 0.7;
}


/* =========================
   BUTTON
========================= */

.button {
  display: inline-block;
  padding: 14px 24px;
  border: 1px solid #24211d;
  border-radius: 50px;
  background: #24211d;
  color: #f5f1e8;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: transparent;
  color: #24211d;
}

.button.light {
  background: #f5f1e8;
  color: #24211d;
  border-color: #f5f1e8;
}


/* =========================
   HOMEPAGE HERO (legacy — no longer used on index.html,
   kept in case an older page still references it)
========================= */

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.24);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 90%);
  text-align: center;
  color: white;
  padding: 60px 20px;
}

.hero-subtitle {
  margin: 0 auto 38px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.hero-content h1 {
  max-width: 1000px;
  margin: 0 auto 42px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.8rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.hero-button {
  display: inline-block;
  padding: 15px 32px;
  border: 1px solid white;
  border-radius: 50px;
  color: white;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.hero-button:hover {
  background: white;
  color: #24211d;
}


/* =========================
   COFFEE INTRODUCTION (legacy — replaced by .nosotros-section
   on index.html, kept in case still referenced)
========================= */

.coffee-intro {
  padding: 150px 8%;
  text-align: center;
  background: #f5f1e8;
}

.coffee-intro::before {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  margin: 0 auto 55px;
  background: #24211d;
  opacity: 0.35;
}

.coffee-intro h2 {
  max-width: 900px;
  margin: 0 auto 50px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.coffee-intro-text {
  max-width: 760px;
  margin: 0 auto;
}

.coffee-intro-text p {
  margin: 0 auto 28px;
  font-size: 1.22rem;
  line-height: 1.75;
  opacity: 0.78;
}

.coffee-intro-text strong {
  font-weight: 700;
  opacity: 1;
}

.coffee-intro-text p:last-child {
  margin-bottom: 0;
}


/* =========================
   COFFEE CATALOGUE
========================= */

.catalogue-intro {
  padding: 150px 6% 90px;
  max-width: 900px;
}

.catalogue-intro h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}

.catalogue-intro > p:last-child {
  max-width: 620px;
  font-size: 1.1rem;
  opacity: 0.7;
}

.catalogue {
  padding: 20px 6% 130px;
  position: relative;
  background: #fbf9f5;
}

.light-page {
  background: #fbf9f5;
}

.catalogue-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}


/* =========================
   COFFEE GRID
========================= */

.coffee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 380px));
  justify-content: start;
  gap: 22px;
}

.coffee-card {
  min-width: 0;
}

.coffee-image-link {
  display: block;
}

.coffee-image {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #e5ddce;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(36, 33, 29, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coffee-card:hover .coffee-image {
  box-shadow: 0 14px 34px rgba(36, 33, 29, 0.2);
}

.coffee-info {
  padding-top: 20px;
}

.coffee-type {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  font-weight: 700;
  opacity: 0.55;
  margin-bottom: 6px;
}

.coffee-info h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.tasting-notes {
  font-size: 0.92rem;
  opacity: 0.72;
  min-height: 50px;
}

.coffee-prices {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(36, 33, 29, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.coffee-prices div {
  display: flex;
  flex-direction: column;
}

.coffee-prices span {
  font-size: 0.72rem;
  opacity: 0.55;
}

.coffee-prices strong {
  font-size: 0.9rem;
}

.product-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 700;
  border-bottom: 1px solid #24211d;
}

.coffee-purchase-row {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(36, 33, 29, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.coffee-price {
  font-size: 1.05rem;
  font-weight: 700;
}

.coffee-buy-button {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #b68235;
  border-radius: 2px;
  background: transparent;
  color: #7d5411;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.coffee-buy-button:hover {
  background: rgba(182, 130, 53, 0.12);
}


/* =========================
   PRODUCT DETAILS
========================= */

.product-detail {
  min-height: 90vh;
  padding: 120px 8%;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(400px, 1fr);
  gap: 9%;
  align-items: center;
  border-top: 1px solid rgba(36, 33, 29, 0.1);
}

.product-detail.reverse {
  grid-template-columns: minmax(400px, 1fr) minmax(300px, 0.85fr);
}

.product-detail.reverse .product-detail-image {
  order: 2;
}

.product-detail.reverse .product-detail-content {
  order: 1;
}

.product-detail-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-detail-image img {
  width: min(100%, 600px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-detail-content {
  max-width: 650px;
}

.product-detail-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 12px;
}

.score {
  display: inline-block;
  margin-bottom: 30px;
  padding: 7px 13px;
  border: 1px solid rgba(36, 33, 29, 0.25);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-description {
  font-size: 1.05rem;
  margin-bottom: 18px;
  opacity: 0.82;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 35px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(36, 33, 29, 0.15);
}

.details-grid div {
  display: flex;
  flex-direction: column;
}

.details-grid span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
}

.details-grid strong {
  font-size: 0.9rem;
  font-weight: 500;
}

.product-order {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 15px;
  align-items: center;
}

.product-order div {
  display: flex;
  flex-direction: column;
}

.product-order div span {
  font-size: 0.82rem;
  opacity: 0.6;
}

.product-order button {
  padding: 10px 17px;
  border: 1px solid #24211d;
  border-radius: 30px;
  background: transparent;
  color: #24211d;
  transition: all 0.2s ease;
}

.product-order button:hover {
  background: #24211d;
  color: #f5f1e8;
}


/* =========================
   ABOUT
========================= */

.about {
  padding: 120px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  background: #25231f;
  color: #f5f1e8;
}

.about h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.about > div:last-child {
  max-width: 600px;
}

.about p:not(.eyebrow) {
  margin-bottom: 22px;
  font-size: 1.05rem;
  opacity: 0.78;
}

/* =========================
   CART PAGE
========================= */

.cart-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 84px 24px 96px;
}

.cart-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: #7d5411;
  margin-bottom: 14px;
}

.cart-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.9rem, 7vw, 4.6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

.cart-subtitle {
  max-width: 500px;
  font-size: 1.05rem;
  color: rgba(36, 33, 29, 0.72);
  margin-bottom: 44px;
}

/* ORDER ITEMS */

.order-item {
  display: grid;
  grid-template-columns: 2.2rem 1fr auto 1.9rem;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(36, 33, 29, 0.1);
}

.order-item-qty {
  font-variant-numeric: tabular-nums;
  color: #7d5411;
  font-size: 0.95rem;
}

.order-item-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.order-item-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.15;
}

.order-item-detail {
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  color: rgba(36, 33, 29, 0.6);
  margin-top: 3px;
}

.order-item-price {
  font-variant-numeric: tabular-nums;
  font-size: 1rem;
  white-space: nowrap;
}

.remove-item {
  justify-self: end;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: none;
  border: 1px solid transparent;
  border-radius: 50%;
  color: rgba(36, 33, 29, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.remove-item:hover {
  color: #b68235;
  border-color: rgba(182, 130, 53, 0.4);
}

.order-empty {
  padding: 56px 0 44px;
  border-bottom: 1px solid rgba(36, 33, 29, 0.14);
  text-align: center;
}

.order-empty-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.order-empty-sub {
  color: rgba(36, 33, 29, 0.6);
}


/* TOTAL */

.order-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 26px;
  border-bottom: 1px solid rgba(36, 33, 29, 0.14);
}

.order-total-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(36, 33, 29, 0.7);
}

.order-total-value {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
}


/* ACTIONS */

.order-actions {
  padding: 26px 0;
}

.outline-button {
  display: inline-block;
  padding: 13px 26px;
  border: 1px solid #b68235;
  border-radius: 2px;
  background: transparent;
  color: #7d5411;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.outline-button:hover {
  background: rgba(182, 130, 53, 0.12);
}


/* FORM */

#order-form {
  margin-top: 32px;
  border-top: 1px solid rgba(36, 33, 29, 0.14);
  padding-top: 40px;
}

.form-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: #7d5411;
  margin-bottom: 12px;
}

.form-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px 20px;
}

.form-grid label {
  display: grid;
  gap: 7px;
}

.form-grid-full {
  grid-column: 1 / -1;
}

.form-grid span {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(36, 33, 29, 0.65);
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(36, 33, 29, 0.22);
  border-radius: 4px;
  background: #fdfcfa;
  color: #24211d;
  font: inherit;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: #b68235;
}

.order-form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 34px;
}

#order-form button[type="submit"] {
  padding: 14px 30px;
  border: 1px solid #7d5411;
  border-radius: 2px;
  background: #7d5411;
  color: #f5f1e8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

#order-form button[type="submit"]:hover:not(:disabled) {
  background: #8f6528;
  border-color: #8f6528;
}

#order-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.order-form-note {
  font-size: 0.9rem;
  color: rgba(36, 33, 29, 0.6);
}

.delivery-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(36, 33, 29, 0.6);
}

.order-message {
  margin-top: 18px;
  color: #7d5411;
  font-size: 0.95rem;
}


/* THANK YOU */

.thank-you-box {
  text-align: center;
  padding: 60px 30px;
  background: #e8dfd0;
}

.thank-you-box h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.thank-you-box p {
  font-size: 1.05rem;
  opacity: 0.75;
  max-width: 500px;
  margin: 0 auto;
}


/* HELP / CONTACT BOX */

.help-box {
  max-width: 750px;
  margin: 64px auto 0;
  padding: 55px 45px;
  background: #f5f1e8;
  border-top: 2px solid #b68235;
  text-align: center;
}

.help-box-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7d5411;
  font-weight: 600;
}

.help-box h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin: 14px 0 18px;
}

.help-box-rule {
  width: 48px;
  height: 1px;
  background: #b68235;
  margin: 0 auto 26px;
}

.help-box > p {
  font-size: 1rem;
  color: rgba(36, 33, 29, 0.7);
  margin-bottom: 34px;
}

.help-box-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.help-box-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
}

.help-box-row svg {
  color: #b68235;
  flex-shrink: 0;
}

.help-box-row a,
.help-box-row span {
  color: #24211d;
}

.help-box-row a:hover {
  color: #7d5411;
}


@media (max-width: 700px) {
  .cart-page {
    padding: 60px 20px 70px;
  }
}


/* =========================
   FOOTER
========================= */

footer {
  padding: 70px 6% 30px;
  background: #1d1b18;
  color: #f5f1e8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer-logo span > span {
  font-weight: 400;
  margin-left: 3px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(245, 241, 232, 0.6);
  max-width: 240px;
  line-height: 1.6;
}

.footer-column h4 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e1ad66;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  font-size: 0.9rem;
  color: rgba(245, 241, 232, 0.75);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #e1ad66;
}

.footer-contact-list {
  margin-bottom: 24px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(245, 241, 232, 0.75);
  line-height: 1.5;
}

.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #e1ad66;
}

.footer-contact-list a {
  color: rgba(245, 241, 232, 0.75);
}

.footer-contact-list a:hover {
  color: #e1ad66;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.9rem;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e1ad66;
  margin-bottom: 22px;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(245, 241, 232, 0.25);
  border-radius: 50%;
  color: #e1ad66;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  border-color: #e1ad66;
  background: rgba(225, 173, 102, 0.08);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 26px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* =========================
   PRODUCT PAGE
========================= */

.product-page {
  min-height: calc(100vh - 100px);
  padding: 110px 8%;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(400px, 1fr);
  gap: 10%;
  align-items: center;
}

.product-page .product-page-image {
  flex-direction: column;
  justify-content: flex-start;
}

.product-page-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: start;
  position: sticky;
  top: 110px;
}

.main-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.main-product-image {
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
}

.product-thumbnail {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: none;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbnail:hover {
  opacity: 0.85;
}

.product-thumbnail.active {
  opacity: 1;
  border-color: #24211d;
}

.product-page-content {
  max-width: 650px;
}

.product-page-content h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.product-score {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 25px;
  font-size: 1.1rem;
  font-weight: 700;
}

.product-score span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  opacity: 0.55;
}

.product-tasting {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 35px;
}

.product-page-content .product-description {
  max-width: 600px;
  margin-bottom: 35px;
}

.product-page-content .product-description p {
  margin-bottom: 18px;
  opacity: 0.78;
}

.product-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 35px;
  padding: 30px 0;
  border-top: 1px solid rgba(36, 33, 29, 0.15);
  border-bottom: 1px solid rgba(36, 33, 29, 0.15);
}

.product-details div {
  display: flex;
  flex-direction: column;
}

.product-details span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  opacity: 0.5;
  margin-bottom: 3px;
}

.product-details strong {
  font-size: 0.9rem;
  font-weight: 500;
}

.purchase {
  margin-top: 35px;
  display: grid;
  gap: 12px;
}

.purchase-group {
  margin-bottom: 22px;
}

.purchase-label {
  margin-bottom: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  opacity: 0.55;
}

.selection-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.selection-option {
  padding: 14px 16px;
  border: 1px solid rgba(36, 33, 29, 0.25);
  border-radius: 2px;
  background: transparent;
  color: #24211d;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}

.selection-option:hover:not(.disabled) {
  border-color: #b68235;
}

.selection-option.active {
  background: rgba(182, 130, 53, 0.12);
  color: #7d5411;
  border-color: #b68235;
}

.selection-option .option-price {
  font-size: 0.75rem;
  opacity: 0.65;
}

.selection-option.active .option-price {
  opacity: 0.85;
}

.selection-option.disabled {
  opacity: 0.32;
  text-decoration: line-through;
  cursor: not-allowed;
  pointer-events: none;
}

.selection-message {
  margin-top: 12px;
  font-size: 0.82rem;
  opacity: 0.6;
}

.selected-price {
  margin-top: 10px;
  font-size: 1.15rem;
  font-weight: 700;
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(36, 33, 29, 0.25);
  border-radius: 50px;
  padding: 6px 8px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #24211d;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s ease;
}

.qty-btn:hover {
  background: rgba(36, 33, 29, 0.08);
}

#quantity-value {
  min-width: 18px;
  text-align: center;
  font-weight: 700;
}

.add-to-cart-button {
  width: 100%;
  margin-top: 14px;
  padding: 15px 22px;
  border: 1px solid #7d5411;
  border-radius: 2px;
  background: #7d5411;
  color: #f5f1e8;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.add-to-cart-button:hover:not(:disabled) {
  background: #8f6528;
  border-color: #8f6528;
}

.add-to-cart-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.purchase-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}

.purchase-option > div {
  display: flex;
  flex-direction: column;
}

.purchase-option strong {
  font-size: 1rem;
}

.purchase-option span {
  font-size: 0.9rem;
  opacity: 0.65;
}

.purchase-option button {
  padding: 11px 20px;
  border: 1px solid #24211d;
  border-radius: 50px;
  background: #24211d;
  color: #f5f1e8;
  transition: all 0.2s ease;
}

.purchase-option button:hover {
  background: transparent;
  color: #24211d;
}

.back-link {
  display: inline-block;
  margin-top: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  border-bottom: 1px solid #24211d;
}


/* =========================
   CART TOAST (add-to-cart notification)
========================= */

.cart-toast {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: #8c6247;
  color: #f5f1e8;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  font-size: 0.85rem;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.cart-toast.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cart-toast a {
  color: #f5f1e8;
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .cart-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: space-between;
    width: 220px;
  }
}

/* =========================
   WHATSAPP FLOAT BUBBLE
========================= */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}


/* =========================
   HERO V2 (current homepage hero)
========================= */

.hero-v2 {
  position: relative;
  height: 660px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-v2-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,26,18,0.5) 0%, rgba(20,26,18,0.28) 45%, rgba(20,26,18,0.62) 100%);
}

.hero-v2-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
  padding: 0 80px;
}

.hero-v2-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #f0e7d6;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-v2-line {
  width: 42px;
  height: 1px;
  background: rgba(240, 231, 214, 0.6);
}

.hero-v2-content h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.96;
  color: #fbf8f2;
  max-width: 15ch;
}

.hero-v2-button {
  margin-top: 6px;
  display: inline-block;
  border: 1px solid rgba(251, 248, 242, 0.75);
  color: #fbf8f2;
  padding: 15px 40px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.hero-v2-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 700px) {
  .hero-v2 { height: 520px; }
  .hero-v2-content { padding: 0 30px; }
}


/* =========================
   VALUES SECTION (numbered — current version)
========================= */

.values-section {
  padding: 130px 8%;
  background: #fbf9f5;
}

.values-heading {
  display: flex;
  align-items: baseline;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto 70px;
}

.values-label {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7d5411;
  white-space: nowrap;
}

.values-rule {
  flex: 1;
  height: 1px;
  background: rgba(32, 31, 29, 0.18);
}

.values-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.value-item {
  padding: 0 48px;
  border-right: 1px solid rgba(32, 31, 29, 0.14);
}

.value-item:first-child {
  padding-left: 0;
}

.value-item:last-child {
  border-right: none;
  padding-right: 0;
}

.value-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  color: #b68235;
  line-height: 1;
}

.value-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 2rem;
  margin: 18px 0 14px;
}

.value-item p {
  font-size: 1rem;
  line-height: 1.85;
  color: #444141;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .value-item {
    padding: 0 !important;
    border-right: none !important;
  }
}


/* =========================
   NOSOTROS SECTION
========================= */

.nosotros-section {
  background: #eeeae1;
  border-top: 1px solid rgba(32, 31, 29, 0.12);
  border-bottom: 1px solid rgba(32, 31, 29, 0.12);
  padding: 110px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nosotros-image {
  padding: 10px;
  background: #f7f4ee;
  border: 1px solid rgba(32, 31, 29, 0.14);
}

.nosotros-image img {
  display: block;
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.nosotros-label {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7d5411;
}

.nosotros-content h2 {
  margin: 20px 0 28px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.04;
}

.nosotros-rule {
  width: 56px;
  height: 1px;
  background: #b68235;
  margin-bottom: 28px;
}

.nosotros-content p {
  margin: 0 0 20px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444141;
}

.nosotros-button {
  display: inline-block;
  margin-top: 14px;
  border: 1px solid #b68235;
  color: #7d5411;
  padding: 14px 34px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nosotros-button:hover {
  background: rgba(182, 130, 53, 0.12);
}

@media (max-width: 900px) {
  .nosotros-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 80px 6%;
  }
  .nosotros-image img {
    height: 320px;
  }
}


/* =========================
   CONTACT V2 (current homepage contact section)
========================= */

.contact-v2 {
  background: #4a3527;
  color: #f4f1ea;
  padding: 110px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.contact-v2-label {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e1ad66;
}

.contact-v2-info h2 {
  margin: 20px 0 24px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.06;
  color: #fbf8f2;
}

.contact-v2-info > p {
  margin: 0 0 36px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(244, 241, 234, 0.8);
  max-width: 40ch;
}

.contact-v2-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
}

.contact-v2-links a {
  color: #f4f1ea;
  border-bottom: 1px solid rgba(225, 173, 102, 0.6);
  padding-bottom: 4px;
  width: fit-content;
}

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

.contact-v2-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.7);
}

.contact-v2-form input,
.contact-v2-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 241, 234, 0.35);
  color: #fbf8f2;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  padding: 10px 0;
}

.contact-v2-form textarea {
  resize: none;
}

.contact-v2-form input:focus,
.contact-v2-form textarea:focus {
  outline: none;
  border-bottom-color: #e1ad66;
}

.contact-v2-form button {
  margin-top: 10px;
  background: transparent;
  border: 1px solid rgba(244, 241, 234, 0.7);
  color: #fbf8f2;
  padding: 15px 36px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  width: fit-content;
  transition: all 0.25s ease;
  cursor: pointer;
}

.contact-v2-form button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
}

#contact-form-message {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(244, 241, 234, 0.85);
}

@media (max-width: 900px) {
  .contact-v2 {
    grid-template-columns: 1fr;
    padding: 80px 6%;
  }
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
.product-page-image {
    max-width: 600px;
    margin: auto;
    position: static;
    top: auto;
  }
  .coffee-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail,
  .product-detail.reverse {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .product-detail.reverse .product-detail-image,
  .product-detail.reverse .product-detail-content {
    order: initial;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .product-page {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 6%;
  }

  .product-page-image {
    max-width: 600px;
    margin: auto;
  }

}


@media (max-width: 700px) {

  .site-header {
    padding: 16px 5%;
  }

  .site-header nav {
    gap: 12px;
    font-size: 0.72rem;
  }

  .site-header nav a:not(.cart-link) {
  display: none;
}

  .hero {
    min-height: 75vh;
  }

  .hero-content {
    width: 88%;
    padding: 50px 10px;
  }

  .hero-subtitle {
    margin-bottom: 30px;
    font-size: 0.95rem;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 36px;
  }

  .coffee-intro {
    padding: 100px 7%;
  }

  .coffee-intro h2 {
    font-size: 3.2rem;
    margin-bottom: 40px;
  }

  .coffee-intro-text p {
    font-size: 1rem;
  }

  .section {
    padding: 80px 6%;
  }

  .coffee-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .tasting-notes {
    min-height: auto;
  }

  .product-detail,
  .product-detail.reverse {
    padding: 80px 6%;
  }

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

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

  .about {
    padding: 90px 6%;
  }

  .contact {
    padding: 90px 6%;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .-content h1 {
    font-size: 4rem;
  }

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

  .purchase-option {
    align-items: flex-start;
  }

  .product-thumbnail {
    width: 56px;
    height: 56px;
  }

  .cart-toast {
    width: auto;
  }

}

.sold-out-button {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(36, 33, 29, 0.12);
  color: rgba(36, 33, 29, 0.45);
  border: 1px solid rgba(36, 33, 29, 0.15);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: line-through;
  white-space: nowrap;
  cursor: not-allowed;
}

.add-to-cart-button.sold-out-button {
  width: 100%;
  padding: 15px 22px;
  font-size: 0.8rem;
}

.sold-out-message {
  margin-bottom: 14px;
  font-size: 0.9rem;
  opacity: 0.65;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(36, 33, 29, 0.35);
}

.catalogue-label-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 0 6%;
  margin-bottom: 40px;
}

.catalogue-label {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7d5411;
  white-space: nowrap;
}

.catalogue-rule {
  flex: 1;
  height: 1px;
  background: rgba(32, 31, 29, 0.18);
}


/* =========================
   SIDE MENU
========================= */

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  color: #24211d;
  transition: color 0.2s ease;
}

.menu-toggle:hover {
  color: #b68235;
}

.side-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 15, 0.4);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.side-menu-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: min(340px, 84vw);
  background: #fbf9f5;
  z-index: 200;
  padding: 34px 32px;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.15);
}

.side-menu.open {
  transform: translateX(0);
}

.menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid rgba(36, 33, 29, 0.2);
  border-radius: 50%;
  color: #24211d;
  margin-bottom: 40px;
  transition: all 0.2s ease;
}

.menu-close:hover {
  border-color: #b68235;
  color: #b68235;
}

.side-menu-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
}

.side-menu-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.side-menu-logo span > span {
  font-weight: 400;
  margin-left: 3px;
}

.side-menu-list {
  list-style: none;
}

.side-menu-list > li {
  border-top: 1px solid rgba(36, 33, 29, 0.12);
}

.side-menu-list > li:last-child {
  border-bottom: 1px solid rgba(36, 33, 29, 0.12);
}

.side-menu-list > li > a {
  display: block;
  padding: 18px 2px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  transition: color 0.2s ease;
}

.side-menu-list > li > a:hover {
  color: #b68235;
}

.side-menu-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 2px;
  background: none;
  border: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: #24211d;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.side-menu-group-toggle:hover {
  color: #b68235;
}

.side-menu-arrow-icon {
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.25s ease;
}

.side-menu-group.expanded .side-menu-arrow-icon {
  transform: rotate(180deg);
}

.side-menu-sublist {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 4px;
  border-left: 1px solid rgba(182, 130, 53, 0.35);
  margin-left: 4px;
}

.side-menu-group.expanded .side-menu-sublist {
  max-height: 260px;
  padding-bottom: 16px;
}

.side-menu-sublist li a {
  display: block;
  padding: 10px 0 10px 16px;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: rgba(36, 33, 29, 0.68);
  transition: color 0.2s ease;
}

.side-menu-sublist li a:hover {
  color: #b68235;
}


/* =========================
   INFORMACIÓN PAGE
========================= */

.info-page {
  padding: 20px 6% 140px;
}

.info-block {
  padding: 50px 0;
  border-top: 1px solid rgba(36, 33, 29, 0.14);
  scroll-margin-top: 110px;
}

.info-block:first-child {
  border-top: none;
}

.info-block h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.info-block p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(36, 33, 29, 0.78);
}

@media (max-width: 700px) {
  .side-menu {
    padding: 28px 24px;
  }
}

.info-subhead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin: 28px 0 10px;
}

.info-block p {
  margin-bottom: 14px;
}

.info-block p:last-child {
  margin-bottom: 0;
}

.info-faq-item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(36, 33, 29, 0.08);
}

.info-question {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #24211d;
}

.info-answer {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(36, 33, 29, 0.75);
}

.side-menu-group-row > a {
  padding: 18px 2px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  transition: color 0.2s ease;
}

.side-menu-group-row > a:hover {
  color: #b68235;
}

.cart-link.active {
  background: rgba(182, 130, 53, 0.15);
  border-color: #b68235;
  color: #7d5411;
}

/* =========================
   GUÍA DEL CAFÉ — ACCORDION
========================= */

.guide-page {
  max-width: 900px;
  padding: 20px 6% 140px;
}

.guide-item {
  border-top: 1px solid rgba(36, 33, 29, 0.14);
  scroll-margin-top: 100px;
}

.guide-item:last-child {
  border-bottom: 1px solid rgba(36, 33, 29, 0.14);
}

.guide-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 32px 4px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.guide-toggle-text {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.guide-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  color: #b68235;
  flex-shrink: 0;
}

.guide-toggle h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 6px;
}

.guide-summary {
  font-size: 0.92rem;
  color: rgba(36, 33, 29, 0.6);
}

.guide-arrow-icon {
  flex-shrink: 0;
  margin-left: 20px;
  color: #24211d;
  transition: transform 0.3s ease;
}

.guide-item.expanded .guide-arrow-icon {
  transform: rotate(180deg);
}

.guide-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.guide-item.expanded .guide-content {
  grid-template-rows: 1fr;
}

.guide-content-inner {
  overflow: hidden;
}

.guide-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(36, 33, 29, 0.85);
  margin-bottom: 20px;
}

.guide-checklist {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guide-check,
.guide-cross {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(36, 33, 29, 0.85);
}

.guide-check::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: #2f7a4f;
  font-weight: 700;
}

.guide-cross::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 1px;
  color: #b3432f;
  font-weight: 700;
}

.guide-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.guide-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f5f1e8;
  padding: 14px;
}

.guide-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e8dfd0;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
}

.guide-video:empty {
  display: none;
}

.guide-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(20, 18, 15, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  pointer-events: none;
}

@media (max-width: 700px) {
  .guide-toggle {
    padding: 24px 2px;
  }
  .guide-toggle-text {
    gap: 12px;
  }
}

.guide-intro {
  max-width: 1100px;
  margin: 0 auto;
}

.guide-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 6% 140px;
}

.guide-content-inner p,
.guide-checklist {
  max-width: 700px;
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 9px 18px;
  border: 1px solid rgba(36, 33, 29, 0.25);
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #24211d;
  transition: all 0.2s ease;
}

.product-back-link:hover {
  border-color: #b68235;
  color: #7d5411;
  background: rgba(182, 130, 53, 0.07);
}

.main-image-container {
  position: relative;
}

.image-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  border-radius: 50%;
  color: #24211d;
  cursor: pointer;
  transition: background 0.2s ease;
  backdrop-filter: blur(2px);
}

.image-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.85);
}

.image-nav-prev {
  left: 12px;
}

.image-nav-next {
  right: 12px;
}
