@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   Dynamic Display Systems — Main Stylesheet
   Premium American Craftsmanship Aesthetic
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --navy:        #0f2540;
  --navy-dark:   #091a2e;
  --navy-light:  #1e3a5f;
  --gold:        #31CAE0;
  --gold-hover:  #22afc3;
  --grey-accent: #AFBBCC;
  --green-accent: #2a7a6e;
  --silver:      #cccccc;
  --silver-light:#e8e8e8;
  --cream:       #f7f7f7;
  --cream-dark:  #eeeeee;
  --white:       #ffffff;
  --gray-100:    #f4f4f4;
  --gray-200:    #e9e9e9;
  --gray-400:    #9a9a9a;
  --gray-600:    #666666;
  --gray-800:    #333333;
  --text-dark:   #2c2c2c;
  --text-muted:  #6b7280;
  --font-serif:  'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-body:   'Inter', 'Helvetica Neue', Arial, sans-serif;
  --section-pad-y: 80px;
  --section-pad-x: 40px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.15);
  --shadow-nav: 0 2px 8px rgba(0,0,0,0.1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -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: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 65ch;
}

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-accent);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: var(--shadow-nav);
  min-height: 68px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  text-decoration: none;
}

.nav-logo-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-logo-name {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
  text-transform: none;
}

.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-accent);
  line-height: 1;
  white-space: nowrap;
}

.nav-logo-img-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #222222;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Hamburger (CSS-only) */
.nav-toggle {
  display: none;
}

.nav-cart-icon {
  display: inline-flex;
  align-items: center;
  color: #1a2744;
  text-decoration: none;
  position: relative;
  padding: 4px;
  transition: opacity 0.2s;
}

.nav-cart-icon:hover {
  opacity: 0.8;
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #222222;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
  background: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
  padding: 9px var(--section-pad-x);
  text-align: center;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-bar span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333333;
}

.trust-bar .trust-dot {
  color: var(--gold);
  font-size: 0.5rem;
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  background-image: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)), url('hero-new.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  padding: 0 var(--section-pad-x) 80px;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "title sub"
    "ctas  sub"
    "badges badges";
  align-items: end;
  gap: 0 3rem;
}

.hero-inner h1     { grid-area: title; }
.hero-ctas         { grid-area: ctas; margin-bottom: 2rem; }
.hero-sub          { grid-area: sub; align-self: end; margin-bottom: 2rem; }
.hero-badges       { grid-area: badges; }

.hero h1 {
  color: var(--white);
  max-width: 16ch;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 40ch;
  margin-bottom: 0;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero badges */
.hero-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

.hero-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-badge-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 2px;
}

.hero-badge-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.hero-badge-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 72px var(--section-pad-x) 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 55ch;
  margin: 0 auto;
}

/* ── Section Styles ─────────────────────────────────────────── */
.section {
  padding: var(--section-pad-y) var(--section-pad-x);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin-bottom: 0.5rem;
}

.section-heading p {
  margin: 0 auto;
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 55ch;
}

/* Cream bg */
.bg-cream {
  background: var(--cream);
}

/* Navy bg */
.bg-navy {
  background: #AFBBCC;
}

.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
  color: var(--navy);
}

.bg-navy p {
  color: #1a1a1a;
}

/* Gray bg */
.bg-gray {
  background: var(--gray-100);
}

/* ── Intro Section (two-col) ────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 1.2rem;
}

.intro-text p {
  max-width: none;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.quote-card {
  background: var(--navy);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  position: relative;
}

.quote-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -0.5rem;
  left: 1.25rem;
  line-height: 1;
}

.quote-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
}

.quote-card cite {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Product Cards ──────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

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

.product-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 0.85rem;
  align-self: flex-start;
}

.product-card-tag.gold { background: var(--gold); }
.product-card-tag.navy { background: var(--navy); }

.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.product-card-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-serif);
  margin-bottom: 0.75rem;
}

.product-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  max-width: none;
  margin-bottom: 1.25rem;
}

.product-card-link {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  display: inline-block;
  padding-bottom: 1px;
  transition: all var(--transition);
  align-self: flex-start;
}

.product-card-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Products Page — Full Grid ──────────────────────────────── */
.products-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.products-note {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
}

.products-note p {
  font-size: 0.92rem;
  color: var(--gray-600);
  max-width: none;
  margin: 0;
}

.products-note a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid;
}

/* ── Why DDS Section ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.why-item {
  text-align: center;
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.why-item h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.why-item p {
  color: #1a1a1a;
  font-size: 0.95rem;
  max-width: 26ch;
  margin: 0 auto;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ── About Page — Story Section ─────────────────────────────── */
.story-section {
  background: var(--cream);
  padding: var(--section-pad-y) var(--section-pad-x);
}

.story-inner {
  max-width: 780px;
  margin: 0 auto;
}

.story-chapter {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.story-chapter:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.story-chapter-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.story-chapter h2 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.story-chapter p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
  max-width: none;
  margin-bottom: 0.85rem;
}

.story-chapter p:last-child {
  margin-bottom: 0;
}

/* Values bar */
.values-bar {
  background: var(--navy);
  padding: 3.5rem var(--section-pad-x);
}

.values-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.value-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.value-item span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── Contact Page ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-800);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-group textarea {
  min-height: 140px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-icon {
  font-size: 1.1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.contact-detail-item a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.contact-detail-item a:hover {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

.contact-note {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-top: 0.5rem;
}

.contact-note p {
  font-size: 0.9rem;
  color: var(--gray-600);
  max-width: none;
  line-height: 1.6;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #2a5080;
  padding: 60px var(--section-pad-x) 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.footer-brand-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  max-width: 26ch;
  line-height: 1.65;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-contact-item span:first-child {
  font-size: 0.9rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span:last-child {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  word-break: break-all;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  max-width: none;
  letter-spacing: 0.02em;
}

.footer-bottom-flag {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}

/* ── Divider ────────────────────────────────────────────────── */
.gold-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

/* ── Hidden element (for filter) ────────────────────────────── */
.product-item {
  transition: all var(--transition);
}

.product-item.hidden {
  display: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet (768px) ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-pad-x: 28px;
  }

  /* Switch to hamburger before nav links start wrapping */
  .nav-hamburger {
    display: flex;
  }

  .nav-cart-icon {
    display: inline-flex !important;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-bottom: 1px solid #e0e0e0;
    z-index: 999;
  }

  .nav-toggle:checked ~ .nav-links {
    max-height: 500px;
  }

  .products-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .values-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }

  .why-item {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .why-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ── Mobile (768px) ─────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-pad-y: 48px;
    --section-pad-x: 20px;
  }

  /* Nav hamburger + cart icon */
  .nav-hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-cart-icon {
    display: inline-flex !important;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-wrapper {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    border-bottom: 1px solid #e0e0e0;
    z-index: 999;
  }

  .nav-links a {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    letter-spacing: 0.06em;
    width: 100%;
    display: block;
  }

  /* CSS-only toggle */
  .nav-toggle:checked ~ .nav-links {
    max-height: 320px;
  }

  .nav-toggle:checked ~ label .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked ~ label .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ label .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-full-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "ctas"
      "sub"
      "badges";
  }

  .hero-sub {
    text-align: right;
    margin-top: 10rem;
    margin-bottom: 1.5rem;
  }

  .hero-badges {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .btn {
    padding: 8px 14px;
    font-size: 0.72rem;
    text-align: left;
  }

  .values-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-bar-inner {
    gap: 0.75rem;
  }
}

/* ── Small mobile (375px) ───────────────────────────────────── */
@media (max-width: 420px) {
  .values-bar-inner {
    grid-template-columns: 1fr;
  }

  .hero-badge-icon {
    font-size: 1.25rem;
  }
}

/* ── Image additions ───────────────────────────────── */
.hero {
  background-image: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)), url('hero-new.jpg');
  background-size: cover;
  background-position: center;
}

.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 6px 6px 0 0;
  padding: 12px;
  display: block;
}

.intro-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 420px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.about-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 8px;
  margin: 2.5rem 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.gallery-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transition: transform 0.3s ease;
}

.gallery-strip img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .gallery-strip { grid-template-columns: 1fr; }
  .product-card-img { height: 160px; }
}

/* ============================================================
   NEW PAGES — Shop, Gallery, Testimonials, InstaShelves, Deals
   ============================================================ */

/* ── Nav Dropdown ───────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: ' ▾';
  font-size: 0.65rem;
  vertical-align: middle;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--navy-dark);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  min-width: 230px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 1010;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  list-style: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75) !important;
  border-bottom: none !important;
  white-space: nowrap;
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
}

.nav-dropdown-menu li a:hover {
  color: var(--white) !important;
  background: rgba(201,168,76,0.1);
  padding-left: 26px;
}

.nav-dropdown-menu li + li {
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* Dropdown arrow indicator on nav-wrapper */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 10px;
  height: 10px;
  background: var(--navy-dark);
  border-left: 1px solid rgba(201,168,76,0.25);
  border-top: 1px solid rgba(201,168,76,0.25);
  transform: rotate(45deg);
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 10px var(--section-pad-x);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray-400);
}

.breadcrumb-inner a {
  color: var(--gray-600);
  transition: color var(--transition);
}

.breadcrumb-inner a:hover { color: var(--navy); }
.breadcrumb-inner span.sep { color: var(--gray-200); }

/* ── Shop Main Page — Category Grid ────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.category-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.category-card-icon {
  background: var(--navy);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  min-height: 110px;
  position: relative;
  overflow: hidden;
}

.category-card-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.12) 0%, transparent 70%);
}

.category-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-card-body h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.category-card-body p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  flex: 1;
  max-width: none;
  margin-bottom: 1rem;
}

.category-card-btn {
  display: inline-block;
  padding: 9px 18px;
  background: var(--navy);
  color: var(--white) !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  align-self: flex-start;
  text-decoration: none;
}

.category-card-btn:hover {
  background: var(--gold) !important;
}

/* ── Shop Category Page — Product Grid ─────────────────────── */
.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.shop-product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.shop-product-card-img {
  width: 100%;
  height: 240px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shop-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.shop-product-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-product-card-body h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.shop-product-card-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.shop-product-card-body p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  max-width: none;
  margin-bottom: 1.25rem;
}

.shop-product-card-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-buy {
  background: var(--gold);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid var(--gold);
  display: inline-block;
}

.btn-buy:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
}

.btn-view {
  background: transparent;
  color: var(--navy);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid var(--navy);
  display: inline-block;
}

.btn-view:hover {
  background: var(--navy);
  color: var(--white);
}

/* Shop note/CTA banner */
.shop-note {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.75rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.shop-note p {
  font-size: 0.92rem;
  color: var(--gray-600);
  max-width: none;
  margin: 0;
  flex: 1;
}

/* ── Gallery Page ───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream-dark);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-card-hover);
  transform: scale(1.01);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gallery-placeholder span {
  font-size: 2.5rem;
}

.gallery-placeholder p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  max-width: 20ch;
  margin: 0;
  letter-spacing: 0.04em;
}

.gallery-item.span-2 {
  grid-column: span 2;
}

.gallery-item.tall {
  aspect-ratio: 3/4;
}

/* ── Testimonials Page ──────────────────────────────────────── */
.testimonials-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.testimonial-full-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-full-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}

.testimonial-full-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  border-color: var(--gold);
}

.testimonial-full-card blockquote {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-800);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  padding-top: 0.75rem;
  flex: 1;
}

.testimonial-full-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1px;
}

.testimonial-author-info span {
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
}

/* ── InstaShelves Dedicated Page ────────────────────────────── */
.instashelves-hero {
  background: var(--navy);
  padding: 80px var(--section-pad-x) 72px;
  position: relative;
  overflow: hidden;
}

.instashelves-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.instashelves-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.instashelves-hero-text h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.instashelves-hero-text .hero-sub {
  margin-bottom: 2rem;
}

.instashelves-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.instashelves-specs {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.spec-item strong {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.spec-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: none;
}

/* ── Deals Page ─────────────────────────────────────────────── */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.deal-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.deal-badge {
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  display: inline-block;
  border-radius: 2px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.deal-badge.new { background: var(--navy); }
.deal-badge.sale { background: #c0392b; }

.deal-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.deal-card-body h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.deal-pricing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.deal-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.deal-price-orig {
  font-size: 1rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.deal-card-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  max-width: none;
  margin-bottom: 1.25rem;
}

/* ── Responsive additions ───────────────────────────────────── */
@media (max-width: 768px) {
  /* Hide Shop dropdown on mobile — Shop link goes to shop.html */
  .nav-dropdown-menu {
    display: none !important;
  }

  /* Force all nav items to full width — no 2-column wrapping */
  .nav-links li {
    width: 100%;
  }

  /* Enough height for all main nav items */
  .nav-toggle:checked ~ .nav-links {
    max-height: 600px !important;
  }

  .category-grid { grid-template-columns: 1fr 1fr; }
  .shop-product-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-full-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.span-2 { grid-column: span 1; }
  .features-grid { grid-template-columns: 1fr; }
  .deals-grid { grid-template-columns: 1fr; }
  .instashelves-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .spec-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr; }
  .shop-product-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── Social Icons ─────────────────────────────────────────── */
.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1.25rem 0 0.5rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--gold);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
