/* ============================================================
   GREY INDUSTRIES - Global Stylesheet
   ============================================================ */

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-ink-soft: #aaa;
  --color-muted: #555;
  --color-border: #1a1a1a;
  --color-border-strong: #333;
  --page-gutter: clamp(16px, 4vw, 40px);
  --header-offset: 111px;
}

/* ---------- Font Face ---------- */
@font-face {
  font-family: 'Ghosttheory';
  src: url('../fonts/Ghosttheory.woff2') format('woff2'),
       url('../fonts/Ghosttheory.woff') format('woff'),
       url('../fonts/Ghosttheory.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: uppercase !important;
}

::placeholder { text-transform: uppercase !important; }

::selection { background: rgba(255,255,255,0.3); color: #000; }
::-moz-selection { background: rgba(255,255,255,0.3); color: #000; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: 'Ghosttheory', serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--header-offset);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible {
  outline: 1px solid var(--color-white);
  outline-offset: 4px;
}

/* ---------- Top Banner ---------- */
.top-banner {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 26px;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 0.75em;
  letter-spacing: 2px;
  line-height: 26px;
  z-index: 1002;
  border-bottom: 1px solid #1a1a1a;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 26px; left: 0;
  width: 100%;
  height: 85px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1001;
  border-bottom: 1px solid #1a1a1a;
}

.brand-title { font-size: 1.1em; letter-spacing: 3px; flex: 1; }
.brand-title a { color: #fff; text-decoration: none; }

.logo-container {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.logo-container img { max-height: 70px; width: auto; display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.85em;
  letter-spacing: 1.5px;
  flex: 1;
  justify-content: flex-end;
}

.nav-menu a, .nav-menu span {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-menu a:hover, .nav-menu span:hover { color: #aaa; }

/* ---------- Icon Buttons ---------- */
.search-toggle, .cart-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.search-toggle img, .cart-btn img {
  width: 22px; height: auto;
  transition: opacity 0.2s;
}
.search-toggle:hover img, .cart-btn:hover img { opacity: 0.6; }

/* ---------- Dropdown ---------- */
.dropdown { position: relative; }

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 12px); left: 0;
  background-color: #000;
  border: 1px solid #333;
  min-width: 140px;
  z-index: 1010;
}

.dropdown-content a {
  display: block;
  padding: 10px 14px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.9em;
  letter-spacing: 1px;
  transition: background 0.15s, color 0.15s;
}
.dropdown-content a:hover { background-color: #fff; color: #000; }
.dropdown:hover .dropdown-content { display: block; }

/* ---------- Search Overlay ---------- */
.search-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(0,0,0,0.97);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.search-overlay.active { display: flex; }

.search-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 40px;
}

.search-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.search-header input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Ghosttheory', serif;
  font-size: 2em;
  letter-spacing: 2px;
  outline: none;
}

.close-search {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5em;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.close-search:hover { color: #aaa; }

#searchResults {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-result-item {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #1a1a1a;
  color: #fff;
  font-size: 1em;
  letter-spacing: 1px;
  transition: color 0.2s, padding-left 0.2s;
}
.search-result-item:hover { color: #aaa; padding-left: 8px; }
.search-no-results { color: #555; font-size: 0.9em; letter-spacing: 1px; }

/* ---------- Shop Grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 40px);
  padding: clamp(18px, 4vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
  flex: 1;
}

.item { text-align: left; }
.item a { display: block; overflow: hidden; background: #050505; }
.item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  background: transparent;
  display: block;
  transition: opacity 0.3s, transform 0.3s;
}
.item a:hover img { opacity: 0.85; transform: scale(1.015); }

.caption { margin-top: 10px; font-size: 0.85em; letter-spacing: 1px; color: #fff; }
.caption a { color: inherit; text-decoration: none; }
.price { margin-top: 4px; color: #aaa; font-size: 0.85em; letter-spacing: 1px; }

/* ---------- Product Page ---------- */
.product-page {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  flex: 1;
}

.image-container { position: relative; display: block; }
.image-container img { width: 100%; height: auto; display: block; }

/* Carousel arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2em;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
  padding: 8px;
  line-height: 1;
  user-select: none;
}
.arrow.left  { left: -40px; }
.arrow.right { right: -40px; }
.image-container:hover .arrow { opacity: 1; }
.arrow:hover { color: #aaa; }

.product-info { display: flex; flex-direction: column; }
.product-info h1 { font-size: 2em; letter-spacing: 2px; margin-bottom: 12px; }
.product-info .price { font-size: 1.3em; color: #aaa; margin-bottom: 32px; }

/* ---------- Custom Size Select ---------- */
.custom-select { position: relative; margin-bottom: 16px; width: 200px; }

.custom-select .trigger {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-family: 'Ghosttheory', serif;
  font-size: 0.9em;
  letter-spacing: 1px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.custom-select .trigger:hover,
.custom-select.open .trigger { border-color: #fff; }

.custom-select .options-list {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  width: 100%;
  background: #000;
  border: 1px solid rgba(255,255,255,0.5);
  border-top: none;
  list-style: none;
  z-index: 100;
}
.custom-select.open .options-list { display: block; }

.custom-select .options-list li {
  padding: 12px;
  color: #fff;
  font-size: 0.9em;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s, color 0.15s;
}
.custom-select .options-list li:hover { background: #fff; color: #000; }

/* ---------- Quantity ---------- */
.qty {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.5);
  width: 200px;
  height: 48px;
  overflow: hidden;
}

.qty-btn {
  background: transparent;
  border: none;
  color: #fff;
  width: 48px;
  height: 100%;
  cursor: pointer;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.qty-btn:hover { background: rgba(255,255,255,0.1); }
#decrease { border-right: 1px solid rgba(255,255,255,0.5); }
#increase  { border-left:  1px solid rgba(255,255,255,0.5); }

.qty input {
  flex: 1;
  text-align: center;
  font-size: 1em;
  font-family: 'Ghosttheory', serif;
  background: transparent;
  border: none;
  color: #fff;
  height: 100%;
  outline: none;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* ---------- Add to Cart Button ---------- */
.btn-add {
  display: block;
  width: 200px;
  padding: 14px 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-family: 'Ghosttheory', serif;
  font-size: 0.9em;
  letter-spacing: 2px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-bottom: 32px;
}
.btn-add:hover { background: #fff; color: #000; border-color: #fff; }

/* ---------- Product Description ---------- */
.description {
  color: #666;
  line-height: 1.7;
  font-size: 0.85em;
  letter-spacing: 0.5px;
  border-top: 1px solid #1a1a1a;
  padding-top: 24px;
}

/* ---------- Coming Soon Password Gate ---------- */
body.launch-body {
  min-height: 100vh;
  padding-top: 0;
  overflow: hidden;
}

.launch-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 72px);
  background:
    radial-gradient(circle at 50% 45%, rgba(0,0,0,0.08) 0 21%, rgba(0,0,0,0.66) 62%, rgba(0,0,0,0.96) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.24), rgba(0,0,0,0.5) 46%, rgba(0,0,0,0.9)),
    var(--launch-bg, url('../coming-soon-bg.png')) center / cover no-repeat,
    #000;
  position: relative;
  overflow: hidden;
}

.launch-page::before,
.launch-page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.launch-page::before {
  background:
    radial-gradient(ellipse at center, transparent 0 34%, rgba(0,0,0,0.42) 62%, rgba(0,0,0,0.94) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.8), transparent 22%, transparent 76%, rgba(0,0,0,0.82));
  z-index: 0;
}

.launch-page::after {
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 190px rgba(0,0,0,0.94);
  z-index: 3;
}

.launch-panel {
  width: min(860px, 100%);
  text-align: center;
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.launch-mark {
  width: min(86vw, 760px);
  height: auto;
  max-height: 54vh;
  object-fit: contain;
  margin: clamp(8px, 2vh, 18px) auto clamp(14px, 3vh, 28px);
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.62));
}

.launch-status,
.launch-copy {
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  letter-spacing: 2px;
  line-height: 1.5;
}

.launch-status {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin-bottom: clamp(18px, 4vh, 42px);
  border: 1px solid rgba(255,255,255,0.42);
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
}

.launch-copy {
  margin-bottom: 14px;
}

.launch-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(390px, 100%);
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(8px);
}

.launch-form input,
.launch-form button {
  min-height: 52px;
  background: transparent;
  border: 0;
  color: var(--color-white);
  font-family: 'Ghosttheory', serif;
  letter-spacing: 2px;
}

.launch-form input {
  min-width: 0;
  padding: 0 16px;
  outline: none;
}

.launch-form button {
  border-left: 1px solid rgba(255,255,255,0.25);
  padding: 0 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.launch-form button:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.launch-message {
  min-height: 20px;
  margin-top: 12px;
  color: rgba(255,255,255,0.54);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}

/* ---------- Policy / Info Pages ---------- */
.policy-container {
  max-width: 860px;
  margin: 40px auto 80px;
  padding: 40px;
  line-height: 1.7;
  flex: 1;
}
.policy-container h1 { font-size: 2rem; margin-bottom: 1.5em; letter-spacing: 3px; }
.policy-container h2 { font-size: 1em; margin: 2.5em 0 0.6em; letter-spacing: 2px; color: #aaa; }
.policy-container p { margin-bottom: 1.4em; color: #999; }
.policy-container a { color: #fff; text-decoration: none; }
.policy-container a:hover { text-decoration: underline; color: #ccc; }
.policy-container table { width: 100%; border-collapse: collapse; margin-top: 1em; }
.policy-container th, .policy-container td { border: 1px solid #333; padding: 8px 12px; vertical-align: top; font-size: 0.9rem; }
.policy-container th { background: #111; color: #fff; }

/* ---------- Login Page ---------- */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 40px;
}
.login-container { max-width: 360px; width: 100%; text-align: center; }
.login-container h1 { font-size: 2em; letter-spacing: 3px; margin-bottom: 32px; }

.form-group { margin-bottom: 16px; }
.form-group input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: 'Ghosttheory', serif;
  font-size: 0.9em;
  letter-spacing: 1px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus { border-color: #fff; }

.btn-signin {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-family: 'Ghosttheory', serif;
  font-size: 0.9em;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 20px;
}
.btn-signin:hover { background: #fff; color: #000; }

.login-footer { display: flex; justify-content: space-between; font-size: 0.8em; letter-spacing: 1px; }
.login-footer a { color: #555; text-decoration: none; transition: color 0.2s; }
.login-footer a:hover { color: #fff; }

/* ---------- Footer ---------- */
footer.footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 60px 60px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #1a1a1a;
  margin-top: auto;
}

.footer .signup { max-width: 42%; }
.footer .signup h2 { font-size: 1.1em; margin-bottom: 20px; letter-spacing: 2px; }
.footer .signup form { display: flex; margin-bottom: 12px; }

.footer .signup input[type="email"] {
  flex: 1;
  padding: 12px 14px;
  background: #000;
  border: 1px solid #2a2a2a;
  border-right: none;
  color: #fff;
  font-family: 'Ghosttheory', serif;
  font-size: 0.8em;
  letter-spacing: 1px;
  outline: none;
}
.footer .signup input[type="email"]:focus { border-color: #555; }

.footer .signup button[type="submit"] {
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #2a2a2a;
  color: #fff;
  font-family: 'Ghosttheory', serif;
  font-size: 0.8em;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer .signup button[type="submit"]:hover { background: #fff; color: #000; border-color: #fff; }
.footer .signup p { margin-top: 10px; font-size: 0.75em; color: #333; letter-spacing: 1px; line-height: 1.5; }

.footer .links { display: flex; gap: 60px; }
.footer .links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer .links a { color: #444; text-decoration: none; font-size: 0.8em; letter-spacing: 1px; transition: color 0.2s; }
.footer .links a:hover { color: #fff; }

/* ---------- Hamburger (Mobile) ---------- */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 1px; background: #fff; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Mobile Nav Drawer ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 111px; left: 0;
  width: 100%;
  background: #000;
  border-top: 1px solid #1a1a1a;
  z-index: 1000;
  flex-direction: column;
  padding: 24px 40px;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a, .mobile-nav span { color: #fff; font-size: 1em; letter-spacing: 2px; text-decoration: none; display: block; padding: 4px 0; }
.mobile-drops { display: flex; flex-direction: column; gap: 12px; padding-left: 16px; border-left: 1px solid #333; margin-top: 4px; }
.mobile-drops a { color: #666; font-size: 0.9em; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; padding: 24px; }
  .product-page { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; margin: 24px auto; }
  footer.footer { flex-direction: column; gap: 40px; padding: 40px 24px; }
  .footer .signup { max-width: 100%; width: 100%; }
  .footer .links { width: 100%; }
}

@media (max-width: 680px) {
  .navbar { padding: 0 20px; }
  .brand-title { font-size: 0.85em; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding: 16px; }
}

@media (max-width: 420px) {
  .grid { grid-template-columns: 1fr; }
  .launch-page {
    padding-inline: 24px;
    background-position: center;
  }
}

/* ============================================================
   CART OVERLAY
   ============================================================ */

/* Backdrop */
#cart-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1900;
}
#cart-overlay.active ~ #cart-backdrop,
#cart-backdrop.active { display: block; }

/* Drawer */
#cart-overlay {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: #000;
  border-left: 1px solid #1a1a1a;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
#cart-overlay.active {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid #1a1a1a;
  flex-shrink: 0;
}

.cart-header h2 {
  font-size: 1em;
  letter-spacing: 3px;
  color: #fff;
}

.cart-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

#close-cart {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.2em;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
#close-cart:hover { color: #aaa; }

#cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#cart-empty {
  color: #333;
  font-size: 0.85em;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 60px;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
  background: #111;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.8em;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-item-size {
  font-size: 0.75em;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 10px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #222;
  width: fit-content;
}

.cart-qty-btn {
  background: transparent;
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.cart-qty-btn:hover { background: #1a1a1a; }

.cart-qty-num {
  font-size: 0.8em;
  letter-spacing: 1px;
  color: #fff;
  width: 28px;
  text-align: center;
  border-left: 1px solid #222;
  border-right: 1px solid #222;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.cart-remove {
  background: transparent;
  border: none;
  color: #444;
  font-size: 0.8em;
  cursor: pointer;
  padding: 2px;
  line-height: 1;
  transition: color 0.2s;
}
.cart-remove:hover { color: #fff; }

.cart-item-price {
  font-size: 0.85em;
  letter-spacing: 1px;
  color: #aaa;
}

/* Footer */
#cart-footer {
  display: none;
  flex-direction: column;
  padding: 20px 24px 32px;
  border-top: 1px solid #1a1a1a;
  gap: 16px;
  flex-shrink: 0;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-total-label {
  font-size: 0.8em;
  letter-spacing: 2px;
  color: #555;
}

#cart-total {
  font-size: 1em;
  letter-spacing: 1px;
  color: #fff;
}

#cart-checkout {
  width: 100%;
  padding: 14px;
  background: #fff;
  border: none;
  color: #000;
  font-family: 'Ghosttheory', serif;
  font-size: 0.9em;
  letter-spacing: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
#cart-checkout:hover { background: #ddd; }

/* Cart badge on icon */
.cart-btn {
  position: relative;
}
#cart-badge {
  display: none;
  position: absolute;
  top: -6px;
  right: -8px;
  background: #fff;
  color: #000;
  font-size: 0.6em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  font-family: 'Ghosttheory', serif;
  pointer-events: none;
}

@media (max-width: 480px) {
  #cart-overlay { width: 100vw; }
}
