:root {
  --bg: oklch(98% 0.004 240);
  --surface: oklch(100% 0 0);
  --fg: oklch(20% 0.02 240);
  --muted: oklch(50% 0.018 240);
  --border: oklch(90% 0.006 240);
  --accent: oklch(56% 0.12 170);
  --font-display:
    "Söhne", "Avenir Next", -apple-system, BlinkMacSystemFont, system-ui,
    sans-serif;
  --font-body:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes btnPop {
  0% {
    transform: scale(0.85);
  }
  60% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes cartFly {
  0% {
    transform: scale(0.4) translateY(0);
    opacity: 1;
  }
  70% {
    transform: scale(0.9) translateY(-28px);
    opacity: 0.6;
  }
  100% {
    transform: scale(0.2) translateY(-48px);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .category-card,
  .product-card,
  .btn {
    animation: none !important;
    transition: none !important;
  }
  .add-feedback {
    display: none !important;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 17px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}

a {
  color: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav > a {
  color: var(--fg);
  text-decoration: none;
  font-size: 15px;
  padding: 8px 0;
  transition: color 0.15s;
}
.nav > a:hover {
  color: var(--accent);
}
.nav .cart {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}
.cart-icon {
  flex: 0 0 auto;
}
.nav .cart .count {
  background: var(--accent);
  color: white;
  font-size: 12px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--fg);
  display: block;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

.main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  gap: 60px;
}
.hero-content {
  max-width: 620px;
  animation: fadeUp 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero p {
  font-size: 22px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-visual {
  flex: 0 0 460px;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #f8f7f4, #f0ede8);
  animation: fadeUp 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition:
    transform 140ms cubic-bezier(0.23, 1, 0.32, 1),
    background 140ms ease,
    filter 140ms ease;
  cursor: pointer;
  border: none;
  will-change: transform;
  font-family: inherit;
}
.btn:active {
  transform: scale(0.96);
}
.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover {
  filter: brightness(0.95);
}
.btn-secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
  margin-left: 12px;
}
.btn-link {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  margin-top: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}
.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition:
    transform 180ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 180ms ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  will-change: transform;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}
.category-card:active {
  transform: translateY(-2px) scale(0.985);
}
.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.category-icon svg {
  width: 30px;
  height: 30px;
}
.category-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.category-card p {
  font-size: 15px;
  color: var(--muted);
}

.catalog-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  color: var(--fg);
}
.filter-btn:hover {
  border-color: var(--accent);
}
.filter-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 200ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 200ms ease;
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}
.product-card:active {
  transform: scale(0.985);
}
.product-img {
  height: 220px;
  display: block;
  background: linear-gradient(145deg, #f8f7f4, #f0ede8);
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-img-link {
  display: block;
  height: 100%;
}
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-name {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-cat {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.product-price {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 16px;
}
.product-info .btn {
  width: 100%;
  font-size: 14px;
  padding: 10px;
  margin-top: auto;
}

.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
  margin: 24px 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--accent);
}
.breadcrumbs span.sep {
  opacity: 0.5;
}
.breadcrumbs span.current {
  color: var(--fg);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 32px 0 80px;
}
.product-detail-img {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #f8f7f4, #f0ede8);
  height: 480px;
}
.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-detail-cat {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}
.product-detail h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.product-detail .price {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
}
.product-detail .desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 32px;
}

.related-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin: 40px 0 24px;
  letter-spacing: -0.02em;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 60px 0;
}
.about-text h2 {
  font-size: 36px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.about-text p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}
.about-visual {
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  background: linear-gradient(145deg, #f8f7f4, #f0ede8);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 80px;
}
.value-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.value-item .category-icon {
  margin-bottom: 16px;
}
.value-item h4 {
  margin-bottom: 8px;
  font-size: 18px;
}
.value-item p {
  font-size: 15px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 40px 0 80px;
}
.contact-info p {
  margin-bottom: 12px;
}
.contact-info strong {
  display: block;
  margin-bottom: 4px;
}
.contact-map {
  background: linear-gradient(145deg, #f8f7f4, #f0ede8);
  border-radius: 20px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.cart-list {
  margin-bottom: 32px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item .ci-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: #f0ede8;
  overflow: hidden;
  flex: 0 0 80px;
}
.cart-item .ci-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item .info {
  flex: 1;
  min-width: 0;
}
.cart-item .info .nm {
  font-weight: 500;
}
.cart-item .info .ct {
  font-size: 14px;
  color: var(--muted);
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  color: var(--fg);
  line-height: 1;
  font-family: inherit;
}
.qty-btn:hover {
  border-color: var(--accent);
}
.qty-val {
  width: 24px;
  text-align: center;
}
.cart-item .price {
  font-weight: 600;
  width: 110px;
  text-align: right;
}
.cart-remove {
  background: none;
  border: none;
  color: #c94d4d;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 4px 8px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 600;
  padding-top: 20px;
  border-top: 2px solid var(--border);
}
.cart-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
}
.cart-empty a {
  color: var(--accent);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--muted);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: var(--surface);
  color: var(--fg);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group .err {
  color: #c94d4d;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}
.form-group.invalid input,
.form-group.invalid textarea {
  border-color: #c94d4d;
}
.form-group.invalid .err {
  display: block;
}
.checkout-block {
  margin-top: 40px;
}

.success {
  text-align: center;
  padding: 60px 40px;
}
.success h3 {
  font-size: 28px;
  margin-bottom: 16px;
}
.success p {
  color: var(--muted);
}
.success .ok-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: var(--accent);
}

.policy {
  max-width: 820px;
  padding: 48px 0 80px;
}
.policy h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.policy h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  font-family: var(--font-display);
}
.policy p {
  margin-bottom: 14px;
  color: var(--fg);
}
.policy ul {
  margin: 0 0 16px 22px;
}
.policy li {
  margin-bottom: 8px;
}

.cta-band {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  margin: 60px 0 80px;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-band p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 28px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  animation: fadeUp 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.review-card .stars {
  margin-bottom: 14px;
}
.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--accent);
}
.stars svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 18px;
}
.review-author {
  font-size: 15px;
  color: var(--muted);
}
.review-author strong {
  color: var(--fg);
  font-weight: 600;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  animation: fadeUp 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #e8f0eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}
.step-icon svg {
  width: 28px;
  height: 28px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.step-card h4 {
  font-size: 17px;
  margin-bottom: 6px;
}
.step-card p {
  font-size: 14px;
  color: var(--muted);
}
.faq-list {
  max-width: 820px;
  margin-bottom: 80px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "\2212";
}
.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--fg);
}
.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 80px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #e8f0eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--accent);
}
.stat-icon svg {
  width: 24px;
  height: 24px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 15px;
  color: var(--muted);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.product-rating .stars svg {
  width: 18px;
  height: 18px;
}
.product-rating .rating-text {
  font-size: 14px;
  color: var(--muted);
}
.contact-map {
  position: relative;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
  display: block;
}

@media (max-width: 900px) {
  .steps-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  flex-shrink: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 32px 32px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-logo {
  font-size: 24px;
  margin-bottom: 8px;
}
.footer-tag {
  color: var(--muted);
  font-size: 15px;
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.footer-col a {
  color: var(--fg);
  text-decoration: none;
  font-size: 15px;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-col p {
  font-size: 15px;
  color: var(--muted);
}
.footer-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 880px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 250;
  display: none;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner.show {
  display: flex;
}
.cookie-text {
  font-size: 14px;
  color: var(--muted);
  flex: 1;
}
.cookie-text a {
  color: var(--accent);
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  margin: 0;
}

.page-head {
  padding-top: 48px;
}
.section-pad {
  padding: 40px 0 0;
}

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .product-detail,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    flex-direction: column;
    min-height: auto;
    padding: 48px 0;
  }
  .hero-visual {
    flex: none;
    width: 100%;
    height: 320px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: var(--surface);
    flex-direction: column;
    gap: 8px;
    padding: 80px 24px 24px;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    align-items: stretch;
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav > a {
    padding: 12px 0;
    font-size: 17px;
  }
  .nav-toggle {
    display: flex;
    z-index: 110;
  }
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
  }
  .cta-band {
    padding: 32px;
  }
}
@media (max-width: 600px) {
  .header,
  .main,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero p {
    font-size: 18px;
  }
  .product-detail h1 {
    font-size: 30px;
  }
  .cart-item {
    flex-wrap: wrap;
  }
}
