* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #111111; color: #ffffff; font-family: Arial, Helvetica, sans-serif; min-height: 100vh; }
header { text-align: center; padding: 35px 20px 25px; border-bottom: 1px solid #333333; position: sticky; top:0; background: #111; z-index:10; }
header h1 { font-size: 32px; letter-spacing: 4px; font-weight: 900; }
.slogan { margin-top: 12px; font-size: 12px; letter-spacing: 3px; opacity: 0.7; }
.menu { 
  margin-top: 20px; 
  display: flex; 
  flex-wrap: wrap;
  justify-content: center; 
  gap: 10px; 
  padding: 0 10px;
}
.menu button { 
  background: #fff; 
  color: #000; 
  border: none; 
  padding: 12px 10px; 
  font-weight: 800; 
  font-size: 12px; 
  letter-spacing: 1px; 
  cursor: pointer; 
  flex: 1 1 22%;
  min-width: 75px;
  max-width: 90px;
  border-radius: 4px;
}
.menu button:last-child {
  flex: 0 1 100%;
  max-width: 200px;
  margin-top: 5px;
}
/* FIXED MENU - no more cut */
.menu { margin-top: 20px; display: flex; justify-content: flex-start; gap: 10px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.menu::-webkit-scrollbar { display: none; }
.menu button { background: #fff; color: #000; border: none; padding: 12px 18px; font-weight: 800; font-size: 12px; letter-spacing: 1px; cursor: pointer; flex-shrink: 0; min-width: 85px; border-radius: 4px; white-space: nowrap; }
.menu button:active { background: #888; }

#content { padding: 20px; max-width: 600px; margin: 0 auto; }
.page h2 { font-size: 24px; margin: 20px 0; letter-spacing: 2px; }
.page p { line-height: 1.6; margin-bottom: 15px; color: #ccc; }
.page h3 { margin: 25px 0 10px; letter-spacing: 2px; color: #fff; }

.products { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 20px; }
.card { background: #1a1a1a; border: 1px solid #333; padding: 0; }
.card img { width: 100%; height: 180px; object-fit: cover; background: #222; }
.card-info { padding: 12px; }
.card h4 { font-size: 13px; letter-spacing: 1px; }
.card .price { margin-top: 5px; font-weight: 900; }
.card button { width: 100%; margin-top: 10px; background: #fff; color: #000; border: none; padding: 8px; font-weight: 800; font-size: 11px; cursor: pointer; }

.cart-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #222; }
.checkout { width: 100%; background: #25D366; color: white; padding: 16px; border: none; border-radius: 10px; margin-top: 20px; font-weight: 900; }

.detail-page{ background: white; color: black; text-align:left; }
.back-btn{ background:none; border:none; font-size:16px; padding:15px; }
.detail-top{ background: #f5f5f5; text-align:center; padding:10px; }
.detail-top #main-img{ width:100%; max-height:500px; object-fit:contain; }
.dots{ display:flex; gap:8px; overflow-x:auto; padding:10px; }
.thumb{ width:60px; height:60px; object-fit:cover; border:2px solid #ddd; border-radius:8px; }
.detail-info{ padding:20px; }
.detail-price{ font-size:18px; font-weight:bold; margin:10px 0; }
.detail-desc{ font-size:14px; line-height:1.5; margin:15px 0; }
.detail-meta{ font-size:12px; color: #666; margin-bottom:20px; line-height:1.8; }
.size-title{ margin:20px 0 10px 0; font-size:16px; }
.size-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:8px; margin-bottom:20px; }
.size-btn{ padding:12px; border:1px solid #ccc; background: white; border-radius:8px; }
.size-btn.active{ border:2px solid black; font-weight:bold; }
.add-bag-btn{ width:100%; background: black; color: white; padding:18px; border-radius:30px; font-size:16px; font-weight:bold; border:none; position:sticky; bottom:20px; }

.home-hero{ position:relative; height:80vh; background: black; border-radius:0 0 20px 20px; overflow:hidden; }
.hero-img{ width:100%; height:100%; object-fit:cover; opacity:0.65; }
.hero-overlay{ position:absolute; bottom:35px; left:20px; color: white; text-align:left; }
.hero-overlay h1{ font-size:32px; font-weight:900; line-height:0.95; margin:10px 0; }
.hero-overlay p{ font-size:14px; opacity:0.9; margin-bottom:15px; max-width:85%; line-height:1.4; }
.explore-btn{ background: white; color: black; border:none; padding:12px 28px; border-radius:30px; font-weight:bold; font-size:14px; }
.home-section{ background: #0a0a0a; padding:20px; color: white; }