:root {
  --bg: #f5f0ea;
  --bg-deep: #f1e8df;
  --bg-strong: #faf6f3;
  --panel: #ffffff;
  --card: #ffffff;
  --text: #211926;
  --muted: #52435a;
  --line: rgba(34, 22, 36, 0.08);
  --rose: #f4d8e7;
  --rose-deep: #eeb7d1;
  --peach: #f8dfd7;
  --sage: #ddd0ff;
  --gold: #f5ddb6;
  --purple: #d9d2ff;
  --purple-deep: #b8a9ff;
  --shadow: 0 20px 44px rgba(38, 28, 39, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(233, 213, 180, 0.28), transparent 22%),
    radial-gradient(circle at top right, rgba(210, 199, 255, 0.2), transparent 18%),
    linear-gradient(180deg, #f7f1eb 0%, #f4efe9 100%);
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.01em;
}

.page-shell {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
}

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

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

button {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(34, 22, 36, 0.08);
  box-shadow: 0 12px 28px rgba(15, 7, 21, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 180px;
  height: auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  letter-spacing: 0.2em;
  font-size: 0.82rem;
}

.brand-copy small {
  letter-spacing: 0.14em;
  font-size: 0.55rem;
  opacity: 0.8;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a::after {
  background: rgba(255, 255, 255, 0.7);
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: rgba(42, 28, 27, 0.7);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.text-link {
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #f4dfe9, #d9d1ff);
  box-shadow: 0 12px 30px rgba(198, 175, 255, 0.2);
  color: #221927;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.text-link {
  color: var(--text);
  font-weight: 800;
}

.hero {
  padding: 72px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero-copy h1,
.section-heading h2,
.experience-copy h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(3.6rem, 6vw, 6.3rem);
  max-width: 620px;
}

.lead {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 560px;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 520px;
}

.hero-stats li {
  background: rgba(24, 22, 28, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.visual-card {
  position: relative;
  width: min(100%, 480px);
  background: rgba(28, 26, 32, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.card-main {
  padding: 18px 18px 22px;
}

.image-frame {
  height: 440px;
  width: 100%;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.image-one {
  background-image: linear-gradient(rgba(107, 76, 64, 0.08), rgba(86, 60, 54, 0.08)),
    url('https://images.unsplash.com/photo-1512436991641-6745cdb1723f?auto=format&fit=crop&w=900&q=80');
}

.card-meta {
  margin-top: 18px;
}

.tag,
.product-tag,
.mini-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(208, 141, 125, 0.12);
  color: var(--rose-deep);
}

.card-meta h3,
.product-body h3,
.category-copy h3,
.step-card h3 {
  margin: 12px 0 6px;
  font-size: clamp(1.4rem, 1.6vw, 2rem);
}

.card-meta p,
.product-body p,
.category-copy p,
.step-card p,
.review-card p,
.experience-copy li span,
.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
}

.price-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-row strong {
  font-size: 1.5rem;
}

.price-row button {
  border: none;
  background: #f9efe8;
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.floating-card,
.floating-badge {
  position: absolute;
  background: rgba(20, 18, 23, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.floating-card {
  right: 8%;
  top: 54px;
  padding: 18px 16px;
  max-width: 220px;
  transform: rotate(8deg);
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.floating-badge {
  left: 2%;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-weight: 700;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7abf88, #b7d7a4);
}

.feature-band {
  padding: 18px 0 0;
}

.portfolio-hero {
  padding-top: 52px;
}

.portfolio-card {
  padding-bottom: 14px;
}

.portfolio-floating {
  max-width: 225px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 10px 18px;
  gap: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.feature-list div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-weight: 700;
  color: var(--text);
  min-height: 72px;
}

.feature-list span {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(247, 217, 138, 0.22), rgba(243, 138, 185, 0.2));
  color: var(--gold);
}

.collections,
.bestsellers,
.process,
.reviews,
.cta-section {
  padding: 90px 0 0;
}

.section-heading {
  margin: 0 0 34px;
}

.section-heading h2,
.experience-copy h2,
.cta-panel h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  max-width: 760px;
}

.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.category-grid,
.product-grid,
.step-grid,
.review-grid {
  display: grid;
  gap: 24px;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(23, 12, 28, 0.18);
}

.category-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.category-card-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, rgba(248, 241, 232, 0.9), rgba(232, 220, 205, 0.72));
}

.category-number {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(27, 23, 21, 0.72);
  font-weight: 700;
}

.category-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1b1715;
}

.category-art {
  height: 230px;
  background-size: cover;
  background-position: center;
}

.art-one {
  background-image: linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)),
    url('https://images.unsplash.com/photo-1525310072745-f49212b5ac6d?auto=format&fit=crop&w=900&q=80');
}

.art-two {
  background-image: linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)),
    url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=900&q=80');
}

.art-three {
  background-image: linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=900&q=80');
}

.art-four {
  background-image: linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)),
    url('https://images.unsplash.com/photo-1526045478516-99145907023c?auto=format&fit=crop&w=900&q=80');
}

.category-copy {
  padding: 18px 18px 22px;
}

.category-copy p {
  margin: 0;
  line-height: 1.7;
}

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

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(23, 12, 28, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(85, 43, 86, 0.18);
  border-color: rgba(247, 217, 138, 0.34);
}

.featured-product {
  transform: translateY(-10px);
}

.product-image-link {
  position: relative;
  display: block;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(67, 39, 53, 0.08);
  transition: transform 0.7s ease, box-shadow 0.7s ease;
}

.product-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 42%, rgba(56,32,42,0.14));
  opacity: 0;
  transition: opacity 1.3s ease;
  pointer-events: none;
}

.product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1), object-fit 1.3s ease, filter 1.3s ease, opacity 1.3s ease;
  transform-origin: center center;
}

.product-image-link:hover,
.product-image-link:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(67, 39, 53, 0.16);
}

.product-image-link:hover::after,
.product-image-link:focus-within::after {
  opacity: 1;
  transition-delay: 0.08s;
}

.product-image-link:hover .product-image,
.product-image-link:focus-within .product-image {
  object-fit: contain;
  transform: scale(1.15) rotate(-1.2deg);
  filter: saturate(1.2) contrast(1.08) brightness(1.04);
  transform-origin: center center;
}

.product-image-link,
.collection-image,
.editorial-image,
.gallery-main,
.thumb,
.drawer-thumb {
  position: relative;
  overflow: hidden;
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 1.3s ease, filter 1.3s ease;
}

.product-image-link::after,
.collection-image::before,
.editorial-image::before,
.gallery-main::before,
.thumb::before,
.drawer-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 42%, rgba(56,32,42,0.14));
  opacity: 0;
  transition: opacity 1.3s ease;
  pointer-events: none;
  z-index: 1;
}

.collection-card:hover .collection-image,
.editorial-card:hover .editorial-image,
.gallery-main:hover,
.thumb:hover,
.drawer-thumb:hover,
.product-image-link:hover .product-image,
.product-image-link:focus-within .product-image {
  transform: scale(1.12) rotate(-1.2deg);
  filter: saturate(1.2) contrast(1.08) brightness(1.04);
  transform-origin: center center;
}

.collection-card:hover .collection-image::before,
.editorial-card:hover .editorial-image::before,
.gallery-main:hover::before,
.thumb:hover::before,
.drawer-thumb:hover::before,
.product-image-link:hover::after,
.product-image-link:focus-within::after {
  opacity: 1;
  transition-delay: 0.08s;
}

.image-a {
  background-image: linear-gradient(rgba(0,0,0,0.04), rgba(0,0,0,0.04)),
    url('https://images.unsplash.com/photo-1521572267360-ee0c2909d518?auto=format&fit=crop&w=900&q=80');
}

.image-b {
  background-image: linear-gradient(rgba(0,0,0,0.04), rgba(0,0,0,0.04)),
    url('./deluxe-birthday-hamper.jpg');
}

.image-c {
  background-image: linear-gradient(rgba(0,0,0,0.04), rgba(0,0,0,0.04)),
    url('https://images.unsplash.com/photo-1520903920243-00d872a2d1a9?auto=format&fit=crop&w=900&q=80');
}

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

.experience {
  padding-top: 110px;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.experience-copy ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 18px;
}

.experience-copy li {
  display: grid;
  gap: 6px;
  background: rgba(25, 23, 29, 0.8);
  border: 1px solid var(--line);
  padding: 22px 20px;
  border-radius: var(--radius-md);
}

.experience-copy li strong {
  font-size: 1.08rem;
}

.experience-showcase {
  display: grid;
  place-items: center;
}

.showcase-card {
  width: min(100%, 440px);
  background: linear-gradient(160deg, rgba(224, 170, 158, 0.14), rgba(25, 23, 29, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 30px 28px 22px;
  box-shadow: var(--shadow);
}

.quote-mark {
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  color: var(--rose-deep);
  font-weight: 800;
}

.quote-text {
  margin: 10px 0 0;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.5;
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
}

.customer-meta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach), var(--rose));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}

.customer-meta div {
  display: flex;
  flex-direction: column;
}

.customer-meta small {
  color: var(--muted);
}

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

.step-card {
  background: rgba(25, 23, 29, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sage), rgba(255,255,255,0.8));
  color: var(--text);
  font-weight: 800;
  margin-bottom: 12px;
}

.center {
  text-align: center;
}

.center h2 {
  margin-inline: auto;
}

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

.review-card {
  background: rgba(25, 23, 29, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
}

.stars {
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: #d29e5a;
  margin-bottom: 14px;
}

.review-card p {
  margin: 0 0 18px;
  line-height: 1.7;
}

.cta-panel {
  background: linear-gradient(135deg, rgba(208, 141, 125, 0.12), rgba(25, 23, 29, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  padding: 80px 0 38px;
}

.site-footer .newsletter-copy {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 28px;
  padding-bottom: 22px;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer h4 {
  margin: 0 0 14px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-banner {
  padding: 72px 0 36px;
}

.banner-inner {
  background:
    linear-gradient(90deg, rgba(245, 240, 234, 0.92) 0%, rgba(245, 240, 234, 0.78) 34%, rgba(152, 127, 161, 0.62) 100%),
    url('about.jpg') center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 64px);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 20px 44px rgba(24, 12, 35, 0.16);
}

.banner-inner h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.narrow-banner {
  min-height: 180px;
}

.shop-shell {
  padding: 24px 0 90px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.shop-sidebar {
  display: grid;
  gap: 22px;
}

.filter-box {
  background: rgba(255,255,255,0.46);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
}

.filter-box h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.filter-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.filter-box a {
  color: var(--muted);
  font-weight: 600;
}

.catalog-panel {
  min-width: 0;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

#catalog-count {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 1;
}

.no-gap {
  margin: 0;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.45);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}

.chip.active {
  background: linear-gradient(135deg, rgba(185,108,91,0.14), rgba(246,214,192,0.6));
  border-color: rgba(185,108,91,0.14);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.compact-card .product-image {
  height: 260px;
}

.image-d {
  background-image: linear-gradient(rgba(0,0,0,0.04), rgba(0,0,0,0.04)),
    url('https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=900&q=80');
}

.image-e {
  background-image: linear-gradient(rgba(0,0,0,0.04), rgba(0,0,0,0.04)),
    url('https://images.unsplash.com/photo-1526045478516-99145907023c?auto=format&fit=crop&w=900&q=80');
}

.image-f {
  background-image: linear-gradient(rgba(0,0,0,0.04), rgba(0,0,0,0.04)),
    url('https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=900&q=80');
}

.product-detail-page {
  padding: 72px 0 32px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
}

.gallery-layout {
  display: block;
}

.single-product-visual {
  width: 100%;
}

.gallery-main {
  height: 660px;
  border-radius: var(--radius-xl);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-thumbs {
  display: none;
}

.thumb {
  height: 140px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}

.thumb-one {
  background-image: url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=900&q=80');
}

.thumb-two {
  background-image: url('https://images.unsplash.com/photo-1521572267360-ee0c2909d518?auto=format&fit=crop&w=900&q=80');
}

.thumb-three {
  background-image: url('https://images.unsplash.com/photo-1520903920243-00d872a2d1a9?auto=format&fit=crop&w=900&q=80');
}

.gallery-main {
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.gallery-main:hover {
  transform: scale(1.01);
  box-shadow: 0 28px 56px rgba(61, 42, 37, 0.18);
}

.thumb {
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.thumb:hover,
.thumb.active {
  transform: translateY(-4px);
  border-color: rgba(185, 108, 91, 0.26);
  box-shadow: 0 16px 28px rgba(61, 42, 37, 0.1);
}

.detail-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  color: var(--muted);
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 18px;
}

.price-block strong {
  font-size: 2.2rem;
}

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

.product-description {
  max-width: 600px;
}

.variant-row {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.variant-row > span {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--muted);
}

.variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.4);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}

.variant:hover {
  border-color: rgba(185,108,91,0.2);
}

.variant.active {
  background: linear-gradient(135deg, rgba(185,108,91,0.14), rgba(246,214,192,0.6));
  border-color: rgba(185,108,91,0.14);
}

.purchase-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.detail-features {
  margin-top: 26px;
  grid-template-columns: 1fr;
  padding: 0;
  background: transparent;
  border: none;
}

.detail-features li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.detail-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rose-deep);
  font-weight: 800;
}

.info-section,
.values-section,
.story-section,
.contact-section,
.cart-section {
  padding: 40px 0 90px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-card {
  background: rgba(255,255,255,0.46);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}

.info-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

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

.cart-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  background: rgba(255,255,255,0.46);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.cart-thumb {
  height: 170px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
}

.cart-copy h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.cart-copy p {
  margin: 0;
  color: var(--muted);
}

.cart-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.cart-meta span {
  font-size: 1.4rem;
  font-weight: 800;
}

.cart-meta button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.summary-card {
  background: rgba(255,255,255,0.46);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.summary-card h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.summary-line.total {
  color: var(--text);
  font-weight: 800;
}

.full-width {
  width: 100%;
  margin-top: 22px;
}

.mini-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--rose-deep);
  font-weight: 700;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.story-image {
  min-height: 430px;
  border-radius: var(--radius-xl);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.single-about-image {
  display: flex;
  min-height: 430px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.story-copy h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.story-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.image-three {
  background-image: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05)),
    url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=900&q=80');
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.contact-form,
.contact-panel {
  background: rgba(255,255,255,0.46);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.7);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
}

.contact-panel h3 {
  margin-top: 0;
  font-size: 1.7rem;
}

.contact-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-deep);
  color: white;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.7rem;
  margin-left: 6px;
}

.cart-drawer {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(360px, calc(100% - 24px));
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 28px 52px rgba(61, 42, 37, 0.18);
  padding: 18px 18px 12px;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 25;
  backdrop-filter: blur(14px);
}

.cart-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.cart-drawer-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.drawer-close {
  border: none;
  background: transparent;
  font-size: 1.7rem;
  cursor: pointer;
  color: var(--text);
}

#drawer-items {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.drawer-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.drawer-thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}

.drawer-item strong,
.drawer-item span {
  display: block;
}

.drawer-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.drawer-footer {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.drawer-empty {
  color: var(--muted);
  margin: 0;
}

.empty-state {
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
}

.empty-state h3 {
  margin: 0 0 8px;
}

.empty-state p {
  color: var(--muted);
  margin: 0 0 20px;
}

.cart-drawer {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(360px, calc(100% - 24px));
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 28px 52px rgba(61, 42, 37, 0.18);
  padding: 18px 18px 12px;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 25;
  backdrop-filter: blur(14px);
}

.cart-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.cart-drawer-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.drawer-close {
  border: none;
  background: transparent;
  font-size: 1.7rem;
  cursor: pointer;
  color: var(--text);
}

#drawer-items {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.drawer-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.drawer-thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}

.drawer-item strong,
.drawer-item span {
  display: block;
}

.drawer-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.drawer-footer {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.drawer-empty {
  color: var(--muted);
  margin: 0;
}

.empty-state {
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
}

.empty-state h3 {
  margin: 0 0 8px;
}

.empty-state p {
  color: var(--muted);
  margin: 0 0 20px;
}

.checkout-section {
  padding: 32px 0 90px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.checkout-form,
.checkout-summary {
  background: rgba(255,255,255,0.46);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
}

.checkout-form {
  display: grid;
  gap: 22px;
}

.form-block {
  display: grid;
  gap: 14px;
}

.form-block h3,
.checkout-summary h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.75);
  font: inherit;
  color: var(--text);
}

.checkout-summary {
  display: grid;
  gap: 18px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.mini-thumb {
  width: 92px;
  height: 92px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.checkout-item strong,
.checkout-item span {
  display: block;
}

.checkout-item span {
  color: var(--muted);
  margin-top: 6px;
}

.editorial-page {
  background: linear-gradient(180deg, #f9f2ef 0%, #f3e7e2 38%, #fdf8f4 100%);
}

.editorial-topbar {
  background: rgba(253, 249, 246, 0.82);
}

.editorial-hero {
  padding: 74px 0 24px;
}

.editorial-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.editorial-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 6vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.editorial-copy p {
  max-width: 560px;
  line-height: 1.8;
  color: var(--muted);
}

.editorial-visual {
  display: flex;
  justify-content: center;
}

.editorial-card {
  width: min(100%, 540px);
  height: 640px;
  border-radius: 38px;
  border: 1px solid rgba(42, 28, 27, 0.08);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.feature-visual {
  background-image: linear-gradient(rgba(84, 52, 48, 0.12), rgba(84, 52, 48, 0.12)),
    url('https://images.unsplash.com/photo-1521572267360-ee0c2909d518?auto=format&fit=crop&w=1200&q=80');
}

.editorial-showcase {
  padding: 20px 0 90px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 22px;
}

.editorial-piece {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(61, 42, 37, 0.06);
}

.big-piece {
  grid-row: span 2;
}

.editorial-image {
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
}

.big-piece .editorial-image {
  height: 500px;
}

.editorial-copy-block {
  padding: 20px 18px 22px;
}

.editorial-copy-block span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--rose-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.editorial-copy-block h3 {
  margin: 0 0 8px;
  font-size: 1.9rem;
}

.editorial-copy-block p {
  margin: 0;
  color: var(--muted);
}

.checkout-success {
  padding: 80px 0 120px;
}

.success-card {
  max-width: 620px;
  margin: 0 auto;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  text-align: center;
  padding: 48px 32px;
  box-shadow: var(--shadow);
}

.success-card h1 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.success-card p {
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 980px) {
  .hero-grid,
  .experience-grid,
  .cta-panel,
  .footer-grid,
  .checkout-grid,
  .editorial-hero-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-grid,
  .product-grid,
  .step-grid,
  .review-grid,
  .feature-list,
  .editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 48px;
  }

  .hero-copy h1 {
    font-size: 3.1rem;
  }

  .hero-stats,
  .feature-list,
  .category-grid,
  .product-grid,
  .step-grid,
  .review-grid,
  .catalog-grid,
  .info-grid,
  .related-grid,
  .field-row,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    right: 12px;
    bottom: 12px;
    width: min(320px, calc(100% - 24px));
  }

  .visual-card {
    width: 100%;
  }

  .floating-card {
    right: 6%;
    top: 12px;
    max-width: 180px;
  }

  .floating-badge {
    left: 6%;
    bottom: 16px;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .button {
    min-height: 48px;
    padding-inline: 18px;
  }

  .split {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item,
  .checkout-item {
    grid-template-columns: 1fr;
  }
}
  .shop-layout,
  .product-detail-grid,
  .story-grid,
  .contact-grid,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .catalog-grid,
  .info-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 48px;
  }

  .hero-copy h1 {
    font-size: 3.1rem;
  }

  .hero-stats,
  .feature-list,
  .category-grid,
  .product-grid,
  .step-grid,
  .review-grid,
  .catalog-grid,
  .info-grid,
  .related-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .visual-card {
    width: 100%;
  }

  .floating-card {
    right: 6%;
    top: 12px;
    max-width: 180px;
  }

  .floating-badge {
    left: 6%;
    bottom: 16px;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .button {
    min-height: 48px;
    padding-inline: 18px;
  }

  .split {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }
}
  .hero-grid,
  .experience-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-grid,
  .product-grid,
  .step-grid,
  .review-grid,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 48px;
  }

  .hero-copy h1 {
    font-size: 3.1rem;
  }

  .hero-stats,
  .feature-list,
  .category-grid,
  .product-grid,
  .step-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .visual-card {
    width: 100%;
  }

  .floating-card {
    right: 6%;
    top: 12px;
    max-width: 180px;
  }

  .floating-badge {
    left: 6%;
    bottom: 16px;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .button {
    min-height: 48px;
    padding-inline: 18px;
  }

  .split {
    flex-direction: column;
    align-items: flex-start;
  }
}
