:root {
  --white: #ffffff;
  --sand: #f5f0e8;
  --ocean: #5b8fa8;
  --ocean-light: #a8c0cc;
  --charcoal: #2c2c2c;
  --charcoal-mid: #4a4a4a;
  --charcoal-light: #6e6e6e;
  --border: #ddd8ce;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(44,44,44,0.08);
  --shadow-md: 0 6px 24px rgba(44,44,44,0.12);
  --container: 1180px;
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 2vw, 1.25rem);
  --space-md: clamp(1.25rem, 3vw, 2rem);
  --space-lg: clamp(2rem, 5vw, 3.5rem);
  --space-xl: clamp(3rem, 7vw, 5rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--charcoal-light);
  max-width: 520px;
  margin-inline: auto;
}

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 0.6rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--ocean); outline-offset: 3px; }

.btn-primary {
  background: var(--ocean);
  color: var(--white);
  border: 2px solid var(--ocean);
}
.btn-primary:hover {
  background: #4a7d96;
  border-color: #4a7d96;
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--border);
}
.btn-outline-dark:hover {
  background: var(--sand);
  border-color: var(--ocean-light);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

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

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-block: 0.9rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex-shrink: 0;
}

.logo-main {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--ocean);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--charcoal-light);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1.75rem);
  align-items: center;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  padding-block: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ocean);
  border-bottom-color: var(--ocean);
}

.nav-link:focus-visible {
  outline: 3px solid var(--ocean);
  outline-offset: 3px;
  border-radius: 2px;
}

.header-cta {
  flex-shrink: 0;
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
  border: 2px solid var(--ocean);
  color: var(--ocean);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.header-cta:hover {
  background: var(--ocean);
  color: var(--white);
}

@media (max-width: 640px) {
  .main-nav { display: none; }
  .header-cta { margin-left: auto; }
}

.hero {
  position: relative;
  min-height: clamp(480px, 75vh, 700px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(44,44,44,0.68) 0%,
    rgba(91,143,168,0.45) 55%,
    rgba(44,44,44,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding-block: var(--space-xl);
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean-light);
  margin-bottom: 0.8rem;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.hero-body {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-md);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.categories {
  background: var(--white);
  padding-block: var(--space-xl);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.2s;
  color: var(--charcoal);
}

.cat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.cat-card:focus-visible {
  outline: 3px solid var(--ocean);
  outline-offset: 3px;
}

.cat-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.cat-card:hover .cat-img-wrap img {
  transform: scale(1.04);
  transition: transform 0.4s ease;
}

.cat-img-wrap img {
  transition: transform 0.4s ease;
}

.cat-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.5rem;
}

.cat-body h3 {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.cat-body p {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.65;
  flex-grow: 1;
}

.cat-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ocean);
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--ocean-light);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}

.cat-card:hover .cat-link {
  color: #3d7490;
  border-color: #3d7490;
}

.trust-strip {
  background: var(--ocean);
  padding-block: var(--space-lg);
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  flex: 1 1 160px;
  max-width: 200px;
}

.trust-number {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.trust-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  font-family: var(--font-body);
  line-height: 1.4;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .trust-divider { display: none; }
  .trust-item { max-width: 100%; flex-basis: 45%; }
}

.about-strip {
  background: var(--sand);
  padding-block: var(--space-xl);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
}

.about-text p {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: var(--charcoal-mid);
  line-height: 1.75;
}

.about-text .btn {
  align-self: flex-start;
  margin-top: 0.4rem;
}

.comfort-banner {
  background: var(--charcoal);
  padding-block: var(--space-xl);
  text-align: center;
}

.comfort-inner {
  max-width: 700px;
}

.comfort-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.9rem;
}

.comfort-inner p {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: var(--space-md);
  line-height: 1.75;
}

.contact-section {
  background: var(--white);
  padding-block: var(--space-xl);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .contact-img-wrap {
    order: -1;
  }
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
}

.contact-text > p {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: var(--charcoal-mid);
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: var(--space-md);
  background: var(--sand);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--ocean);
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--charcoal-mid);
}

.contact-icon {
  color: var(--ocean);
  font-size: 0.45rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.contact-details a {
  color: var(--ocean);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-details a:hover { color: #3d7490; text-decoration: underline; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.contact-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-lg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-brand .logo-main {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ocean-light);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--ocean-light); }
.footer-nav a:focus-visible { outline: 2px solid var(--ocean-light); outline-offset: 2px; border-radius: 2px; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  word-break: break-all;
}
.footer-contact a:hover { color: var(--ocean-light); }

.footer-base {
  padding-block: 1.1rem;
  text-align: center;
}

.footer-base p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}



.about-hero {
  position: relative;
  min-height: clamp(360px, 55vh, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(44,44,44,0.72) 0%,
    rgba(91,143,168,0.5) 55%,
    rgba(44,44,44,0.25) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding-block: var(--space-xl);
}

.about-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.about-story {
  background: var(--sand);
  padding-block: var(--space-xl);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.about-story-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

.about-story-text {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.about-story-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
}

.about-story-text p {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: var(--charcoal-mid);
  line-height: 1.75;
}

.about-story-text .contact-actions {
  margin-top: 0.4rem;
}

.values-section {
  background: var(--white);
  padding-block: var(--space-xl);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.value-card {
  background: var(--sand);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.25s, transform 0.2s;
}

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

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.value-card h3 {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--charcoal);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  line-height: 1.72;
}

.showroom-section {
  background: var(--sand);
  padding-block: var(--space-xl);
}



.contact-page-hero {
  position: relative;
  min-height: clamp(300px, 45vh, 480px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(44,44,44,0.72) 0%,
    rgba(91,143,168,0.48) 60%,
    rgba(44,44,44,0.2) 100%
  );
}

.contact-page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding-block: var(--space-xl);
}

.contact-page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.contact-main-section {
  background: var(--sand);
  padding-block: var(--space-xl);
}

.contact-main-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

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

.contact-cards-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  border-left: 4px solid var(--ocean);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--sand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.contact-card-body h2 {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
}

.contact-card-body p {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  line-height: 1.7;
}

.contact-card-address {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.55;
  margin-top: 0.2rem;
}

.contact-card-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.2rem;
}

.contact-card-link {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ocean);
  transition: color 0.2s;
  word-break: break-all;
}

.contact-card-link:hover {
  color: #3d7490;
  text-decoration: underline;
}

.contact-card-link:focus-visible {
  outline: 3px solid var(--ocean);
  outline-offset: 3px;
  border-radius: 2px;
}

.contact-card-fax {
  font-size: 0.88rem;
  color: var(--charcoal-light);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: sticky;
  top: calc(var(--space-lg) + 60px);
}

.contact-sidebar-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

.contact-sidebar-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-sidebar-btn {
  width: 100%;
  text-align: center;
}

.map-section {
  background: var(--white);
  padding-block: var(--space-xl);
}

.map-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21 / 7;
  box-shadow: var(--shadow-md);
}

@media (max-width: 600px) {
  .map-img-wrap {
    aspect-ratio: 4 / 3;
  }
  .contact-card {
    flex-direction: column;
    gap: 0.75rem;
  }
}



.shop-hero {
  position: relative;
  min-height: clamp(380px, 55vh, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.shop-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shop-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(44,44,44,0.72) 0%,
    rgba(91,143,168,0.48) 55%,
    rgba(44,44,44,0.22) 100%
  );
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding-block: var(--space-xl);
}

.shop-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.shop-cat-nav {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 90;
}

.shop-cat-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.shop-cat-nav-link {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal-mid);
  padding: 0.85rem 1.25rem;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.shop-cat-nav-link:hover {
  color: var(--ocean);
  border-bottom-color: var(--ocean);
  background: rgba(91,143,168,0.06);
}

.shop-cat-nav-link:focus-visible {
  outline: 3px solid var(--ocean);
  outline-offset: -3px;
  border-radius: 2px;
}

.shop-section {
  background: var(--white);
  padding-block: var(--space-xl);
}

.shop-section-alt {
  background: var(--sand);
}

.shop-section-header {
  margin-bottom: var(--space-lg);
}

.shop-section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.45rem;
  line-height: 1.2;
}

.shop-section-intro {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: var(--charcoal-light);
  max-width: 620px;
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.2s;
}

.shop-section-alt .product-card {
  background: var(--white);
}

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

.product-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.product-img-wrap img {
  transition: transform 0.4s ease;
}

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

.product-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.5rem;
}

.product-body h3 {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 700;
  color: var(--charcoal);
}

.product-body p {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.65;
  flex-grow: 1;
}

.product-cta {
  align-self: flex-start;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  padding: 0.55rem 1.2rem;
}

.shop-advice-bar {
  background: var(--ocean);
  padding-block: var(--space-md);
}

.shop-advice-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.shop-advice-text {
  color: rgba(255,255,255,0.92);
  font-size: clamp(0.9rem, 1.7vw, 1rem);
  line-height: 1.6;
  max-width: 640px;
}

.shop-advice-text strong {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
}

.shop-advice-inner .btn-primary {
  background: var(--white);
  color: var(--ocean);
  border-color: var(--white);
  flex-shrink: 0;
}

.shop-advice-inner .btn-primary:hover {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--ocean);
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
