/*
Theme Name: EmbraceeFit
Theme URI: https://www.EmbraceeFit.online
Author: EmbraceeFit
Author URI: https://www.EmbraceeFit.online
Description: Deutsches Activewear-Studio in Grubhof — E-Commerce WordPress-Theme. Menüs: Startseite, Shop, Über uns, Leistungen, Kontakt.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: embraceefit
Tags: e-commerce, custom-menu, featured-images, translation-ready, sports
*/

:root {
  --void: #08110e;
  --ink: #12201b;
  --forest: #1a3d32;
  --mint: #2ee59d;
  --lime: #d4ff3d;
  --lime-deep: #b8e01f;
  --cream: #f3f0e8;
  --paper: #faf8f3;
  --stone: #e6e1d6;
  --muted: #5e6d66;
  --line: rgba(18, 32, 27, 0.12);
  --shadow: 0 24px 60px rgba(8, 17, 14, 0.18);
  --radius: 22px;
  --header-h: 78px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open,
body.drawer-open,
body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

h1,
h2,
h3,
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
}

.kicker-lime {
  color: var(--lime);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-lime {
  background: var(--lime);
  color: var(--void);
}

.btn-lime:hover {
  background: var(--lime-deep);
}

.btn-ghost,
.btn-ghost-light {
  background: transparent;
  border: 1.5px solid currentColor;
}

.btn-ghost {
  color: var(--ink);
}

.btn-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-block {
  width: 100%;
}

.section-pad {
  padding: 80px 0;
}

.section-split {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}

.section-split h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.section-note {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
}

/* Announcement */
.announce {
  background: var(--void);
  color: var(--lime);
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.announce-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 10px 0;
  animation: marquee 28s linear infinite;
}

.announce-track span::before {
  content: "●";
  margin-right: 48px;
  color: var(--mint);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 240, 232, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--lime);
  display: block;
  overflow: hidden;
}

.logo-mark svg {
  display: block;
  width: 42px;
  height: 42px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.logo-tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-list {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.nav-list a.is-active::after,
.nav-list a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 99px;
  background: var(--lime);
}

.nav-mobile-meta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  display: grid;
  place-items: center;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.icon-btn--cart {
  background: var(--void);
  color: var(--lime);
}

.count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--lime);
  color: var(--void);
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-rows: minmax(520px, calc(100vh - 168px)) auto;
  background: var(--void);
  color: #fff;
}

.hero-copy {
  padding: clamp(40px, 7vw, 96px) clamp(24px, 5vw, 72px) 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero-copy .kicker {
  color: var(--lime);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  max-width: 9ch;
}

.hero-lead {
  max-width: 38ch;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.hero-main,
.hero-inset {
  margin: 0;
  overflow: hidden;
}

.hero-main {
  position: absolute;
  inset: 0 0 48px 24px;
  border-radius: 0 0 0 80px;
}

.hero-main img,
.hero-inset img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero-inset {
  position: absolute;
  width: 38%;
  height: 42%;
  left: -8%;
  bottom: 72px;
  border-radius: 28px;
  border: 6px solid var(--void);
  z-index: 2;
}

.hero-float {
  position: absolute;
  right: 28px;
  bottom: 88px;
  z-index: 3;
  background: var(--paper);
  color: var(--ink);
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-width: 180px;
}

.hero-float span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 700;
}

.hero-float strong,
.hero-float em {
  display: block;
  font-style: normal;
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  background: var(--forest);
}

.hero-stats div {
  padding: 22px 20px;
  border-right: 1px solid rgba(212, 255, 61, 0.15);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--lime);
}

.hero-stats dd {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* Collections */
.collections {
  padding: 88px 0 40px;
}

.collection-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.collection-card {
  position: relative;
  display: block;
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  min-height: 340px;
  text-align: left;
}

.collection-card img,
.product-media img,
.about-hero img,
.about-side img,
.about-wide img,
.service-card img,
.lookbook-media img,
.contact-map img,
.gallery-main img,
.gallery-thumbs img,
.drawer-item img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.collection-card img {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.collection-card:hover img {
  transform: scale(1.06);
}

.collection-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 72px 18px 18px;
  background: linear-gradient(transparent, rgba(8, 17, 14, 0.86));
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.collection-meta small {
  color: var(--lime);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.collection-meta strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.collection-meta em {
  font-style: normal;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

/* Shop */
.shop {
  padding: 48px 0 96px;
}

.shop-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  align-items: end;
}

.shop-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.shop-tools {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-row button {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
}

.chip-row button.is-active {
  background: var(--void);
  color: var(--lime);
  border-color: var(--void);
}

.filter-selects {
  display: flex;
  gap: 10px;
}

.filter-selects label {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-selects select {
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(8, 17, 14, 0.05);
}

.product-card.is-hidden {
  display: none;
}

.product-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--stone);
  overflow: hidden;
}

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-media .img-b {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-card:hover .img-b {
  opacity: 1;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--lime);
  color: var(--void);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.quick-view {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  background: var(--void);
  color: #fff;
  padding: 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.product-card:hover .quick-view {
  opacity: 1;
  transform: none;
}

.product-card-copy {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px 16px;
}

.product-card-copy button {
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  padding: 0;
}

.product-card-copy small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-copy h3 {
  margin: 4px 0 6px;
  font-size: 1.05rem;
}

.product-card-copy p {
  margin: 0;
  font-weight: 700;
}

.product-card-copy s {
  margin-left: 8px;
  color: var(--muted);
  font-weight: 500;
}

.wish-mini {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.wish-mini.is-on {
  background: var(--void);
  color: var(--lime);
  border-color: var(--void);
}

.shop-empty {
  text-align: center;
  color: var(--muted);
  padding: 32px 0;
}

/* Lookbook */
.lookbook {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  min-height: 520px;
  background: var(--ink);
  color: #fff;
}

.lookbook-media {
  min-height: 420px;
}

.lookbook-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.lookbook-panel {
  padding: clamp(36px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lookbook-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.lookbook-panel p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 24px;
  max-width: 36ch;
}

/* About bento */
.about {
  padding: 96px 0;
}

.about-bento {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.about-hero {
  grid-row: 1 / 3;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
}

.about-hero img,
.about-side img,
.about-wide img {
  width: 100%;
  height: 100%;
}

.about-copy {
  background: #fff;
  border-radius: 28px;
  padding: 28px 26px;
}

.about-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.about-copy p {
  color: var(--muted);
}

.about-stat {
  background: var(--void);
  color: #fff;
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-stat strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--lime);
}

.about-side,
.about-wide {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 180px;
}

.about-wide {
  grid-column: 2 / 4;
}

/* Services */
.service {
  padding: 0 0 96px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  min-height: 240px;
}

.service-card figure {
  margin: 0;
  min-height: 220px;
}

.service-card img {
  width: 100%;
  height: 100%;
}

.service-card div {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card span {
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 1.4rem;
}

.service-card h3 {
  margin: 6px 0 10px;
}

.service-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.service-card em {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--forest);
}

/* Contact */
.contact {
  background: var(--void);
  color: #fff;
  padding: 96px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.contact-info h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.65);
}

.contact-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.contact-list span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 4px;
}

.contact-form {
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px;
  padding: 28px;
}

.contact-form h3 {
  margin: 0 0 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label,
.checkout-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 12px;
  background: #fff;
  color: var(--ink);
}

.contact-map {
  grid-column: 1 / -1;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
}

.contact-map img {
  width: 100%;
  height: 320px;
}

.contact-map figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--lime);
  color: var(--void);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.form-status {
  min-height: 1.2em;
  font-size: 14px;
}

/* Footer */
.site-footer {
  background: #06100c;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo .logo-mark {
  color: var(--lime);
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 36ch;
}

.news-form {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.news-form input {
  flex: 1;
  background: #10201a;
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-col h4 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-display);
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a:hover {
  color: var(--lime);
}

/* Drawers / modal */
[hidden] {
  display: none !important;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 17, 14, 0.55);
  z-index: 60;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--paper);
  z-index: 70;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-head h3 {
  margin: 0;
}

.drawer input[type="search"] {
  margin: 12px 0;
}

.drawer-list {
  flex: 1;
  overflow: auto;
}

.drawer-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.drawer-item img {
  width: 72px;
  height: 90px;
  border-radius: 10px;
}

.drawer-item h4 {
  margin: 0 0 4px;
  font-size: 15px;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.cart-foot {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cart-note {
  font-size: 13px;
  color: var(--muted);
}

.empty-note {
  color: var(--muted);
}

.product-modal,
.checkout {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.product-shell,
.checkout-card {
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border-radius: 28px;
  position: relative;
}

.product-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--void);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
}

.product-gallery {
  background: var(--stone);
  padding: 20px;
}

.gallery-main {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  cursor: crosshair;
}

.gallery-main img {
  width: 100%;
  height: 100%;
}

.zoom-lens {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid #fff;
  pointer-events: none;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.gallery-thumbs button {
  width: 64px;
  height: 80px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
}

.gallery-thumbs button.is-active {
  border-color: var(--void);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
}

.zoom-hint {
  font-size: 12px;
  color: var(--muted);
}

.product-info {
  padding: 36px 32px 32px;
}

.sku {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.product-info h2 {
  margin: 0 0 10px;
}

.price-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 14px;
}

.price-row strong {
  font-size: 1.4rem;
}

.price-row s {
  color: var(--muted);
}

.option-block {
  margin: 16px 0;
}

.option-block span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.swatches {
  display: flex;
  gap: 8px;
}

.swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  outline: 1px solid var(--line);
  cursor: pointer;
}

.swatch.is-on {
  outline: 2px solid var(--void);
}

.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-pills button {
  min-width: 44px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.size-pills button.is-on {
  background: var(--void);
  color: var(--lime);
  border-color: var(--void);
}

.product-actions {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.product-meta {
  display: grid;
  gap: 8px;
  margin: 0;
}

.product-meta dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.product-meta dd {
  margin: 0;
}

.checkout-card {
  width: min(560px, 100%);
  padding: 36px 28px 28px;
}

.checkout-summary {
  background: var(--cream);
  border-radius: 14px;
  padding: 14px;
  margin: 12px 0 18px;
  display: grid;
  gap: 6px;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: var(--void);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  transition: 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.entry-content a {
  color: var(--forest);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 980px) {
  .hero,
  .lookbook,
  .product-shell,
  .footer-top,
  .contact-layout,
  .service-card {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-rows: auto minmax(420px, 62vh) auto;
  }

  .hero-copy {
    grid-row: 1;
  }

  .hero-media {
    grid-row: 2;
    min-height: 420px;
  }

  .hero-stats {
    grid-row: 3;
  }

  .hero-main {
    inset: 0;
    border-radius: 0;
  }

  .hero-inset {
    left: 16px;
    bottom: 88px;
    width: 34%;
    height: 38%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-row,
  .product-grid,
  .service-grid,
  .about-bento {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero,
  .about-wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .about-hero {
    min-height: 320px;
  }

  .shop-tools {
    align-items: flex-start;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    inset: calc(var(--header-h) + 34px) 0 0 0;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 28px 24px;
    z-index: 45;
  }

  .primary-nav.is-open {
    transform: none;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav-mobile-meta {
    display: grid;
    gap: 8px;
    margin-top: 28px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .primary-nav {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .collection-row,
  .product-grid,
  .service-grid,
  .about-bento,
  .form-row,
  .footer-cols,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-float {
    right: 12px;
    bottom: 72px;
  }

  .hero-inset {
    display: none;
  }

  .product-actions {
    flex-direction: column;
  }

  .footer-bar {
    flex-direction: column;
  }

  .quick-view {
    opacity: 1;
    transform: none;
  }
}
