﻿:root {
  --bg: #f5f7f9;
  --surface: #ffffff;
  --text: #24313c;
  --muted: #66727c;
  --border: #dce3e8;
  --accent: #e7eef2;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

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

.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 800;
  letter-spacing: 1.4px;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
}

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

.hero {
  padding: 92px 0 70px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  max-width: 850px;
  margin: 0 0 24px;
}

.hero p {
  max-width: 690px;
  font-size: 20px;
  color: var(--muted);
}

.section {
  padding: 56px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: 34px;
  margin: 0 0 8px;
}

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

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}

.card-image {
  aspect-ratio: 3 / 2;
  background: #eef3f6;
  overflow: hidden;
}

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

.card-body {
  padding: 22px;
}

.card-kicker {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

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

.breadcrumbs {
  padding-top: 34px;
  font-size: 14px;
  color: var(--muted);
}

.product-hero {
  padding: 44px 0 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}

.product-copy h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  margin: 10px 0 20px;
}

.product-copy p {
  color: var(--muted);
  font-size: 19px;
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.badge {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  padding: 8px 13px;
  font-weight: 700;
  font-size: 14px;
}

.gallery {
  display: grid;
  gap: 18px;
}

.gallery img {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
}

.content-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 24px;
}

.content-box h2 {
  margin-top: 0;
}

.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item strong {
  display: block;
  margin-bottom: 7px;
}

.site-footer {
  margin-top: 70px;
  padding: 42px 0;
  border-top: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    gap: 14px;
    flex-wrap: wrap;
  }

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

  .hero {
    padding-top: 58px;
  }
}

.product-cover {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.product-cover img {
  width: 100%;
  display: block;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  padding-bottom: 18px;
}

.product-gallery img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
}

@media (max-width: 900px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }
}

/* Storefront Polish V1 */

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

.hero h1 {
  max-width: 820px;
}

.product-copy h1 {
  font-size: clamp(36px, 4.4vw, 50px);
}

.product-gallery {
  margin-top: 8px;
}

.product-gallery img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.product-info-stack {
  max-width: 980px;
}

.content-box {
  padding: 28px 30px;
}

.product-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.product-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--text);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
}

.product-cta-note {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 620px) {
  .hero {
    padding: 46px 0 38px;
  }

  .product-copy h1 {
    font-size: 38px;
  }

  .content-box {
    padding: 22px;
  }
}

.content-box {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}


/* Legal & Trust Pages */

.legal-container {
  max-width: 900px;
}

.legal-header {
  margin-bottom: 42px;
}

.legal-header h1 {
  margin: 0 0 10px;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.05;
}

.legal-updated {
  color: var(--muted);
  font-size: 14px;
}

.legal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 38px 42px;
}

.legal-content h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 25px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 26px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 17px;
}

.legal-content ul {
  padding-left: 24px;
}

.legal-content a {
  text-decoration: underline;
}

@media (max-width: 620px) {
  .legal-content {
    padding: 25px 22px;
  }
}


.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-brand strong {
  color: var(--text);
}

.footer-brand span {
  max-width: 420px;
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

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

@media (max-width: 760px) {
  .footer-inner {
    flex-direction: column;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}


/* Visual Polish V1 */

body {
  background:
    radial-gradient(
      circle at 80% 5%,
      rgba(216, 228, 237, .55),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #f7f9fb 0%,
      #f4f6f8 100%
    );
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(221, 231, 238, .7);
  right: -120px;
  top: -180px;
  filter: blur(2px);
  z-index: -1;
}

.hero h1 {
  letter-spacing: -1.8px;
}

.studio-highlights {
  padding: 10px 0 42px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.highlight-card {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(210,220,228,.9);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(10px);
}

.highlight-number {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin-bottom: 28px;
}

.highlight-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

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

.card {
  border-color: rgba(210,220,228,.95);
  box-shadow: 0 8px 24px rgba(29,45,55,.04);
}

.card-body {
  padding: 24px;
}

.card-image {
  background:
    linear-gradient(
      145deg,
      #eef3f6,
      #f7f9fb
    );
}

.site-header {
  backdrop-filter: blur(14px);
}

.site-footer {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f4f7f9 100%
    );
}

@media (max-width: 900px) {
  .highlight-grid {
    grid-template-columns: 1fr;
  }
}


/* Mobile Polish V1 */

@media (max-width: 620px) {

  .site-header {
    padding: 0;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .logo {
    font-size: 20px;
  }

  .nav {
    width: 100%;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
  }

  .nav a {
    font-size: 15px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.03;
    letter-spacing: -1.2px;
  }

  .hero p {
    font-size: 20px;
    line-height: 1.45;
  }

  .breadcrumbs {
    font-size: 14px;
    line-height: 1.5;
    padding-top: 28px;
    padding-bottom: 22px;
  }

  .product-hero {
    gap: 32px;
  }

  .product-copy h1 {
    font-size: 42px;
    line-height: 1.05;
  }

  .product-copy p {
    font-size: 18px;
  }

  .badges {
    gap: 9px;
  }

  .badge {
    padding: 9px 14px;
    font-size: 14px;
  }

  .product-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .product-cta-button {
    min-height: 46px;
    padding: 11px 18px;
  }

  .product-cta-note {
    font-size: 14px;
  }

  .highlight-card {
    padding: 24px;
  }

  .highlight-card h3 {
    font-size: 20px;
  }

  .card-body {
    padding: 20px;
  }

  .card-body h3 {
    font-size: 24px;
  }

  .footer-inner {
    gap: 24px;
  }

  .footer-nav {
    gap: 12px 16px;
  }
}


@media (max-width: 620px) {
  .category-header {
    padding-top: 18px;
  }

  .category-header h1 {
    margin-top: 0;
  }

  .category-page .section {
    padding-top: 20px;
  }
}


@media (max-width: 620px) {

  .breadcrumbs + .section {
    padding-top: 16px;
  }

  .section-heading {
    margin-top: 0;
    margin-bottom: 28px;
  }

  .section-heading h1 {
    margin-top: 0;
  }

}


@media (max-width: 620px) {

  .product-copy h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .product-copy p {
    font-size: 17px;
    line-height: 1.55;
  }

  .breadcrumbs {
    padding-top: 22px;
    padding-bottom: 16px;
  }

  .product-hero {
    padding-top: 8px;
  }

}

