@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --global-container-width: 1680px;
  --color-background: #f9f8f7;
  --color-background-darken: #f3f1ef;
  --color-text-primary: #463c3c;
  --color-text-secondary: #766c6c;
  --color-text-thirdly: #8b8885;
  --color-heading: #463c3c;
  --color-white: #fff;
  --color-black: #000;
  --color-valencia: #d33636;
  --color-chelsea-cucumber: #81b154;
  --color-pancho: #eab88c;
  --color-aegean: #1a5fbf;
  --color-border: #e6e6e6;
  --button-text-primary: #463c3c;
  --button-bg-primary: transparent;
  --button-border-primary: #463c3c;
  --button-text-secondary: #fff;
  --button-bg-secondary: transparent;
  --button-border-secondary: #fff;
  --button-text-secondary-hover: #fff;
  --button-bg-secondary-hover: rgba(255, 255, 255, 0.15);
  --product-card-footer: #f9f5f0;
  --header-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--color-background);
  color: var(--color-text-primary);
  line-height: 1.6;
  font-size: 16px;
}

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

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--color-black); color: var(--color-white);
  padding: 8px 16px; z-index: 9999;
}
.skip-link:focus { top: 16px; }

.container {
  max-width: var(--global-container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; font-family: inherit;
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: lowercase;
  border: 1px solid; cursor: pointer;
  transition: all 0.25s ease;
}
.button--primary {
  color: var(--button-text-primary);
  background: var(--button-bg-primary);
  border-color: var(--button-border-primary);
}
.button--primary:hover {
  background: var(--color-text-primary);
  color: var(--color-white);
}
.button--secondary {
  color: var(--button-text-secondary);
  background: var(--button-bg-secondary);
  border-color: var(--button-border-secondary);
  backdrop-filter: blur(4px);
}
.button--secondary:hover {
  color: var(--button-text-secondary-hover);
  background: var(--button-bg-secondary-hover);
}

.cart-drawer__footer .button--secondary {
  color: var(--button-text-primary);
  background: transparent;
  border-color: var(--button-border-primary);
  backdrop-filter: none;
}
.cart-drawer__footer .button--secondary:hover {
  background: var(--color-text-primary);
  color: var(--color-white);
}

/* Header */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  max-width: var(--global-container-width);
  margin: 0 auto;
  padding: 0 20px;
}
.header__burger {
  background: none; border: none; cursor: pointer;
  padding: 8px; display: flex; flex-direction: column; gap: 5px;
}
.header__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--color-text-primary);
  transition: 0.3s;
}
.header__logo-link {
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--color-heading);
}
.header__logo-link em {
  font-style: normal;
  color: var(--color-pancho);
}
.header__menu { display: none; }
.header__utils {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 16px;
}
.header__util-btn {
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--color-text-primary);
  position: relative;
}
.header__cart-count {
  position: absolute; top: 0; right: 0;
  background: var(--color-valencia); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.header__country {
  font-size: 0.8rem; font-weight: 600;
  color: var(--color-text-secondary);
  display: none;
}

@media (min-width: 992px) {
  .header__burger { display: none; }
  .header__menu { display: block; }
  .header__country { display: block; }
  .header-menu__list {
    display: flex; list-style: none; gap: 4px;
    justify-content: center;
  }
  .header-menu__item-wrap { position: relative; }
  .header-menu__item {
    display: flex; align-items: center; gap: 4px;
    padding: 10px 14px; font-size: 0.75rem;
    font-weight: 700; letter-spacing: 0.04em;
    background: none; border: none; cursor: pointer;
    font-family: inherit; color: var(--color-text-primary);
    white-space: nowrap;
  }
  .header-menu__item:hover { opacity: 0.7; }
  .header-menu__dropdown {
    position: absolute; top: 100%; left: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    min-width: 220px; list-style: none;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: 0.25s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .header-menu__item-wrap:hover .header-menu__dropdown,
  .header-menu__item-wrap.is-open .header-menu__dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .header-menu__dropdown a {
    display: block; padding: 10px 16px;
    font-size: 0.85rem; font-weight: 400;
    border-bottom: 1px solid var(--color-border);
  }
  .header-menu__dropdown a:last-child { border-bottom: none; }
  .header-menu__dropdown a:hover { background: var(--color-background); }
}

/* Mobile drawer */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 1100; opacity: 0; visibility: hidden;
  transition: 0.3s;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; left: 0; width: 320px; max-width: 90vw;
  height: 100vh; background: var(--color-white);
  z-index: 1200; transform: translateX(-100%);
  transition: 0.3s; overflow-y: auto;
  padding: 24px;
}
.drawer.is-open { transform: translateX(0); }
.drawer__close {
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; margin-bottom: 24px;
}
.drawer-nav__list { list-style: none; }
.drawer-nav__item { border-bottom: 1px solid var(--color-border); }
.drawer-nav__link {
  display: block; padding: 14px 0;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.drawer-nav__sub { list-style: none; padding: 0 0 12px 16px; }
.drawer-nav__sub a {
  display: block; padding: 8px 0;
  font-size: 0.85rem; color: var(--color-text-secondary);
}

/* Cart drawer */
.cart-drawer {
  position: fixed; top: 0; right: 0; width: 400px; max-width: 90vw;
  height: 100vh; background: var(--color-white);
  z-index: 1200; transform: translateX(100%);
  transition: 0.3s; display: flex; flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--color-border);
}
.cart-drawer__header h2 { font-size: 1.1rem; }
.cart-drawer__body { flex: 1; padding: 24px; overflow-y: auto; }
.cart-drawer__empty { color: var(--color-text-secondary); text-align: center; padding: 40px 0; }
.cart-drawer__footer {
  padding: 20px 24px; border-top: 1px solid var(--color-border);
}

/* Hero Slideshow */
.slideshow {
  position: relative; height: 100vh; min-height: 500px;
  max-height: 900px; overflow: hidden;
}
.slideshow__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.slideshow__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25));
}
.slideshow__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: center; height: 100%;
  padding: 40px 20px; max-width: var(--global-container-width);
  margin: 0 auto;
}
.slideshow__label {
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-pancho); margin-bottom: 12px;
}
.slideshow__heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; color: var(--color-white);
  line-height: 1.1; margin-bottom: 16px;
  max-width: 600px;
}
.slideshow__desc {
  font-size: 1rem; color: rgba(255,255,255,0.95);
  max-width: 480px; margin-bottom: 28px;
}

@media (max-width: 767px) {
  .slideshow { height: 50vh; min-height: 400px; }
}

/* Promo banner */
.promo-banner {
  background: #c45c8a; color: #fff;
  padding: 20px 30px; text-align: center;
  font-weight: 700; border-radius: 8px;
  margin: 24px auto; max-width: 1200px;
  box-shadow: 0 4px 15px rgba(196, 92, 138, 0.25);
}
.promo-banner h2 {
  font-size: 1.6rem; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 8px;
}
.promo-banner p { font-size: 1.05rem; font-weight: 500; opacity: 0.95; }

.featured-intro {
  text-align: center; padding: 16px 20px;
  font-size: 1.05em; color: var(--color-text-primary);
}

/* Featured Products */
.featured-products {
  position: relative;
  z-index: 2;
  padding: 0 0 80px;
  background: var(--color-background);
}
.featured-products__slider {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 20px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
}
.featured-products__slider::-webkit-scrollbar { display: none; }

.product-card {
  flex: 0 0 280px; scroll-snap-align: start;
  display: flex; flex-direction: column;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  transition: box-shadow 0.25s;
}
.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.product-card__image-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1; background: var(--color-background-darken);
}
.product-card__image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-card__image-wrap img { transform: scale(1.04); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--color-pancho); color: var(--color-text-primary);
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 10px; text-transform: uppercase;
}
.product-card__footer {
  flex: 1;
  display: flex; flex-direction: column;
  padding: 16px; background: var(--product-card-footer);
}
.product-card__buy {
  margin-top: auto;
  width: 100%;
  font-size: 0.8rem;
  padding: 10px;
}
.product-card__title {
  font-weight: 700; font-size: 0.95rem;
  margin-bottom: 4px; display: block;
}
.product-card__title:hover { text-decoration: underline; }
.product-card__caption {
  font-size: 0.8em; color: var(--color-text-thirdly);
  margin-bottom: 8px;
}
.product-card__price {
  font-weight: 700; font-size: 1rem;
}
.product-card__swatches {
  display: flex; gap: 6px; margin-bottom: 8px;
}
.product-card__swatch {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--color-border);
}

@media (min-width: 768px) {
  .featured-products__slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
    overflow: hidden;
    padding: 0 20px;
  }
  .product-card { flex: none; }
}

.featured-products + .image-with-text {
  position: relative;
  z-index: 1;
  margin-top: 0;
  clear: both;
}

/* Full-width mid banner */
.mid-banner {
  position: relative; margin: 0;
  min-height: 400px; overflow: hidden;
}
.mid-banner__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.mid-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.08) 60%);
}
.mid-banner__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: center; min-height: 400px;
  padding: 60px 20px; max-width: var(--global-container-width);
  margin: 0 auto;
}
.mid-banner__label {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-pancho); margin-bottom: 12px;
}
.mid-banner__heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; color: var(--color-white);
  max-width: 550px; margin-bottom: 16px;
}
.mid-banner__desc {
  color: rgba(255,255,255,0.9); max-width: 480px;
  margin-bottom: 24px;
}

/* Image with Text */
.image-with-text { padding: 60px 0; }
.image-with-text--reverse .image-with-text__inner {
  flex-direction: row-reverse;
}
.image-with-text__inner {
  display: flex; flex-direction: column;
  gap: 32px; align-items: center;
  max-width: var(--global-container-width);
  margin: 0 auto; padding: 0 20px;
}
.image-with-text__image {
  flex: 1; width: 100%;
  border-radius: 4px; overflow: hidden;
}
.image-with-text__image img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.image-with-text__content { flex: 1; }
.image-with-text__heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700; margin-bottom: 16px;
  color: var(--color-heading);
}
.image-with-text__text {
  color: var(--color-text-secondary);
  margin-bottom: 24px; line-height: 1.7;
}
.image-with-text.is-visible {
  animation: fadeUp 0.7s ease forwards;
}
.image-with-text__inner.is-visible {
  animation: fadeUp 0.7s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 992px) {
  .image-with-text__inner { flex-direction: row; gap: 60px; }
  .image-with-text__image, .image-with-text__content { flex: 1; }
}

/* Model Stories */
.model-stories {
  padding: 80px 0;
  background: var(--color-background-darken);
}
.model-stories__header {
  text-align: center; max-width: 640px;
  margin: 0 auto 48px; padding: 0 20px;
}
.model-stories__header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}
.model-stories__header p { color: var(--color-text-secondary); }
.model-stories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: var(--global-container-width);
  margin: 0 auto; padding: 0 20px;
}
.model-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.model-card__image { aspect-ratio: 3/4; overflow: hidden; }
.model-card__image img {
  width: 100%; height: 100%; object-fit: cover;
}
.model-card__body { padding: 20px; }
.model-card__name {
  font-weight: 700; font-size: 1rem; margin-bottom: 4px;
}
.model-card__meta {
  font-size: 0.8rem; color: var(--color-pancho);
  font-weight: 600; margin-bottom: 12px;
}
.model-card__story {
  font-size: 0.9rem; color: var(--color-text-secondary);
  line-height: 1.6; font-style: italic;
}

/* Centered CTA */
.centered-cta {
  padding: 80px 20px; text-align: center;
  max-width: 720px; margin: 0 auto;
}
.centered-cta__heading {
  font-size: 1.75rem; letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.centered-cta__text {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--color-text-secondary); margin-bottom: 12px;
}
.centered-cta__tagline {
  font-style: italic; color: var(--color-text-thirdly);
  margin-bottom: 24px;
}

/* Shipping Banner */
.banner-shipping {
  position: relative; min-height: 320px;
  display: flex; align-items: center;
  background: transparent;
  overflow: hidden;
}
.banner-shipping__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 1;
}
.banner-shipping::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25));
  z-index: 1;
}
.banner-shipping__content {
  position: relative; z-index: 2;
  padding: 60px 20px; max-width: var(--global-container-width);
  margin: 0 auto; width: 100%;
}
.banner-shipping__label {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-pancho); margin-bottom: 12px;
}
.banner-shipping__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--color-white);
  margin-bottom: 16px; max-width: 600px;
}
.banner-shipping__text {
  color: rgba(255,255,255,0.85); max-width: 520px;
}

/* Footer */
.footer {
  background: var(--color-background);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px;
}
.footer__grid {
  display: grid; gap: 40px;
  max-width: var(--global-container-width);
  margin: 0 auto; padding: 0 20px;
}
.footer__brand h2 {
  font-size: 1.2rem; margin-bottom: 12px;
}
.footer__brand p {
  color: var(--color-text-secondary);
  font-size: 0.9rem; margin-bottom: 8px;
}
.footer__brand a { color: var(--color-aegean); }
.footer__nav h3 {
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.06em; margin-bottom: 16px;
}
.footer__nav ul { list-style: none; }
.footer__nav li { margin-bottom: 8px; }
.footer__nav a {
  font-size: 0.9rem; color: var(--color-text-secondary);
}
.footer__nav a:hover { color: var(--color-text-primary); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 16px;
  max-width: var(--global-container-width);
  margin: 40px auto 0; padding: 24px 20px 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem; color: var(--color-text-thirdly);
}
.footer__payments {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.footer__pay-badge {
  background: var(--color-white); border: 1px solid var(--color-border);
  padding: 4px 10px; font-size: 0.7rem; font-weight: 700;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

/* Subpages */
.page-hero {
  position: relative; min-height: 280px;
  display: flex; align-items: center;
  background: transparent;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 1;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25));
  z-index: 1;
}
.page-hero__content {
  position: relative; z-index: 2;
  padding: 80px 20px 60px;
  max-width: var(--global-container-width);
  margin: 0 auto; width: 100%;
}
.page-hero__label {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-pancho); margin-bottom: 12px;
}
.page-hero__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--color-white);
  margin-bottom: 12px; max-width: 700px;
}
.page-hero__desc {
  color: rgba(255,255,255,0.85); max-width: 560px;
  font-size: 1.05rem;
}

.page-content {
  padding: 60px 0 80px;
}
.page-content.image-with-text {
  padding: 60px 0 80px;
}
.page-content__inner {
  max-width: 800px;
  margin: 0 auto; padding: 0 20px;
}
.page-content__inner--wide {
  max-width: var(--global-container-width);
}
.page-content h2 {
  font-size: 1.4rem; margin: 32px 0 12px;
  color: var(--color-heading);
}
.page-content h2:first-child { margin-top: 0; }
.page-content p, .page-content li {
  color: var(--color-text-secondary);
  line-height: 1.7; margin-bottom: 12px;
}
.page-content ul, .page-content ol {
  padding-left: 24px; margin-bottom: 16px;
}
.page-content a { color: var(--color-aegean); }

.guide-steps {
  display: grid; gap: 24px;
  margin-top: 32px;
}
.guide-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; background: var(--color-white);
  border: 1px solid var(--color-border);
}
.guide-step__num {
  flex-shrink: 0; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-pancho); font-weight: 700;
  font-size: 1.1rem;
}
.guide-step__title {
  font-weight: 700; font-size: 1.05rem;
  margin-bottom: 6px;
}
.guide-step__text {
  font-size: 0.95rem; color: var(--color-text-secondary);
}

.faq-list { margin-top: 24px; }
.faq-item {
  border: 1px solid var(--color-border);
  background: var(--color-white);
  margin-bottom: 12px;
}
.faq-item__question {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
  padding: 18px 20px; background: none; border: none;
  font-family: inherit; font-size: 1rem; font-weight: 700;
  text-align: left; cursor: pointer; color: var(--color-heading);
}
.faq-item__question::after {
  content: '+'; font-size: 1.4rem; font-weight: 400;
  transition: transform 0.25s;
}
.faq-item.is-open .faq-item__question::after {
  transform: rotate(45deg);
}
.faq-item__answer {
  display: none; padding: 0 20px 18px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}
.faq-item.is-open .faq-item__answer { display: block; }

.contact-grid {
  display: grid; gap: 40px;
}
.contact-info p { margin-bottom: 8px; }
.contact-form { display: grid; gap: 16px; }
.contact-form label {
  display: block; font-weight: 600;
  font-size: 0.9rem; margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 12px 14px;
  font-family: inherit; font-size: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

.jobs-list { margin-top: 24px; }
.job-card {
  padding: 24px; background: var(--color-white);
  border: 1px solid var(--color-border);
  margin-bottom: 16px;
}
.job-card h3 {
  font-size: 1.1rem; margin-bottom: 8px;
}
.job-card__meta {
  font-size: 0.85rem; color: var(--color-pancho);
  font-weight: 600; margin-bottom: 12px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; margin-top: 32px;
  position: relative;
  z-index: 2;
}

.gift-card-options {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 32px 0;
}
.gift-card-option {
  padding: 24px; text-align: center;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  cursor: pointer; transition: border-color 0.25s;
}
.gift-card-option:hover,
.gift-card-option.is-selected {
  border-color: var(--color-text-primary);
}
.gift-card-option__amount {
  font-size: 1.5rem; font-weight: 700;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
  .guide-steps { grid-template-columns: 1fr 1fr; }
}

/* Product detail page */
.product-detail {
  padding: 40px 0 80px;
}
.product-detail__inner {
  display: flex; flex-direction: column;
  gap: 40px; align-items: flex-start;
  max-width: var(--global-container-width);
  margin: 0 auto; padding: 0 20px;
}
.product-detail__gallery {
  width: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}
.product-detail__image {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
}
.product-detail__info { width: 100%; }
.product-detail__label {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-pancho); margin-bottom: 8px;
}
.product-detail__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; margin-bottom: 12px;
  color: var(--color-heading);
}
.product-detail__caption {
  font-size: 1.05rem; color: var(--color-text-secondary);
  margin-bottom: 16px; line-height: 1.6;
}
.product-detail__price {
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: 24px;
}
.product-detail__actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 32px;
}
.product-detail__actions .button { min-width: 180px; }
.product-detail__meta {
  list-style: none; padding: 24px;
  background: var(--color-background-darken);
  border: 1px solid var(--color-border);
}
.product-detail__meta li {
  padding: 8px 0; border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem; color: var(--color-text-secondary);
}
.product-detail__meta li:last-child { border-bottom: none; }
.product-detail__meta strong { color: var(--color-text-primary); }
.product-detail__body {
  max-width: 800px; margin: 0 auto;
  padding: 0 20px 60px;
}
.product-detail__body h2 {
  font-size: 1.3rem; margin: 32px 0 12px;
}
.product-detail__body p {
  color: var(--color-text-secondary);
  line-height: 1.7; margin-bottom: 12px;
}
.product-detail__related {
  padding: 0 20px 80px;
  max-width: var(--global-container-width);
  margin: 0 auto;
}
.product-detail__related h2 {
  font-size: 1.4rem; margin-bottom: 24px;
  text-align: center;
}

.product-card { cursor: pointer; }

@media (min-width: 992px) {
  .product-detail__inner {
    flex-direction: row; gap: 60px;
    align-items: flex-start;
  }
  .product-detail__gallery { flex: 1; max-width: 50%; }
  .product-detail__info { flex: 1; }
}

/* Order modal */
.order-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 1300; opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.order-modal-overlay.is-open { opacity: 1; visibility: visible; }
.order-modal {
  background: var(--color-white);
  width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.order-modal__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--color-border);
  position: sticky; top: 0; background: var(--color-white); z-index: 1;
}
.order-modal__header h2 { font-size: 1.15rem; }
.order-modal__close {
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; line-height: 1; padding: 4px;
}
.order-modal__body { padding: 24px; }
.order-modal__product {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; padding: 14px 16px; margin-bottom: 20px;
  background: var(--product-card-footer);
  border: 1px solid var(--color-border);
}
.order-modal__product-name {
  font-weight: 600; font-size: 0.95rem; line-height: 1.4;
}
.order-modal__product-price {
  font-weight: 700; font-size: 1rem; white-space: nowrap;
}
.order-form { display: grid; gap: 14px; }
.order-form label {
  display: block; font-weight: 600;
  font-size: 0.85rem; margin-bottom: 4px;
}
.order-form input,
.order-form select,
.order-form textarea {
  width: 100%; padding: 11px 14px;
  font-family: inherit; font-size: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}
.order-form textarea { min-height: 80px; resize: vertical; }
.order-form__row {
  display: grid; gap: 14px;
}
@media (min-width: 480px) {
  .order-form__row { grid-template-columns: 1fr 1fr; }
}
.order-form__submit { margin-top: 6px; width: 100%; }
