/* ===========================================
   Complete Computing SW — Main Stylesheet
   Brand: #ff7424 (orange) + light grey
   =========================================== */

/* ---------- Custom Properties ---------- */
:root {
  --orange:       #ff7424;
  --orange-dark:  #e55e0e;
  --orange-pale:  rgba(255,116,36,0.1);
  --dark:         #1e1e1e;
  --dark-mid:     #2c2c2c;
  --grey-light:   #f6f6f6;
  --grey:         #e0e0e0;
  --grey-mid:     #888;
  --text:         #333;
  --white:        #fff;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow:       0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.15);
  --radius:       10px;
  --radius-lg:    16px;
  --transition:   0.25s ease;
  --max-width:    1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem,   5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem,2vw, 1.6rem); }

/* ---------- Utility ---------- */
.container     { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section       { padding: 5rem 0; }
.section--grey { background: var(--grey-light); }
.text-center   { text-align: center; }

.section-label {
  display: inline-block;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.section-title    { margin-bottom: 0.5rem; }
.section-subtitle { color: var(--grey-mid); font-size: 1.05rem; margin-bottom: 3rem; max-width: 620px; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,116,36,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn--outline-dark:hover {
  background: var(--orange);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--grey-light);
  transform: translateY(-2px);
}
.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.875rem; }

/* ---------- Top Hours Banner ---------- */
.hours-banner {
  background: var(--dark-mid);
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}
.hours-banner strong { color: var(--orange); }
.hours-banner a { color: var(--orange); }
.hours-banner a:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.header__logo img  { height: 46px; width: auto; }

.nav {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav__link {
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover,
.nav__link.active { color: var(--orange); background: var(--orange-pale); }

.nav__cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius) !important;
}
.nav__cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/shop_in1920_narrow.jpg');
  background-size: cover;
  background-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,20,20,0.80) 0%, rgba(20,20,20,0.45) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__title span { color: var(--orange); }
.hero__subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero__buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hours Card (hero) */
.hero__hours-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}
.hero__hours-card h3 {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hours-list { display: flex; flex-direction: column; gap: 0.6rem; }
.hours-row  { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 0.92rem; }
.hours-row__days { opacity: 0.85; }
.hours-row__time { font-weight: 700; color: var(--white); white-space: nowrap; }
.hours-divider { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 0.75rem 0; }
.hours-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
}
.hours-phone svg { flex-shrink: 0; }

/* ---------- USP Bar ---------- */
.usp-bar { background: var(--dark); padding: 3rem 0; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.usp-item { text-align: center; }
.usp-item__icon {
  width: 56px;
  height: 56px;
  background: rgba(255,116,36,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--orange);
}
.usp-item__title { color: var(--white); font-weight: 700; font-size: 1rem; margin-bottom: 0.35rem; }
.usp-item__desc  { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ---------- Services Grid (homepage) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__img {
  height: 190px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card__icon {
  width: 40px;
  height: 40px;
  background: var(--orange-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  font-size: 1.1rem;
}
.service-card__title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card__desc  { color: var(--grey-mid); font-size: 0.9rem; margin-bottom: 1.1rem; flex: 1; }
.service-card__link  { color: var(--orange); font-weight: 600; font-size: 0.9rem; }
.service-card__link:hover { text-decoration: underline; }

/* ---------- Store Feature ---------- */
.store-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.store-feature__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.store-feature__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.store-feature__label   { margin-bottom: 0.5rem; }
.store-feature__title   { margin-bottom: 1.25rem; }
.store-feature__text    { color: var(--grey-mid); margin-bottom: 2rem; }
.store-feature__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
}
.review-card__quote {
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}
.review-card__stars { color: #f4b400; font-size: 1rem; margin-bottom: 0.9rem; letter-spacing: 2px; }
.review-card__text  { color: var(--text); font-size: 0.95rem; margin-bottom: 1.5rem; flex: 1; font-style: italic; }
.review-card__author { font-weight: 700; font-size: 0.9rem; }
.review-card__date   { color: var(--grey-mid); font-size: 0.8rem; margin-top: 0.2rem; }

.reviews__footer {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--grey-mid);
  font-size: 0.9rem;
}
.reviews__footer a { color: var(--orange); font-weight: 600; }
.reviews__footer a:hover { text-decoration: underline; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #383838 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff7424' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1   { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p    { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ---------- Services Page — Detail Sections ---------- */
.service-section { padding: 5rem 0; }
.service-section--alt { background: var(--grey-light); }
.service-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.service-section--alt .service-section__inner { direction: rtl; }
.service-section--alt .service-section__content { direction: ltr; }

.service-section__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-section__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.service-section__icon {
  width: 56px;
  height: 56px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.service-section__content h2 { margin-bottom: 1rem; }
.service-section__content p  { color: var(--grey-mid); margin-bottom: 1.25rem; }
.service-section__list { margin-bottom: 1.75rem; }
.service-section__list li {
  padding: 0.45rem 0 0.45rem 1.75rem;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}
.service-section__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='white'%3E%3Cpath d='M10 3L5 8.5 2 5.5'  stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
}
.service-external-note {
  background: var(--orange-pale);
  border-left: 4px solid var(--orange);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

/* ---------- Prices Page ---------- */
.prices-note {
  background: var(--orange-pale);
  border-left: 4px solid var(--orange);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.prices-note strong { color: var(--orange); }
.prices-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.prices-table thead th {
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.prices-table tbody td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--grey);
  vertical-align: middle;
}
.prices-table tbody tr:last-child td { border-bottom: none; }
.prices-table tbody tr:nth-child(even) { background: var(--grey-light); }
.prices-table tbody tr:hover { background: var(--orange-pale); }
.price-value { font-weight: 700; color: var(--orange); font-size: 1.05rem; }
.price-note  { font-size: 0.8rem; color: var(--grey-mid); display: block; }

/* ---------- Products Page ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-card__img {
  height: 200px;
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__body { padding: 1.5rem; }
.product-card__title { margin-bottom: 0.6rem; font-size: 1.15rem; }
.product-card__desc  { color: var(--grey-mid); font-size: 0.9rem; }

.brands-section { margin-top: 1rem; }
.brands-section h3 { margin-bottom: 1.5rem; }
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.brand-chip {
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: border-color var(--transition), color var(--transition);
}
.brand-chip:hover { border-color: var(--orange); color: var(--orange); }

.pc-builder-card {
  background: linear-gradient(135deg, var(--dark) 0%, #3a3a3a 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}
.pc-builder-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.pc-builder-card p  { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.pc-builder-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Contact Page ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.contact-card {
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card--featured {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.contact-card--featured h3,
.contact-card--featured p,
.contact-card--featured address { color: var(--white) !important; }
.contact-card__icon {
  width: 60px;
  height: 60px;
  background: var(--orange-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.contact-card--featured .contact-card__icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.contact-card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.contact-card p  { font-size: 0.9rem; color: var(--grey-mid); flex: 1; }

.hours-map-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.opening-hours-table { width: 100%; border-collapse: collapse; }
.opening-hours-table tr { border-bottom: 1px solid var(--grey); }
.opening-hours-table tr:last-child { border-bottom: none; }
.opening-hours-table td { padding: 0.55rem 0; font-size: 0.9rem; }
.opening-hours-table td:last-child { text-align: right; font-weight: 700; color: var(--dark); }
.opening-hours-table .today td { color: var(--orange); }

/* Responsive Video Embed */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* 3D Printing price links */
.price-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/* Map */
.map-section { padding: 0 0 5rem; }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-embed iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 4.5rem 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand { }
.footer__brand img {
  height: 42px;
  margin-bottom: 1.25rem;
}
.footer__brand p { font-size: 0.875rem; opacity: 0.65; max-width: 260px; }
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background var(--transition), color var(--transition);
  color: rgba(255,255,255,0.7);
}
.footer__social a:hover { background: var(--orange); color: var(--white); }
.footer__col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer__col li { margin-bottom: 0.55rem; }
.footer__col li a { font-size: 0.875rem; transition: color var(--transition); }
.footer__col li a:hover { color: var(--orange); }

.footer__hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
}
.footer__hours-list li span:last-child { color: var(--white); font-weight: 600; }

.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: 0.8rem; }
.footer__bottom a { color: var(--orange); }
.footer__bottom a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__hours-card { max-width: 420px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .store-feature { grid-template-columns: 1fr; gap: 3rem; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .service-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-section--alt .service-section__inner { direction: ltr; }
  .contact-cards { grid-template-columns: 1fr; }
  .hours-map-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .pc-builder-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .print3d-grid { grid-template-columns: 1fr !important; }
  .print3d-grid img { min-height: 220px !important; }
  .section { padding: 3.5rem 0; }
  .hamburger { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 0.25rem;
    z-index: 300;
  }
  .nav.open { display: flex; }
  .nav__link { padding: 0.75rem 1rem; }
  .nav__cta { text-align: center; }
  .hero { min-height: auto; }
  .hero__content { padding: 3rem 1.5rem; }
  .hero__title { font-size: 2rem; }
  .hero__buttons { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
  .hours-banner { flex-direction: column; gap: 0.4rem; }
}
