/* ============================================
   Verdant Haven — Global Stylesheet
   Natural Luxury × North American Outdoor
   ============================================ */

/* ---------- Fonts ---------- */
@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=DM+Sans:wght@300;400;500;600&display=swap');

/* ---------- Variables ---------- */
:root {
  --clr-bg:         #FAF8F5;
  --clr-surface:    #FFFFFF;
  --clr-nature:     #2D5016;
  --clr-nature-mid: #4A7C2F;
  --clr-nature-lt:  #E8F0E3;
  --clr-wood:       #8B6914;
  --clr-wood-lt:    #C4973A;
  --clr-text:       #1A1A18;
  --clr-muted:      #6B6B63;
  --clr-divider:    #E0DDD7;
  --clr-overlay:    rgba(26,26,24,0.55);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(45,80,22,0.08);
  --shadow-md: 0 6px 24px rgba(45,80,22,0.12);
  --shadow-lg: 0 16px 48px rgba(45,80,22,0.15);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1280px;
}

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

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

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-nature-lt); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-nature-mid); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--clr-nature);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { max-width: 68ch; }

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-wood);
  margin-bottom: 1rem;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

section { padding: clamp(5rem, 10vw, 9rem) 0; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,360px),1fr)); gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,280px),1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,220px),1fr)); gap: 1.5rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,248,245,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(224,221,215,0.5);
  transition: var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--clr-nature);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav__logo span {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-top: -3px;
}

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

.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--clr-text);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--clr-nature);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav__links a:hover { color: var(--clr-nature); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border: 1px solid var(--clr-divider);
  border-radius: 99px;
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
}

.lang-switch:hover { border-color: var(--clr-nature); color: var(--clr-nature); }
.lang-switch .active { color: var(--clr-nature); font-weight: 600; }
.lang-switch .sep { color: var(--clr-divider); }

/* Mobile Menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--clr-text);
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--clr-bg);
  z-index: 999;
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--clr-text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--clr-divider);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 13px 28px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--ff-body);
}

.btn--primary {
  background: var(--clr-nature);
  color: #fff;
}
.btn--primary:hover {
  background: var(--clr-nature-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--clr-nature);
  border: 1.5px solid var(--clr-nature);
}
.btn--outline:hover {
  background: var(--clr-nature-lt);
}

.btn--wood {
  background: var(--clr-wood);
  color: #fff;
}
.btn--wood:hover {
  background: var(--clr-wood-lt);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(45,80,22,0.06) 0%, transparent 60%),
    linear-gradient(to bottom right, #E8F0E3 0%, #FAF8F5 50%, #F5EDD8 100%);
}

.hero__leaf {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}

.hero__leaf--1 {
  top: 10%; right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at center, var(--clr-nature) 0%, transparent 70%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
}

.hero__leaf--2 {
  bottom: 5%; left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, var(--clr-wood) 0%, transparent 70%);
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  opacity: 0.05;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-nature-mid);
  margin-bottom: 1.5rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--clr-nature-mid);
}

.hero__title {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--clr-nature);
  margin-bottom: 1.8rem;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--clr-wood);
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--clr-muted);
  max-width: 52ch;
  line-height: 1.8;
  margin-bottom: 2.8rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--clr-divider), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ---------- Section Intro ---------- */
.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-intro h2 { margin-bottom: 1rem; }
.section-intro p { color: var(--clr-muted); margin: 0 auto; }

/* ---------- Categories ---------- */
.categories { background: var(--clr-surface); }

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--clr-nature-lt);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.category-card:hover img { transform: scale(1.06); }

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.72) 0%, rgba(26,26,24,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition);
}

.category-card:hover .category-card__overlay { background: linear-gradient(to top, rgba(26,26,24,0.82) 0%, rgba(26,26,24,0.2) 60%, transparent 100%); }

.category-card__name {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.category-card__count {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
}

/* ---------- Products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,300px),1fr));
  gap: 2rem;
}

.product-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--clr-nature-lt);
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img img { transform: scale(1.05); }

.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--clr-nature);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}

.product-card__actions {
  position: absolute;
  bottom: 12px; right: 12px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}

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

.product-card__actions button {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.product-card__actions button:hover { background: #fff; transform: scale(1.1); }

.product-card__body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }

.product-card__name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--clr-nature);
  margin-bottom: 0.4rem;
}

.product-card__meta {
  font-size: 0.75rem;
  color: var(--clr-muted);
  margin-bottom: 1.2rem;
}

.product-card__pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--clr-wood);
  text-transform: uppercase;
  margin-top: auto;
  padding: 6px 12px;
  border: 1px solid rgba(139,105,20,0.3);
  border-radius: 4px;
  transition: var(--transition);
  width: fit-content;
}

.product-card__pdf:hover { background: rgba(139,105,20,0.08); }

/* ---------- Filters ---------- */
.filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--clr-divider);
  color: var(--clr-muted);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--ff-body);
}

.filter-btn:hover { border-color: var(--clr-nature); color: var(--clr-nature); }
.filter-btn.active { background: var(--clr-nature); border-color: var(--clr-nature); color: #fff; }

/* ---------- Services ---------- */
.services { background: var(--clr-nature-lt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,300px),1fr));
  gap: 2rem;
}

.service-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  border-color: rgba(45,80,22,0.15);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--clr-nature-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.service-card h3 { margin-bottom: 0.8rem; font-size: 1.3rem; }
.service-card p { color: var(--clr-muted); font-size: 0.9rem; }
.service-card ul { margin-top: 1rem; }
.service-card li {
  font-size: 0.85rem;
  color: var(--clr-muted);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-nature-mid);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---------- Contact ---------- */
.contact { background: var(--clr-surface); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

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

.contact-info h3 { margin-bottom: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--clr-nature-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item__label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clr-muted); margin-bottom: 0.2rem; }
.contact-item__value { font-size: 0.95rem; color: var(--clr-text); }

/* Form */
.form {
  background: var(--clr-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--clr-divider);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--clr-divider);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--clr-text);
  background: var(--clr-surface);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--clr-nature-mid); box-shadow: 0 0 0 3px rgba(74,124,47,0.1); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form__cta { margin-top: 1.5rem; }
.form__cta .btn { width: 100%; justify-content: center; }

/* ---------- Footer ---------- */
.footer {
  background: var(--clr-nature);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.footer__brand-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 30ch;
}

.footer h4 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
}

.footer ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer ul a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer ul a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--clr-overlay);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.modal__close:hover { background: var(--clr-divider); }

/* ---------- Inquiry Form in Modal ---------- */
.inquiry-modal { position: relative; }
.inquiry-modal h3 { font-family: var(--ff-display); font-size: 1.8rem; color: var(--clr-nature); margin-bottom: 0.4rem; }
.inquiry-modal .product-name { font-size: 0.85rem; color: var(--clr-muted); margin-bottom: 2rem; }

/* ---------- Page Headers ---------- */
.page-header {
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  background: var(--clr-nature-lt);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,80,22,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 { margin-bottom: 0.8rem; }
.page-header p { color: var(--clr-muted); max-width: 50ch; margin: 0 auto; }

/* ---------- Product Detail ---------- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

.product-gallery { position: sticky; top: 100px; }

.product-gallery__main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--clr-nature-lt);
  margin-bottom: 0.75rem;
}

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

.product-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
}

.product-gallery__thumb {
  flex: 1;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--clr-nature-lt);
}

.product-gallery__thumb.active { border-color: var(--clr-nature); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info h2 {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  color: var(--clr-nature);
  margin-bottom: 1rem;
}

.product-info .product-category-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-wood);
  margin-bottom: 1.5rem;
}

.product-info .product-desc {
  color: var(--clr-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.product-specs {
  background: var(--clr-bg);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--clr-divider);
}

.product-specs h4 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 1rem;
}

.product-specs table { width: 100%; border-collapse: collapse; }
.product-specs td { padding: 0.4rem 0; font-size: 0.88rem; }
.product-specs td:first-child { color: var(--clr-muted); width: 40%; }
.product-specs td:last-child { color: var(--clr-text); font-weight: 500; }

.product-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.stagger.visible > *:nth-child(n+6) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ---------- Notification Toast ---------- */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--clr-nature);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

/* ---------- Empty State ---------- */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--clr-muted);
}

.empty-state__icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }
.empty-state h3 { font-family: var(--ff-display); font-size: 1.5rem; color: var(--clr-nature); margin-bottom: 0.5rem; }
.empty-state p { font-size: 0.9rem; }

/* ---------- Loading ---------- */
.loading-spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--clr-divider);
  border-top-color: var(--clr-nature);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 3rem auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Responsive Utilities ---------- */
@media (max-width: 600px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.8rem; }
