/* ============================================================
   ALOEMAXX - Global Styles
   Brand color: #a0262f  |  Fonts: Archivo Black, Montserrat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Montserrat:wght@400;700&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  color: #1b1b1b;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Archivo Black', Arial, sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
}

p { line-height: 1.7; }

/* Layout */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Archivo Black', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: #a0262f;
  color: #fff;
}

.btn-primary:hover { background: #871e26; }

.btn-outline {
  background: transparent;
  color: #a0262f;
  border: 2px solid #a0262f;
}

.btn-outline:hover {
  background: #a0262f;
  color: #fff;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  width: auto;
  height: 60px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 6px 10px;
  color: #1b1b1b;
  font-family: 'Archivo Black', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #a0262f;
}

.nav-cart a {
  padding: 8px 16px;
  border: 2px solid #a0262f;
  border-radius: 4px;
  color: #a0262f;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.nav-cart a:hover {
  background: #a0262f;
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1b1b1b;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 24px;
  background: #161616;
}

.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(76, 76, 76, 0.5);
  color: #f7f7f7;
  font-family: 'Archivo Black', Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-nav a:last-child { border-bottom: none; }

.mobile-nav a:hover { color: #f2adaf; }

.mobile-nav.open { display: flex; }

@media (max-width: 767px) {
  .nav-links, .nav-cart { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 48px 24px;
  background: #1b1b1b;
  color: #e2e2e2;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  color: #a4a4a4;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover { color: #f09194; }

.footer-copyright {
  color: #919191;
  font-size: 13px;
}

/* ============================================================
   INDEX - HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('//img1.wsimg.com/isteam/ip/e2c84c1c-76b4-4e8f-8a88-c28d9017757f/ALOEMAXX%20LOGO%20NEW%20MAY%202020.jpg');
  background-position: center;
  background-size: cover;
  filter: brightness(0.38) saturate(0.9);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.48), rgba(12, 12, 12, 0.58)),
    radial-gradient(circle at center, rgba(160, 38, 47, 0.12), rgba(0, 0, 0, 0.42));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 80px 24px;
}

.hero h1 {
  margin-bottom: 32px;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
}

.hero .btn {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

@media (max-width: 767px) {
  .hero {
    min-height: 460px;
  }

  .hero-content {
    width: min(100% - 32px, 720px);
    padding: 48px 20px;
    border-radius: 14px;
  }

  .hero h1 {
    margin-bottom: 24px;
  }
}

/* ============================================================
   INDEX - ABOUT
   ============================================================ */
.about {
  padding: 80px 0;
  background: #f6f6f6;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 480px;
  border-radius: 4px;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 24px;
  color: #a0262f;
  font-size: clamp(24px, 3vw, 36px);
}

.about-text p {
  color: #575757;
  font-size: 16px;
  line-height: 1.8;
}

.about-text p + p { margin-top: 16px; }

@media (max-width: 767px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image img { height: 300px; }
}

/* ============================================================
   INDEX - FEATURED PRODUCTS
   ============================================================ */
.featured-products {
  padding: 72px 0 80px;
  background: #f9f6f2;
}

.featured-products h2 {
  margin-bottom: 4px;
  color: #1a1a1a;
  font-size: clamp(2rem, 4vw, 2.2rem);
  text-align: center;
}

.section-subtitle {
  margin-bottom: 48px;
  color: #888;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

.product-card__image-wrap--cover img,
.shop-card__image-wrap--cover img {
  object-fit: cover !important;
}

.product-card__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  overflow: hidden;
  background: #ffffff;
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 20px 24px;
}

.product-card__badge {
  display: inline-block;
  width: fit-content;
  margin-bottom: 10px;
  padding: 3px 10px;
  background: #a0262f;
  border-radius: 20px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__name {
  margin: 0 0 6px;
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.product-card__desc {
  flex: 1;
  color: #666;
  font-size: 0.79rem;
  line-height: 1.5;
}

.products-cta {
  margin-top: 48px;
  text-align: center;
}

.shop-embed {
  min-height: 400px;
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 12px;
  }

  .product-card__image-wrap { height: 160px; }
}

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

/* ============================================================
   INDEX - TESTIMONIALS PREVIEW
   ============================================================ */
.testimonials-preview {
  padding: 80px 0;
  background: #f6f6f6;
  text-align: center;
}

.testimonials-preview h2 {
  margin-bottom: 48px;
  font-size: clamp(22px, 3vw, 32px);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.testimonial-card {
  padding: 32px 24px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  text-align: left;
}

.testimonial-card .name {
  margin-bottom: 12px;
  color: #a0262f;
  font-family: 'Archivo Black', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  color: #575757;
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
}

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

/* ============================================================
   TESTIMONIALS PAGE - HERO
   ============================================================ */
.page-hero {
  padding: 64px 24px;
  background: #a0262f;
  color: #fff;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 48px);
}

.page-hero p {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 18px;
  opacity: 0.9;
}

/* ============================================================
   TESTIMONIALS PAGE - CARDS
   ============================================================ */
.testimonials-page {
  padding: 80px 0;
  background: #fff;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.testimonial-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.testimonial-full.text-only {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.testimonial-full .testimonial-body h3 {
  margin-bottom: 16px;
  color: #a0262f;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.testimonial-full .testimonial-body blockquote {
  color: #575757;
  font-size: 15px;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-full .testimonial-body blockquote + blockquote {
  margin-top: 16px;
}

.testimonial-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.testimonial-images.single { grid-template-columns: 1fr; }

.testimonial-images img {
  width: 100%;
  height: auto;
  max-height: 380px;
  border-radius: 4px;
  object-fit: contain;
}

.testimonial-images.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.testimonial-images.four-col img {
  max-height: 220px;
}

.day-label {
  margin-top: 4px;
  color: #919191;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .testimonial-full {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-images.four-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Generic page helpers */
.simple-page {
  padding: 80px 0;
  background: #f6f6f6;
}

.simple-page__card {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  text-align: center;
}

.simple-page__card h2 {
  margin-bottom: 16px;
  color: #a0262f;
  font-size: clamp(24px, 3vw, 32px);
}

.simple-page__card p {
  color: #575757;
}

.simple-page__card p + p {
  margin-top: 12px;
}

.simple-page__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid #e5e5e5;
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.trust-bar { background: #1b1b1b; padding: 12px 0; }
.trust-bar__inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px 40px; }
.trust-bar__inner span { color: #d4d4d4; font-size: 13px; font-weight: 600; letter-spacing: 0.03em; }
.shop-hero { padding: 52px 24px 48px; }
.shop-catalog { padding: 56px 0 80px; background: #f9f6f2; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

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

.shop-card { display: flex; flex-direction: column; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 18px rgba(0,0,0,0.07); transition: transform 0.22s ease, box-shadow 0.22s ease; text-decoration: none; color: inherit; }
.shop-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(0,0,0,0.12); }

.shop-card__image-wrap { position: relative; background: #ffffff; display: flex; align-items: center; justify-content: center; height: 260px; overflow: hidden; }
.shop-card__image-wrap img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 0; transition: transform 0.35s ease; }
.shop-card:hover .shop-card__image-wrap img { transform: scale(1.04); }

.shop-card__badge { position: absolute; top: 14px; left: 14px; padding: 4px 12px; border-radius: 20px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; z-index: 1; }
.shop-card__badge--red    { background: #a0262f; color: #fff; }
.shop-card__badge--green  { background: #2d6a4f; color: #fff; }
.shop-card__badge--charcoal { background: #3a3a3a; color: #fff; }

.shop-card__body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.shop-card__name { font-family: 'Archivo Black', Arial, sans-serif; font-size: 1.05rem; color: #1a1a1a; margin: 0 0 8px; line-height: 1.25; text-transform: uppercase; }
.shop-card__desc { color: #666; font-size: 0.84rem; line-height: 1.6; margin: 0 0 16px; flex: 1; }

.shop-card__size-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.shop-card__size-label { font-size: 0.75rem; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: 0.07em; white-space: nowrap; }
.shop-card__sizes { display: flex; gap: 8px; flex-wrap: wrap; }

.size-pill { border: 1.5px solid #ddd; background: #fff; color: #555; font-size: 0.78rem; font-weight: 700; padding: 5px 14px; border-radius: 20px; cursor: pointer; transition: all 0.18s; font-family: 'Montserrat', Arial, sans-serif; }
.size-pill:hover, .size-pill.active { border-color: #a0262f; color: #a0262f; background: #fff5f5; }

.shop-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.shop-card__price { font-family: 'Archivo Black', Arial, sans-serif; font-size: 1.3rem; color: #a0262f; white-space: nowrap; }
.shop-card__cta { font-size: 0.78rem; font-weight: 700; color: #a0262f; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }

.btn-buy { flex: 1; background: #a0262f; color: #fff; border: none; border-radius: 8px; padding: 11px 18px; font-family: 'Archivo Black', Arial, sans-serif; font-size: 0.78rem; letter-spacing: 0.07em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.15s; white-space: nowrap; }
.btn-buy:hover { background: #7e1e26; }
.btn-buy:active { transform: scale(0.97); }
.btn-buy.added { background: #2d6a4f; }

.cart-count { display: inline-flex; align-items: center; justify-content: center; background: #a0262f; color: #fff; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; margin-left: 4px; vertical-align: middle; }

.checkout-banner { background: #fff; border-top: 1px solid #ececec; padding: 40px 0; }
.checkout-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 16px; }
.checkout-banner__text h2 { font-size: 1.4rem; color: #1a1a1a; margin-bottom: 4px; }
.checkout-banner__text p { color: #777; font-size: 0.9rem; }
.btn-checkout { min-width: 220px; text-align: center; }
.btn-checkout:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.stripe-notice { display: flex; align-items: center; gap: 6px; color: #aaa; font-size: 0.76rem; }

@media (max-width: 767px) {
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .shop-card__image-wrap { height: auto !important; aspect-ratio: unset; }
  .shop-card__image-wrap img,
  .shop-card__image-wrap--cover img { width: 100% !important; height: auto !important; object-fit: fill !important; display: block; }
  .shop-card__body { padding: 14px 14px 18px; }
  .shop-card__name { font-size: 0.9rem; }
  .shop-card__desc { display: none; }
  .checkout-banner__inner { flex-direction: column; align-items: flex-start; }
  .btn-checkout { width: 100%; }
  .trust-bar__inner { gap: 12px 24px; }
}
@media (max-width: 500px) {
  .shop-grid { grid-template-columns: 1fr; }
  .shop-card__desc { display: block; }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { background: #f4f4f4; border-bottom: 1px solid #e8e8e8; padding: 12px 0; }
.breadcrumb .container { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #888; flex-wrap: wrap; }
.breadcrumb a { color: #a0262f; transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.75; }
.breadcrumb span:last-child { color: #444; font-weight: 600; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail { padding: 56px 0 80px; background: #fff; }

.product-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 64px;
}

/* Gallery */
.product-detail__main-image {
  position: sticky;
  top: 90px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.product-detail__main-image img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: contain;
  object-position: center;
  padding: 0;
}

/* Info panel */
.product-detail__info { padding-top: 8px; }

.pd-badge { display: inline-block; background: #a0262f; color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 14px; }
.pd-badge--green { background: #2d6a4f; }
.pd-badge--charcoal { background: #3a3a3a; }

.pd-title { font-family: 'Archivo Black', Arial, sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: #1a1a1a; text-transform: uppercase; margin-bottom: 8px; line-height: 1.1; }
.pd-tagline { color: #888; font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: 24px; }

.pd-price-wrap { display: flex; align-items: baseline; gap: 12px; margin-bottom: 28px; }
.pd-price { font-family: 'Archivo Black', Arial, sans-serif; font-size: 2rem; color: #a0262f; }
.pd-size-label { font-size: 0.85rem; color: #aaa; font-weight: 600; }

.pd-option-group { margin-bottom: 28px; }
.pd-option-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #999; margin-bottom: 10px; }
.pd-sizes { display: flex; gap: 10px; flex-wrap: wrap; }

.pd-size-btn { border: 2px solid #ddd; background: #fff; color: #555; font-size: 0.85rem; font-weight: 700; padding: 8px 22px; border-radius: 8px; cursor: pointer; transition: all 0.18s; font-family: 'Montserrat', Arial, sans-serif; }
.pd-size-btn:hover, .pd-size-btn.active { border-color: #a0262f; color: #a0262f; background: #fff5f5; }

.btn-pd-buy { display: block; width: 100%; background: #a0262f; color: #fff; border: none; border-radius: 10px; padding: 16px 24px; font-family: 'Archivo Black', Arial, sans-serif; font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-bottom: 14px; }
.btn-pd-buy:hover { background: #7e1e26; }
.btn-pd-buy:active { transform: scale(0.98); }
.btn-pd-buy:disabled { opacity: 0.5; cursor: not-allowed; }

.pd-stripe-note { display: flex; align-items: center; gap: 6px; color: #bbb; font-size: 0.75rem; margin-bottom: 28px; }

.pd-divider { border: none; border-top: 1px solid #eee; margin-bottom: 28px; }

/* Description */
.pd-description h2 { font-family: 'Archivo Black', Arial, sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: #a0262f; margin: 0 0 10px; }
.pd-description p { color: #555; font-size: 0.92rem; line-height: 1.75; margin-bottom: 20px; }
.pd-description h2 + p { margin-top: 0; }

.pd-ingredients { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.pd-ingredients li { font-size: 0.88rem; color: #555; line-height: 1.5; }


/* Reviews strip */
.pd-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; background: #f9f6f2; border-radius: 12px; padding: 40px 36px; margin-bottom: 40px; }
.pd-review__text { font-style: italic; color: #555; font-size: 0.88rem; line-height: 1.7; margin-bottom: 10px; }
.pd-review__name { font-family: 'Archivo Black', Arial, sans-serif; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #a0262f; }

/* Back row */
.pd-back-row { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .product-detail__inner { grid-template-columns: 1fr; gap: 36px; }
  .product-detail__main-image { position: static; min-height: 320px; }
  .product-detail__main-image img { height: 320px; }
  .pd-reviews { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
}

@media (max-width: 480px) {
  .pd-title { font-size: 1.5rem; }
  .pd-price { font-size: 1.6rem; }
  .pd-back-row { flex-direction: column; }
  .pd-back-row .btn { text-align: center; }
}
/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 8px;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon { font-size: 1.3rem; margin-top: 2px; }

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.95rem;
  color: #1b1b1b;
  font-weight: 600;
}

a.contact-value { color: #a0262f; }
a.contact-value:hover { text-decoration: underline; }

.contact-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #555;
}

.contact-form__field input,
.contact-form__field textarea {
  border: 1.5px solid #ddd;
  border-radius: 6px;
  padding: 10px 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.9rem;
  color: #1b1b1b;
  transition: border-color 0.2s;
  width: 100%;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #a0262f;
}

.contact-form__field textarea { resize: vertical; }

.contact-form__note {
  font-size: 0.88rem;
  margin-top: 4px;
  min-height: 1.2em;
}

@media (max-width: 600px) {
  .contact-form__row { grid-template-columns: 1fr; }
}