/* ============================================
   Jishiani Guli — Premium Rustic Redesign
   ============================================ */

/* === Variables === */
:root {
  /* Backgrounds */
  --bg-main: #F3EEE4;
  --bg-soft: #F8F4EC;
  --bg-surface: #FBF8F2;
  --border-soft: #E7DED0;

  /* Text */
  --text-heading: #3A2418;
  --text-body: #5E5147;
  --text-muted: #8A7A6A;

  /* Accent — Gold */
  --gold: #C9972E;
  --gold-hover: #B88624;
  --gold-light: rgba(201, 151, 46, 0.12);

  /* Sage / Info */
  --sage: #648267;
  --sage-bg: #E3EBDD;

  /* Warm / Warning */
  --warm-bg: #EEDFC7;
  --warm-text: #A95C24;

  /* Stock error */
  --stock-out: #A95C24;

  /* Footer */
  --footer-bg: #3A2418;
  --footer-text: #F3EEE4;
  --footer-muted: rgba(243, 238, 228, 0.45);

  /* Shared */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 100px;
  --shadow: 0 1px 4px rgba(58, 36, 24, 0.06);
  --shadow-md: 0 4px 16px rgba(58, 36, 24, 0.08);
  --shadow-lg: 0 8px 28px rgba(58, 36, 24, 0.10);
  --transition: 0.25s ease;
  --container: 1240px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: 'Inter', 'Noto Sans', sans-serif;
  color: var(--text-body);
  background: var(--bg-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea { font: inherit; }

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

/* === Typography === */
h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', 'Noto Serif Georgian', 'EB Garamond', Georgia, serif;
  color: var(--text-heading);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.nav.scrolled {
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
  transition: height var(--transition);
}
.nav.scrolled .nav__inner {
  height: 60px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 38px;
  width: auto;
  transition: height var(--transition);
}
.nav.scrolled .nav__logo-img {
  height: 32px;
}
.nav__brand {
  font-family: 'Cormorant Garamond', 'Noto Serif Georgian', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #2F241C;
  transition: color var(--transition);
}
.nav.scrolled .nav__brand {
  color: var(--text-heading);
}

/* Nav menu — mobile default */
.nav__menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0; right: 0;
  background: var(--bg-soft);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid var(--border-soft);
}
.nav.scrolled ~ .nav__menu,
.nav.scrolled .nav__menu {
  top: 60px;
}
.nav__menu.active { display: flex; }

.nav__link {
  padding: 12px 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.nav__link:hover { color: var(--gold); }

/* Nav right: phone + lang */
.nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5F5449;
  transition: color var(--transition);
}
.nav.scrolled .nav__phone { color: var(--text-body); }
.nav__phone:hover { color: var(--gold); }
.nav__phone-number { display: none; font-size: 0.9rem; font-weight: 500; }

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: #2F241C;
  border-radius: 2px;
  transition: all var(--transition);
}
.nav.scrolled .nav__hamburger span {
  background: var(--text-heading);
}
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(47, 36, 28, 0.06);
  border-radius: var(--radius-pill);
  padding: 2px;
  transition: background var(--transition);
}
.nav.scrolled .lang-switcher {
  background: rgba(47, 36, 28, 0.06);
}
.lang-btn {
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  color: #8A7B6B;
  letter-spacing: 0.03em;
  transition: all var(--transition);
}
.nav.scrolled .lang-btn {
  color: var(--text-muted);
}
.lang-btn.active {
  background: var(--gold);
  color: #fff !important;
}
.lang-btn:hover:not(.active) {
  color: #2F241C;
}
.nav.scrolled .lang-btn:hover:not(.active) {
  color: var(--text-heading);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: #F6F1E7 url('img/hero-bg.png') center / cover no-repeat;
  margin-top: 0;
  overflow: hidden;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero__content {
  text-align: center;
  color: #2F241C;
}
.hero__image {
  max-width: 520px;
  width: 100%;
}
.hero__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(58, 36, 24, 0.12);
}
.hero__badge {
  display: inline-block;
  background: rgba(110, 138, 107, 0.12);
  color: #6E8A6B;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  border: 1px solid rgba(110, 138, 107, 0.2);
  cursor: default;
  user-select: none;
}
.hero__title {
  font-family: 'Cormorant Garamond', 'Noto Serif Georgian', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #2F241C;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: #5F5449;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.hero__text {
  font-size: 0.95rem;
  color: #8A7B6B;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero__cta {
  margin-top: 8px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  text-align: center;
}
.btn--primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 8px rgba(201, 151, 46, 0.25);
}
.btn--primary:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201, 151, 46, 0.30);
}
.btn--outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--outline:hover {
  background: var(--gold);
  color: #fff;
}
.btn--small {
  padding: 9px 20px;
  font-size: 0.84rem;
  border-radius: var(--radius-sm);
}
.btn:disabled, .btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 72px 0;
}
.section--alt {
  background: var(--bg-soft);
}
.section__title {
  font-family: 'Cormorant Garamond', 'Noto Serif Georgian', serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-heading);
  letter-spacing: 0.01em;
}

/* ============================================
   ABOUT
   ============================================ */
.about__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about__image { flex-shrink: 0; }
.about__img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about__text p {
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.feature {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
}
.feature__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-bg);
  border-radius: 50%;
  color: var(--sage);
}
.feature__icon svg {
  width: 24px;
  height: 24px;
}
.feature__title {
  font-family: 'Inter', 'Noto Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-heading);
}
.feature__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Placeholder Images */
.placeholder-img {
  background: var(--bg-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  aspect-ratio: 1;
  border: 1px solid var(--border-soft);
}
.placeholder-img--large {
  min-height: 250px;
  aspect-ratio: 4/3;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
  margin-bottom: 56px;
}
.products-section:last-child { margin-bottom: 0; }

.products-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.products-banner--shipping {
  background: var(--sage-bg);
  color: var(--sage);
}
.products-banner--pickup {
  background: var(--warm-bg);
  color: var(--warm-text);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Product Card */
.product-card {
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(201, 151, 46, 0.2);
}
.product-card.out-of-stock {
  opacity: 0.55;
}
.product-card.out-of-stock:hover {
  transform: none;
  box-shadow: var(--shadow);
  border-color: var(--border-soft);
}
.product-card__img {
  background: var(--bg-soft);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img img {
  transform: scale(1.03);
}
#chicksGrid .product-card__img {
  aspect-ratio: 3 / 4;
}
.product-card__body {
  padding: 20px;
}
.product-card__name {
  font-family: 'Cormorant Garamond', 'Noto Serif Georgian', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-heading);
}
.product-card__desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.55;
}
.product-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-hover);
  margin-bottom: 4px;
  font-family: 'Inter', 'Noto Sans', sans-serif;
}
.product-card__stock {
  font-size: 0.78rem;
  margin-bottom: 14px;
  font-weight: 500;
}
.product-card__stock--available { color: var(--sage); }
.product-card__stock--out { color: var(--stock-out); font-weight: 600; }
.product-card__stock--preorder { color: var(--sage); font-style: italic; }
.product-card__cta { width: 100%; }

/* Age Selector */
.age-selector {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.age-btn {
  flex: 1;
  padding: 7px 4px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  text-align: center;
  transition: all var(--transition);
  background: var(--bg-surface);
  color: var(--text-muted);
}
.age-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}
.age-btn:hover:not(.active) {
  border-color: var(--gold);
  color: var(--text-heading);
}

/* Quantity Selector */
.qty-selector {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-soft);
  background: var(--bg-surface);
  color: var(--text-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.qty-btn--minus { border-radius: 10px 0 0 10px; }
.qty-btn--plus { border-radius: 0 10px 10px 0; }
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-btn:active { background: var(--gold); color: #fff; border-color: var(--gold); }
.qty-input {
  width: 48px;
  height: 36px;
  text-align: center;
  border: 1.5px solid var(--border-soft);
  border-left: none;
  border-right: none;
  background: var(--bg-surface);
  color: var(--text-heading);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ============================================
   CART FLOAT BUTTON
   ============================================ */
.cart-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(201, 151, 46, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
}
.cart-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(201, 151, 46, 0.45);
}
.cart-float svg { width: 26px; height: 26px; }
.cart-float__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  background: #D94F4F;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  transform: scale(0);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-float__badge.visible { transform: scale(1); }
.cart-float.bounce {
  animation: cartBounce 0.4s ease;
}
@keyframes cartBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.25); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

/* Fly-to-cart animation */
.fly-item {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  border-radius: var(--radius-sm);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 1;
}
.fly-item.flying {
  opacity: 0;
  transform: scale(0.15) !important;
}

/* ============================================
   CART PANEL + BACKDROP
   ============================================ */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 460px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg-soft);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}
.cart-panel.open { transform: translateX(0); }
.cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-soft);
  flex-shrink: 0;
}
.cart-panel__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-heading);
}
.cart-panel__close {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.cart-panel__close:hover { background: var(--border-soft); color: var(--text-heading); }
.cart-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-panel__empty {
  text-align: center;
  color: var(--text-muted);
  padding: 48px 0;
  font-size: 0.95rem;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-heading);
  margin-bottom: 2px;
}
.cart-item__detail {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.cart-item__qty .qty-btn {
  width: 28px;
  height: 28px;
  font-size: 0.9rem;
}
.cart-item__qty .qty-input {
  width: 36px;
  height: 28px;
  font-size: 0.8rem;
}
.cart-item__price {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  white-space: nowrap;
  min-width: 55px;
  text-align: right;
}
.cart-item__remove {
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all var(--transition);
}
.cart-item__remove:hover { background: #f0ddd0; color: var(--warm-text); }
.cart-panel__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-soft);
  flex-shrink: 0;
  background: var(--bg-surface);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.cart-total__label {
  font-weight: 600;
  color: var(--text-heading);
}
.cart-total__value {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.15rem;
}
.cart-form { display: flex; flex-direction: column; gap: 10px; }
.cart-form .form__input {
  padding: 11px 14px;
  font-size: 0.88rem;
}
.cart-form .btn { width: 100%; }

/* Phone field with country prefix */
.phone-field {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.phone-field:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 151, 46, 0.1);
}
.phone-field__prefix {
  padding: 0 0 0 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.phone-field__input {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding-left: 6px !important;
  flex: 1;
  min-width: 0;
}
.cart-shipping-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  padding: 8px 10px;
  background: var(--bg-main);
  border-radius: 8px;
}
.cart-grand-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-top: 10px;
  border-top: 2px solid var(--gold);
}
.cart-grand-total__label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.cart-grand-total__value {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--gold);
}
.cart-bank-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 14px;
  text-align: center;
}

/* Cart Success State */
.cart-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
}
.cart-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cart-success__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.cart-success__order {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: var(--sage-bg);
  border-radius: 8px;
}
.cart-success__order strong {
  color: var(--text-heading);
  letter-spacing: 0.03em;
}
.cart-success__bank {
  width: 100%;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}
.cart-success__bank-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.cart-success__bank-row {
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 4px 0;
}
.cart-success__bank-account {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}
.cart-success__iban-label {
  font-size: 0.88rem;
  color: var(--text-body);
}
.cart-success__iban {
  font-family: 'Consolas', 'SF Mono', 'Menlo', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-heading);
  background: var(--sage-bg);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1.5px solid var(--sage);
  word-break: break-all;
}
.cart-success__copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  font-size: 0.78rem;
  color: var(--gold);
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.cart-success__copy-btn:hover {
  background: var(--gold);
  color: #fff;
}
.cart-success__copy-btn.copied {
  border-color: var(--sage);
  color: var(--sage);
}
.cart-success__copy-text {
  line-height: 1;
}
.cart-success__bank-amount {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--border-soft);
}
.cart-success__note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

/* Cart toast */
.cart-toast {
  position: fixed;
  bottom: 90px;
  right: 24px;
  background: var(--sage);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 1003;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.cart-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile cart panel */
@media (max-width: 639px) {
  .cart-panel {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: 85vh;
    transform: translateY(100%);
    border-radius: 20px 20px 0 0;
  }
  .cart-panel.open { transform: translateY(0); }
  .cart-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .cart-float svg { width: 22px; height: 22px; }
  .cart-toast { bottom: 76px; right: 16px; }
}

/* ============================================
   DELIVERY
   ============================================ */
.delivery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.delivery__card {
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  text-align: center;
}
.delivery__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-bg);
  border-radius: 50%;
  color: var(--sage);
}
.delivery__card h3 {
  font-family: 'Cormorant Garamond', 'Noto Serif Georgian', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-heading);
}
.delivery__card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.delivery__note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   STEPS (How to Order)
   ============================================ */
.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  padding: 24px;
  width: 100%;
  max-width: 420px;
}
.step__number {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Inter', 'Noto Sans', sans-serif;
}
.step__content { flex: 1; }
.step__title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text-heading);
}
.step__text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.step__arrow {
  color: var(--border-soft);
  transform: rotate(90deg);
}

.ordering__note {
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--sage);
  margin-bottom: 10px;
  padding: 14px 20px;
  background: var(--sage-bg);
  border-radius: var(--radius-sm);
  display: inline-block;
  width: auto;
}
/* center the ordering note container */
.section--alt .ordering__note {
  display: block;
  max-width: 520px;
  margin: 0 auto 10px;
}
.ordering__bank {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   CONTACT
   ============================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact__item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}
.contact__item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-heading);
  font-weight: 600;
}
.contact__link {
  color: var(--gold-hover);
  font-weight: 500;
  font-size: 0.92rem;
  display: block;
  margin-top: 2px;
  transition: color var(--transition);
}
.contact__link:hover {
  color: var(--gold);
}
.contact__payment-note {
  padding: 14px 18px;
  background: var(--warm-bg);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--warm-text);
  font-weight: 500;
  line-height: 1.55;
}

/* Contact Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form__input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  color: var(--text-body);
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__input::placeholder {
  color: var(--text-muted);
}
.form__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 151, 46, 0.1);
}
.form__textarea {
  resize: vertical;
  min-height: 110px;
}

/* ============================================
   FAQ
   ============================================ */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq__item {
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item.active {
  border-color: rgba(201, 151, 46, 0.25);
}
.faq__question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
}
.faq__question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq__item.active .faq__question::after {
  transform: rotate(45deg);
}
.faq__question:hover {
  color: var(--gold-hover);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__item.active .faq__answer { max-height: 300px; }
.faq__answer p {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 56px 0 28px;
}
.footer__inner { text-align: center; }
.footer__logo {
  height: 36px;
  margin: 0 auto 10px;
  opacity: 0.85;
}
.footer__name {
  font-family: 'Cormorant Garamond', 'Noto Serif Georgian', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--footer-text);
}
.footer__tagline {
  font-size: 0.84rem;
  color: var(--footer-muted);
  margin-bottom: 28px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.footer__links a {
  font-size: 0.88rem;
  color: var(--footer-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__contact { margin-bottom: 28px; }
.footer__contact a {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.92rem;
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--footer-muted);
  padding-top: 20px;
  border-top: 1px solid rgba(243, 238, 228, 0.1);
}

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

/* 640px — 2-col grids */
@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery__grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(3, 1fr); }
}

/* 768px — desktop nav phone, about/contact 2-col, steps row */
@media (min-width: 768px) {
  .section { padding: 80px 0; }

  .about__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
  .about__image { flex: 0 0 40%; }
  .about__text { flex: 1; }

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

  .nav__phone-number { display: inline; }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding-top: 110px;
    padding-bottom: 70px;
  }
  .hero__content {
    flex: 1;
    text-align: left;
  }
  .hero__text {
    margin-left: 0;
    margin-right: 0;
  }
  .hero__image {
    flex: 0 0 45%;
    max-width: 500px;
  }
  .hero__title { font-size: 3.4rem; }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .step {
    max-width: none;
    width: auto;
    height: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
  }
  .step__arrow {
    display: none;
  }
}

/* 1024px — full desktop nav */
@media (min-width: 1024px) {
  .section { padding: 96px 0; }

  .nav__menu {
    display: flex;
    flex-direction: row;
    position: static;
    padding: 0;
    gap: 28px;
    box-shadow: none;
    background: transparent;
    border-bottom: none;
  }
  .nav__hamburger { display: none; }
  .nav__link {
    padding: 0;
    color: #5F5449;
  }
  .nav__link:hover {
    color: var(--gold);
  }
  .nav.scrolled .nav__link {
    color: var(--text-muted);
  }
  .nav.scrolled .nav__link:hover {
    color: var(--gold);
  }

  .hero__inner {
    gap: 56px;
  }
  .hero__image {
    flex: 0 0 48%;
    max-width: 560px;
  }
  .hero__title {
    font-size: 3.8rem;
    letter-spacing: 0.02em;
  }

  .section__title { font-size: 2.2rem; }

  .products-grid { grid-template-columns: repeat(3, 1fr); }

  .step {
    min-width: 220px;
    padding: 32px 24px;
  }
}

/* Form messages */
.form__message {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  animation: fadeInUp 0.3s ease;
}
.form__message--success {
  background: var(--sage-bg);
  color: var(--sage);
}
.form__message--error {
  background: var(--warm-bg);
  color: var(--warm-text);
}

/* reCAPTCHA badge — hidden per Google's allowed policy (attribution in form) */
.grecaptcha-badge { visibility: hidden !important; }
.recaptcha-notice {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}
.recaptcha-notice a {
  color: var(--text-muted);
  text-decoration: underline;
}

/* ============================================
   ANIMATIONS — subtle on-scroll reveal
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .section {
    animation: fadeInUp 0.5s ease both;
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}


/* Product card breed link */
.product-card__breed-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.product-card__breed-link:hover { color: var(--gold); }

/* ============================================
   Breed Pages
   ============================================ */

/* Breadcrumb */
.breed-breadcrumb {
  padding: 100px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breed-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.breed-breadcrumb a:hover { color: var(--gold); }
.breed-breadcrumb__sep { margin: 0 0.4em; }

/* Breed Hero */
.breed-hero {
  padding: 2rem 0 3rem;
}
.breed-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.breed-hero__title {
  font-family: 'Cormorant Garamond', 'Noto Serif Georgian', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.breed-hero__tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.breed-hero__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.breed-hero__image img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* Breed Content */
.breed-content { max-width: 800px; margin: 0 auto; }
.breed-text p { margin-bottom: 1rem; line-height: 1.75; }
.breed-text ul { margin: 0.5rem 0 1.5rem 1.5rem; }
.breed-text li { margin-bottom: 0.75rem; line-height: 1.65; }
.breed-text strong { color: var(--text-heading); }

/* Characteristics */
.breed-chars {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}
.breed-chars__image img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.breed-chars__table {
  width: 100%;
  border-collapse: collapse;
}
.breed-chars__table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.95rem;
}
.breed-chars__table td:first-child {
  font-weight: 600;
  color: var(--text-heading);
  width: 45%;
}
.breed-chars__table tr:last-child td { border-bottom: none; }

/* Breed CTA row */
.breed-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.breed-phone-desktop { cursor: default; pointer-events: none; }
.breed-phone-mobile { display: none; }
@media (max-width: 768px) {
  .breed-phone-desktop { display: none; }
  .breed-phone-mobile { display: inline-block; }
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}
.btn--outline:hover {
  background: var(--gold);
  color: #fff;
}

.breed-product-phone {
  text-align: center;
  margin: 1rem 0 0.5rem;
  font-size: 1rem;
  color: var(--text-muted);
}
/* Breed Page — Product Cards */
.breed-products {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.breed-products .product-card {
  display: flex;
  flex-direction: row;
  border-radius: var(--radius);
  overflow: hidden;
}
.breed-products .product-card__img {
  width: 200px;
  min-width: 200px;
  aspect-ratio: auto;
  border-radius: 0;
}
.breed-products .product-card__img img {
  object-fit: cover;
  height: 100%;
}
@media (max-width: 560px) {
  .breed-products .product-card { flex-direction: column; }
  .breed-products .product-card__img { width: 100%; min-width: 100%; aspect-ratio: 4/3; }
}
/* Back to breeds */
.breed-back {
  padding: 2rem 0;
  text-align: center;
}
.breed-back__link {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}
.breed-back__link:hover { text-decoration: underline; }

/* Related Breeds (legacy) */
.breed-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.breed-related__card {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-body);
  transition: transform var(--transition), box-shadow var(--transition);
}
.breed-related__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.breed-related__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.breed-related__name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-heading);
  padding: 1rem 1rem 0.25rem;
}
.breed-related__link {
  display: block;
  padding: 0.25rem 1rem 1rem;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

/* Breeds Index Page */
.breeds-header { padding: 32px 0; }
.breeds-header__intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.breeds-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.breeds-card {
  display: flex;
  flex-direction: row;
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-body);
  transition: transform var(--transition), box-shadow var(--transition);
}
.breeds-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.breeds-card__img {
  width: 180px;
  min-width: 180px;
  overflow: hidden;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
}
.breeds-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.breeds-card__body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
}
.breeds-card__name {
  font-family: 'Cormorant Garamond', 'Noto Serif Georgian', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}
.breeds-card__tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.breeds-card__link {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

/* Active nav link */
.nav__link--active { color: var(--gold) !important; }

/* Responsive — Breed Pages */
@media (max-width: 768px) {
  .breed-hero__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .breed-hero__image { order: -1; }
  .breed-hero__image img { max-width: 300px; margin: 0 auto; }
  .breed-chars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .breed-chars__image { text-align: center; }
  .breed-chars__image img { max-width: 280px; margin: 0 auto; }
  .breed-cta-row { justify-content: center; }
  .breeds-card {
    height: auto;
    flex-direction: column;
  }
  .breeds-card__img {
    width: 100%;
    min-width: 100%;
    height: 180px;
  }
}
