﻿:root {
  color-scheme: light;
  --bg: #f5f2ec;
  --surface: #ffffff;
  --surface-soft: #fbf7ef;
  --ink: #141414;
  --muted: #68625a;
  --line: #e7ded2;
  --brand: #194d32;
  --brand-2: #2f7d50;
  --accent: #c98d3f;
  --accent-soft: #f0dfc6;
  --danger: #b45c2d;
  --shadow: 0 22px 70px rgba(22, 32, 24, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a { color: inherit; }

.announcement {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(231, 222, 210, 0.75);
  background: rgba(245, 242, 236, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 28px;
}

.brand {
  color: var(--ink);
  font-size: 25px;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover,
.text-link:hover { color: var(--brand); }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

main,
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

main { padding-top: 24px; padding-bottom: 58px; }

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  min-height: 640px;
}

.hero-panel {
  display: grid;
  align-content: end;
  min-height: 640px;
  padding: 58px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(18, 28, 19, 0.84), rgba(18, 28, 19, 0.32)),
    url('/assets/products/golf-tee-pouch/main.jpg') center / cover;
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel .eyebrow,
.hero-panel .lead { color: rgba(255, 255, 255, 0.84); }

.hero-side {
  display: grid;
  gap: 18px;
}

.side-card,
.card,
.product-card,
.content-card,
.shop-summary,
.shop-gallery,
.aplus-section,
.footer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 46px rgba(22, 32, 24, 0.08);
}

.side-card {
  display: grid;
  align-content: end;
  min-height: 300px;
  padding: 28px;
  background: linear-gradient(145deg, #ffffff, #efe4d4);
}

.side-card.dark {
  background: linear-gradient(145deg, #143524, #2f7d50);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 { margin: 0; line-height: 1.08; }

h1 { font-size: clamp(44px, 7vw, 86px); letter-spacing: -0.065em; }
h2 { font-size: clamp(32px, 4vw, 54px); letter-spacing: -0.05em; }
h3 { font-size: 23px; letter-spacing: -0.035em; }
p { margin: 0; }

.lead {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.button-secondary { background: transparent; color: var(--brand); }
.hero-panel .button-secondary { border-color: #fff; color: #fff; }

.home-clean-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 92px 0 68px;
  text-align: center;
}

.home-clean-hero .eyebrow {
  justify-content: center;
}

.home-clean-hero h1 {
  font-size: clamp(44px, 6.4vw, 78px);
}

.home-clean-hero .lead {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.home-clean-actions {
  justify-content: center;
}

.home-section-head {
  max-width: 980px;
  margin: 42px auto 22px;
}

.home-product-grid {
  max-width: 980px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
}

.home-product-grid .product-card {
  padding: 20px;
  box-shadow: none;
}

.home-product-grid .product-card-image {
  aspect-ratio: 1 / 0.78;
}

.home-amazon-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 980px;
  margin: 28px auto 0;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.home-amazon-note p {
  color: var(--muted);
}

.home-amazon-note strong {
  color: var(--ink);
}

.home-feature-row {
  display: grid;
  max-width: 980px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px auto 0;
}

.home-feature-row article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.68);
}

.home-feature-row h3 {
  font-size: 18px;
}

.home-feature-row p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 76px 0 24px;
}

.section-head p { max-width: 520px; color: var(--muted); }

.category-grid,
.product-grid,
.promise-grid,
.aplus-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

.category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.promise-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.footer-grid { grid-template-columns: 1.2fr repeat(3, 0.75fr); }

.card,
.product-card,
.content-card,
.footer-card { padding: 24px; }

.category-card {
  min-height: 260px;
  display: grid;
  align-content: end;
  color: #fff;
  background: linear-gradient(180deg, rgba(20,20,20,0.1), rgba(20,20,20,0.72)), var(--image) center / cover;
  overflow: hidden;
}

.category-card:nth-child(1) { --image: url('/assets/products/golf-tee-pouch/thumb-1.jpg'); }
.category-card:nth-child(2) { --image: url('/assets/products/golf-tee-pouch/thumb-2.jpg'); }
.category-card:nth-child(3) { --image: url('/assets/products/golf-tee-pouch/thumb-3.jpg'); }
.category-card:nth-child(4) { --image: url('/assets/products/golf-tee-pouch/thumb-4.jpg'); }

.product-card { display: grid; gap: 14px; }
.product-card-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.82;
  border-radius: 20px;
  background: var(--surface-soft);
  overflow: hidden;
}
.product-card-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-price { display: flex; gap: 10px; align-items: baseline; font-weight: 950; }
.product-price del { color: var(--muted); font-weight: 750; }
.badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.text-link { color: var(--brand); font-weight: 950; text-decoration: none; }
.muted { color: var(--muted); }

.marketplace-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 72px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: #fff;
}
.marketplace-strip p { color: rgba(255,255,255,0.72); }

.page-hero {
  padding: 70px 0 34px;
}
.page-hero .lead { max-width: 760px; }

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 28px;
  align-items: start;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.breadcrumb a { color: var(--brand); text-decoration: none; }
.shop-gallery { padding: 18px; border-radius: var(--radius-xl); }
.shop-main-image {
  display: grid;
  place-items: center;
  min-height: 620px;
  border-radius: 28px;
  background: linear-gradient(145deg, #fff, #e9dece);
  overflow: hidden;
}
.shop-main-image img { width: 100%; height: 100%; max-height: 620px; object-fit: contain; mix-blend-mode: multiply; }
.shop-thumbnails { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 14px; }
.shop-thumbnails img { width: 100%; aspect-ratio: 1; object-fit: contain; border: 1px solid var(--line); border-radius: 18px; background: #fff; padding: 8px; }
.shop-summary { position: sticky; top: 98px; padding: 42px; border-radius: var(--radius-xl); }
.shop-summary h1 { font-size: clamp(40px, 4.8vw, 64px); letter-spacing: -0.06em; }
.asin-inline { display: block; margin-top: 10px; color: var(--brand-2); font-size: clamp(15px, 1.8vw, 20px); font-weight: 950; letter-spacing: 0.08em; }
.shop-subtitle { margin-top: 16px; color: var(--muted); font-size: 19px; }
.rating-row { display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: center; margin-top: 22px; color: var(--muted); font-size: 14px; font-weight: 800; }
.stars { color: #d9902f; letter-spacing: 0.06em; }
.price-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 28px; }
.price { color: var(--ink); font-size: 46px; font-weight: 950; letter-spacing: -0.04em; }
.compare-price { color: var(--muted); font-size: 20px; font-weight: 850; text-decoration: line-through; }
.sale-badge { padding: 7px 12px; border-radius: 999px; background: var(--brand); color: #fff; font-size: 13px; font-weight: 950; }
.price-note { margin-top: 8px; color: var(--muted); font-size: 13px; }
.option-card { display: grid; gap: 4px; margin-top: 26px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.option-card span { color: var(--muted); font-size: 13px; font-weight: 950; letter-spacing: 0.12em; text-transform: uppercase; }
.summary-bullets { display: grid; gap: 10px; margin: 24px 0 0; padding-left: 20px; }
.summary-bullets li { color: var(--muted); }
.shop-actions { margin-top: 28px; }

.aplus-section { margin-top: 70px; padding: 46px; border-radius: var(--radius-xl); }
.aplus-hero { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: 34px; align-items: center; }
.aplus-section p:not(.eyebrow), .content-card p, .content-card li { color: var(--muted); }
.aplus-section img { width: 100%; border-radius: 26px; background: #fff; object-fit: cover; }
.aplus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 22px; }
.aplus-grid article { overflow: hidden; padding: 0; }
.aplus-grid img { aspect-ratio: 1.42; border-radius: 0; }
.aplus-grid article div { padding: 30px; }
.aplus-band {
  display: grid;
  place-items: center;
  min-height: 360px;
  margin-top: 22px;
  padding: 52px;
  border-radius: var(--radius-xl);
  background: linear-gradient(rgba(20,20,20,.64), rgba(20,20,20,.64)), url('/assets/products/golf-tee-pouch/thumb-4.jpg') center / cover;
  color: #fff;
  text-align: center;
}
.aplus-band p, .aplus-band .eyebrow { color: rgba(255,255,255,.84) !important; }
.spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 22px 0 0; }
.spec-grid div { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.spec-grid dt { color: var(--muted); font-size: 13px; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.spec-grid dd { margin: 6px 0 0; color: var(--ink); font-weight: 850; }

.site-footer { border-top: 1px solid var(--line); background: #fff; }
.footer-inner { padding-top: 42px; padding-bottom: 42px; }
.footer-grid { align-items: start; }
.footer-grid h3 { font-size: 17px; }
.footer-grid a { display: block; margin-top: 10px; color: var(--muted); text-decoration: none; font-weight: 750; }
.footer-bottom { margin-top: 34px; color: var(--muted); font-size: 14px; }

@media (max-width: 980px) {
  .hero-home,
  .shop-hero,
  .aplus-hero,
  .marketplace-strip { grid-template-columns: 1fr; }
  .category-grid,
  .promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid,
  .aplus-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .shop-summary { position: static; }
}

@media (max-width: 620px) {
  .announcement { font-size: 12px; }
  .header-inner { align-items: flex-start; flex-direction: column; padding: 18px; }
  nav { gap: 14px; }
  main, .footer-inner { padding-left: 18px; padding-right: 18px; }
  .home-clean-hero { padding: 64px 0 44px; }
  .home-section-head,
  .home-amazon-note { align-items: flex-start; flex-direction: column; }
  .home-product-grid,
  .home-feature-row { grid-template-columns: 1fr; }
  .hero-panel { min-height: 520px; padding: 32px; }
  .hero-home { min-height: auto; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .category-grid, .promise-grid, .spec-grid { grid-template-columns: 1fr; }
  .shop-main-image { min-height: 420px; }
  .shop-thumbnails { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-summary, .aplus-section, .aplus-band { padding: 28px; }
}

.product-description-section {
  margin-top: 72px;
}

.product-description-head {
  margin-top: 0;
}

.pd-module {
  max-width: 970px;
  margin: 18px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 16px 46px rgba(22, 32, 24, 0.08);
  overflow: hidden;
}

.pd-module img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.pd-module h3 {
  font-size: clamp(24px, 3vw, 38px);
}

.pd-module p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
}

.pd-module-hero,
.pd-module-side {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
}

.pd-module-hero div,
.pd-module-side div {
  padding: 34px;
}

.pd-module-side {
  grid-template-columns: 300px minmax(0, 1fr);
}

.pd-module-image h3 {
  padding: 28px 32px 0;
}

@media (max-width: 780px) {
  .pd-module-hero,
  .pd-module-side {
    grid-template-columns: 1fr;
  }
}

/* Amazon-like product gallery */
.amazon-gallery {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.amazon-gallery .shop-thumbnails {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
  max-height: 620px;
  overflow: auto;
  padding-right: 2px;
}

.gallery-thumb {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(201, 141, 63, 0.22);
}

.gallery-thumb:hover {
  transform: translateY(-1px);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.amazon-gallery .shop-main-image {
  min-height: 640px;
  cursor: zoom-in;
}

.amazon-gallery .shop-main-image img:focus {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.has-lightbox {
  overflow: hidden;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 54px 86px;
  background: rgba(12, 14, 12, 0.86);
}

.product-lightbox.is-open {
  display: flex;
}

.product-lightbox img {
  max-width: min(1100px, 90vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 30px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  font-size: 42px;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

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

  .amazon-gallery .shop-thumbnails {
    grid-template-columns: repeat(8, 72px);
    grid-auto-flow: column;
    overflow-x: auto;
    max-height: none;
    order: 2;
  }

  .gallery-thumb {
    width: 72px;
    height: 72px;
  }

  .amazon-gallery .shop-main-image {
    min-height: 460px;
    order: 1;
  }

  .product-lightbox {
    padding: 54px 18px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 34px;
  }
}

/* Amazon-like listing refinement */
.listing-subhead {
  margin-top: 26px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}

.shop-summary .summary-bullets {
  margin-top: 12px;
}

.product-description-section {
  max-width: 1000px;
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.product-description-section > h2 {
  font-size: 28px;
  letter-spacing: -0.02em;
}

.pd-title {
  margin-top: 20px;
  font-size: 22px;
  letter-spacing: 0;
}

.product-description-section .pd-module {
  margin-top: 18px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}

.product-description-section .pd-module img {
  border-radius: 0;
}

.pd-module-banner-text {
  position: relative;
  display: grid;
}

.pd-module-banner-text div {
  padding: 18px 0 8px;
}

.pd-module-side {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 12px 0;
}

.pd-module-side div {
  padding: 0 18px 0 0;
}

.product-description-section .pd-module h3 {
  font-size: 21px;
  letter-spacing: 0;
}

.product-description-section .pd-module p {
  color: #333;
  font-size: 16px;
}

.listing-info-section {
  max-width: 1000px;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.listing-info-section h2 {
  font-size: 28px;
}

.amazon-aplus-section {
  max-width: none;
}

.amazon-aplus-section > h2 {
  max-width: 970px;
  margin-right: auto;
  margin-left: auto;
}

.aplus-v2 {
  display: block;
  margin-right: auto;
  margin-left: auto;
  color: #111;
  word-break: break-word;
}

.aplus-v2 .aplus-standard.aplus-module {
  min-width: 979px;
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.aplus-v2 .aplus-module-wrapper,
.aplus-v2 .aplus-3p-fixed-width,
.aplus-v2 .apm-fixed-width {
  width: 970px;
  margin-right: auto;
  margin-left: auto;
}

.aplus-v2 img {
  display: block;
  max-width: 100%;
  border: 0;
  border-radius: 0;
}

.aplus-v2 .apm-sidemodule {
  position: relative;
  width: 970px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  text-align: left;
}

.aplus-v2 .apm-sidemodule::after {
  display: table;
  clear: both;
  content: "";
}

.aplus-v2 .apm-sidemodule-imageleft {
  position: relative;
  float: left;
  display: block;
}

.aplus-v2 .apm-sidemodule-imageleft img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

.aplus-v2 .apm-sidemodule-textright {
  position: relative;
  display: table-cell;
  height: 300px;
  max-height: 300px;
  padding-left: 40px;
  vertical-align: middle;
}

.aplus-v2 .a-spacing-mini {
  margin-bottom: 6px;
}

.aplus-v2 .apm-sidemodule-textright h3 {
  margin: 0 0 6px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}

.aplus-v2 .a-unordered-list {
  margin: 0 0 0 18px;
  padding: 0;
}

.aplus-v2 .a-unordered-list li {
  margin: 0 0 4px;
  color: #333;
  font-size: 16px;
  line-height: 1.45;
}

.aplus-v2 .apm-flex {
  display: flex;
  gap: 35px;
}

.aplus-v2 .apm-flex-item-third-width {
  flex-basis: 33.333%;
  width: 33.333%;
}

.aplus-v2 .apm-text-center {
  margin: 0;
  text-align: center;
}

.aplus-v2 .apm-flex-item-third-width img {
  width: 300px;
  height: 300px;
  margin: 0 auto 6px;
  object-fit: contain;
}

.aplus-v2 .apm-flex-item-third-width h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.aplus-v2 .module-12 .aplus-module-content {
  position: relative;
  display: flex;
  min-height: 300px;
}

.aplus-v2 .module-12 .apm-hero-image {
  float: none;
}

.aplus-v2 .module-12 .apm-hero-image img {
  position: absolute;
  width: 970px;
  height: 300px;
  object-fit: cover;
}

.aplus-v2 .module-12 .textright {
  position: relative;
  align-self: center;
  right: 50px;
  width: 250px;
  margin-left: auto;
  padding: 15px;
  color: #111;
  background: rgba(255,255,255,.7);
}

.aplus-v2 .module-12 .textright h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}

@media (max-width: 780px) {
  .pd-module-side {
    grid-template-columns: 1fr;
  }

  .pd-module-side div {
    padding: 0;
  }

  .aplus-v2 .aplus-standard.aplus-module {
    min-width: 0;
  }

  .aplus-v2 .aplus-module-wrapper,
  .aplus-v2 .aplus-3p-fixed-width,
  .aplus-v2 .apm-fixed-width,
  .aplus-v2 .apm-sidemodule {
    width: 100%;
  }

  .aplus-v2 .apm-sidemodule-imageleft {
    float: none;
    width: 100%;
    margin-bottom: 15px;
  }

  .aplus-v2 .apm-sidemodule-imageleft img {
    margin: 0 auto;
  }

  .aplus-v2 .apm-sidemodule-textright {
    display: block;
    height: auto;
    max-height: none;
    padding-left: 0;
  }

  .aplus-v2 .apm-flex {
    display: grid;
    grid-template-columns: 1fr;
  }

  .aplus-v2 .apm-flex-item-third-width {
    width: 100%;
  }

  .aplus-v2 .module-12 .apm-hero-image img {
    position: static;
    width: 100%;
    height: auto;
  }

  .aplus-v2 .module-12 .aplus-module-content {
    display: block;
  }

  .aplus-v2 .module-12 .textright {
    right: auto;
    width: auto;
    margin: 0;
    background: #fff;
  }
}

