/* ============ CORE RESET ============ */
*{margin:0;padding:0;box-sizing:border-box}
:root{ --line-h: 37px;   --header-h: 64px;  }                  /* single source of truth for banner height */
body{font-family:"Commuter Sans","Arial",sans-serif;background:#000000}

/* ============ BANNER ============ */
/* Banner fixed at the very top */
.banner{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;                  /* above the header */
  background:#000; color:#fff; overflow:hidden;
  height: var(--line-h);
}
.banner-content{
  max-width:1200px; margin:0 auto;
  display:flex; justify-content:space-between; align-items:center;
  padding:0 16px; height:100%;
}

/* Viewport for one line */
.banner-text{
  height: var(--line-h);
  overflow: hidden;
  position: relative;
  flex: 1;
  text-align: center;
}

/* Ticker (JS-driven; no CSS animation here) */
.ticker{
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.line{
  height: var(--line-h);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500; letter-spacing: .5px; white-space: nowrap;
}

/* Right side bits */
.banner-right{display:flex;align-items:center;gap:20px}
.worldwide{font-size:10px;font-weight:500;letter-spacing:1px}
.language-selector{display:flex;align-items:center;gap:8px;cursor:pointer;transition:opacity .3s}
.language-selector:hover{opacity:.8}
.flag{width:20px;height:auto}
.language-selector span{font-size:10px;font-weight:500;letter-spacing:.5px}

/* ============ FULL-SCREEN HERO UNDER BANNER ============ */
/* Place this section right after .banner in your HTML:
   <section class="hero-cover"><div class="hero-inner">...</div></section> */
.hero-cover{
  /* 100vh minus banner height; dvh first for mobile browser UI */
 min-height: calc(100dvh - var(--line-h) + var(--header-h));
  min-height: calc(100vh  - var(--line-h) + var(--header-h));
  background-image: url("cover.jpg"); /* <-- replace with your asset */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.hero-cover::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.25)); /* optional overlay */
}


/* ============ RESPONSIVE (MOBILE) ============ */
@media (max-width:768px){
  .banner-content{padding:0 15px; justify-content:center;} /* re-center when right side hidden */
  .banner-right{gap:15px}

  /* Hide both items on phones */
  .worldwide,
  .language-selector{ display:none !important; }

  /* If you wish to enlarge the ticker text on mobile, uncomment:
  .line{ font-size:14px; }
  */
}

/* ===== Removed: scroll-pause keyframes (not needed with JS-stepped ticker) ===== */
/* Header sits ON TOP of the hero, transparent at first */
.site-header{
  position: fixed;                /* overlay */
  left: 0; right: 0;
  top: var(--line-h, 37px);       /* sits right under the banner */
  z-index: 260;
  background: transparent;
  color: #fff;
  transition: background-color .25s ease, box-shadow .25s ease, color .25s ease;
  backdrop-filter: saturate(120%) blur(0px);      /* optional */
}

.site-header__inner{
  max-width:1200px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 16px;
}
.header_cover{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items:center;
}
/* Full-width band centered vertically over the hero */
.hero-band{
  position:absolute;
  left:0; right:0;
  top:50%; transform:translateY(-50%);
  z-index:5;
  pointer-events:none;                 /* let clicks fall through unless on inner */
}

/* Content row */
.hero-band__inner{
  max-width:100%; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem;
  padding:0 20px;
  pointer-events:auto;                 /* enable button clicks */
}

/* Left text */
.hero-band__title{
  color:#fff;
  line-height:1.05;
  letter-spacing:.04em;
  font-size: clamp(1rem);
  text-transform:uppercase;
  text-shadow:0 2px 12px rgba(0,0,0,.35);
  margin:0;
}

/* Right CTA button */
.hero-band__cta{
  display:inline-block;
  background:#fff; color:#000000;
  text-decoration:none; font-weight:400; letter-spacing:.02em;font-size: 10px;
  padding:.9rem 1.25rem;
  box-shadow:0 6px 18px rgba(0,0,0,.15);
  white-space:nowrap;
  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
margin-right: 10px;
}
.hero-band__cta:hover{ transform:translateY(-1px); box-shadow:0 10px 24px rgba(0,0,0,.18); }
.hero-band__cta:active{ transform:translateY(0); box-shadow:0 6px 18px rgba(0,0,0,.15); }



/* Mobile: stack and center */
@media (max-width: 768px){
  .hero-band__inner{
    flex-direction:column; align-items:flex-start;
    gap:.75rem;
  }
  .hero-band__cta{ align-self:flex-start; }
}

/* Logo + links are white while header is transparent */
.brand{ font-weight:800; letter-spacing:.08em; font-size:24px; color:inherit; text-decoration:none; }
.main-nav__list{ display:flex; gap:28px; margin:0; padding:0; }
.main-nav__link{ color:inherit; text-decoration:none; font-weight:400; font-size: 12px;letter-spacing:.04em; padding:8px 2px; }
.header-actions{ display:flex; align-items:center; gap:12px; }
.icon-btn{ background:none; border:0; padding:6px; cursor:pointer; color:inherit; }
.icon-btn svg{ stroke: currentColor; }

/* Solid state AFTER scroll */
.site-header.is-solid{
  background:#fff;
  color:#000;
  border-bottom:1px solid #eee;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}

/* Underlines (optional) */
.main-nav__link::after{
  content:""; position:absolute; left:0; right:0; bottom:-8px; height:2px;
  background: currentColor; transform:scaleX(0); transform-origin:left; transition:transform .2s ease;
}
.main-nav__link{ position:relative; }
.main-nav__link:hover::after{ transform:scaleX(1); }

@media (max-width:768px){
  .site-header__inner{ padding:10px 12px; }
  .main-nav__list{ gap:18px; }
  .brand{ font-size:22px; }
}
/* --- Grid container --- */
.product-wrap{
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px;
}

.product-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));  /* 4 columns desktop */
   column-gap: 0.5rem;      /* horizontal */
  row-gap: 2.5rem;       /* vertical */     
  color: #fff;                             /* uniform small gap */
}

/* --- Card --- */
.product-card{
  background: transparent; /* no card box background */
}

/* Image panel: ONLY this area is gray */
.product-card .product-image{
  position: relative;
  display:flex; align-items:center; justify-content:center;
  background:#1b1b1b44;            /* gray panel */
  aspect-ratio: 4 / 5;
  overflow:hidden;

  /* remove borders / radius / shadows */
  border:none;
  border-radius:0;
  box-shadow:none;
}

.product-card .product-image img{
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  display:block;

  /* remove any shadow effects */
  filter:none;
}

/* NEW badge (kept but stripped of borders/radius/shadow) */
.product-card .badge{
  position:absolute; top:12px; left:12px;
  background:#fff; color:#000;
  padding:6px 10px;
  font-weight:700; letter-spacing:.06em; font-size:.8rem;

  border:none;
  border-radius:0;
  box-shadow:none;
}

/* Info area: no background/box styling */
.product-info{ padding:10px 2px 2px; background:transparent; }
.product-name{
  font-weight:700; letter-spacing:.02em;
  font-size:10px; margin:0 0 .25rem; color:#ffffff; text-transform:uppercase;
}
.product-price{ color:#6b6b6b; font-size:10px; }

/* --- Responsive: never drop to 1 column --- */
@media (max-width: 1200px){
  .product-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 900px){
  .product-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); gap:0.5rem; }
}
/* IMPORTANT: keep 2 cols even on very small screens */
@media (max-width: 560px){
  .product-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); gap:0.5rem; }
}

  /* --- Cart overlay + slideout --- */
.overlay{
  position:fixed; inset:0; background:rgba(0,0,0,.6);
  z-index:100; opacity:0; visibility:hidden; transition:all .3s ease;
}
.overlay.active{ opacity:1; visibility:visible; }

.cart-slideout{
  position:fixed; top:0; right:0; width:300px; max-width:86vw; height:100%;
  background:#fff; z-index:301; padding:1.25rem;
  transform:translateX(100%); transition:transform .3s ease;
  display:flex; flex-direction:column; border-left:1px solid #e5e5e5;
}
.overlay.active .cart-slideout{ transform:translateX(0); }

.cart-header{ display:flex; justify-content:space-between; align-items:center;
  margin-bottom:.75rem; padding-bottom:.75rem; border-bottom:1px solid #eee; }
.cart-title{ font-size:1rem; font-weight:600; color:#000; }

.close-btn{ background:none; border:none; padding:.4rem; border-radius:.35rem;
  cursor:pointer; color:#666; }
.close-btn:hover{ background:#f4f4f4; color:#000; }

.cart-items{ flex:1; overflow:auto; margin-bottom:.75rem; }
.cart-empty{ height:100%; display:flex; flex-direction:column; align-items:center;
  justify-content:center; color:#666; gap:.5rem; text-align:center; }

.cart-item{ display:flex; gap:.6rem; padding:.6rem; background:#fafafa;
  border:1px solid #eee; border-radius:.5rem; margin-bottom:.6rem; }
.cart-item img{ width:48px; height:48px; object-fit:cover; border-radius:.35rem; filter:grayscale(100%); }
.cart-item-name{ font-weight:600; font-size:.8rem; color:#000; }
.cart-item-price{ font-size:.75rem; color:#666; }

.cart-footer{ border-top:1px solid #eee; padding-top:.75rem; }
.cart-total{ display:flex; justify-content:space-between; font-weight:700; margin-bottom:.6rem; }
.checkout-btn{ width:100%; display:block; text-align:center; padding:.7rem .9rem;
  background:#000; color:#fff; border:none; border-radius:.4rem; text-decoration:none; font-weight:600; }
.checkout-btn.is-disabled{ opacity:.4; pointer-events:none; cursor:not-allowed; }

/* Adding discover section styles with alternating layout */
/* Discover Section */
.discover-section {
  background-color: #000000;
  padding: 0;
  color:#fff;
}

.discover-block {
  display: flex;
  min-height: 600px;
  position: relative;
}

/* Block 1 - New Arrivals (content left, image right) */
.discover-block-1 {
  background-color: #000000;
}

.discover-block-1 .discover-content {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.discover-block-1 .discover-hero-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Block 2 - Accessories (image left, content right) */
.discover-block-2 {
  background-color: #000000;
 flex-direction: row;
}

.discover-block-2 .discover-content {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.discover-block-2 .discover-hero-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Block 3 - Gascan (full width with centered content) */
.discover-block-3 {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  flex-direction: column;
  min-height: 500px;
}

.discover-content-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  text-align: center;
}

.discover-hero-dark {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discover-accent-images {
  position: absolute;
  display: flex;
  gap: 20px;
}

.discover-accent-images img:first-child {
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
}

.discover-accent-images img:last-child {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
}

/* Typography */
.discover-category {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.discover-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-balance: balance;
}

.discover-title-large {
  font-size: 48px;
  color: #ffffff;
  text-align: center;
}

/* Product styling within discover blocks */
.discover-product {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.discover-product img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  background-color: #1b1b1b44;
}

.discover-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.discover-product-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.discover-product-price {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

/* Button styling */
.discover-btn {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #1a1a1a;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-transform: uppercase;
}

.discover-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

/* Hero images */
.discover-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design for Discover Section */
@media (max-width: 1024px) {
  .discover-block {
    flex-direction: column;
    min-height: auto;
  }

  .discover-block-2 {
    flex-direction: column;
  }

  .discover-block-1 .discover-content,
  .discover-block-2 .discover-content {
    padding: 60px 40px;
  }

  .discover-hero-image {
    min-height: 400px;
  }

  .discover-title {
    font-size: 32px;
  }

  .discover-title-large {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .discover-block-1 .discover-content,
  .discover-block-2 .discover-content {
    padding: 40px 24px;
    gap: 30px;
  }

  .discover-content-center {
    padding: 40px 24px;
  }

  .discover-title {
    font-size: 28px;
  }

  .discover-title-large {
    font-size: 32px;
  }

  .discover-product img {
    width: 150px;
    height: 180px;
  }

  .discover-accent-images {
    display: none;
  }
}

@media (max-width: 480px) {
  .discover-block-1 .discover-content,
  .discover-block-2 .discover-content {
    padding: 30px 16px;
    gap: 24px;
  }

  .discover-title {
    font-size: 24px;
  }

  .discover-title-large {
    font-size: 28px;
  }

  .discover-btn {
    padding: 14px 24px;
    font-size: 12px;
  }
}

/* Responsive Design for Product Grid */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-grid-section {
    padding: 60px 16px;
  }
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
}

.chat-btn {
  width: 56px;
  height: 56px;
  background-color: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.chat-btn:hover {
  background-color: #333333;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-overlay {
    padding: 16px;
    padding-bottom: 100px;
  }

  .shop-btn {
    padding: 14px 28px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .logo {
    font-size: 18px;
  }

  .nav-icons {
    gap: 12px;
  }

  .chat-widget {
    bottom: 16px;
    right: 16px;
  }

  .chat-btn {
    width: 48px;
    height: 48px;
  }
}

/* MAFIA Footer */
.mafia-footer {
  background-color: #0a0a0a;
  color: #ffffff;
  margin-top: 0;
}

.footer-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: stretch;
}

.footer-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.footer-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  opacity: 0.7;
}

.footer-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.9) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main-content {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
}

.footer-hero-title {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  line-height: 0.9;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.footer-hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #cccccc;
  margin-bottom: 40px;
  line-height: 1.5;
}

.footer-signup {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}

.footer-email-input {
  flex: 1;
  padding: 18px 24px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  color: #ffffff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.footer-email-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-email-input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.15);
}

.footer-signup-btn {
  padding: 18px 32px;
  background-color: #ffffff;
  color: #0a0a0a;
  border: 2px solid #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-transform: uppercase;
}

.footer-signup-btn:hover {
  background-color: transparent;
  color: #ffffff;
}

.footer-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #cccccc;
  cursor: pointer;
}

.footer-checkbox input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  position: relative;
  transition: all 0.2s ease;
}

.footer-checkbox input[type="checkbox"]:checked + .checkmark {
  background-color: #ffffff;
  border-color: #ffffff;
}

.footer-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: -2px;
  left: 2px;
  color: #0a0a0a;
  font-size: 12px;
  font-weight: bold;
}

.footer-playlist {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  position: relative;
}

.playlist-text {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 32px;
  max-width: 300px;
  line-height: 1.5;
}

.playlist-btn {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.playlist-btn:hover {
  background-color: #ffffff;
  color: #0a0a0a;
}

.playlist-visual {
  position: relative;
}

.playlist-visual img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
  padding: 80px 60px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 60px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #888888;
}

.region-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  text-transform: uppercase;
}

.region-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
  .footer-hero-content {
    flex-direction: column;
  }

  .footer-main-content,
  .footer-playlist {
    padding: 60px 40px;
    align-items: flex-start;
    text-align: left;
  }

  .footer-hero-title {
    font-size: 48px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 60px 40px 40px;
  }

  .footer-bottom {
    padding: 24px 40px;
  }
}

@media (max-width: 768px) {
  .footer-hero {
    min-height: 500px;
  }

  .footer-main-content,
  .footer-playlist {
    padding: 40px 24px;
  }

  .footer-hero-title {
    font-size: 40px;
  }

  .footer-hero-subtitle {
    font-size: 16px;
  }

  .footer-signup {
    flex-direction: column;
    gap: 12px;
  }

  .footer-email-input {
    border-right: 2px solid rgba(255, 255, 255, 0.2);
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 40px 24px 32px;
  }

  .footer-bottom {
    padding: 20px 24px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-hero-title {
    font-size: 32px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .playlist-visual img {
    width: 120px;
    height: 120px;
  }
}



/* Fixed brand box so layout never shifts */
.brand{
  position:relative;
  display:block;
  width:140px;          /* <- lock the brand width */
  height:32px;          /* <- lock the brand height */
  flex:0 0 140px;       /* <- prevent flex shrink/grow */
}

/* Text wordmark sits inside the box */
.brand__text{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:flex-start;
  font-weight:800; letter-spacing:.08em;
  color:inherit;                 /* white when header transparent, black when solid */
  transition:opacity .2s ease;
}

/* Image logo layered behind via ::before; hidden by default */
.brand::before{
  content:"";
  position:absolute; inset:0;
  background: no-repeat left center / contain url("altLogo.png");
  opacity:0;                     /* hidden until header is solid/forced */
  transition:opacity .2s ease;
}

/* When header is solid (white), fade text out and image in */
.site-header.is-solid .brand__text,
.site-header.force-solid .brand__text{ opacity:0; }
.site-header.is-solid .brand::before,
.site-header.force-solid .brand::before{ opacity:1; }

/* Keep the left side from shifting when spacing changes */
.header_cover{ display:flex; align-items:center; gap:32px; }

/* === Mega dropdown for SHOP (full-width 2-column) === */
.has-mega { position: relative; }

.mega-fw{
  position: fixed;
  left: 0; right: 0;

  height: 75vh;                   /* requested height */
  background:#fff;
  color:#000;
  z-index: 250;
  border-top: 1px solid #eee;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);

  opacity:0; visibility:hidden; transform:translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  overflow: hidden;               /* keep inside */
}



/* 2 columns: 50/50 split */
.mega-two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  height:100%;
}

/* Left column (menu) */
.mega-left{
  padding: 2rem 2.5rem;
  display:flex;
  flex-direction:column;
  overflow:auto;
}
.mega-all{
  font-size:.9rem; letter-spacing:.12em; margin:0 0 1rem; color:#111;
}
.mega-list{
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:1rem;
}
.mega-list a{
  color:#111; text-decoration:none; font-weight:600;
}
.mega-list a:hover{ text-decoration:underline; }

/* Right column (hero) */
.mega-right{
  position:relative; overflow:hidden;
}
.mega-right img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.mega-hero-text{
  position:absolute; left:2rem; bottom:2rem; right:2rem; color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,.35);
  max-width: 520px;
}
.mega-hero-text h3{ margin:0 0 .5rem; font-size:2rem; }
.mega-hero-text p{ margin:0 0 1rem; line-height:1.35; }
.mega-cta{
  display:inline-block; padding:.9rem 1.25rem;
  background:#fff; color:#000; text-decoration:none; font-weight:700; border-radius:.15rem;
}

/* Keep desktop behavior everywhere (no mobile slide-in) but allow readable stacking under 900px if needed */
@media (max-width: 900px){
  .mega-two{ grid-template-columns: 1fr; }
  .mega-right{ min-height: 320px; }
}


/* Use the same solid visuals for scroll or forced state */
.site-header.is-solid,
.site-header.force-solid{
  background:#fff;
  color:#000;
  border-bottom:1px solid #eee;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}

/* Mega panel: let JS place it under the header each time it opens */
.mega-fw{
  position: fixed;
  left: 0; right: 0;
  /* top is set in JS so it hugs the header's bottom exactly */
  top: 55px;
  z-index: 180;
  opacity:0; visibility:hidden; transform:translateY(8px);
}


.mega-fw{
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}
.mega-fw.open{
  transition: opacity .18s ease, transform .18s ease, visibility 0s;
}

/* Make the logo switch automatically when header is solid (white) */
.site-header.is-solid .logo{
  text-indent:-9999px; white-space:nowrap; overflow:hidden;
  width:120px; height:30px;
  background: no-repeat left center / contain url("altLogo.png");
  color:transparent;
}


.mega-fw.open{
  opacity:1; visibility:visible; transform:translateY(0);
  transition: opacity .18s ease, transform .18s ease;
}

/* Keep header white while the mega is open */
.site-header.force-solid{
  background:#fff; color:#000;
  border-bottom:1px solid #eee;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}

/* --- Mega: footer at bottom of left column --- */
.mega-left{
  display:flex;            /* ensure column layout */
  flex-direction:column;
}

.mega-left__footer{
  margin-top:auto;         /* push to bottom of the left column */
  padding-top:16px;
  border-top:1px solid #eee;
}

.mega-foot{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));  /* 3 columns on desktop */
  gap:10px 14px;
}

.mega-foot a{
  text-decoration:none;
  color:#666;                       /* subtle */
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:color .18s ease;
  white-space:nowrap;
}
.mega-foot a:hover{ color:#000; }

/* Stack nicely on narrower widths */
@media (max-width: 1100px){
  .mega-foot{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 900px){
  .mega-foot{ grid-template-columns: 1fr; }
}
/* HERO image in the Discover blocks (the big panel) */
.discover-hero-image{
  position: relative;
  overflow: hidden;
  display: flex;                   /* center the image */
  align-items: center;
  justify-content: center;
  background:#1b1b1b44;           /* optional letterbox color */
}

.discover-hero-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;             /* was: cover */
}

/* Product thumbnail inside the Discover blocks */
.discover-product img{
  width: 200px;
  height: 240px;
  object-fit: contain;             /* was: cover */
  background-color: #1b1b1b44;      /* keeps nice padding/letterbox */
}

/* (Optional) keep a consistent hero shape even when image is “contain” */
@media (min-width: 769px){
  .discover-hero-image{ min-height: 500px; }   /* adjust to taste */
}
/* Manifesto block */
.mafia-footer .footer-manifesto{
  max-width: 920px;
  margin: 28px auto 42px;      /* space above links */
  padding: 0 16px;
  text-align: center;

}

.mafia-footer .footer-manifesto p{
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .10em;       /* wide tracking like the image */
  word-spacing: .06em;
  line-height: 1.75;           /* airy lines */
  color: #7d7d7d;              /* soft gray */
  margin: 0;
}

/* paragraph spacing */
.mafia-footer .footer-manifesto p + p{
  margin-top: 16px;
}

/* responsive sizing */
@media (max-width: 480px){
  .mafia-footer .footer-manifesto p{ font-size: 11.5px; }
}
@media (min-width: 481px) and (max-width: 1023px){
  .mafia-footer .footer-manifesto p{ font-size: 12.5px; }
}
@media (min-width: 1024px){
  .mafia-footer .footer-manifesto p{ font-size: 14px; letter-spacing: .12em; }
  .mafia-footer .footer-manifesto{ margin: 34px auto 54px; }
}
