/* =========================================================
   PAGE SHOP CORE
   Silver Star Vending
   Modernist / corporate / flat embedded
   Main-only styling for /shop/index.html
   ========================================================= */

   :root {
    --shop-bg-1: #0f1c28;
    --shop-bg-2: #133246;
    --shop-bg-3: #1b5974;
  
    --shop-surface: rgba(255, 255, 255, 0.76);
    --shop-surface-strong: rgba(255, 255, 255, 0.92);
    --shop-surface-soft: rgba(255, 255, 255, 0.58);
  
    --shop-border: rgba(15, 23, 42, 0.08);
    --shop-border-strong: rgba(15, 23, 42, 0.12);
    --shop-border-accent: rgba(34, 211, 238, 0.22);
  
    --shop-text: #102132;
    --shop-text-soft: #5d6f80;
    --shop-text-muted: #738395;
    --shop-heading: #0f1f33;
  
    --shop-accent: #0f8aad;
    --shop-accent-2: #22d3ee;
    --shop-accent-3: #155e75;
  
    --shop-shadow-sm:
      0 10px 24px rgba(15, 23, 42, 0.06),
      0 2px 8px rgba(15, 23, 42, 0.04);
  
    --shop-shadow-md:
      0 16px 40px rgba(8, 24, 36, 0.12),
      0 6px 18px rgba(8, 24, 36, 0.06);
  
    --shop-shadow-lg:
      0 24px 64px rgba(7, 20, 30, 0.16),
      0 10px 26px rgba(7, 20, 30, 0.08);
  
    --shop-radius-sm: 14px;
    --shop-radius-md: 22px;
    --shop-radius-lg: 30px;
    --shop-radius-xl: 38px;
  
    --shop-max: 1380px;
  }
  
  /* =========================================================
     PAGE SCOPING
     ========================================================= */
  
  html {
    scroll-behavior: smooth;
  }
  
  body.shop-page {
    margin: 0;
    font-family: Inter, sans-serif;
    color: var(--shop-text);
    background:
      radial-gradient(circle at top, rgba(34, 211, 238, 0.06), transparent 22%),
      linear-gradient(180deg, #edf4f8 0%, #f7fbfd 48%, #eef4f8 100%);
    overflow-x: hidden;
  }
  
  .shop-page *,
  .shop-page *::before,
  .shop-page *::after {
    box-sizing: border-box;
  }
  
  .shop-page img {
    display: block;
    max-width: 100%;
  }
  
  .shop-page a,
  .shop-page button {
    -webkit-tap-highlight-color: transparent;
  }
  
  .shop-main {
    position: relative;
    min-height: 100vh;
    margin-top: 1rem;
  }
  
  /* =========================================================
     HERO
     ========================================================= */
  
  .shop-hero {
    position: relative;
    min-height: min(88vh, 860px);
    display: flex;
    align-items: center;
    overflow: clip;
    isolation: isolate;
    padding:
      clamp(7.5rem, 8vw, 9.25rem)
      0
      clamp(4rem, 6vw, 5.5rem);
    background: #0f172a;
  }
  
  .shop-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      radial-gradient(circle at 12% 18%, rgba(34, 211, 238, 0.18), transparent 18%),
      radial-gradient(circle at 84% 16%, rgba(14, 165, 198, 0.16), transparent 22%),
      radial-gradient(circle at 82% 80%, rgba(255, 255, 255, 0.06), transparent 18%),
      linear-gradient(135deg, var(--shop-bg-1) 0%, var(--shop-bg-2) 48%, var(--shop-bg-3) 100%);
    transform: scale(1.02);
  }
  
  .shop-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(6, 14, 22, 0.18) 0%, rgba(6, 14, 22, 0.1) 100%),
      linear-gradient(90deg, rgba(7, 15, 23, 0.12) 0%, transparent 28%, transparent 72%, rgba(7, 15, 23, 0.1) 100%);
  }
  
  .shop-hero-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 2rem, var(--shop-max));
    margin: 0 auto;
  }
  
  .shop-hero-copy {
    max-width: 820px;
    color: #f8fcff;
  }
  
  .shop-eyebrow,
  .shop-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    width: fit-content;
    margin: 0 0 1rem;
    padding: 0.54rem 0.88rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #4ac8f2;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .shop-eyebrow::before,
  .shop-section-kicker::before {
    content: "";
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 999px;
    flex: 0 0 auto;
    background: linear-gradient(135deg, var(--shop-accent-2), var(--shop-accent));
    box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.08);
  }
  
  .shop-hero-copy h1 {
    margin: 0;
    max-width: 12.5ch;
    font-size: clamp(2.45rem, 3.25vw + 1rem, 4.9rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 850;
    text-wrap: balance;
  }
  
  .shop-hero-copy p {
    margin: 1.2rem 0 0;
    max-width: 62ch;
    color: rgba(248, 252, 255, 0.9);
    font-size: clamp(1rem, 0.25vw + 0.98rem, 1.14rem);
    line-height: 1.82;
    text-wrap: pretty;
  }
  
  .shop-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.65rem;
  }
  
  /* =========================================================
     BUTTONS
     ========================================================= */
  
  .shop-btn {
    appearance: none;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    min-height: 54px;
    padding: 0.95rem 1.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    font-size: 0.97rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.01em;
    transition:
      transform 0.22s ease,
      box-shadow 0.22s ease,
      background-color 0.22s ease,
      border-color 0.22s ease,
      color 0.22s ease;
  }
  
  .shop-btn:hover,
  .shop-btn:focus-visible {
    transform: translateY(-2px);
  }
  
  .shop-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #22d3ee 0%, #0f8aad 52%, #155e75 100%);
    box-shadow:
      0 12px 28px rgba(3, 105, 161, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }
  
  .shop-btn-primary:hover,
  .shop-btn-primary:focus-visible {
    color: #ffffff;
    box-shadow:
      0 18px 36px rgba(3, 105, 161, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
  
  .shop-btn-secondary {
    color: #f8fcff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  .shop-btn-secondary:hover,
  .shop-btn-secondary:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(143, 232, 255, 0.36);
  }
  
  /* =========================================================
     SHOP GRID SECTION
     ========================================================= */
  
  .shop-grid-section {
    position: relative;
    padding: clamp(4.5rem, 7vw, 7rem) 0;
    overflow: hidden;
    background:
      radial-gradient(circle at 10% 14%, rgba(34, 211, 238, 0.06), transparent 20%),
      radial-gradient(circle at 86% 18%, rgba(15, 23, 42, 0.045), transparent 22%),
      linear-gradient(180deg, #edf4f8 0%, #f8fbfd 52%, #edf4f8 100%);
  }
  
  .shop-grid-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, transparent 24%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%);
  }
  
  .shop-grid-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 2rem, var(--shop-max));
    margin: 0 auto;
  }
  
  .shop-section-head {
    max-width: 840px;
    margin: 0 auto clamp(1.9rem, 3vw, 2.8rem);
    text-align: center;
  }
  
  .shop-section-head .shop-section-kicker {
    margin-inline: auto;
    color: var(--shop-accent-3);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(15, 23, 42, 0.08);
  }
  
  .shop-section-head h2 {
    margin: 0;
    color: var(--shop-heading);
    font-size: clamp(2rem, 2.35vw + 1rem, 3.8rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-weight: 850;
    text-wrap: balance;
  }
  
  .shop-section-head p {
    margin: 1rem auto 0;
    max-width: 60ch;
    color: var(--shop-text-soft);
    font-size: clamp(1rem, 0.24vw + 0.96rem, 1.08rem);
    line-height: 1.8;
    text-wrap: pretty;
  }
  
  .shop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 1.8vw, 1.4rem);
    align-items: stretch;
  }
  
  .shop-card {
    position: relative;
    min-width: 0;
    min-height: 100%;
    display: grid;
    grid-template-rows: minmax(280px, 360px) auto;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border-radius: var(--shop-radius-lg);
    border: 1px solid var(--shop-border);
    background:
      linear-gradient(180deg, var(--shop-surface-strong) 0%, var(--shop-surface) 100%);
    box-shadow: var(--shop-shadow-sm);
    transition:
      transform 0.28s ease,
      box-shadow 0.28s ease,
      border-color 0.28s ease,
      background-color 0.28s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .shop-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.02) 100%);
    z-index: 0;
  }
  
  .shop-card:hover,
  .shop-card:focus-visible {
    transform: translateY(-6px);
    border-color: var(--shop-border-accent);
    box-shadow: var(--shop-shadow-lg);
    outline: none;
  }
  
  .shop-card-media,
  .shop-card-body {
    position: relative;
    z-index: 1;
  }
  
  .shop-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 1.8vw, 1.35rem);
    background:
      radial-gradient(circle at 50% 40%, rgba(34, 211, 238, 0.08), transparent 42%),
      linear-gradient(180deg, rgba(243, 248, 252, 0.94) 0%, rgba(236, 244, 248, 0.82) 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }
  
  .shop-card-media::after {
    content: "";
    position: absolute;
    inset: auto 12% 7% 12%;
    height: 12%;
    border-radius: 50%;
    background: radial-gradient(
      ellipse at center,
      rgba(15, 23, 42, 0.18) 0%,
      rgba(15, 23, 42, 0.08) 42%,
      rgba(15, 23, 42, 0) 76%
    );
    filter: blur(14px);
    pointer-events: none;
  }
  
  .shop-card-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 18px 34px rgba(15, 23, 42, 0.14));
    transform: translateZ(0);
    transition: transform 0.32s ease;
  }
  
  .shop-card:hover .shop-card-media img,
  .shop-card:focus-visible .shop-card-media img {
    transform: translateY(-4px) scale(1.015);
  }
  
  .shop-card-body {
    padding: clamp(1.1rem, 1.5vw, 1.35rem);
    display: grid;
    gap: 0.9rem;
  }
  
  .shop-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  
  .shop-card-type,
  .shop-card-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }
  
  .shop-card-type {
    color: var(--shop-accent-3);
    background: rgba(15, 138, 173, 0.08);
    border: 1px solid rgba(15, 138, 173, 0.12);
  }
  
  .shop-card-badge {
    color: var(--shop-text);
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.08);
  }
  
  .shop-card h3 {
    margin: 0;
    color: var(--shop-heading);
    font-size: clamp(1.24rem, 0.8vw + 1rem, 1.78rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
  
  .shop-card p {
    margin: 0;
    color: var(--shop-text-soft);
    font-size: 0.98rem;
    line-height: 1.76;
    text-wrap: pretty;
  }
  
  .shop-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    margin-top: 0.15rem;
    color: var(--shop-accent);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: gap 0.22s ease, color 0.22s ease;
  }
  
  .shop-card:hover .shop-card-link,
  .shop-card:focus-visible .shop-card-link {
    gap: 0.8rem;
    color: var(--shop-accent-3);
  }
  
  /* =========================================================
     SUPPORT STRIP
     ========================================================= */
  
  .shop-support-strip {
    position: relative;
    padding: clamp(1.6rem, 3vw, 2.4rem) 0 clamp(4rem, 6vw, 5.25rem);
    background:
      linear-gradient(180deg, rgba(248, 251, 253, 0) 0%, rgba(238, 244, 248, 0.82) 100%);
  }
  
  .shop-support-shell {
    width: min(100% - 2rem, var(--shop-max));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: clamp(1.15rem, 1.5vw, 1.4rem);
    border-radius: var(--shop-radius-lg);
    border: 1px solid var(--shop-border);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(250, 252, 254, 0.78) 100%);
    box-shadow: var(--shop-shadow-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .shop-support-copy h2 {
    margin: 0;
    color: var(--shop-heading);
    font-size: clamp(1.45rem, 1vw + 1rem, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
  }
  
  .shop-support-copy p {
    margin: 0.8rem 0 0;
    color: var(--shop-text-soft);
    line-height: 1.78;
    max-width: 60ch;
  }
  
  .shop-support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-end;
  }
  
  /* =========================================================
     CTA SMALL TUNES FOR SHOP PAGE
     ========================================================= */
  
  .shop-page .cta-section {
    margin-top: 0;
  }
  
  .shop-page .cta-title {
    max-width: 16ch;
    margin-inline: auto;
  }
  
  .shop-page .cta-subtitle {
    max-width: 760px;
  }
  
  /* =========================================================
     RESPONSIVE
     ========================================================= */
  
  @media (max-width: 1199px) {
    .shop-card {
      grid-template-rows: minmax(250px, 320px) auto;
    }
  
    .shop-card-media img {
      max-height: 280px;
    }
  }
  
  @media (max-width: 991px) {
    .shop-hero {
      min-height: auto;
      padding-top: clamp(7.25rem, 10vw, 8rem);
      padding-bottom: clamp(3.5rem, 5vw, 4.5rem);
    }
  
    .shop-hero-copy h1 {
      max-width: 13.5ch;
    }
  
    .shop-grid {
      grid-template-columns: 1fr;
    }
  
    .shop-support-shell {
      grid-template-columns: 1fr;
      align-items: start;
    }
  
    .shop-support-actions {
      justify-content: flex-start;
    }
  }
  
  @media (max-width: 767px) {
    .shop-hero-inner,
    .shop-grid-shell,
    .shop-support-shell {
      width: min(100% - 1.25rem, var(--shop-max));
    }
  
    .shop-eyebrow,
    .shop-section-kicker {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
    }
  
    .shop-hero-copy h1 {
      max-width: 100%;
      font-size: clamp(2.1rem, 8vw, 3.2rem);
    }
  
    .shop-hero-copy p,
    .shop-section-head p,
    .shop-support-copy p {
      font-size: 0.98rem;
    }
  
    .shop-hero-actions,
    .shop-support-actions {
      flex-direction: column;
      align-items: stretch;
    }
  
    .shop-btn {
      width: 100%;
    }
  
    .shop-card {
      grid-template-rows: minmax(220px, 270px) auto;
      border-radius: 24px;
    }
  
    .shop-card-media {
      padding: 1rem;
    }
  
    .shop-card-media img {
      max-height: 235px;
    }
  
    .shop-card-body {
      padding: 1rem;
    }
  
    .shop-card-top {
      align-items: flex-start;
    }
  
    .shop-card h3 {
      font-size: 1.22rem;
    }
  }
  
  @media (max-width: 479px) {
    .shop-hero {
      padding-top: 6.8rem;
    }
  
    .shop-card {
      grid-template-rows: minmax(200px, 240px) auto;
    }
  
    .shop-card-media img {
      max-height: 210px;
    }
  
    .shop-card-link {
      font-size: 0.92rem;
    }
  }
  
  @media (min-width: 1600px) {
    .shop-hero-inner,
    .shop-grid-shell,
    .shop-support-shell {
      width: min(100% - 3rem, 1520px);
    }
  
    .shop-grid {
      gap: 1.6rem;
    }
  
    .shop-card {
      grid-template-rows: minmax(320px, 390px) auto;
    }
  
    .shop-card-media img {
      max-height: 345px;
    }
  }
  
  /* =========================================================
     REDUCED MOTION
     ========================================================= */
  
  @media (prefers-reduced-motion: reduce) {
    .shop-btn,
    .shop-card,
    .shop-card img,
    .shop-card-link {
      transition: none !important;
    }
  
    .shop-card:hover,
    .shop-card:focus-visible,
    .shop-btn:hover,
    .shop-btn:focus-visible {
      transform: none;
    }
  }


  .email-btn {
    color: #000;
  }