/* ===== Colanes — design tokens ===== */
:root {
  --cream: #e9f3f6;
  --cream-dark: #d5e9ee;
  --blush: #fbc9b0;
  --rose: #f2678f;
  --rose-deep: #e0356e;
  --terracotta: #f4592c;
  --gold: #f0a940;
  --red: #e0202a;
  --sky: #bfe2ec;
  --sky-deep: #86bfd2;
  --ink: #3b2a28;
  --ink-soft: #6b544f;
  --white: #ffffff;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;

  --radius: 14px;
  --shadow-soft: 0 10px 30px rgba(59, 42, 40, 0.08);
  --shadow-lift: 0 20px 44px rgba(59, 42, 40, 0.16);
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 10px;
}

.section {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
}

.section-head p {
  color: var(--ink-soft);
  margin-top: 12px;
  font-size: 1.02rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(217, 140, 107, 0.35);
}
.btn-primary:hover { background: var(--rose-deep); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--ink); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: var(--terracotta); }

.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header.solid,
.site-header:not(.transparent) {
  background: rgba(233, 243, 246, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(59, 42, 40, 0.06);
}

.site-header.transparent {
  background: transparent;
  box-shadow: none;
}

.site-header.transparent .nav-link,
.site-header.transparent .icon-btn {
  color: var(--white);
}

.site-header.transparent.scrolled {
  background: rgba(233, 243, 246, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(59, 42, 40, 0.06);
  padding: 12px 0;
}

.site-header.transparent.scrolled .nav-link,
.site-header.transparent.scrolled .icon-btn {
  color: var(--ink);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}

.nav-link.active,
.nav-link:hover { color: var(--terracotta); }

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

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

.nav-group {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.icon-btn:hover { opacity: 0.65; }

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: inherit;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream), var(--sky) 55%, var(--sky-deep));
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 44, 58, 0.32) 0%, rgba(16, 44, 58, 0.48) 60%, rgba(16, 44, 58, 0.66) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 640px;
}

.hero-content .eyebrow { color: var(--blush); }

.hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 34px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Category grid ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--blush), var(--cream-dark));
  display: flex;
  align-items: flex-end;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(59, 42, 40, 0.55));
}

.category-card span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  white-space: nowrap;
}

.category-card span.fit-line {
  font-size: clamp(0.82rem, 1.9vw, 1.1rem);
  letter-spacing: -0.01em;
}

.category-card.c1 { background: linear-gradient(160deg, #fbc9b0, #f2678f); }
.category-card.c2 { background: linear-gradient(160deg, #fbd08a, #f4592c); }
.category-card.c3 { background: linear-gradient(160deg, #f2678f, #e0356e); }
.category-card.c4 { background: linear-gradient(160deg, #fbead0, #f0a940); }

/* ===== Product grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(59, 42, 40, 0.14);
}

.product-thumb {
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, var(--cream-dark), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.product-thumb .ph-icon {
  width: 44px;
  height: 44px;
  opacity: 0.55;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
}

.product-info { padding: 18px 20px 22px; }

.product-cat {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.product-name { font-size: 1.02rem; margin-bottom: 6px; }

.product-price {
  font-weight: 600;
  color: var(--ink);
}

.product-price .old {
  text-decoration: line-through;
  color: var(--ink-soft);
  font-weight: 400;
  margin-right: 8px;
  font-size: 0.9rem;
}

/* ===== Filter tabs (shop page) ===== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 46px;
}

.filter-tab {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--blush);
  background: var(--white);
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.2s ease;
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

/* ===== Page hero (inner pages) ===== */
.page-hero {
  padding: 170px 0 70px;
  text-align: center;
  background: linear-gradient(160deg, var(--blush), var(--cream));
}

.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3rem); }
.page-hero p { color: var(--ink-soft); max-width: 560px; margin: 14px auto 0; }

/* ===== Story / About ===== */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--rose), var(--gold));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story h2 { font-size: 2rem; margin-bottom: 18px; }
.story p { color: var(--ink-soft); margin-bottom: 16px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.value-card .icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  color: var(--terracotta);
}

.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { color: var(--ink-soft); font-size: 0.94rem; }

/* ===== Testimonial / banner ===== */
.banner {
  background: linear-gradient(120deg, var(--rose), var(--terracotta));
  color: var(--white);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
}

.banner h2 { color: var(--white); font-size: 1.9rem; margin-bottom: 14px; }
.banner p { color: rgba(255, 255, 255, 0.9); max-width: 520px; margin: 0 auto 26px; }

/* ===== Newsletter ===== */
.newsletter {
  background: var(--ink);
  color: var(--white);
  padding: 70px 0;
}

.newsletter .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter h2 { color: var(--white); font-size: 1.7rem; margin-bottom: 8px; }
.newsletter p { color: rgba(255, 255, 255, 0.7); }

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  min-width: 260px;
  font-family: var(--font-body);
  font-size: 0.92rem;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 18px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 7px;
  color: var(--ink-soft);
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.94rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

.form-status {
  font-size: 0.9rem;
  color: var(--terracotta);
  display: none;
}
.form-status.show { display: block; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-card .icon {
  width: 26px;
  height: 26px;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { color: var(--ink-soft); font-size: 0.92rem; }

.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.95rem;
}
.social-row a:hover { background: var(--terracotta); color: var(--white); }

/* ===== Footer ===== */
.site-footer {
  background: var(--cream-dark);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 { font-size: 0.95rem; margin-bottom: 16px; }
.footer-grid p { color: var(--ink-soft); font-size: 0.9rem; }
.footer-grid ul { display: grid; gap: 10px; }
.footer-grid a { color: var(--ink-soft); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--terracotta); }

.footer-bottom {
  border-top: 1px solid rgba(59, 42, 40, 0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.footer-bottom a:hover { color: var(--terracotta); }

.payment-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.payment-badges span {
  background: var(--white);
  border: 1px solid rgba(59, 42, 40, 0.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

/* ===== Trust bar ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(59, 42, 40, 0.06);
}

.trust-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px 32px;
  padding: 22px 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ===== Product quick-add ===== */
.quick-add {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: var(--ink);
  color: var(--white);
  padding: 11px;
  border-radius: 999px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.product-card:hover .quick-add {
  opacity: 1;
  transform: translateY(0);
}

.quick-add:hover { background: var(--terracotta); }

.product-card:hover {
  box-shadow: var(--shadow-lift);
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.testimonial-quote {
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
}

.author-avatar.a1 { background: linear-gradient(160deg, var(--blush), var(--rose)); }
.author-avatar.a2 { background: linear-gradient(160deg, var(--sky), var(--sky-deep)); }
.author-avatar.a3 { background: linear-gradient(160deg, #fbd08a, var(--gold)); }

.author-name { font-weight: 600; font-size: 0.92rem; }
.author-meta { font-size: 0.8rem; color: var(--ink-soft); }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: 260px;
    background: var(--white); flex-direction: column; justify-content: center;
    align-items: flex-start; padding: 40px; gap: 26px; transform: translateX(100%);
    transition: transform 0.3s ease; box-shadow: -10px 0 30px rgba(0,0,0,0.1); }
  .nav-links.open { transform: translateX(0); }
  .nav-links .nav-link { color: var(--ink) !important; }
  .menu-toggle { display: block; }
  .site-header.transparent .menu-toggle { color: var(--white); }
  .site-header.transparent.scrolled .menu-toggle { color: var(--ink); }
  .form-row { grid-template-columns: 1fr; }
  .newsletter .container { flex-direction: column; text-align: center; }
  .newsletter-form { justify-content: center; }
}
