/* ========================================
   ALINA'S BRAND — Stylesheet
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f7f6f4;
  --color-bg-warm: #f0efed;
  --color-bg-muted: #ece9e4;
  --color-text: #1a1a1a;
  --color-text-soft: #6b6b6b;
  --color-text-muted: #4a4a4a;
  --color-accent: #4a4a4a;
  --color-border: #d4d0cc;
  --color-border-light: #e8e6e3;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;

  --max-width: 1280px;
  --header-height: 80px;
  --transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

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

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

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.02em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
}

p {
  font-size: 0.95rem;
  max-width: 640px;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.header__logo-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.2;
}

.header__logo-tagline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 0.75rem;
  color: var(--color-text-soft);
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--active {
  font-weight: 500;
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown-list {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  padding: 12px 0;
  min-width: 180px;
  list-style: none;
}

.nav__dropdown-list a {
  display: block;
  padding: 8px 24px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition);
}

.nav__dropdown-list a:hover {
  background: var(--color-bg-warm);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 99;
  padding: 40px;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border-light);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  margin-top: var(--header-height);
  height: calc(100vh - var(--header-height));
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-soft);
}

.hero__bg,
.hero__pattern,
.hero__graphic-layer {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background-size: cover;
  background-position: center;
}

.hero--graphic {
  background:
    radial-gradient(circle at 12% 16%, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.92) 18%, rgba(246,244,241,0.84) 42%, rgba(240,237,232,0.76) 100%),
    linear-gradient(135deg, #faf9f7 0%, #f1eeea 50%, #fbfaf8 100%);
}

.hero--graphic::before {
  content: '';
  position: absolute;
  top: -16%;
  right: -8%;
  width: 62%;
  height: 150%;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(245,243,239,0.74) 48%, rgba(223,220,215,0.4) 100%);
  transform: rotate(16deg);
  box-shadow: -50px 0 90px rgba(0, 0, 0, 0.03);
}

.hero--graphic::after {
  content: '';
  position: absolute;
  bottom: -22%;
  left: -14%;
  width: 78%;
  height: 78%;
  background:
    linear-gradient(25deg, rgba(232,230,226,0.56), rgba(255,255,255,0.14));
  clip-path: polygon(0 100%, 0 40%, 65% 0, 100% 100%);
  filter: blur(2px);
}

.hero__pattern {
  background:
    radial-gradient(circle at 23% 30%, rgba(255,255,255,0.95) 0 14%, transparent 15% 100%),
    radial-gradient(circle at 78% 24%, rgba(255,255,255,0.82) 0 10%, transparent 11% 100%),
    radial-gradient(circle at 70% 68%, rgba(221,219,216,0.26) 0 18%, transparent 19% 100%),
    linear-gradient(124deg, transparent 0 38%, rgba(232,229,224,0.58) 39% 60%, transparent 61% 100%),
    linear-gradient(152deg, transparent 0 54%, rgba(243,240,236,0.9) 55% 78%, transparent 79% 100%);
  opacity: 0.95;
}

.hero__graphic-layer {
  background:
    radial-gradient(circle at 18% 78%, rgba(214,210,204,0.28) 0, rgba(255,255,255,0) 36%),
    radial-gradient(circle at 86% 84%, rgba(210,206,200,0.22) 0, rgba(255,255,255,0) 30%),
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 100%);
}

.hero--photo .hero__bg {
  opacity: 1;
}

.hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.76) 30%, rgba(255,255,255,0.38) 58%, rgba(255,255,255,0.32) 100%);
  z-index: 1;
}

.hero--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248,246,243,0.18) 0%, rgba(248,246,243,0.04) 42%, rgba(248,246,243,0.3) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  animation: fadeUp 1s ease-out;
}

.hero__content--left {
  max-width: 780px;
  text-align: left;
  padding-inline: clamp(20px, 4vw, 60px);
}

.hero__overtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--color-text);
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero__content--left .hero__subtitle {
  margin-left: 0;
  margin-right: 0;
}

.hero__cta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 48px;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  transition: var(--transition);
  background: transparent;
}

.hero__cta:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.hero__variant-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--color-text-soft);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: clamp(60px, 8vw, 120px) 0;
}

.section--warm {
  background: var(--color-bg-soft);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 70px);
}

.section__overtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 12px;
}

.section__title {
  font-weight: 300;
}

.section__divider {
  width: 60px;
  height: 1px;
  background: var(--color-border);
  margin: 20px auto 0;
}

/* ========================================
   ABOUT (Home)
   ======================================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.about__image {
  aspect-ratio: 3/4;
  background: var(--color-bg-warm);
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about__image:hover img {
  transform: scale(1.03);
}

.about__text {
  padding: clamp(20px, 3vw, 40px) 0;
}

.about__text h2 {
  margin-bottom: 24px;
}

.about__text p {
  color: var(--color-text-soft);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__text p:last-of-type {
  margin-bottom: 32px;
}

/* ========================================
   COLLECTIONS GRID
   ======================================== */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 30px);
}

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-bg-warm);
  cursor: pointer;
}

.collection-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 40px);
  transition: background var(--transition);
}

.collection-card:hover .collection-card__image {
  transform: scale(1.05);
}

.collection-card:hover .collection-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.collection-card__title {
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 8px;
}

.collection-card__count {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ========================================
   CATALOG GRID
   ======================================== */
.catalog-hero {
  margin-top: var(--header-height);
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
  text-align: center;
  background: var(--color-bg-soft);
}

.catalog-hero h1 {
  margin-bottom: 12px;
}

.catalog-hero p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text-soft);
  margin: 0 auto;
}

.catalog-list {
  display: grid;
  gap: clamp(44px, 5vw, 72px);
}

.catalog-model {
  display: grid;
  gap: 18px;
}

.catalog-model__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 24px);
}

.catalog-model__frame {
  background: var(--color-bg-warm);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.catalog-model__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.catalog-model__frame:hover img {
  transform: scale(1.04);
}

.catalog-model__caption {
  text-align: center;
  padding-top: 4px;
}

.catalog-model__article {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 6px;
}

.catalog-model__meta {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  line-height: 1.8;
}

.catalog-model__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--color-text);
  margin-bottom: 8px;
}

.catalog-model__description {
  max-width: 680px;
  margin: 0 auto 10px;
  font-size: 0.92rem;
  color: var(--color-text-soft);
  line-height: 1.7;
}


/* ========================================
   SIZE CHART
   ======================================== */
.size-chart {
  max-width: 600px;
  margin: 0 auto;
}

.size-chart table {
  width: 100%;
  border-collapse: collapse;
}

.size-chart th,
.size-chart td {
  padding: 14px 20px;
  text-align: center;
  font-size: 0.88rem;
}

.size-chart th {
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.size-chart td {
  border-bottom: 1px solid var(--color-border-light);
  color: #3d3d3d;
  font-weight: 400;
}

.size-chart td:first-child {
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-bg-warm);
}

/* ========================================
   CONTACTS
   ======================================== */
.contacts-hero {
  margin-top: var(--header-height);
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
  text-align: center;
  background: var(--color-bg-soft);
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(280px, 560px);
  justify-content: center;
}

.contact-panel {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-light);
  padding: clamp(28px, 4vw, 46px);
}

.contact-panel__intro {
  margin-bottom: 28px;
  color: var(--color-text-soft);
  text-align: center;
}

.contact-block {
  margin-bottom: 32px;
  text-align: center;
}

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

.contact-block__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 8px;
}

.contact-block__value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
}

.contact-block__value a {
  border-bottom: 1px solid var(--color-border-light);
  transition: border-color var(--transition);
}

.contact-block__value a:hover {
  border-color: var(--color-text);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  border-top: 1px solid var(--color-border-light);
  padding: 50px 0 40px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer__brand {
  max-width: 280px;
}

.footer__brand-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer__brand-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--color-text-soft);
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.82rem;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.footer__links {
  display: flex;
  gap: 60px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 10px;
}

.footer__col a {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--color-text);
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border-light);
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-soft);
  letter-spacing: 0.06em;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 520px;
  }

  .hero__content--left {
    text-align: center;
  }

  .hero__content--left .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero--photo::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.7) 45%, rgba(255,255,255,0.58) 100%);
  }

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

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

  .catalog-model__gallery {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__links {
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .hero__content {
    padding: 28px 20px;
  }

  .hero__cta {
    width: 100%;
    text-align: center;
    padding-inline: 24px;
  }

  .footer__links {
    flex-direction: column;
    gap: 30px;
  }
}


/* ========================================
   CATALOG CTA
   ======================================== */
.catalog-model__cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 4px;
}

.catalog-model__cta:hover {
  border-color: var(--color-text);
}

/* ========================================
   PRODUCT PAGE
   ======================================== */
.product-page {
  margin-top: var(--header-height);
  padding: clamp(48px, 7vw, 88px) 0 clamp(72px, 8vw, 120px);
}

.product-breadcrumbs {
  margin-bottom: 28px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.product-breadcrumbs a {
  border-bottom: 1px solid transparent;
}

.product-breadcrumbs a:hover {
  border-color: var(--color-border);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

.product-gallery__main {
  background: var(--color-bg-soft);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

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

.product-gallery__thumbs {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.product-thumb {
  border: 1px solid var(--color-border-light);
  background: var(--color-bg);
  padding: 0;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}

.product-thumb:hover,
.product-thumb.is-active {
  border-color: var(--color-text);
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.product-info h1 {
  margin-bottom: 18px;
}

.product-info__lead {
  max-width: 100%;
  color: var(--color-text-soft);
  margin-bottom: 28px;
}

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

.product-meta-card {
  border: 1px solid var(--color-border-light);
  padding: 16px 18px;
  background: var(--color-bg-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 86px;
}

.product-meta-card__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.product-selector {
  margin-bottom: 24px;
}

.product-selector label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.product-selector select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--color-border);
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
}

.product-color-preview {
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 18px 0;
  margin-bottom: 28px;
}

.product-color-preview__label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.product-color-preview__row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.product-color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  display: inline-block;
}

.product-color-dot--ivory { background: #f1ede4; }
.product-color-dot--blush { background: #dcc2c7; }
.product-color-dot--black { background: #3e3940; }

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.product-link-inline {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 4px;
}

.product-link-inline:hover {
  color: var(--color-text);
  border-color: var(--color-text);
}

.product-note {
  padding: 16px 18px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-light);
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

.contact-block__value--small {
  font-size: 1.25rem;
}

@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .product-meta-grid {
    grid-template-columns: 1fr;
  }

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


/* --- Netlify ready polish --- */
.hero__subtitle {
  max-width: 620px;
}
.hero__kicker {
  margin-top: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.product-info__lead {
  max-width: 560px;
}
.product-note {
  color: var(--color-text-soft);
}


/* ========================================
   HOME GALLERY
   ======================================== */
.home-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: clamp(14px, 2vw, 24px);
}

.home-gallery__item {
  background: var(--color-bg-warm);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.home-gallery__item--wide {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

.home-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .home-gallery {
    grid-template-columns: 1fr;
  }

  .home-gallery__item,
  .home-gallery__item--wide {
    aspect-ratio: 3 / 4;
    min-height: auto;
    grid-row: auto;
  }
}


/* ========================================
   SEARCH (article lookup)
   ======================================== */
.header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}

.search-toggle:hover {
  background: var(--color-bg-warm);
}

.search-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.search-panel {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  padding: 24px clamp(20px, 4vw, 60px);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 98;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.search-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-panel__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-panel__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  white-space: nowrap;
}

.search-input {
  flex: 1;
  border: none;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  padding: 10px 4px;
  letter-spacing: 0.08em;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition);
}

.search-input:focus {
  border-color: var(--color-text);
}

.search-input::placeholder {
  color: var(--color-text-soft);
  letter-spacing: 0.06em;
}

.search-submit {
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}

.search-submit:hover {
  background: #000;
}

.search-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-text-soft);
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
}

.search-close:hover {
  color: var(--color-text);
}

.search-feedback {
  flex-basis: 100%;
  font-size: 0.78rem;
  color: var(--color-text-soft);
  letter-spacing: 0.04em;
  margin-top: 8px;
  min-height: 1em;
}

@media (max-width: 720px) {
  .search-panel__inner {
    flex-wrap: wrap;
  }
  .search-panel__label {
    flex-basis: 100%;
  }
  .search-input {
    flex: 1 1 auto;
    min-width: 0;
  }
}

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32), 0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 90;
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42), 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@media (max-width: 560px) {
  .wa-float {
    width: 52px;
    height: 52px;
  }
  .wa-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ========================================
   HIDE HERO & ABOUT IMAGE ON MOBILE (home page)
   ======================================== */
@media (max-width: 720px) {
  .hero--photo {
    display: none;
  }
  /* Compensate: first section under header needs top breathing room */
  .hero--photo + .section {
    padding-top: calc(var(--header-height) + 32px);
  }
  /* Hide the editorial 3-women photo from the About section on mobile */
  .about__image {
    display: none;
  }
}

/* ========================================
   CATALOG EMPTY STATE & HIGHLIGHT
   ======================================== */
.catalog-empty {
  padding: 80px 0;
  text-align: center;
  border: 1px solid var(--color-border-light);
  background: var(--color-bg-soft);
}

.catalog-empty__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.catalog-empty__text {
  margin: 0 auto 24px;
  max-width: 460px;
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

.catalog-empty__cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-text);
  color: var(--color-bg);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--transition);
}

.catalog-empty__cta:hover {
  background: #000;
}

.catalog-model--highlight {
  animation: catalogHighlight 2s ease;
}

@keyframes catalogHighlight {
  0%   { box-shadow: 0 0 0 0 rgba(74, 74, 74, 0); }
  20%  { box-shadow: 0 0 0 6px rgba(74, 74, 74, 0.12); }
  100% { box-shadow: 0 0 0 0 rgba(74, 74, 74, 0); }
}

/* Lock body scroll when mobile menu is open */
body.nav-open {
  overflow: hidden;
}
