/* Appily Fortyfive — Botanical Atelier home
   Same section layout, distinct kinetic visual system. */

.page-home-atelier {
  --a45-ink: #102820;
  --a45-primary: #0d7377;
  --a45-nav: #095456;
  --a45-secondary: #e85d04;
  --a45-accent: #14919b;
  --a45-cream: #f3f6f1;
  --a45-paper: #eef4f0;
  --a45-leaf: #3aa6a1;
  --a45-muted: #5a6f68;
  --a45-border: #c5d8d1;
  --a45-font-serif: 'Fraunces', Georgia, serif;
  --a45-font-sans: 'Sora', system-ui, sans-serif;
  --a45-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --a45-spring: cubic-bezier(0.34, 1.45, 0.64, 1);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(13, 115, 119, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at -10% 30%, rgba(232, 93, 4, 0.06), transparent 50%),
    var(--a45-cream);
  font-family: var(--a45-font-sans);
}

.page-home-atelier .page-main { overflow-x: clip; }
.page-home-atelier h1,
.page-home-atelier h2,
.page-home-atelier h3,
.page-home-atelier h4 {
  font-family: var(--a45-font-serif);
  font-optical-sizing: auto;
}

/* ── Reveal ── */
.page-home-atelier .a45-reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 0.7s var(--a45-ease),
    transform 0.7s var(--a45-ease),
    filter 0.7s var(--a45-ease);
  transition-delay: var(--a45-reveal-delay, 0s);
}
.page-home-atelier .a45-reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.page-home-atelier .a45-section-head--center { gap: 0.35rem; }
.page-home-atelier .a45-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: var(--a45-secondary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.page-home-atelier .a45-section-kicker::before,
.page-home-atelier .a45-section-kicker::after {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.page-home-atelier .a45-section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  color: var(--a45-ink);
  letter-spacing: -0.03em;
}

.page-home-atelier .a45-section-divider {
  display: block;
  width: 88px;
  height: 3px;
  margin-top: 0.75rem;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--a45-primary), var(--a45-secondary), var(--a45-leaf));
  background-size: 200% 100%;
  animation: a45DividerShift 5s ease-in-out infinite;
}
@keyframes a45DividerShift {
  0%, 100% { background-position: 0% 50%; width: 72px; }
  50% { background-position: 100% 50%; width: 108px; }
}

.page-home-atelier .a45-btn {
  border-radius: 999px;
  font-family: var(--a45-font-sans);
  letter-spacing: 0.06em;
}
.page-home-atelier .a45-btn-primary {
  background: linear-gradient(135deg, var(--a45-primary), var(--a45-nav));
  box-shadow: 0 12px 28px rgba(13, 115, 119, 0.28);
}
.page-home-atelier .a45-btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 34px rgba(13, 115, 119, 0.34);
}
.page-home-atelier .a45-btn-shine { position: relative; overflow: hidden; }
.page-home-atelier .a45-btn-shine::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.38) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.6s var(--a45-ease);
}
.page-home-atelier .a45-btn-shine:hover::after { transform: translateX(130%); }

/* ── Hero ── */
.page-home-atelier .a45-hero {
  position: relative;
  min-height: min(82vh, 680px);
  display: grid;
  align-items: end;
  padding: clamp(5rem, 11vw, 7.5rem) 0 clamp(3.25rem, 7vw, 5rem);
  overflow: hidden;
  color: #f4fbf8;
  isolation: isolate;
}
.page-home-atelier .a45-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home-atelier .a45-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.05);
  animation: a45HeroDrift 22s ease-in-out infinite alternate;
}
@keyframes a45HeroDrift {
  from { transform: scale(1.08) translate3d(-1.2%, 0, 0); }
  to { transform: scale(1.12) translate3d(1.2%, -1%, 0); }
}
.page-home-atelier .a45-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(118deg, rgba(8, 28, 26, 0.92) 0%, rgba(8, 28, 26, 0.72) 42%, rgba(8, 28, 26, 0.22) 72%, rgba(8, 28, 26, 0.45) 100%),
    linear-gradient(180deg, rgba(8, 28, 26, 0.15), rgba(8, 28, 26, 0.55));
}
.page-home-atelier .a45-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.page-home-atelier .a45-hero-mesh {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(circle at 28% 42%, rgba(58, 166, 161, 0.28), transparent 40%),
    radial-gradient(circle at 78% 68%, rgba(232, 93, 4, 0.18), transparent 36%);
  animation: a45MeshPulse 14s ease-in-out infinite alternate;
}
@keyframes a45MeshPulse {
  from { transform: scale(1) rotate(0deg); }
  to { transform: scale(1.08) rotate(3deg); }
}
.page-home-atelier .a45-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.page-home-atelier .a45-hero-orbit {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: a45OrbitSpin 28s linear infinite;
}
.page-home-atelier .a45-hero-orbit--a {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  right: -8%;
  top: -12%;
}
.page-home-atelier .a45-hero-orbit--b {
  width: min(280px, 42vw);
  height: min(280px, 42vw);
  right: 12%;
  bottom: 8%;
  animation-direction: reverse;
  animation-duration: 18s;
  border-style: solid;
  border-color: rgba(232, 93, 4, 0.25);
}
@keyframes a45OrbitSpin { to { transform: rotate(360deg); } }

.page-home-atelier .a45-hero-shell {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}
.page-home-atelier .a45-hero-brand {
  margin: 0 0 0.7rem;
  font-family: var(--a45-font-serif);
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.page-home-atelier .a45-hero-brand::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  margin-top: 0.55rem;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--a45-secondary), var(--a45-leaf));
  animation: a45BrandLine 1.1s var(--a45-ease) 0.25s forwards;
}
@keyframes a45BrandLine { to { width: min(9rem, 40%); } }

.page-home-atelier .a45-hero-shell h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.15rem, 5.2vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff;
}
.page-home-atelier .a45-hero-shell h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, #9fe0d8 10%, #ffc28a 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-home-atelier .a45-hero-lede {
  max-width: 38ch;
  margin: 0 0 1.6rem;
  color: rgba(244, 251, 248, 0.78);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.55;
}
.page-home-atelier .a45-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}
.page-home-atelier .a45-hero-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffc28a;
  transition: transform 0.25s var(--a45-ease), letter-spacing 0.25s ease;
}
.page-home-atelier .a45-hero-link:hover {
  transform: translateX(6px);
  letter-spacing: 0.02em;
}

/* ── Categories ── */
.page-home-atelier .a45-categories {
  position: relative;
  padding: clamp(2.75rem, 5.5vw, 4.5rem) 0;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 18px,
      rgba(13, 115, 119, 0.025) 18px,
      rgba(13, 115, 119, 0.025) 19px
    ),
    linear-gradient(180deg, #fff 0%, var(--a45-paper) 100%);
}
.page-home-atelier .a45-categories::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--a45-primary), var(--a45-secondary), var(--a45-leaf), var(--a45-primary));
  background-size: 220% 100%;
  animation: a45DividerShift 8s linear infinite;
}

.page-home-atelier .a45-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.page-home-atelier .a45-cat-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 156px;
  padding: 1.3rem;
  border-radius: 22px 22px 28px 12px;
  background: #fff;
  border: 1px solid var(--a45-border);
  overflow: hidden;
  transform: perspective(800px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.35s var(--a45-ease), box-shadow 0.35s ease, border-color 0.35s ease;
  animation: a45CatIn 0.65s var(--a45-ease) both;
  animation-delay: calc(var(--a45-cat-i, 0) * 0.06s);
}
@keyframes a45CatIn {
  from { opacity: 0; transform: translateY(24px) rotate(-1deg); }
  to { opacity: 1; transform: none; }
}
.page-home-atelier .a45-cat-card::before {
  content: '';
  position: absolute;
  inset: auto -20% -40% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 115, 119, 0.14), transparent 70%);
  transition: transform 0.45s var(--a45-ease);
}
.page-home-atelier .a45-cat-card:hover {
  border-color: var(--a45-leaf);
  box-shadow: 0 22px 44px rgba(16, 40, 32, 0.12);
}
.page-home-atelier .a45-cat-card:hover::before { transform: scale(1.45) translate(-10%, -10%); }

.page-home-atelier .a45-cat-card:nth-child(1) {
  grid-column: span 2;
  background: linear-gradient(145deg, #dff4f2, #fff 55%);
}
.page-home-atelier .a45-cat-card:nth-child(7) {
  grid-column: span 2;
  background: linear-gradient(145deg, #ffe8d6, #fff 55%);
}
.page-home-atelier .a45-cat-card--leaf { --chip: #0d7377; }
.page-home-atelier .a45-cat-card--root { --chip: #e85d04; }
.page-home-atelier .a45-cat-card--cruc { --chip: #14919b; }
.page-home-atelier .a45-cat-card--pepper { --chip: #c44900; }
.page-home-atelier .a45-cat-card--gourd { --chip: #2a9d8f; }
.page-home-atelier .a45-cat-card--pod { --chip: #457b9d; }
.page-home-atelier .a45-cat-card--exotic { --chip: #bc6c25; }

.page-home-atelier .a45-cat-index {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--a45-font-sans);
  color: color-mix(in srgb, var(--chip, var(--a45-primary)) 16%, transparent);
  line-height: 1;
}
.page-home-atelier .a45-cat-glyph {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.55rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--chip, var(--a45-primary)) 14%, #fff);
  font-size: 1.2rem;
  transition: transform 0.35s var(--a45-spring);
}
.page-home-atelier .a45-cat-card:hover .a45-cat-glyph { transform: rotate(-8deg) scale(1.12); }
.page-home-atelier .a45-cat-card h3 {
  margin: 0 0 0.2rem;
  font-family: var(--a45-font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--a45-ink);
}
.page-home-atelier .a45-cat-card p {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  color: var(--a45-muted);
}
.page-home-atelier .a45-cat-shop {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chip, var(--a45-primary));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s var(--a45-ease);
}
.page-home-atelier .a45-cat-card:hover .a45-cat-shop {
  opacity: 1;
  transform: none;
}

/* ── Trending ── */
.page-home-atelier .a45-trending {
  padding: clamp(2.75rem, 5vw, 4.25rem) 0;
  background: #fff;
}
.page-home-atelier .a45-tab-row {
  position: relative;
  display: inline-flex;
  left: 50%;
  transform: translateX(-50%);
  gap: 0.25rem;
  margin: 0 auto 2rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: var(--a45-paper);
  border: 1px solid var(--a45-border);
}
.page-home-atelier .a45-tab {
  position: relative;
  z-index: 1;
  padding: 0.65rem 1.3rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--a45-muted);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease;
}
.page-home-atelier .a45-tab.is-active { color: #fff; }
.page-home-atelier .a45-tab-indicator {
  position: absolute;
  top: 0.3rem;
  bottom: 0.3rem;
  left: 0;
  width: 0;
  z-index: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--a45-primary), var(--a45-nav));
  box-shadow: 0 8px 18px rgba(13, 115, 119, 0.3);
  transition: left 0.35s var(--a45-ease), width 0.35s var(--a45-ease);
}

.page-home-atelier .a45-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}
.page-home-atelier .a45-product-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  border-radius: 18px 26px 18px 18px;
  background: #fff;
  border: 1px solid var(--a45-border);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.35s var(--a45-ease), box-shadow 0.35s ease, border-color 0.35s ease;
  animation: a45CardIn 0.55s var(--a45-ease) both;
  animation-delay: calc(var(--a45-card-i, 0) * 0.05s);
}
@keyframes a45CardIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.page-home-atelier .a45-product-card::after {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 42px;
  height: 42px;
  background:
    linear-gradient(135deg, var(--a45-secondary), transparent 62%);
  opacity: 0.55;
  pointer-events: none;
}
.page-home-atelier .a45-product-card:hover {
  border-color: color-mix(in srgb, var(--a45-primary) 45%, var(--a45-border));
  box-shadow: 0 24px 48px rgba(16, 40, 32, 0.14);
}

.page-home-atelier .a45-product-img {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(13, 115, 119, 0.1), transparent 50%),
    var(--a45-paper);
}
.page-home-atelier .a45-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 86% 100%, 0 100%);
  transition: transform 0.55s var(--a45-ease), filter 0.55s ease;
}
.page-home-atelier .a45-product-card:hover .a45-product-img img {
  transform: scale(1.07) rotate(0.6deg);
  filter: saturate(1.08);
}
.page-home-atelier .a45-product-hover {
  position: absolute;
  inset: auto 0 0;
  padding: 0.7rem;
  background: linear-gradient(transparent, rgba(8, 28, 26, 0.8));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transform: translateY(105%);
  transition: transform 0.35s var(--a45-ease);
}
.page-home-atelier .a45-product-card:hover .a45-product-hover { transform: none; }

.page-home-atelier .a45-product-body { padding: 1rem 1.1rem 1.2rem; }
.page-home-atelier .a45-product-body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--a45-font-sans);
  font-size: 0.92rem;
  font-weight: 700;
}
.page-home-atelier .a45-product-cat {
  color: var(--a45-primary);
}
.page-home-atelier .a45-price-row strong { color: var(--a45-secondary); }
.page-home-atelier .a45-btn-cart {
  background: var(--a45-ink);
  border-radius: 12px;
}
.page-home-atelier .a45-btn-cart:hover { background: var(--a45-primary); }
.page-home-atelier .a45-sale-badge {
  background: var(--a45-secondary);
  border-radius: 8px 8px 12px 8px;
}

/* ── Promo banners ── */
.page-home-atelier .a45-promo-banners {
  padding: 2.25rem 0 3.75rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(13, 115, 119, 0.07), transparent 55%),
    #f7faf8;
}
.page-home-atelier .a45-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
.page-home-atelier .a45-banner {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  padding: 1.7rem 1.45rem;
  border-radius: 28px 12px 28px 12px;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.35s var(--a45-ease), box-shadow 0.35s ease;
}
.page-home-atelier .a45-banner::before {
  content: '';
  position: absolute;
  inset: -40% auto auto 55%;
  width: 220px;
  height: 220px;
  border-radius: 40% 60% 55% 45%;
  background: rgba(255, 255, 255, 0.22);
  animation: a45Blob 8s ease-in-out infinite alternate;
}
@keyframes a45Blob {
  from { border-radius: 40% 60% 55% 45%; transform: translate(0, 0); }
  to { border-radius: 58% 42% 38% 62%; transform: translate(-12%, 8%); }
}
.page-home-atelier .a45-banner:hover {
  box-shadow: 0 22px 44px rgba(16, 40, 32, 0.14);
}
.page-home-atelier .a45-banner--lime {
  background: linear-gradient(145deg, #9fe0d8, #3aa6a1);
  color: #062826;
}
.page-home-atelier .a45-banner--mint {
  background: linear-gradient(145deg, #d7f0ea, #14919b);
  color: #062826;
}
.page-home-atelier .a45-banner--orange {
  background: linear-gradient(145deg, #ffd4b0, #e85d04);
  color: #3a1400;
}
.page-home-atelier .a45-banner-num {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-size: 2.8rem;
  font-weight: 800;
  opacity: 0.18;
  line-height: 1;
  font-family: var(--a45-font-sans);
}
.page-home-atelier .a45-banner-copy { position: relative; z-index: 1; }
.page-home-atelier .a45-banner-kicker {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}
.page-home-atelier .a45-banner h3 {
  margin: 0 0 0.3rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.page-home-atelier .a45-banner p {
  margin: 0 0 0.7rem;
  font-size: 0.84rem;
  opacity: 0.88;
}
.page-home-atelier .a45-banner a {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s var(--a45-ease);
}
.page-home-atelier .a45-banner a:hover { transform: translateX(5px); }

/* ── Best products ── */
.page-home-atelier .a45-best-products {
  padding: clamp(2.25rem, 4.5vw, 3.75rem) 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(58, 166, 161, 0.16), transparent 45%),
    radial-gradient(ellipse at 90% 20%, rgba(232, 93, 4, 0.1), transparent 40%),
    var(--a45-paper);
}
.page-home-atelier .a45-best-grid {
  display: grid;
  grid-template-columns: minmax(260px, 310px) 1fr;
  gap: 1.4rem;
  align-items: start;
}
.page-home-atelier .a45-deal-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  padding: 1.35rem;
  text-align: center;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--a45-border);
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.35s var(--a45-ease);
}
.page-home-atelier .a45-deal-glow {
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--a45-primary), var(--a45-secondary), var(--a45-leaf), var(--a45-primary));
  background-size: 300% 300%;
  animation: a45DealGlow 7s ease infinite;
  opacity: 0.55;
  z-index: 0;
}
@keyframes a45DealGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.page-home-atelier .a45-deal-card::before {
  content: '';
  position: absolute;
  inset: 2px;
  background: #fff;
  border-radius: 24px;
  z-index: 0;
}
.page-home-atelier .a45-deal-card > *:not(.a45-deal-glow) { position: relative; z-index: 1; }
.page-home-atelier .a45-deal-kicker {
  margin: 0 0 0.8rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--a45-secondary);
}
.page-home-atelier .a45-deal-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 0.85rem;
  border-radius: 18px;
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
  transition: transform 0.45s var(--a45-ease);
}
.page-home-atelier .a45-deal-card:hover img { transform: scale(1.04); }

.page-home-atelier .a45-best-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.page-home-atelier .a45-mini-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  padding: 0.9rem;
  text-align: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--a45-border);
  transform: perspective(800px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.35s var(--a45-ease), box-shadow 0.35s ease;
  animation: a45CardIn 0.5s var(--a45-ease) both;
  animation-delay: calc(var(--a45-mini-i, 0) * 0.05s);
}
.page-home-atelier .a45-mini-card:hover {
  box-shadow: 0 16px 32px rgba(16, 40, 32, 0.1);
}
.page-home-atelier .a45-mini-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 0.55rem;
  border-radius: 14px;
  transition: transform 0.4s var(--a45-ease);
}
.page-home-atelier .a45-mini-card:hover img { transform: scale(1.05); }
.page-home-atelier .a45-mini-card h4 {
  margin: 0 0 0.25rem;
  font-family: var(--a45-font-sans);
  font-size: 0.82rem;
  font-weight: 700;
}
.page-home-atelier .a45-mini-card strong { color: var(--a45-secondary); font-size: 0.95rem; }

/* ── Story ── */
.page-home-atelier .a45-story-band {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
  color: #f4fbf8;
  background: #0a2422;
}
.page-home-atelier .a45-story-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-home-atelier .a45-story-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    radial-gradient(circle at 20% 40%, rgba(58, 166, 161, 0.35), transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(232, 93, 4, 0.22), transparent 40%);
  animation: a45MeshPulse 16s ease-in-out infinite alternate;
}
.page-home-atelier .a45-story-watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--a45-font-sans);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  user-select: none;
}
.page-home-atelier .a45-story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.page-home-atelier .a45-story-visual {
  position: relative;
  margin: 0;
}
.page-home-atelier .a45-story-accent {
  position: absolute;
  inset: -8% -6%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28% 72% 44% 56% / 48% 32% 68% 52%;
  animation: a45OrbitMorph 10s ease-in-out infinite alternate;
}
@keyframes a45OrbitMorph {
  from { border-radius: 28% 72% 44% 56% / 48% 32% 68% 52%; transform: rotate(0deg); }
  to { border-radius: 58% 42% 62% 38% / 36% 58% 42% 64%; transform: rotate(6deg); }
}
.page-home-atelier .a45-story-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px 8px 28px 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.page-home-atelier .a45-story-copy .a45-eyebrow {
  color: #9fe0d8;
  letter-spacing: 0.2em;
}
.page-home-atelier .a45-story-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  letter-spacing: -0.03em;
  color: #fff;
}
.page-home-atelier .a45-story-copy h2 em {
  font-style: italic;
  font-weight: 500;
  color: #ffc28a;
}
.page-home-atelier .a45-story-copy p {
  max-width: 42ch;
  margin: 0 0 1.4rem;
  color: rgba(244, 251, 248, 0.78);
}
.page-home-atelier .a45-story-copy .a45-btn-primary {
  background: #fff;
  color: var(--a45-nav);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.page-home-atelier .a45-story-copy .a45-btn-primary:hover {
  background: #dff4f2;
}

/* Home chrome accents */
.page-home-atelier .a45-topbar { background: var(--a45-nav); }
.page-home-atelier .a45-brand-copy strong,
.page-home-atelier .a45-subnav-link.is-active,
.page-home-atelier .a45-cat-link:hover { color: var(--a45-primary); }
.page-home-atelier .a45-header { border-bottom-color: color-mix(in srgb, var(--a45-primary) 18%, #fff); }

@media (max-width: 1024px) {
  .page-home-atelier .a45-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-home-atelier .a45-cat-card:nth-child(1),
  .page-home-atelier .a45-cat-card:nth-child(7) { grid-column: span 1; }
}
@media (max-width: 900px) {
  .page-home-atelier .a45-hero { min-height: min(70vh, 560px); }
  .page-home-atelier .a45-banner-grid,
  .page-home-atelier .a45-best-grid,
  .page-home-atelier .a45-story-grid { grid-template-columns: 1fr; }
  .page-home-atelier .a45-best-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-home-atelier .a45-story-watermark { opacity: 0.5; font-size: 8rem; }
}
@media (max-width: 540px) {
  .page-home-atelier .a45-cat-grid,
  .page-home-atelier .a45-best-products-grid { grid-template-columns: 1fr; }
  .page-home-atelier .a45-tab-row {
    left: 0;
    transform: none;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home-atelier .a45-reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .page-home-atelier .a45-hero-media img,
  .page-home-atelier .a45-hero-mesh,
  .page-home-atelier .a45-hero-orbit,
  .page-home-atelier .a45-section-divider,
  .page-home-atelier .a45-deal-glow,
  .page-home-atelier .a45-story-accent,
  .page-home-atelier .a45-banner::before,
  .page-home-atelier .a45-cat-card,
  .page-home-atelier .a45-product-card,
  .page-home-atelier .a45-mini-card { animation: none !important; }
}
