﻿:root {
  --bg: #f4eee3;
  --bg-soft: #efe6d8;
  --panel: rgba(255, 251, 245, 0.76);
  --panel-strong: #fffaf3;
  --card: #fff8ef;
  --line: rgba(101, 84, 66, 0.16);
  --line-strong: rgba(196, 123, 75, 0.38);
  --text: #1d2924;
  --muted: #5d6861;
  --accent: #c47b4b;
  --accent-strong: #a85d34;
  --accent-soft: #ecd8c4;
  --accent-alt: #8da28d;
  --success: #6f8e74;
  --danger: #b85749;
  --shadow: 0 24px 60px rgba(43, 36, 28, 0.12);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(196, 123, 75, 0.16), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(141, 162, 141, 0.18), transparent 24%),
    linear-gradient(180deg, #f7f1e8 0%, #efe5d6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.22;
  z-index: -1;
}

body.redirect-page {
  display: grid;
  place-items: center;
  padding: 2rem;
}

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

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

.site-header,
header {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  backdrop-filter: blur(18px);
  background: rgba(247, 241, 232, 0.82);
  border-bottom: 1px solid rgba(101, 84, 66, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.brand-mark,
.bdC-logo {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid rgba(101, 84, 66, 0.12);
  box-shadow: 0 18px 32px rgba(23, 53, 44, 0.12);
  background: rgba(255, 255, 255, 0.35);
}

.brand {
  display: grid;
  gap: 0.1rem;
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.site-nav,
nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a,
nav a {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active,
nav a:hover,
nav a.active {
  color: var(--text);
  border-color: rgba(196, 123, 75, 0.32);
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

main {
  display: grid;
  gap: 2rem;
  padding: 2rem clamp(1.25rem, 4vw, 4rem) 4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.88fr);
  gap: 1rem;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.contact-hero,
.contact-card,
.service-card,
.product-card,
.step-card,
.showcase-card,
.cart-panel,
.summary,
.conditions,
.cta-banner,
.redirect-card,
.soft-panel {
  border: 1px solid rgba(101, 84, 66, 0.12);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy,
.hero-card,
.contact-hero,
.contact-card,
.cart-panel,
.summary,
.conditions,
.cta-banner,
.redirect-card,
.soft-panel {
  padding: clamp(1.35rem, 2vw, 2rem);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.1rem;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 123, 75, 0.16), transparent 68%);
}

.hero-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero-visual,
.product-visual,
.visual-frame {
  padding: 0.8rem;
  border-radius: 26px;
  border: 1px solid rgba(101, 84, 66, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(236, 216, 196, 0.7));
}

.hero-visual img,
.product-visual img,
.visual-frame img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.product-visual img {
  aspect-ratio: 4 / 3;
}

.eyebrow,
.kicker,
.pill,
.tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 123, 75, 0.25);
  background: rgba(255, 255, 255, 0.58);
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pill-muted {
  color: var(--muted);
  border-color: rgba(101, 84, 66, 0.12);
}

.hero h1,
.hero h2,
.contact-hero h2,
.cta-banner h2,
.section-heading h2,
.section-heading h3,
.service-card h3,
.product-card h3,
.step-card h3,
.showcase-card h3,
.basket-title,
.conditions h2,
.redirect-card h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero h1,
.hero h2 {
  font-size: clamp(3rem, 5vw, 5.25rem);
}

.hero p,
.contact-hero p,
.section-heading p,
.service-card p,
.product-card p,
.step-card p,
.showcase-card p,
.cta-banner p,
.form-intro,
.form-note,
.summary .help,
.conditions,
.redirect-card p {
  color: var(--muted);
}

.hero p {
  max-width: 58ch;
  font-size: 1.04rem;
}

.card-stack,
.product-meta,
.service-card,
.step-card,
.showcase-card,
.contact-card,
.section-shell,
.contact-hero {
  display: grid;
  gap: 0.85rem;
}

.hero-actions,
.badges,
.pill-group,
.feature-list,
.footer-links {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn-primary,
.add-to-cart,
.btn-ghost,
.filter-btn,
.qty-btn {
  appearance: none;
  border: none;
  font: inherit;
}

.btn-primary,
.add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fffaf3;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover,
.add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(168, 93, 52, 0.24);
  filter: saturate(1.02);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(101, 84, 66, 0.14);
  background: rgba(255, 255, 255, 0.48);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 123, 75, 0.28);
  background: rgba(255, 255, 255, 0.7);
}

.badge,
.feature-list span {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(101, 84, 66, 0.12);
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
  font-size: 0.93rem;
}

.badge strong {
  color: var(--accent-strong);
}

.stats-row,
.service-grid,
.product-grid,
.step-grid,
.showcase-grid,
.sub-hero,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.stats-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.stat-card {
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(101, 84, 66, 0.1);
}

.stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--accent-strong);
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-shell {
  gap: 1.1rem;
}

.soft-panel {
  gap: 1.1rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-heading h2,
.section-heading h3,
.basket-title {
  font-size: clamp(2.15rem, 3vw, 3.2rem);
}

.section-heading p {
  max-width: 56ch;
}

.service-grid,
.step-grid,
.showcase-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.contact-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: start;
}

.service-card,
.step-card,
.showcase-card,
.product-card {
  padding: 1rem;
  min-height: 100%;
}

.service-card .icon,
.showcase-card .icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(101, 84, 66, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

.service-card h3,
.showcase-card h3,
.step-card h3,
.product-card h3 {
  font-size: 1.8rem;
}

.product-card {
  background: var(--panel-strong);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 123, 75, 0.24);
  box-shadow: 0 28px 65px rgba(43, 36, 28, 0.14);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.price-row strong,
.price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--text);
}

.price-row span,
.muted {
  color: var(--muted);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(101, 84, 66, 0.12);
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--text);
  border-color: rgba(196, 123, 75, 0.28);
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-1px);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fffaf3;
  font-weight: 800;
}

.cta-banner {
  display: grid;
  gap: 0.9rem;
  background:
    radial-gradient(circle at right top, rgba(196, 123, 75, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(236, 216, 196, 0.78));
}

.cta-banner h2 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
}

form {
  display: grid;
  gap: 0.9rem;
}

.form-grid,
.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

label {
  display: block;
  margin-bottom: 0.42rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(101, 84, 66, 0.14);
  background: rgba(255, 255, 255, 0.64);
  color: var(--text);
  font: inherit;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(196, 123, 75, 0.45);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 4px rgba(196, 123, 75, 0.12);
}

textarea {
  min-height: 150px;
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(101, 84, 66, 0.14);
  font-size: 0.95rem;
}

.form-status.success {
  background: rgba(111, 142, 116, 0.14);
  border-color: rgba(111, 142, 116, 0.24);
  color: #36563c;
}

.form-status.error {
  background: rgba(184, 87, 73, 0.12);
  border-color: rgba(184, 87, 73, 0.24);
  color: #7c2f24;
}

.hidden {
  display: none !important;
}

.basket-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.cart-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem;
  border-radius: 24px;
  border: 1px solid rgba(101, 84, 66, 0.12);
  background: rgba(255, 255, 255, 0.56);
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.cart-product img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(101, 84, 66, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(236, 216, 196, 0.8));
}

.cart-name {
  font-size: 1.05rem;
  font-weight: 800;
}

.cart-price {
  font-size: 0.94rem;
  color: var(--muted);
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.qty-btn {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(236, 216, 196, 0.88);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.qty-btn:hover {
  transform: translateY(-1px);
  background: rgba(196, 123, 75, 0.22);
}

.summary .line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.summary .total {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text);
}

.summary-block,
.checkout-card {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(101, 84, 66, 0.12);
}

.checkout-field.full {
  grid-column: 1 / -1;
}

.conditions {
  line-height: 1.8;
}

.conditions h2 {
  margin-top: 1.05rem;
  margin-bottom: 0.3rem;
  font-size: 1.75rem;
}

.conditions a,
.conditions-link {
  color: var(--accent-strong);
  font-weight: 700;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.8rem clamp(1.25rem, 4vw, 4rem) 2.2rem;
  border-top: 1px solid rgba(101, 84, 66, 0.1);
  background: rgba(255, 255, 255, 0.45);
}

footer p,
.footer-links a {
  color: var(--muted);
}

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

.redirect-card {
  max-width: 560px;
  text-align: center;
}

.redirect-card h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  margin-bottom: 0.6rem;
}

#productFilter,
[data-stock] {
  display: none !important;
}

.swal2-popup {
  font-family: "Manrope", system-ui, sans-serif;
}

.hero-copy,
.hero-card,
.service-card,
.product-card,
.step-card,
.showcase-card,
.contact-card,
.cta-banner,
.contact-hero {
  animation: rise 0.75s ease both;
}

.product-card:nth-child(2),
.service-card:nth-child(2),
.step-card:nth-child(2),
.showcase-card:nth-child(2) {
  animation-delay: 0.08s;
}

.product-card:nth-child(3),
.service-card:nth-child(3),
.step-card:nth-child(3),
.showcase-card:nth-child(3) {
  animation-delay: 0.14s;
}

.product-card:nth-child(4),
.service-card:nth-child(4),
.step-card:nth-child(4),
.showcase-card:nth-child(4) {
  animation-delay: 0.2s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .basket-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header,
  header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav,
  nav {
    width: 100%;
    justify-content: flex-start;
  }

  .stats-row,
  .form-grid,
  .checkout-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  main {
    padding-top: 1.4rem;
  }

  .brand-mark,
  .bdC-logo {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: 1.65rem;
  }

  .stats-row,
  .form-grid,
  .checkout-grid,
  .sub-hero {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .filter-group,
  .footer-links {
    width: 100%;
  }

  .btn-primary,
  .add-to-cart,
  .btn-ghost {
    width: 100%;
  }

  .cart-line,
  .cart-product {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

