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

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  overflow: visible;
  background: #16a34a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

/* ── FOCUS INDICATORS ── */
:focus-visible { outline: 2px solid #22c55e; outline-offset: 3px; border-radius: 3px; }
.form-input:focus-visible { outline: none; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  background: #0e0f12;
  color: #f4f4f5;
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  border-bottom: 1px solid #1c1e24;
  position: sticky;
  top: 0;
  background: rgba(14,15,18,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: #f4f4f5; font-weight: 600; }

.nav-cta {
  background: #16a34a;
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}
.nav-cta:hover { background: #15803d; }

/* ── HAMBURGER ── */
.nav-ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s;
}
.nav-ham:hover { background: #1c1e24; }
.nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f4f4f5;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 300;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.drawer-overlay.visible { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: #13141a;
  border-left: 1px solid #1c1e24;
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid #1c1e24;
}
.drawer-brand {
  font-size: 17px;
  font-weight: 700;
  color: #f4f4f5;
  letter-spacing: -0.02em;
}
.drawer-close {
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid #1c1e24;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  font-size: 16px;
  transition: border-color 0.15s, color 0.15s;
}
.drawer-close:hover { border-color: #2e3038; color: #f4f4f5; }

.drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  color: #a1a1aa;
  text-decoration: none;
  padding: 15px 24px;
  border-bottom: 1px solid rgba(28,30,36,0.6);
  transition: color 0.15s, background 0.15s;
}
.drawer-nav a:last-child { border-bottom: none; }
.drawer-nav a:hover { color: #f4f4f5; background: rgba(255,255,255,0.03); }
.drawer-nav a.active { color: #f4f4f5; font-weight: 700; }
.drawer-arrow {
  display: inline-block;
  font-size: 14px;
  color: #6b7280;
  transition: color 0.15s, transform 0.15s;
}
.drawer-nav a:hover .drawer-arrow { color: #71717a; transform: translateX(3px); }
.drawer-nav a.active .drawer-arrow { color: #22c55e; }

.drawer-footer {
  padding: 20px 24px 30px;
  border-top: 1px solid #1c1e24;
}
.drawer-phone {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 14px;
}
.drawer-phone a {
  color: #a1a1aa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.drawer-phone a:hover { color: #f4f4f5; }
.drawer-cta {
  display: block;
  background: #16a34a;
  color: #f4f4f5;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s;
}
.drawer-cta:hover { background: #15803d; }

/* ── HERO ── */
.hero {
  padding: 110px 48px 80px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.22);
  color: #4ade80;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #f9fafb;
  margin-bottom: 22px;
}
h1 .accent { color: #22c55e; }

.sub {
  font-size: 20px;
  color: #c1c7d0;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #16a34a;
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: #15803d; transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: #a1a1aa;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 9px;
  border: 1px solid #27272a;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.15s, color 0.15s;
}
.btn-secondary:hover { border-color: #3f3f46; color: #f4f4f5; }

/* ── TRUST STRIP ── */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 64px auto 0;
  max-width: 700px;
  border: 1px solid #1c1e24;
  border-radius: 14px;
  overflow: hidden;
  background: #13141a;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  flex: 1;
  border-right: 1px solid #1c1e24;
}
.trust-item:last-child { border-right: none; }

.trust-icon { font-size: 20px; flex-shrink: 0; width: 28px; text-align: center; }
.trust-label strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #f4f4f5;
  white-space: nowrap;
}
.trust-label span {
  font-size: 12px;
  color: #c1c7d0;
  white-space: nowrap;
}

/* ── SECTION SHARED ── */
.section {
  padding: 96px 48px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #22c55e;
  margin-bottom: 14px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: #c1c7d0;
  margin-bottom: 56px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  background: #13141a;
  border: 1px solid #1c1e24;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.service-card:hover {
  border-color: rgba(22,163,74,0.5);
  background: rgba(22,163,74,0.04);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 30px;
  margin-bottom: 14px;
}
.service-name {
  font-size: 14px;
  font-weight: 700;
  color: #f4f4f5;
  margin-bottom: 8px;
}
.service-desc {
  font-size: 13px;
  color: #c1c7d0;
  line-height: 1.5;
  margin-bottom: 0;
}
.service-divider {
  height: 1px;
  background: #1c1e24;
  margin: 18px 0;
}
.service-bullets {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-bullets li {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
}
.service-bullets li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}
.service-note {
  font-size: 11px;
  color: #6b7280;
  text-align: left;
  margin-top: 14px;
  line-height: 1.4;
}

/* ── PAGE DIVIDER ── */
.divider {
  height: 1px;
  background: #1c1e24;
  max-width: 100%;
}

/* ── PROCESS SECTION ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #1c1e24;
  border: 1px solid #1c1e24;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 0;
}
.process-step {
  background: #13141a;
  padding: 36px 32px;
  text-align: center;
}
.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #22c55e;
  margin-bottom: 14px;
}
.step-icon { font-size: 28px; margin-bottom: 12px; }
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: #9ca3af; line-height: 1.6; }

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: 96px 48px;
  max-width: 640px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.cta-section h2 span { color: #22c55e; }
.cta-section p {
  font-size: 18px;
  color: #c1c7d0;
  margin-bottom: 36px;
  line-height: 1.6;
}
.cta-phone {
  font-size: 28px;
  font-weight: 800;
  color: #c1c7d0;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cta-sub { font-size: 13px; color: #6b7280; margin-bottom: 32px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid #1c1e24;
  padding: 48px;
  text-align: center;
  background: #0b0c0f;
}
.footer-logo { margin-bottom: 28px; display: flex; justify-content: center; }
.footer-logo img { height: 26px; opacity: 0.7; }
.footer-locations {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
}
.footer-location-name { font-size: 13px; font-weight: 600; color: #a1a1aa; margin-bottom: 4px; }
.footer-location-phone { font-size: 13px; color: #6b7280; }
.footer-location-phone a { color: inherit; text-decoration: none; transition: color 0.15s; }
.footer-location-phone a:hover { color: #a1a1aa; }
.footer-bottom {
  font-size: 12px;
  color: #6b7280;
  margin-top: 24px;
}

/* ── SUB-PAGE HERO ── */
.page-hero {
  padding: 80px 48px 60px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f9fafb;
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero .accent { color: #22c55e; }
.page-hero p {
  font-size: 20px;
  color: #c1c7d0;
  line-height: 1.65;
}
.page-hero-note {
  font-size: 15px;
  color: #71717a;
  margin-top: 12px;
}

/* ── LOCATION CARDS ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.location-card {
  background: #13141a;
  border: 1px solid #1c1e24;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.15s;
}
.location-card:not(.closed):hover {
  border-color: rgba(22,163,74,0.5);
  transform: translateY(-2px);
}
.location-card.closed { opacity: 0.4; }

/* Band — centered header area */
.loc-band {
  background: #0d0e12;
  border-bottom: 1px solid #1c1e24;
  padding: 24px 20px 20px;
  text-align: center;
  position: relative;
}

/* Body — centered details */
.loc-body {
  padding: 18px 20px 22px;
  text-align: center;
}

.loc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  padding: 4px 10px;
  position: absolute;
  top: 12px;
  right: 14px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-open {
  background: rgba(22,163,74,0.12);
  color: #4ade80;
  border: 1px solid rgba(22,163,74,0.22);
}
.status-open .status-dot { background: #22c55e; }
.status-closed {
  background: rgba(239,68,68,0.1);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.2);
}
.status-closed .status-dot { background: #ef4444; }

.loc-icon { font-size: 30px; margin-bottom: 10px; }
.loc-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 30%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  line-height: 1.1;
}

.loc-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.loc-details li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.detail-icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.65;
}
.loc-details li span {
  font-size: 14px;
  font-weight: 600;
  color: #c1c7d0;
  line-height: 1.6;
}
.loc-details li a {
  font-size: 14px;
  font-weight: 600;
  color: #22c55e;
  text-decoration: none;
}
.loc-details li a:hover { color: #f4f4f5; }

.loc-stars {
  margin-bottom: 0;
}
.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #22c55e;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-review:hover {
  background: rgba(34, 197, 94, 0.22);
  border-color: rgba(34, 197, 94, 0.7);
  color: #4ade80;
}

.closed-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  display: block;
  margin-top: 14px;
}

/* ── CONTACT FORM ── */
.form-card {
  background: #13141a;
  border: 1px solid #1c1e24;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 15px;
  font-weight: 600;
  color: #c1c7d0;
  letter-spacing: 0.01em;
}

.form-required { color: #22c55e; }
.form-optional { color: #6b7280; font-weight: 400; }

.form-input {
  background: #0e0f12;
  border: 1px solid #1c1e24;
  border-radius: 8px;
  color: #f4f4f5;
  font-size: 17px;
  font-family: inherit;
  padding: 12px 16px;
  outline: none; /* custom focus via border-color + :focus-visible override above */
  transition: border-color 0.15s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: #71717a; }
.form-input:focus { border-color: #16a34a; }

select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2352525b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
select.form-input option { background: #13141a; color: #f4f4f5; }

.form-textarea { min-height: 130px; resize: vertical; }

.form-submit {
  font-size: 15px;
  padding: 14px 28px;
  width: 100%;
  margin-top: 4px;
}

.form-footer-note {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  line-height: 1.6;
}
.form-footer-note a { color: #22c55e; text-decoration: none; }
.form-footer-note a:hover { color: #f4f4f5; }

.form-notice {
  max-width: 680px;
  margin: 0 auto 0;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}
.form-notice-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #f87171;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
}

/* ── SHOP PAGE ── */
.shop-hero {
  padding: 72px 5% 48px;
  text-align: center;
}
.shop-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 30%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.shop-hero p { color: #a1a1aa; font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.category-nav {
  background: #0d0e12;
  border-bottom: 1px solid #1c1e24;
  position: sticky;
  top: 68px;
  z-index: 90;
}
.category-nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-nav-inner::-webkit-scrollbar { display: none; }
.cat-tab {
  padding: 15px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #71717a;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  font-family: inherit;
  transition: color 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.cat-tab:hover { color: #c1c7d0; }
.cat-tab.active { color: #22c55e; border-bottom-color: #22c55e; }

.subcat-bar-wrap { background: #0e0f12; border-bottom: 1px solid #1c1e24; }
.subcat-bar {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 5%;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.subcat-pill {
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #1c1e24;
  background: transparent;
  color: #a1a1aa;
  font-family: inherit;
  transition: all 0.18s;
  white-space: nowrap;
}
.subcat-pill:hover { border-color: #2e3038; color: #f4f4f5; }
.subcat-pill.active { background: #22c55e; border-color: #22c55e; color: #000; font-weight: 600; }

.shop-container { max-width: 1160px; margin: 0 auto; padding: 0 5%; }

.shop-featured { padding: 52px 0 40px; }
.featured-card {
  background: #13141a;
  border: 1px solid #1c1e24;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 300px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.featured-card:hover { border-color: #2e3038; box-shadow: 0 16px 52px rgba(0,0,0,0.6); }
.featured-img {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.featured-img img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.feat-emoji { font-size: 5.5rem; }
.featured-body { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #22c55e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  width: fit-content;
}
.featured-body h2 { font-size: 1.5rem; font-weight: 800; color: #f4f4f5; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 12px; }
.featured-desc { color: #a1a1aa; font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.featured-why { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.featured-why-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.83rem; color: #a1a1aa; }
.featured-why-item::before { content: '✓'; color: #22c55e; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.btn-amazon-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #16a34a;
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s;
  width: fit-content;
}
.btn-amazon-lg:hover { background: #15803d; }

.shop-grid { padding: 0 0 88px; }
.more-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.more-header h3 { font-size: 0.95rem; font-weight: 700; color: #f4f4f5; letter-spacing: -0.01em; }
.more-divider { flex: 1; height: 1px; background: #1c1e24; }
.more-count { font-size: 0.74rem; color: #6b7280; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card {
  background: #13141a;
  border: 1px solid #1c1e24;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.product-card:hover { transform: translateY(-4px); border-color: #2e3038; box-shadow: 0 12px 40px rgba(0,0,0,0.55); }
.product-img {
  aspect-ratio: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.prod-emoji { font-size: 2.8rem; }
.product-body { padding: 15px 17px 19px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 0.84rem; font-weight: 700; color: #f4f4f5; margin-bottom: 7px; line-height: 1.4; }
.product-body p { font-size: 0.77rem; color: #71717a; margin-bottom: 15px; line-height: 1.5; flex: 1; }
.btn-amazon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #16a34a;
  color: #fff;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s;
  margin-top: auto;
}
.btn-amazon:hover { background: #15803d; }

.coming-soon { padding: 100px 5%; text-align: center; }
.coming-icon { font-size: 3rem; margin-bottom: 20px; opacity: 0.5; }
.coming-soon h3 { font-size: 1.2rem; font-weight: 700; color: #f4f4f5; margin-bottom: 10px; letter-spacing: -0.02em; }
.coming-soon p { color: #6b7280; font-size: 0.88rem; max-width: 400px; margin: 0 auto; }

#content-area { animation: shopFadeIn 0.2s ease; }
@keyframes shopFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.ftc-disclosure { text-align: center; padding: 18px 5%; color: #6b7280; font-size: 0.74rem; border-top: 1px solid #1c1e24; }

.nav-links a.active { color: #f4f4f5; font-weight: 700; }

@media (max-width: 900px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-img { min-height: 200px; }
  .featured-body { padding: 28px 28px 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .product-grid { grid-template-columns: 1fr; }
  .shop-hero h1 { font-size: 1.75rem; }
}

/* ── INFO CARD (business-it, about) ── */
.info-card {
  background: #13141a;
  border: 1px solid #1c1e24;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.info-card p {
  font-size: 16px;
  color: #71717a;
  line-height: 1.7;
  margin-bottom: 28px;
}
.info-card .info-icon {
  font-size: 40px;
  margin-bottom: 20px;
}
.info-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #f4f4f5;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* ── ABOUT PAGE — TWO-COL + SOCIALS CARD ── */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.about-two-col .info-card {
  max-width: none;
  margin: 0;
}
.socials-sub {
  font-size: 14px;
  color: #71717a;
  margin-bottom: 28px;
  line-height: 1.6;
}
.social-platform-group { margin-bottom: 22px; }
.social-platform-group:last-child { margin-bottom: 0; }
.social-platform-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-platform-label svg { width: 16px; height: 16px; opacity: 0.7; }
.social-loc-row { display: flex; gap: 8px; }
.social-loc-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  background: #0e0f12;
  border: 1px solid #1c1e24;
  border-radius: 10px;
  color: #a1a1aa;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-loc-btn:hover { border-color: #22c55e; color: #f4f4f5; }
.social-loc-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.social-insta-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 18px;
  background: #0e0f12;
  border: 1px solid #1c1e24;
  border-radius: 10px;
  color: #a1a1aa;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-insta-btn:hover { border-color: #22c55e; color: #f4f4f5; }
.social-insta-btn svg { width: 20px; height: 20px; }
@media (max-width: 700px) {
  .about-two-col { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE: ≤768px ── */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-ham { display: flex; }
  .drawer-overlay { display: block; }

  h1 { font-size: 42px; }
  .page-hero h1 { font-size: 34px; }
  .section-title { font-size: 28px; }
  .cta-section h2 { font-size: 30px; }
  .sub { font-size: 17px; }
  .section-sub { font-size: 15px; }
  .page-hero p { font-size: 16px; }

  .hero { padding: 64px 20px 56px; }
  .section { padding: 60px 20px; }
  .cta-section { padding: 60px 20px; }
  .page-hero { padding: 56px 20px 40px; }
  footer { padding: 32px 20px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-locations { flex-direction: column; gap: 24px; align-items: center; }
}

/* ── RESPONSIVE: ≤480px ── */
@media (max-width: 480px) {
  h1 { font-size: 34px; }
  .page-hero h1 { font-size: 28px; }
  .section-title { font-size: 24px; }
  .cta-section h2 { font-size: 26px; }
  .sub { font-size: 15px; }

  .hero { padding: 52px 16px 44px; }
  .section { padding: 48px 16px; }
  .cta-section { padding: 48px 16px; }

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

  .trust-strip { flex-direction: column; margin-top: 40px; }
  .trust-item { border-right: none; border-bottom: 1px solid #1c1e24; justify-content: center; padding: 16px 20px; }
  .trust-item:last-child { border-bottom: none; }
}
