/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/styles/tokens.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************/
/* Spot My Bag — design tokens (direction C1, "Full colour block")
   Single source of truth. Do not introduce colours outside this file. */

:root {
  /* Brand colours. Every one is a section ground in its own right. */
  --smb-tangerine: #FF5A1F;
  --smb-cobalt:    #1B4CF0;
  --smb-pink:      #FF2E88;
  --smb-lime:      #C6F000;
  --smb-ink:       #16140F;

  /* Neutrals */
  --smb-white:      #FFFFFF;
  --smb-cream:      #FFF8F0;  /* the one breather section */
  --smb-card-photo: #FFF0E4;  /* image well inside white cards */

  /* Text */
  --smb-text-on-colour: var(--smb-ink);    /* tangerine, pink, lime, cream */
  --smb-text-on-dark:   #FFFFFF;           /* cobalt, ink */
  --smb-text-muted-cream: #5F564C;
  --smb-text-muted-card:  #6B5D51;
  --smb-text-body-card:   #46403A;
  --smb-text-footer:      #E6E3DC;
  --smb-text-footer-muted:#A39D93;

  /* Belt scene (the single dark section) */
  --smb-belt-case-a:   #2A2823;
  --smb-belt-case-b:   #262420;
  --smb-belt-hero:     #2F2C26;
  --smb-belt-edge:     #3A3830;
  --smb-belt-edge-2:   #38362E;
  --smb-belt-edge-hi:  #454138;
  --smb-belt-wheel:    #423F37;
  --smb-belt-wheel-hi: #4E4A40;
  --smb-belt-slat-a:   #211F1B;
  --smb-belt-slat-b:   #2B2924;
  --smb-rule-on-ink:   #33302A;

  /* Dashed placeholder borders (remove once real photography lands) */
  --smb-placeholder-border: #C8B8A8;

  /* Type */
  --smb-font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --smb-font-body:    'Archivo', system-ui, sans-serif;
  --smb-font-mono:    'DM Mono', ui-monospace, monospace;

  /* Radii */
  --smb-radius-sm: 6px;
  --smb-radius-md: 8px;
  --smb-radius-lg: 12px;
  --smb-radius-xl: 14px;

  /* Layout */
  --smb-gutter-mobile: 18px;
  --smb-gutter-desktop: 80px;
  --smb-section-pad-mobile: 50px;
  --smb-section-pad-desktop: 90px;
  --smb-max-width: 1440px;
}

/*!*************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************/
/* Self-hosted fonts — see TODO-LAUNCH.md. Latin subset only, matching what
   this homepage actually sets (BUILD-BRIEF.md section 10: no Google Fonts
   requests in production). Archivo is served by Google as a single variable
   file covering weights 400-700, so one @font-face with a weight range
   covers every body weight the tokens use instead of four separate files. */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/archivo-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo Black";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/archivo-black-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-mono-400-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/dm-mono-500-latin.woff2") format("woff2");
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--smb-font-body);
  background: var(--smb-white);
  color: var(--smb-ink);
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

/* BUILD-BRIEF.md section 9: 3px ink outline / 2px offset on light grounds,
   3px lime outline on ink and cobalt. Tone-specific override lives on each
   Section via [data-tone]. */
:focus-visible {
  outline: 3px solid var(--smb-ink);
  outline-offset: 2px;
}
[data-tone="ink"] :focus-visible,
[data-tone="cobalt"] :focus-visible {
  outline-color: var(--smb-lime);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 100;
  background: var(--smb-ink);
  color: var(--smb-white);
  padding: 12px 18px;
  border-radius: var(--smb-radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: top 120ms ease;
}
.skip-link:focus {
  top: 12px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/components/AnnounceBar.module.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************/
.AnnounceBar_bar__z1WIV {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
@media (min-width: 768px) {
  .AnnounceBar_bar__z1WIV {
    height: 40px;
  }
}
.AnnounceBar_text__kx_uG {
  font-family: var(--smb-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--smb-lime);
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 768px) {
  .AnnounceBar_text__kx_uG {
    font-size: 12px;
    letter-spacing: 0.16em;
  }
}
.AnnounceBar_deskOnly__GaZpV {
  display: none;
}
@media (min-width: 768px) {
  .AnnounceBar_deskOnly__GaZpV {
    display: inline;
  }
}

/*!*******************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/components/CookieConsent.module.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************/
.CookieConsent_banner__Kf40a {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px var(--smb-gutter-mobile);
  background: var(--smb-ink);
  color: var(--smb-text-footer);
  border-top: 1px solid var(--smb-rule-on-ink);
}
@media (min-width: 768px) {
  .CookieConsent_banner__Kf40a {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px var(--smb-gutter-desktop);
  }
}
.CookieConsent_text__I9mfq {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  max-width: 640px;
}
.CookieConsent_text__I9mfq a {
  color: var(--smb-text-footer);
  text-decoration: underline;
}
.CookieConsent_actions__qKujs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.CookieConsent_reject___jYxK {
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--smb-rule-on-ink);
  border-radius: var(--smb-radius-md);
  background: transparent;
  color: var(--smb-text-footer);
  font-family: var(--smb-font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.CookieConsent_accept__IMiih {
  height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--smb-radius-md);
  background: var(--smb-lime);
  color: var(--smb-ink);
  font-family: var(--smb-font-display);
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}

/*!*************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/components/Section.module.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************/
.Section_section__GDNTw {
  background: var(--bg);
  color: var(--fg);
}
.Section_padded__9EHWv {
  padding: var(--smb-section-pad-mobile) var(--smb-gutter-mobile);
}
@media (min-width: 768px) {
  .Section_padded__9EHWv {
    padding: var(--smb-section-pad-desktop) var(--smb-gutter-desktop);
  }
}
.Section_inner__rhtv_ {
  max-width: var(--smb-max-width);
  margin: 0 auto;
}

.Section_tone-tangerine__4jfCa { --bg: var(--smb-tangerine); --fg: var(--smb-text-on-colour); }
.Section_tone-ink__BNIJE       { --bg: var(--smb-ink);       --fg: var(--smb-text-on-dark); }
.Section_tone-lime__vTjUl      { --bg: var(--smb-lime);      --fg: var(--smb-text-on-colour); }
.Section_tone-cobalt__lAUaU    { --bg: var(--smb-cobalt);    --fg: var(--smb-text-on-dark); }
.Section_tone-cream__PpR2x     { --bg: var(--smb-cream);     --fg: var(--smb-text-on-colour); }
.Section_tone-pink__8wTuO      { --bg: var(--smb-pink);      --fg: var(--smb-text-on-colour); }

/*!*************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/components/TagLogo.module.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************/
.TagLogo_lockup__197QK {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--smb-ink);
  border-radius: var(--smb-radius-sm);
  padding: 7px 12px 7px 9px;
  text-decoration: none;
}
.TagLogo_lockup__197QK.TagLogo_onInk__HvvT2 {
  background: var(--smb-tangerine);
}
.TagLogo_dot__uwxkM {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--smb-lime);
  flex-shrink: 0;
}
.TagLogo_onInk__HvvT2 .TagLogo_dot__uwxkM {
  background: var(--smb-ink);
}
.TagLogo_wordmark__oAWIp {
  font-family: var(--smb-font-display);
  font-size: 15px;
  letter-spacing: -0.025em;
  color: var(--smb-white);
}
.TagLogo_onInk__HvvT2 .TagLogo_wordmark__oAWIp {
  color: var(--smb-ink);
}
@media (min-width: 768px) {
  .TagLogo_lockup__197QK {
    gap: 9px;
    padding: 9px 14px 9px 11px;
  }
  .TagLogo_dot__uwxkM {
    width: 11px;
    height: 11px;
  }
  .TagLogo_wordmark__oAWIp {
    font-size: 19px;
  }
}

/*!****************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/components/MobileMenu.module.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************/
.MobileMenu_overlay__ja0RM {
  position: fixed;
  inset: 0;
  z-index: 100;
}
.MobileMenu_scrim__Axblr {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: rgba(22, 20, 15, 0.5);
  cursor: pointer;
}
.MobileMenu_panel__CRMtL {
  position: relative;
  background: var(--smb-tangerine);
  padding: 16px var(--smb-gutter-mobile) 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* Safe-area aware — this can render behind a notch on some devices. */
  padding-top: max(16px, env(safe-area-inset-top, 0px));
}
.MobileMenu_top__IgIKc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
}
.MobileMenu_eyebrow__bignn {
  font-family: var(--smb-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smb-ink);
}
.MobileMenu_close__WjJ_9 {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--smb-ink);
  cursor: pointer;
}
.MobileMenu_nav__Q9CVg {
  display: flex;
  flex-direction: column;
}
.MobileMenu_link__CHIEe {
  display: flex;
  align-items: center;
  min-height: 52px;
  font-family: var(--smb-font-display);
  font-size: 20px;
  text-transform: uppercase;
  color: var(--smb-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 20, 15, 0.15);
}

/*!************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/components/Header.module.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************/
.Header_padWrap__bOdGo {
  padding: 0 12px 0 16px;
}
@media (min-width: 768px) {
  .Header_padWrap__bOdGo {
    padding: 0 var(--smb-gutter-desktop);
  }
}
.Header_bar__ODNIU {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
@media (min-width: 768px) {
  .Header_bar__ODNIU {
    height: 80px;
  }
}
.Header_nav__EE71E {
  display: none;
}
/* Found while checking the review fixes (not itself on the review list):
   four nav items including two-word "Design your own" plus the logo and
   basket pill don't fit at exactly 768px — "Packs" collided with the logo
   and two links wrapped. Reuses the same 1100px breakpoint the hero
   cluster now uses (BUILD-BRIEF.md section 7's own "second breakpoint if
   it gets cramped"), rather than a new one. Below 1100px the header stays
   in its icon+hamburger mobile form even at tablet widths. */
@media (min-width: 1100px) {
  .Header_nav__EE71E {
    display: flex;
    align-items: center;
    gap: 34px;
  }
  .Header_nav__EE71E a {
    /* Review 2026-09-21 (A3): 44px minimum hit area, WCAG 2.5.8 — the 15px
       text alone rendered well under that. */
    display: inline-flex;
    align-items: center;
    height: 44px;
    font-size: 15px;
    font-weight: 700;
    color: var(--smb-ink);
    text-decoration: none;
  }
}
.Header_actions__AFxTd {
  display: flex;
  align-items: center;
  gap: 2px;
}
@media (min-width: 768px) {
  .Header_actions__AFxTd {
    gap: 8px;
  }
}
.Header_iconButton__8JBKK {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.Header_basketDesktop__f52K3 {
  display: none;
}
@media (min-width: 1100px) {
  .Header_iconButton__8JBKK.Header_basketMobile__Hasds {
    display: none;
  }
  .Header_basketDesktop__f52K3 {
    display: flex;
    height: 44px;
    width: auto;
    padding: 0 16px;
    gap: 9px;
    background: var(--smb-ink);
    border: 0;
    border-radius: var(--smb-radius-sm);
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .Header_basketDesktop__f52K3 span {
    font-size: 14px;
    font-weight: 700;
    color: var(--smb-lime);
  }
}
.Header_menuButton__aNKrC {
  display: flex;
}
@media (min-width: 1100px) {
  .Header_menuButton__aNKrC {
    display: none;
  }
}
.Header_countBubble__mq7El {
  position: absolute;
  top: 5px;
  right: 4px;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  background: var(--smb-cobalt);
  color: var(--smb-white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/*!************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/components/Footer.module.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************/
.Footer_top__b4wwC {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media (min-width: 768px) {
  .Footer_top__b4wwC {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
  }
}
.Footer_blurb__CE_ll {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}
.Footer_blurb__CE_ll p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--smb-text-footer-muted);
}
.Footer_columns__dUcFs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 24px;
  gap: 24px;
}
@media (min-width: 768px) {
  .Footer_columns__dUcFs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px;
  }
}
.Footer_column__BQljC {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .Footer_column__BQljC {
    gap: 12px;
  }
}
.Footer_heading__8gwfT {
  font-family: var(--smb-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--smb-lime);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .Footer_heading__8gwfT {
    font-size: 12px;
    letter-spacing: 0.16em;
  }
}
.Footer_column__BQljC a {
  /* Review 2026-09-21 (A3): footer's WCAG 2.5.8 floor is 24px, not 44px, so
     the column layout doesn't have to change to fit it. */
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  font-size: 15px;
  color: var(--smb-text-footer);
  text-decoration: none;
}
.Footer_rule__v5W_Z {
  height: 1px;
  background: var(--smb-rule-on-ink);
  margin: 26px 0;
}
@media (min-width: 768px) {
  .Footer_rule__v5W_Z {
    margin: 34px 0 0;
  }
}
.Footer_legal__gVqLl {
  font-family: var(--smb-font-mono);
  font-size: 11px;
  line-height: 1.6;
  color: var(--smb-text-footer-muted);
}
.Footer_legal__gVqLl a {
  color: inherit;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .Footer_legal__gVqLl {
    font-size: 12px;
  }
}

