* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --black: #004687;
    --dark: #1d1d1d;
    --gray: #444;
    --light: #f4f4f4;
    --border: #d6d6d6;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background: #e5e5e5;
    color: var(--black);
  }
  
  /* CONTAINER */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  .section {
    padding: 90px 0;
  }
  
  /* NAV */
  .navbar {
    position: sticky;
    top: 0;
    background: var(--black);
    display: flex;
    justify-content: space-between;
    padding: 15px 7%;
    z-index: 1000;
  }
  
  .logo a {
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    position: relative;
    padding-bottom: 4px;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.25s ease;
  }
  
  .nav-links a:hover::after,
  .nav-links a:focus-visible::after {
    width: 100%;
  }
  
  /* HERO */
  .hero {
    position: relative;
    height: 82vh;
  }
  
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.58);
  }
  
  .hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
  }
  
  .hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
  }
  
  .hero-content p {
    margin: 20px 0;
    max-width: 500px;
    color: #ddd;
  }
  
  .hero-button {
    display: inline-block;
    background: var(--black);
    color: white;
    padding: 12px 28px;
    text-decoration: none;
  }
  
  /* QUICK INFO */
  .quick-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: white;
    text-align: center;
  }
  
  .quick-card {
    padding: 40px;
    border-right: 1px solid #ddd;
  }
  
  .quick-card:last-child {
    border: none;
  }
  
  /* HEADINGS */
  .section-heading h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
  
  /* OVERVIEW */
  .services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .overview-card {
    background: white;
    padding: 25px;
    text-align: center;
    border-left: 5px solid var(--black);
    font-weight: bold;
  }
  
  /* SERVICE GRID */
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .service-card {
    background: white;
    padding: 25px;
  }
  
  /* SPECIALTY */
  .specialty-section {
    background: #dcdcdc;
  }
  
  .specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .specialty-grid div {
    background: white;
    padding: 20px;
    font-weight: bold;
  }
  
  /* INFO BOXES */
  .info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .info-box {
    background: white;
    padding: 25px;
    border-left: 5px solid var(--black);
  }
  
  /* CTA */
  .cta-section {
    background: var(--black);
    color: white;
    text-align: center;
    padding: 100px 20px;
  }
  
  .cta-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  /* FOOTER */
  .footer {
    background: var(--black);
    color: white;
    padding: 60px 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
  
    .quick-info {
      grid-template-columns: 1fr;
    }
  
    .quick-card {
      border-right: none;
      border-bottom: 1px solid #ddd;
    }
  
    .hero-content h1 {
      font-size: 2.5rem;
    }
  }
  
  .service-dropdown {
    margin: 20px 0 40px;
    padding: 12px;
    font-size: 1rem;
  }
  
  .service-group {
    display: none;
  }
  
  .service-group.active {
    display: block;
  }
  
  /* NEW CARD STYLE */
  .service-card {
    background: white;
    padding: 35px;
    text-align: center;
    border-left: 5px solid var(--black);
    transition: 0.2s;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  /* more breathing room */
  .service-grid {
    gap: 25px;
  }
  
   /* ========================= */
  /* RESTORED ABOUT / GIZMO STYLE */
  /* ========================= */
  
  .about-layout {
    max-width: 900px;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .about-text p {
    margin-bottom: 18px;
    color: #333;
    font-size: 1.05rem;
  }
  
  /* GIZMO SECTION (ORIGINAL STYLE RESTORED) */
  .gizmo-section {
    background: #dcdcdc;
  }
  
  .gizmo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  /* IMPORTANT: revert image behavior (no max-width, no styling constraints) */
  .gizmo-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* text stays original */
  .gizmo-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .gizmo-text p {
    margin-bottom: 15px;
    color: #333;
  }
  
   /* ========================= */
  /* CLEANED ABOUT PAGE HEADER */
  /* ========================= */
  
  .page-header {
    background: #1a1a1a;
    color: white;
  
    padding: 100px 0 70px;
    text-align: left;
  }
  
  .page-header .container {
    max-width: 900px;
  }
  
  .page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }
  
  .page-header p {
    font-size: 1.1rem;
    color: #cfcfcf;
    max-width: 500px;
  }
  
  /* adds subtle breathing space so it doesn't feel cramped */
  .page-header h1,
  .page-header p {
    position: relative;
    z-index: 2;
  }
  
  .page-header {
    background: linear-gradient(135deg, #111, #1a1a1a);
  }
  
  /* ========================= */
  /* REVIEWS CAROUSEL */
  /* ========================= */
  
  .reviews-section {
    background: #f4f4f4;
    overflow: hidden;
  }
  
  .eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .reviews-heading {
    margin-bottom: 35px;
  }
  
  .review-carousel-wrap {
    position: relative;
  }
  
  .review-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 5px 25px;
    scrollbar-width: thin;
  }
  
  .review-card {
    flex: 0 0 360px;
    background: white;
    padding: 30px;
    border-left: 5px solid var(--black);
    scroll-snap-align: start;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  
  .review-card p {
    color: #333;
    line-height: 1.6;
    margin: 15px 0 25px;
  }
  
  .review-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 4px;
  }
  
  .review-card span {
    color: #555;
    font-size: 0.9rem;
  }
  
  .stars {
    color: var(--black);
    letter-spacing: 2px;
    font-size: 1rem;
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--black);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 5;
  }
  
  .carousel-btn.prev {
    left: -20px;
  }
  
  .carousel-btn.next {
    right: -20px;
  }
  
  .carousel-btn:hover,
  .carousel-btn:focus-visible {
    background: #003565;
  }
  
  /* ========================= */
  /* MOTORCYCLE STORAGE PAGE */
  /* ========================= */
  
  .storage-hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111;
  }
  
  .storage-placeholder {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(0,70,135,0.8), rgba(17,17,17,0.78)),
      repeating-linear-gradient(45deg, #2d2d2d 0 18px, #1f1f1f 18px 36px);
  }
  
  .storage-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.32);
  }
  
  .storage-hero-content {
    position: relative;
    z-index: 2;
    color: white;
  }
  
  .storage-hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  
  .storage-hero-content p:last-child {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 520px;
  }
  
  .storage-info-section {
    background: #e5e5e5;
  }
  
  .storage-info-card {
    background: white;
    padding: 55px;
    border-left: 5px solid var(--black);
    max-width: 850px;
  }
  
  .storage-info-card h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    margin-bottom: 18px;
  }
  
  .storage-info-card p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      gap: 14px;
    }
  
    .nav-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
    }
  
    .review-card {
      flex-basis: 82vw;
    }
  
    .carousel-btn {
      display: none;
    }
  
    .gizmo-layout {
      grid-template-columns: 1fr;
    }
  
    .storage-info-card {
      padding: 35px 25px;
    }
  }
  
  /* ========================= */
  /* SERVICE DESCRIPTION POPUP */
  /* ========================= */
  
  .service-card {
    border-top: none;
    border-right: none;
    border-bottom: none;
    color: var(--black);
    font-family: inherit;
    cursor: pointer;
    width: 100%;
  }
  
  .service-card:focus-visible {
    outline: 3px solid #111;
    outline-offset: 4px;
  }
  
  .service-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
  }
  
  .service-modal.active {
    display: flex;
  }
  
  .service-modal-box {
    position: relative;
    width: min(520px, 100%);
    background: white;
    padding: 48px 38px 38px;
    border-left: 6px solid var(--black);
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
    animation: servicePopupFromCard 0.32s ease-out both;
  }
  
  @keyframes servicePopupFromCard {
    from {
      opacity: 0;
      transform: translate(var(--modal-start-x, 0), var(--modal-start-y, 0)) scale(0.28);
    }
  
    to {
      opacity: 1;
      transform: translate(0, 0) scale(1);
    }
  }
  
  .service-modal-close {
    position: absolute;
    top: 14px;
    left: 16px;
    border: none;
    background: transparent;
    color: var(--black);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
  }
  
  .service-modal-close:hover,
  .service-modal-close:focus-visible {
    color: #111;
  }
  
  .service-modal-box h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 14px;
  }
  
  .service-modal-box p {
    color: #333;
    line-height: 1.7;
    font-size: 1.05rem;
  }
  
  /* ========================= */
  /* MODERNIZED SERVICE SECTION */
  /* ========================= */
  
  #services {
    background: linear-gradient(180deg, #eeeeee 0%, #e5e5e5 100%);
  }
  
  #services .section-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(0, 70, 135, 0.18);
    padding-bottom: 24px;
  }
  
  .section-kicker {
    grid-column: 1 / -1;
    width: fit-content;
    color: var(--black);
    background: rgba(0, 70, 135, 0.08);
    border: 1px solid rgba(0, 70, 135, 0.14);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  #services .section-heading h2 {
    font-size: clamp(3rem, 6vw, 4.6rem);
    line-height: 0.95;
    margin: 0;
    text-transform: uppercase;
  }
  
  #services .section-heading p {
    max-width: 440px;
    color: #333;
    font-size: 1.18rem;
    line-height: 1.6;
  }
  
  .service-dropdown {
    appearance: none;
    width: min(360px, 100%);
    margin: 0 0 34px;
    padding: 16px 48px 16px 20px;
    border: 1px solid rgba(0, 70, 135, 0.22);
    border-radius: 999px;
    background:
      linear-gradient(45deg, transparent 50%, var(--black) 50%) calc(100% - 24px) 50% / 8px 8px no-repeat,
      linear-gradient(135deg, var(--black) 50%, transparent 50%) calc(100% - 18px) 50% / 8px 8px no-repeat,
      white;
    color: var(--black);
    font-size: 1.08rem;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  }
  
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  
  .service-card {
    position: relative;
    min-height: 168px;
    padding: 34px 30px;
    border: 1px solid rgba(0, 70, 135, 0.12);
    border-left: 1px solid rgba(0, 70, 135, 0.12);
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(0, 70, 135, 0.10), transparent 42%),
      white;
    text-align: left;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  
  .service-card::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 28px;
    width: 38px;
    height: 4px;
    border-radius: 999px;
    background: var(--black);
  }
  
  .service-card::after {
    content: "View details →";
    position: absolute;
    left: 30px;
    bottom: 24px;
    color: #333;
    font-size: 0.92rem;
    font-weight: 700;
    opacity: 0.78;
  }
  
  .service-card h3 {
    margin-top: 18px;
    margin-bottom: 14px;
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-size: 1.65rem;
    line-height: 1.05;
    letter-spacing: 0.01em;
  }
  
  .service-card p {
    color: #333;
    font-size: 1.12rem;
    font-weight: 500;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 70, 135, 0.35);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
  }
  
  .service-modal {
    background: rgba(0, 0, 0, 0.20);
  }
  
  .service-modal-box {
    border-left: 0;
    border-radius: 26px;
    padding: 56px 44px 42px;
  }
  
  .service-modal-box h2 {
    font-size: 2.35rem;
  }
  
  .service-modal-box p {
    font-size: 1.18rem;
  }
  
  @media (max-width: 900px) {
    #services .section-heading {
      grid-template-columns: 1fr;
      align-items: start;
    }
  
    .service-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 640px) {
    .service-grid {
      grid-template-columns: 1fr;
    }
  
    .service-card {
      min-height: 150px;
    }
  }
  
  
  /* FINAL SERVICE CARD CLEANUP */
  .service-card {
    border-radius: 4px;
    min-height: 156px;
    padding: 32px 30px;
    border: 1px solid rgba(0, 70, 135, 0.14);
    background:
      radial-gradient(circle at top right, rgba(0, 70, 135, 0.08), transparent 40%),
      white;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.065);
    cursor: pointer;
  }
  
  .service-card::before {
    left: 30px;
    top: 28px;
    width: 36px;
    height: 3px;
    border-radius: 2px;
  }
  
  .service-card::after {
    content: none;
  }
  
  .service-card h3 {
    margin-top: 18px;
    margin-bottom: 12px;
    font-size: 1.72rem;
  }
  
  .service-card p {
    font-size: 1.16rem;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 70, 135, 0.34);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.11);
  }
  
  .service-modal {
    background: rgba(0, 0, 0, 0.14);
  }
  
  .service-modal-box {
    border-radius: 6px;
  }
  
  /* ========================= */
  /* FINAL MODERN POLISH */
  /* ========================= */
  
  .hero-button {
    background: linear-gradient(135deg, #004687 0%, #075ca8 100%);
    box-shadow: 0 12px 28px rgba(0, 70, 135, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }
  
  .hero-button:hover,
  .hero-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 70, 135, 0.32);
  }
  
  .reviews-section {
    background:
      radial-gradient(circle at top left, rgba(0, 70, 135, 0.12), transparent 34%),
      linear-gradient(180deg, #f7f7f7 0%, #e8edf2 100%);
  }
  
  .review-card {
    background:
      linear-gradient(145deg, rgba(255,255,255,0.98), rgba(245,248,251,0.96)),
      white;
    border: 1px solid rgba(0, 70, 135, 0.11);
    border-left: 4px solid var(--black);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  
  .review-card:hover {
    transform: scale(1.025);
    border-color: rgba(0, 70, 135, 0.26);
    box-shadow: 0 18px 42px rgba(0,0,0,0.13);
  }
  
  .info-boxes {
    align-items: stretch;
  }
  
  .info-box {
    background:
      radial-gradient(circle at top right, rgba(0, 70, 135, 0.10), transparent 42%),
      linear-gradient(145deg, #ffffff 0%, #f1f5f8 100%);
    border: 1px solid rgba(0, 70, 135, 0.12);
    border-left: 4px solid var(--black);
    border-radius: 4px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.07);
  }
  
  .info-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 12px;
  }
  
  .info-box p {
    color: #333;
    line-height: 1.6;
  }
  
  /* About page: warmer local-shop intro; Gizmo layout stays untouched */
  .about-layout {
    max-width: 900px;
  }
  
  .about-text {
    background: #ffffff;
    border-left: 5px solid var(--black);
    padding: 42px 46px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  }
  
  .about-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3rem);
    line-height: 1;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
  }
  
  .about-text p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #333;
  }
  
  .page-header {
    background: linear-gradient(135deg, #141414, #242424);
    border-bottom: 6px solid var(--black);
  }
  
  .page-header h1 {
    font-family: 'Oswald', sans-serif;
    text-transform: none;
  }
  
  @media (max-width: 640px) {
    .about-text {
      padding: 32px 24px;
    }
  }
  
  /* ========================= */
  /* REQUESTED FINAL TWEAKS */
  /* ========================= */
  
  /* Keep nav readable on every page/section */
  .nav-links a,
  .nav-links a:visited,
  .nav-links a:active {
    color: #ffffff;
    opacity: 1;
  }
  
  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: #ffffff;
  }
  
  /* Clickable location cards/links */
  .quick-card-link {
    display: block;
    color: var(--black);
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
  }
  
  .quick-card-link:hover,
  .quick-card-link:focus-visible {
    background: #f4f7fa;
    transform: translateY(-2px);
  }
  
  .footer-link,
  .footer-link:visited {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.7);
  }
  
  .footer-link:hover,
  .footer-link:focus-visible {
    border-bottom-color: #ffffff;
  }
  
  /* Bottom Call Now button: no gradient, white underline */
  .cta-section .hero-button {
    background: transparent;
    box-shadow: none;
    padding: 10px 0 5px;
    border-radius: 0;
    border-bottom: 2px solid #ffffff;
  }
  
  .cta-section .hero-button:hover,
  .cta-section .hero-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: none;
  }
  
  /* Image headers */
  .image-page-header,
  .storage-hero {
    position: relative;
    overflow: hidden;
    background: #111;
  }
  
  .page-header-image,
  .storage-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  .page-header-overlay,
  .storage-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.42);
    z-index: 1;
  }
  
  .image-page-header .container,
  .storage-hero-content {
    position: relative;
    z-index: 2;
  }
  
  .image-page-header {
    min-height: 54vh;
    display: flex;
    align-items: flex-end;
    border-bottom: 6px solid var(--black);
  }
  
  /* Restore About intro to a local-shop feel and remove the extra box */
  .about-layout {
    max-width: 1200px;
  }
  
  .about-text {
    background: transparent;
    border-left: none;
    box-shadow: none;
    padding: 0;
    max-width: 760px;
    text-align: left;
  }
  
  .about-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3rem);
    margin-bottom: 20px;
  }
  
  .about-text p {
    max-width: 720px;
  }
  
  /* Simple local shop photo carousel, placed after Gizmo */
  .shop-gallery-section {
    background: #eeeeee;
    padding-top: 70px;
  }
  
  .shop-gallery-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
  }
  
  .shop-gallery-top h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
  }
  
  .gallery-controls {
    display: flex;
    gap: 10px;
  }
  
  .gallery-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--black);
    background: transparent;
    color: var(--black);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }
  
  .gallery-btn:hover {
    background: var(--black);
    color: white;
    transform: translateY(-2px);
  }
  
  .shop-carousel {
    overflow: hidden;
  }
  
  .shop-carousel-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  
  .shop-carousel-track::-webkit-scrollbar {
    display: none;
  }
  
  .shop-slide {
    flex: 0 0 calc((100% - 22px) / 2);
    scroll-snap-align: start;
  }
  
  .shop-slide img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
  }
  
  @media (max-width: 700px) {
    .shop-gallery-top {
      align-items: flex-start;
      flex-direction: column;
    }
  
    .shop-slide {
      flex-basis: 100%;
    }
  
    .shop-slide img {
      height: 285px;
    }
  }
  
  /* Storage page image replaces the placeholder pattern */
  .storage-placeholder {
    display: none;
  }
  
  @media (max-width: 900px) {
    .shop-gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 560px) {
    .shop-gallery-grid {
      grid-template-columns: 1fr;
    }
  
    .shop-gallery-grid img {
      height: 240px;
    }
  }
  