/* ══════════════════════════════════════════════════════════════════════════════
   Mister Cake — Stylesheet
   Inspired by the clean card-and-nav layout of sushi-master.ua
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────────────────────────────────── */
:root {
  --red:        #e8302a;
  --red-dark:   #c4251f;
  --black:      #111111;
  --text:       #1a1a1a;
  --muted:      #6b6b6b;
  --border:     #e8e8e8;
  --bg:         #f5f5f5;
  --white:      #ffffff;
  --wa-green:   #25D366;
  --wa-dark:    #1aad54;
  --tg-blue:    #0088cc;
  --tg-dark:    #006baa;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow-sm:  0 2px 8px rgba(0, 0, 0, .07);
  --shadow-md:  0 6px 24px rgba(0, 0, 0, .13);
  --transition: 200ms ease;
  --font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --max-w:      1280px;
}

/* ── RESET ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

/* ══════════════════════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Phone */
.header-phone {
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-phone a {
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.header-phone a:hover { color: var(--red); }

/* Logo */
.header-logo {
  flex: 1;
  text-align: center;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text);
  white-space: nowrap;
}
.header-logo span { color: var(--red); }
.header-logo:hover { opacity: .85; }

/* Header contact buttons */
.header-contacts {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.header-btn:active { transform: scale(.97); }
.header-btn.wa { background: var(--wa-green); }
.header-btn.wa:hover { background: var(--wa-dark); }
.header-btn.tg { background: var(--tg-blue); }
.header-btn.tg:hover { background: var(--tg-dark); }
.header-btn .icon { font-size: 15px; line-height: 1; }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  margin-left: 6px;
}

.lang-btn {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  border-radius: 4px;
  letter-spacing: 0.03em;
  transition: color var(--transition), background var(--transition);
  background: none;
}
.lang-btn:hover { color: var(--text); background: var(--bg); }
.lang-btn.active {
  color: var(--white);
  background: var(--red);
}

/* ══════════════════════════════════════════════════════════════════════════════
   CATEGORY NAV
   ══════════════════════════════════════════════════════════════════════════════ */
.cat-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: sticky;
  top: 66px;          /* height of .site-header */
  z-index: 190;       /* just below the header (200) */
  box-shadow: var(--shadow-sm);
}
.cat-nav::-webkit-scrollbar { display: none; }

.cat-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
}

.cat-btn {
  flex-shrink: 0;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
  background: none;
}
.cat-btn:hover { color: var(--text); }
.cat-btn.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Page-link items in nav (About Us, Reviews) — no active underline */
.cat-page-link {
  margin-left: auto;  /* push to the right */
  color: var(--muted);
}
.cat-page-link:first-of-type { margin-left: auto; }
.cat-page-link + .cat-page-link { margin-left: 0; }
.cat-page-link:hover { color: var(--text); border-bottom-color: transparent; }

/* ══════════════════════════════════════════════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #111;
  user-select: none;
}

/* Individual slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
}

/* Shared overlay + content (reused across slides) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.60) 0%,
    rgba(0,0,0,.28) 55%,
    rgba(0,0,0,.08) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 10%;
  color: var(--white);
}

.hero-content h1 {
  font-size: clamp(26px, 4.2vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  max-width: 580px;
}
.hero-content h1 em {
  font-style: normal;
  color: #ffd54f;
}

.hero-content p {
  margin-top: 14px;
  font-size: clamp(14px, 1.7vw, 18px);
  opacity: .92;
  max-width: 460px;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
  line-height: 1.55;
}

.hero-pill {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 999px;
  letter-spacing: .3px;
  box-shadow: 0 4px 16px rgba(232,48,42,.45);
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background var(--transition), transform var(--transition);
}
.hero-pill:hover  { background: var(--red-dark); transform: translateY(-1px); }
.hero-pill:active { transform: scale(.97); }

/* Prev / Next arrow buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.slider-btn:hover  { background: rgba(255,255,255,.28); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.dot.active {
  background: var(--white);
  transform: scale(1.4);
}

/* ══════════════════════════════════════════════════════════════════════════════
   CATEGORY BANNER  (persistent label above product grid)
   ══════════════════════════════════════════════════════════════════════════════ */
.cat-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.cat-banner-line {
  width: 5px;
  height: 32px;
  background: var(--red);
  border-radius: 3px;
  flex-shrink: 0;
}
.cat-banner-name {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text);
}

/* ══════════════════════════════════════════════════════════════════════════════
   SECTION WRAPPER
   ══════════════════════════════════════════════════════════════════════════════ */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 56px;
  scroll-margin-top: 130px;
}

.section-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════════════════════════════════════════
   PRODUCTS GRID
   ══════════════════════════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}

/* ══════════════════════════════════════════════════════════════════════════════
   PRODUCT CARD
   ══════════════════════════════════════════════════════════════════════════════ */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  border: 1px solid transparent;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border);
}

.product-card:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* Card image */
.card-img-wrap {
  position: relative;
  padding-top: 65%;       /* 3:2 aspect ratio */
  overflow: hidden;
  background: var(--bg);
  flex-shrink: 0;
}

.card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

/* Badge */
.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .6px;
  white-space: nowrap;
}
.card-badge.badge-new  { background: #2e7d32; }
.card-badge.badge-pick { background: #4a2c0a; }

/* Card body */
.card-body {
  padding: 14px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-weight {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 3px;
}

.card-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--text);
}

.card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 12px;
}

.card-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--red);
}

.card-old-price {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}

/* ══════════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, .65);
  margin-top: 40px;
  padding: 52px 24px 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-logo {
  font-size: 21px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.footer-logo span { color: var(--red); }

.footer-tagline {
  font-size: 13px;
  line-height: 1.65;
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-contact-item {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-item a {
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* ══════════════════════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════════════════════════════════════════ */
.product-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 32px;
  padding: 6px 0;
  transition: color var(--transition);
}
.back-link:hover { color: var(--red); }
.back-link .arrow { font-size: 18px; line-height: 1; }

/* Two-column layout */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

/* Product image */
.product-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.product-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.product-badge.badge-new  { background: #2e7d32; }
.product-badge.badge-pick { background: #4a2c0a; }

/* Product info */
.product-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.product-weight-tag {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}

.product-price {
  font-size: 34px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -1px;
}

.product-old-price {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
}

/* ── CONTACT / ORDER BUTTONS ───────────────────────────────────────────────── */
.order-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--muted);
  margin-bottom: 10px;
}

.order-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.btn-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .2px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.btn-order:active { transform: scale(.98); }

.btn-order svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  flex-shrink: 0;
}

.btn-order.wa { background: var(--wa-green); }
.btn-order.wa:hover {
  background: var(--wa-dark);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.btn-order.tg { background: var(--tg-blue); }
.btn-order.tg:hover {
  background: var(--tg-dark);
  box-shadow: 0 6px 20px rgba(0,136,204,.35);
}

/* ── PRODUCT DESCRIPTION ───────────────────────────────────────────────────── */
.product-description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* ── PRODUCT META ──────────────────────────────────────────────────────────── */
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.meta-row {
  display: flex;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.meta-label {
  font-weight: 700;
  color: var(--text);
  min-width: 100px;
  flex-shrink: 0;
}

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

/* ══════════════════════════════════════════════════════════════════════════════
   RELATED PRODUCTS
   ══════════════════════════════════════════════════════════════════════════════ */
.related-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

/* ══════════════════════════════════════════════════════════════════════════════
   EMPTY / ERROR STATE
   ══════════════════════════════════════════════════════════════════════════════ */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  color: var(--muted);
  font-size: 16px;
}

/* ══════════════════════════════════════════════════════════════════════════════
   REVIEWS SECTION
   ══════════════════════════════════════════════════════════════════════════════ */
.reviews-section {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-stars {
  color: #f5a623;
  font-size: 17px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.review-author strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.review-author span {
  font-size: 12px;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #111;
}
.about-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 100%);
}
.about-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 10%;
  color: var(--white);
}
.about-hero-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
}
.about-hero-content p {
  margin-top: 12px;
  font-size: 16px;
  opacity: .88;
  max-width: 420px;
}

/* About body sections */
.about-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.about-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 20px;
}
.about-body p strong { color: var(--text); }

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--red);
  text-align: center;
}
.value-icon { font-size: 36px; margin-bottom: 14px; }
.value-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}
.value-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 32px 0 0;
  counter-reset: steps;
}
.step-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.step-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  opacity: .2;
  line-height: 1;
  margin-bottom: 8px;
}
.step-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .header-phone { display: none; }
  .header-logo  { text-align: left; flex: 1; }
  .hero         { height: 260px; }
  .hero-content { padding: 0 6%; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 500px) {
  .header-inner    { padding: 0 14px; gap: 10px; }
  .header-btn span:not(.icon) { display: none; }
  .header-btn      { padding: 8px 12px; }
  .section         { padding: 24px 14px 40px; }
  .cat-btn         { padding: 12px 16px; font-size: 13px; }
  .products-grid   { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-page    { padding: 20px 14px 40px; }
  .related-section { padding: 0 14px 40px; }
}
