:root {
  --white: #ffffff;
  --light: #f6f7f9;
  --light-2: #eef1f5;
  --charcoal: #1e1e22;
  --charcoal-2: #2a2b31;
  --red: #c1121f;
  --red-dark: #9f0f19;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft-line: rgba(17, 24, 39, 0.1);
  --shadow: 0 20px 55px rgba(17, 24, 39, 0.08);
  --shadow-strong: 0 28px 70px rgba(17, 24, 39, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  font-family: Inter, Manrope, "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  text-rendering: geometricPrecision;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.announcement-strip {
  position: relative;
  z-index: 15;
  overflow: hidden;
  min-height: 44px;
  color: #c7c9cc;
  background: #111114;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.announcement-strip::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--red);
}

.announcement-strip span {
  display: inline-block;
  min-width: 100%;
  padding: 10px 0;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 82px;
  padding: 14px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.82);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 185px;
}

.brand-logo {
  width: 178px;
  height: auto;
  max-height: 54px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-nav a,
.admin-tab {
  min-height: 42px;
  padding: 10px 13px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.admin-tab:hover,
.admin-tab.active {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.cart-button,
.admin-link,
.icon-button {
  min-height: 44px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  border-radius: 0;
}

.cart-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  width: 56px;
  padding: 0;
  color: var(--text);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.cart-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
}

.cart-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  display: grid;
  place-items: center;
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
  border: 2px solid var(--white);
  box-shadow: 0 10px 22px rgba(193, 18, 31, 0.18);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.admin-link {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
}

.admin-session-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-storage-notice {
  max-width: 260px;
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 800;
}

.login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #0f1115;
}

.admin-login-shell {
  width: min(92vw, 480px);
}

.admin-login-form {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.admin-login-form .brand-logo {
  width: 190px;
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.admin-login-form h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 7vw, 4rem);
}

body:not(.admin-body) .admin-link,
body:not(.admin-body) .site-footer a[href="/admin"] {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  z-index: 1;
  opacity: 1;
  filter: saturate(1.06) contrast(1.04) brightness(0.82);
}

.hero-fallback {
  z-index: 0;
  opacity: 0.72;
  filter: saturate(0.9) contrast(1.02) brightness(0.72);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 10, 16, 0.82) 0%, rgba(7, 10, 16, 0.62) 44%, rgba(7, 10, 16, 0.26) 100%),
    linear-gradient(180deg, rgba(7, 10, 16, 0.62) 0%, rgba(7, 10, 16, 0.18) 46%, rgba(7, 10, 16, 0.72) 100%);
}

.hero-noise {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  padding: clamp(64px, 9vh, 118px) clamp(24px, 7vw, 96px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 900px;
  font-size: clamp(46px, 6.6vw, 88px);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1.06;
}

h2 {
  max-width: 860px;
  font-size: clamp(34px, 4.2vw, 60px);
}

h3 {
  font-size: 22px;
}

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

.hero-content p:not(.eyebrow),
.section-heading p,
.split-copy p,
.contact-section p,
.page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.hero-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  max-width: 610px;
  margin-top: 20px;
  font-size: clamp(18px, 1.7vw, 21px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(193, 18, 31, 0.18);
}

.button-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07);
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  color: var(--red);
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 12px 26px rgba(7, 10, 16, 0.2);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip div {
  min-height: 112px;
  padding: 26px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--text);
  font-size: 25px;
  line-height: 1.1;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: clamp(82px, 10vw, 138px) clamp(22px, 5vw, 76px);
  background: var(--white);
}

.collections-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f7f9 54%, #ffffff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.collections-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(193, 18, 31, 0.08), transparent 28%, transparent 72%, rgba(17, 24, 39, 0.04));
}

.collections-section > * {
  position: relative;
  z-index: 2;
}

.section-video-bg,
.section-video-overlay {
  position: absolute;
  inset: 0;
}

.section-video-bg {
  z-index: 0;
  overflow: hidden;
}

.section-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.02) brightness(1.12);
}

.section-video-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 10, 16, 0.34), rgba(7, 10, 16, 0.16) 42%, rgba(7, 10, 16, 0.42)),
    linear-gradient(90deg, rgba(7, 10, 16, 0.44), rgba(7, 10, 16, 0.08), rgba(7, 10, 16, 0.38));
}

.collections-section .section-heading {
  max-width: 920px;
}

.collections-section .collections-grid {
  margin-top: 42px;
}

.collections-section .collection-card {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
}

.collections-section .collection-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.collections-section .collection-card:hover::after {
  transform: scaleX(1);
}

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.process-section > *:not(.process-image-bg):not(.process-image-overlay) {
  position: relative;
  z-index: 2;
}

.process-image-bg,
.process-image-overlay {
  position: absolute;
  inset: 0;
}

.process-image-bg {
  z-index: 0;
  background-image: url("assets/manufacturing/stitching-hall-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
  filter: saturate(1.03) contrast(1.02) brightness(1.03);
}

.process-image-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.42) 48%, rgba(255, 255, 255, 0.68)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.68));
}

.process-section .section-heading {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

.process-section .process-grid article {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.12);
}

.soft-section,
.band {
  background: var(--light);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.elite-section,
.featured-section,
.gallery-preview-section {
  position: relative;
  overflow: hidden;
}

.elite-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f7f9 46%, #ffffff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.elite-section::before,
.featured-section::before,
.gallery-preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(193, 18, 31, 0.07), transparent 24%, transparent 76%, rgba(17, 24, 39, 0.04));
}

.elite-section > *,
.featured-section > *,
.gallery-preview-section > * {
  position: relative;
  z-index: 1;
}

.featured-section {
  background: var(--white);
}

.gallery-preview-section {
  background: var(--light);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-with-action {
  display: flex;
  max-width: none;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.page-hero,
.legal-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(86px, 10vw, 132px) clamp(22px, 5vw, 72px) clamp(54px, 7vw, 82px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.page-hero h1,
.legal-page h1 {
  max-width: 880px;
  color: var(--text);
  font-size: clamp(42px, 6.4vw, 76px);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  max-width: 1360px;
}

.about-showcase {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.about-showcase img {
  width: 100%;
  height: clamp(280px, 32vw, 430px);
  object-fit: cover;
  object-position: center;
}

.about-overview {
  background: var(--light);
}

.legal-page h2 {
  margin-top: 34px;
  color: var(--text);
}

.feature-grid,
.category-grid,
.blog-grid,
.metric-grid,
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.category-card,
.blog-card,
.collection-card,
.metric,
.panel-form,
.admin-list,
.admin-table,
details,
.contact-cards a,
.contact-cards div {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card,
.category-card,
.blog-card,
.metric {
  padding: 28px;
  border-radius: var(--radius);
}

.feature-card,
.product-card,
.slider-card,
.collection-card,
.showcase-card,
.gallery-item {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.product-card:hover,
.slider-card:hover,
.collection-card:hover,
.showcase-card:hover,
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 18, 31, 0.32);
  box-shadow: var(--shadow-strong);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

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

.collection-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
}

.collection-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  background: var(--light);
  transition: transform 240ms ease;
}

.collection-card:hover img {
  transform: scale(1.04);
}

.collection-card span {
  display: block;
  padding: 20px;
  color: var(--text);
  font-size: 21px;
  font-weight: 900;
}

.elite-slider {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 420px);
  gap: 22px;
  overflow-x: auto;
  padding: 6px 2px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.elite-slide {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.1);
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.elite-slide img {
  width: 100%;
  height: 310px;
  min-height: 0;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #f8fafc, #eef1f5);
  opacity: 1;
  transition: transform 360ms ease;
}

.elite-slide:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 18, 31, 0.28);
  box-shadow: var(--shadow-strong);
}

.elite-slide:hover img {
  transform: scale(1.025);
}

.elite-slide div {
  position: static;
  padding: 18px 22px 24px;
  color: var(--text);
  border-top: 1px solid var(--line);
}

.elite-slide span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.elite-slide h3 {
  margin-top: 8px;
  color: var(--text);
  font-size: 24px;
  text-shadow: none;
}

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

.process-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.process-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.horizontal-slider,
.showcase-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 22px;
  overflow-x: auto;
  padding: 6px 2px 24px;
  scroll-snap-type: x proximity;
}

.slider-card,
.showcase-card {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.slider-card img,
.showcase-card img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  padding: 14px;
  background: linear-gradient(180deg, #f8fafc, #eef1f5);
}

.slider-card {
  position: relative;
  padding-bottom: 24px;
}

.slider-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.slider-card:hover::after {
  transform: scaleX(1);
}

.slider-card span,
.slider-card h3,
.slider-card p,
.slider-card a {
  margin-inline: 20px;
}

.slider-card span,
.showcase-card span,
.product-body > span,
.blog-card span {
  display: block;
  margin-top: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.slider-card h3 {
  margin-top: 6px;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 21px;
}

.slider-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red);
  font-weight: 900;
}

.showcase-card div {
  padding: 0 20px 22px;
}

.showcase-card strong {
  display: block;
  margin-top: 7px;
  color: var(--text);
  font-size: 20px;
}

.home-gallery,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.gallery-item,
.home-gallery figure {
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.07);
  overflow: hidden;
}

.gallery-item img,
.home-gallery img {
  width: 100%;
  height: 300px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 247, 249, 0.94)),
    var(--light);
  transition: transform 220ms ease;
}

.gallery-item:hover img,
.home-gallery figure:hover img {
  transform: scale(1.025);
}

.category-art {
  position: relative;
  height: 190px;
  margin: -28px -28px 24px;
  overflow: hidden;
  background: var(--light);
  border-radius: var(--radius) var(--radius) 0 0;
}

.category-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.category-card:hover .category-art img {
  transform: scale(1.05);
}

.category-art::after,
.product-visual::after {
  display: none;
}

.category-art span {
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.category-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red);
  font-weight: 900;
}

.category-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 10px;
}

.category-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: var(--light);
}

.split,
.contact-section,
.admin-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.quote-band {
  background: var(--light);
}

.split-copy {
  position: sticky;
  top: 112px;
}

.check-list,
.process-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li,
.process-list li {
  padding: 14px 16px;
  border-left: 3px solid var(--red);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.process-list span {
  color: var(--muted);
}

.video-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-panel video {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--charcoal);
}

.video-panel p {
  padding: 16px 18px;
}

.panel-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius);
}

.panel-form.compact {
  max-width: 900px;
  margin: 0 auto;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background: var(--white);
  padding: 11px 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(193, 18, 31, 0.08);
}

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

.form-note {
  min-height: 24px;
  color: var(--muted);
}

.form-note a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
}

.shop-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter {
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.filter.active,
.filter:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

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

.product-card {
  display: grid;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 260px;
  overflow: hidden;
  background: var(--product-image) center / cover no-repeat, var(--light);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(17,24,39,0.12));
}

.product-visual span {
  opacity: 0;
}

.product-visual small {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  padding: 6px 9px;
  color: var(--white);
  background: rgba(30, 30, 34, 0.78);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.product-body p {
  color: var(--muted);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

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

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

.product-actions a,
.product-actions button {
  justify-content: center;
}

.product-detail-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.96fr) minmax(300px, 1.04fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: var(--light);
}

.detail-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.detail-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.detail-copy {
  padding: clamp(20px, 3vw, 34px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  color: var(--text);
  font-size: clamp(38px, 5vw, 66px);
}

.detail-copy > p {
  margin-top: 18px;
}

.detail-meta {
  margin: 24px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--light);
}

.blog-card {
  min-height: 230px;
}

.blog-card > img {
  width: 100%;
  height: 170px;
  margin-bottom: 18px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

summary {
  min-height: 62px;
  padding: 19px 22px;
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

details p {
  padding: 0 22px 22px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a,
.contact-cards div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: var(--radius-sm);
}

.contact-cards strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.map-sign {
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--red);
  fill: currentColor;
  stroke: var(--white);
  stroke-width: 1.7;
  vertical-align: -3px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: flex-end;
  background: rgba(17, 24, 39, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  width: min(520px, 100%);
  height: 100%;
  overflow: auto;
  padding: 24px;
  background: var(--white);
  border-left: 1px solid var(--line);
}

.cart-head,
.cart-total,
.list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-head .icon-button {
  width: 42px;
  font-size: 24px;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--light);
}

.qty-control {
  display: grid;
  grid-template-columns: 32px 30px 32px;
  align-items: center;
  text-align: center;
}

.qty-control button {
  height: 32px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--white);
}

.cart-total {
  margin: 18px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.payment-box,
.empty-state {
  padding: 14px;
  color: var(--muted);
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  background: #25d366;
  border-radius: 999px;
  border: 4px solid var(--white);
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.18);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: var(--white);
}

.site-footer {
  display: block;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #030303;
  color: rgba(255, 255, 255, 0.74);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.18fr) repeat(3, minmax(170px, 0.8fr));
  gap: clamp(30px, 5vw, 76px);
  padding: clamp(58px, 7vw, 92px) clamp(24px, 5vw, 76px);
}

.footer-brand-block {
  max-width: 390px;
}

.footer-brand {
  display: inline-flex;
  width: min(272px, 100%);
  margin-bottom: 22px;
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #000;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

.footer-brand-block p {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.8;
}

.footer-column h2 {
  margin: 0 0 26px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-contact a,
.footer-contact p {
  display: grid;
  gap: 5px;
}

.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.5;
}

.footer-contact .map-sign {
  width: 15px;
  height: 15px;
  stroke: #030303;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(24px, 5vw, 76px);
  background: #202020;
  color: var(--white);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a,
.footer-bottom span {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.admin-body {
  background:
    radial-gradient(circle at 0 0, rgba(193, 18, 31, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f7f9 42%, #eef1f5 100%);
  color: var(--text);
}

.admin-header {
  position: sticky;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
}

.admin-brand {
  gap: 14px;
  min-width: 260px;
}

.admin-brand .brand-logo {
  width: 188px;
  max-height: 52px;
}

.admin-brand-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-tabs {
  flex-wrap: wrap;
}

.admin-main {
  padding: clamp(28px, 5vw, 64px);
  color: var(--text);
}

.admin-section {
  display: none;
}

.admin-section.active {
  display: block;
}

.admin-section .section-heading {
  color: var(--text);
}

.admin-section .section-heading h1,
.admin-section .section-heading h2,
.admin-section .section-heading p {
  color: var(--text);
}

#dashboard .section-heading {
  position: relative;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(17, 24, 39, 0.94), rgba(30, 30, 34, 0.88)),
    url("assets/about/eurovia-lifestyle-showcase.jpeg") center/cover;
  box-shadow: var(--shadow-strong);
}

#dashboard .section-heading h1,
#dashboard .section-heading p,
#dashboard .section-heading .eyebrow {
  color: #ffffff;
}

#dashboard .section-heading > * {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.admin-body .panel-form,
.admin-body .admin-list,
.admin-body .admin-table,
.admin-body .metric {
  border-color: rgba(229, 231, 235, 0.92);
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.admin-body .panel-form h2,
.admin-body .panel-form h3,
.admin-body .admin-list h2,
.admin-body .admin-table h2,
.admin-body label,
.admin-body strong,
.admin-body .image-gallery-tools strong {
  color: var(--text);
}

.admin-body input,
.admin-body select,
.admin-body textarea {
  border-color: #cbd5e1;
  color: var(--text);
  background: #ffffff;
}

.admin-body input::placeholder,
.admin-body textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

.admin-body input[type="file"] {
  padding: 9px 12px;
}

.admin-body .field-help {
  display: block;
  margin-top: -2px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.admin-body .form-note,
.admin-body .admin-row span,
.admin-body .admin-record span,
.admin-body .admin-record small,
.admin-body .admin-record p,
.admin-body .blog-draft,
.admin-body .empty-state {
  color: #4b5563;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.metric span,
.metric strong {
  display: block;
}

.metric strong {
  margin-top: 8px;
  font-size: 34px;
}

.admin-list,
.admin-table {
  padding: 22px;
  border-radius: var(--radius);
}

.admin-row,
.admin-record,
.blog-draft {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f8fafc;
}

.admin-record p,
.blog-draft p {
  margin: 6px 0 0;
}

.admin-row:last-child,
.admin-record:last-child,
.blog-draft:last-child {
  margin-bottom: 0;
}

.row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.row-actions button,
.blog-draft button,
.image-gallery-tools button {
  min-height: 36px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  padding: 7px 12px;
  border-radius: 8px;
  font-weight: 800;
}

.blog-draft {
  align-items: flex-start;
}

.blog-draft img {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.admin-record select {
  min-width: 150px;
}

.admin-image-preview {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--light);
  border-radius: var(--radius-sm);
  color: var(--text);
}

.admin-image-preview img {
  width: 96px;
  aspect-ratio: 1;
  object-fit: cover;
}

.image-gallery-tools {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.admin-image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 12px;
  max-height: 390px;
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  background: #f8fafc;
  border-radius: var(--radius-sm);
}

.admin-image-choice {
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.admin-image-choice:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(17, 24, 39, 0.12);
}

.admin-image-choice img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-image-choice.active {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(193, 18, 31, 0.16);
}

.assistant-form .admin-image-preview img {
  border-radius: 12px;
}

.assistant-photo-grid,
.assistant-preview-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 12px;
}

.assistant-photo-grid {
  min-height: 120px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f8fafc;
}

.assistant-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.assistant-photo-grid img,
.assistant-preview-images img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.assistant-photo-grid figcaption {
  padding: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.assistant-generated-fields {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.assistant-generated-fields h3 {
  margin: 0;
}

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

.assistant-guide .admin-record {
  align-items: flex-start;
}

.assistant-preview {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
}

.assistant-preview img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.assistant-preview-images img {
  max-height: none;
}

.assistant-preview strong {
  color: var(--text);
}

.assistant-preview p {
  margin: 0;
  color: var(--muted);
}

.assistant-preview span,
.assistant-preview small {
  color: var(--muted);
  font-weight: 800;
}

.assistant-preview hr {
  width: 100%;
  height: 1px;
  margin: 4px 0;
  border: 0;
  background: var(--line);
}

.assistant-drafts {
  display: grid;
  gap: 10px;
}

.assistant-draft-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f8fafc;
}

.assistant-draft-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

.assistant-draft-card strong,
.assistant-draft-card span,
.assistant-draft-card small {
  display: block;
}

.assistant-draft-card span,
.assistant-draft-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

@media (max-width: 1100px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

  .collections-grid,
  .product-grid,
  .feature-grid,
  .category-grid,
  .blog-grid,
  .gallery-grid,
  .home-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip,
  .metric-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .contact-section,
  .admin-two-col,
  .product-detail-section,
  .about-hero {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 148px;
    max-height: 46px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    align-items: stretch;
    gap: 6px;
  }

  .site-nav.active,
  .admin-tabs {
    display: flex;
  }

  .site-nav a,
  .admin-tab {
    flex: 1 1 130px;
    text-align: center;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .admin-link {
    display: none;
  }

  .assistant-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100vh - 72px);
    display: grid;
    background: var(--charcoal);
  }

  .hero-media {
    position: absolute;
    inset: 0;
    height: auto;
    min-height: 100%;
  }

  .hero-content {
    padding: 76px 20px 72px;
  }

  h1,
  .hero h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .section,
  .page-hero,
  .legal-page {
    padding: 58px 18px;
  }

  .trust-strip,
  .product-grid,
  .feature-grid,
  .category-grid,
  .blog-grid,
  .collections-grid,
  .gallery-grid,
  .home-gallery,
  .metric-grid,
  .form-grid,
  .selectors,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .shop-heading,
  .section-with-action,
  .admin-row,
  .admin-record,
  .blog-draft {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 52px 18px;
  }

  .footer-brand {
    width: min(244px, 100%);
  }

  .footer-column h2 {
    margin-bottom: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 18px;
  }

  .filters {
    justify-content: flex-start;
  }

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

  .product-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .admin-main {
    padding: 22px 14px 36px;
  }

  .admin-tabs {
    gap: 8px;
  }

  .admin-body .admin-record select,
  .admin-body .row-actions button,
  .admin-body .blog-draft button {
    width: 100%;
  }

  .cart-panel {
    padding: 16px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 430px) {
  h1,
  .hero h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .cart-button {
    width: 52px;
    min-height: 42px;
  }
}
