/*
Theme Name: TokyoTreasures
Theme URI: https://tokyotreasures.nl
Author: TokyoTreasures
Description: Custom thema voor TokyoTreasures.nl — anime figures & Japanse import-snacks, gebouwd rond het "Schap & Sticker" ontwerpconcept. WooCommerce-ready.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tokyotreasures
*/

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;800&family=Work+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  --ink: #14142B;
  --ink-2: #1D1D3A;
  --paper: #F6F1E7;
  --pink: #FF3D77;
  --gold: #D4A63A;
  --cyan: #45E0D6;
  --text-dark: #1B1B2F;
}

*{box-sizing:border-box;margin:0;padding:0;}
body{
  background:var(--ink);
  color:var(--paper);
  font-family:'Work Sans',sans-serif;
  -webkit-font-smoothing:antialiased;
}
.display{font-family:'Baloo 2',cursive;}
.mono{font-family:'IBM Plex Mono',monospace;}

a{color:inherit;text-decoration:none;}

/* ---- NAV ---- */
nav{
  display:flex;justify-content:space-between;align-items:center;
  padding:22px 5%;
  border-bottom:1px solid rgba(246,241,231,0.08);
  flex-wrap:wrap;gap:14px;
}
.logo{
  font-family:'Baloo 2',cursive;font-weight:800;font-size:22px;letter-spacing:0.5px;
}
.logo span{color:var(--pink);}
.navlinks{display:flex;gap:32px;font-size:14px;font-weight:500;opacity:0.85;flex-wrap:wrap;}
.navlinks a:hover{color:var(--cyan);}
.cart-btn{
  background:var(--pink);color:var(--paper);padding:10px 18px;border-radius:6px;
  font-size:14px;font-weight:600;
}

/* ---- HERO ---- */
.hero{
  display:grid;grid-template-columns:1.1fr 0.9fr;gap:40px;
  padding:70px 5% 90px;align-items:center;
  position:relative;overflow:hidden;
}
.hero::before{
  content:"";position:absolute;top:-120px;right:-120px;width:420px;height:420px;
  background:radial-gradient(circle,rgba(255,61,119,0.18) 0%,rgba(255,61,119,0) 70%);
}
.eyebrow{
  font-family:'IBM Plex Mono',monospace;font-size:12px;letter-spacing:2px;
  color:var(--gold);text-transform:uppercase;margin-bottom:18px;display:inline-block;
}
.hero h1{
  font-family:'Baloo 2',cursive;font-weight:800;font-size:56px;line-height:1.05;
  margin-bottom:22px;
}
.hero h1 .accent{color:var(--pink);}
.hero p{
  font-size:16px;line-height:1.6;max-width:440px;opacity:0.8;margin-bottom:32px;
}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;}
.btn-primary{
  background:var(--pink);color:var(--paper);padding:14px 26px;border-radius:8px;
  font-weight:600;font-size:15px;display:inline-block;
}
.btn-ghost{
  border:1px solid rgba(246,241,231,0.3);padding:14px 26px;border-radius:8px;
  font-weight:600;font-size:15px;display:inline-block;
}

/* hero figure card */
.figure-card{
  background:var(--paper);border-radius:14px;padding:24px;position:relative;
  max-width:340px;margin-left:auto;
  box-shadow:0 30px 60px rgba(0,0,0,0.35);
}
.sticker{
  position:absolute;top:-14px;right:-14px;background:linear-gradient(135deg,var(--cyan),var(--pink));
  color:var(--ink);font-family:'Baloo 2',cursive;font-weight:800;font-size:13px;
  padding:10px 14px;border-radius:50%;transform:rotate(12deg);
  width:70px;height:70px;display:flex;align-items:center;justify-content:center;
  text-align:center;line-height:1.1;box-shadow:0 6px 16px rgba(0,0,0,0.3);
}
.figure-art{
  height:210px;border-radius:8px;
  background:linear-gradient(160deg,#e4dcc9,#cfc4a8);
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;
  position:relative;overflow:hidden;
}
.figure-art img{max-height:100%;max-width:100%;object-fit:contain;}
.figure-silhouette{
  width:90px;height:150px;
  background:var(--ink);
  clip-path:polygon(50% 0%,65% 10%,70% 30%,85% 40%,80% 55%,70% 58%,72% 100%,28% 100%,30% 58%,20% 55%,15% 40%,30% 30%,35% 10%);
  opacity:0.85;
}
.figure-card h4{color:var(--text-dark);font-family:'Baloo 2',cursive;font-size:18px;margin-bottom:4px;}
.figure-card .sub{color:#6b6b7a;font-size:13px;margin-bottom:10px;}
.price-tag{
  display:inline-block;background:var(--ink);color:var(--gold);
  font-family:'IBM Plex Mono',monospace;font-size:14px;font-weight:600;
  padding:6px 12px;border-radius:6px;
}

/* ---- SHELF NAV ---- */
.shelf-nav{
  display:flex;gap:10px;padding:0 5% 40px;flex-wrap:wrap;
}
.shelf-tab{
  font-family:'Baloo 2',cursive;font-size:14px;font-weight:600;
  padding:10px 20px;border-radius:999px;border:1px solid rgba(246,241,231,0.15);
  opacity:0.75;
}
.shelf-tab.active, .shelf-tab:hover{
  background:var(--paper);color:var(--ink);opacity:1;border-color:var(--paper);
}

/* ---- PRODUCT SHELVES ---- */
.section-title{
  padding:0 5%;font-family:'Baloo 2',cursive;font-size:26px;margin-bottom:6px;
}
.section-sub{padding:0 5%;font-size:14px;opacity:0.6;margin-bottom:28px;}

.shelf-row{
  padding:0 5% 8px;
  display:grid;grid-template-columns:repeat(4,1fr);gap:20px;
}
.shelf-row::after{
  content:"";grid-column:1/-1;height:3px;
  background:linear-gradient(90deg,var(--gold),rgba(212,166,58,0));
  margin-top:14px;border-radius:2px;
}
.product-card{
  background:var(--paper);border-radius:12px;padding:16px;position:relative;
  transition:transform .2s ease;
}
.product-card:hover{transform:translateY(-4px);}
.product-card .art{
  height:130px;border-radius:8px;background:linear-gradient(160deg,#e4dcc9,#cfc4a8);
  display:flex;align-items:center;justify-content:center;margin-bottom:12px;overflow:hidden;
}
.product-card .art img{max-height:100%;max-width:100%;object-fit:contain;}
.product-card .mini-sil{
  width:44px;height:74px;background:var(--ink);opacity:0.8;
  clip-path:polygon(50% 0%,65% 10%,70% 30%,85% 40%,80% 55%,70% 58%,72% 100%,28% 100%,30% 58%,20% 55%,15% 40%,30% 30%,35% 10%);
}
.product-card.snack .art{background:linear-gradient(160deg,#f7d9e3,#f3b9cf);}
.product-card h5{color:var(--text-dark);font-size:14px;font-weight:600;margin-bottom:4px;}
.product-card .sub{color:#7a7a88;font-size:12px;margin-bottom:8px;}
.product-card .row-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px;}
.product-card .price{font-family:'IBM Plex Mono',monospace;font-size:13px;font-weight:600;color:var(--ink);}
.product-card .price .amount, .product-card .price bdi{font-family:'IBM Plex Mono',monospace;}
.tiny-btn{
  background:var(--ink);color:var(--paper);font-size:11px;font-weight:600;
  padding:6px 10px;border-radius:6px;display:inline-block;
}
.limited-flag{
  position:absolute;top:-8px;left:12px;background:var(--gold);color:var(--ink);
  font-family:'IBM Plex Mono',monospace;font-size:10px;font-weight:600;letter-spacing:0.5px;
  padding:4px 8px;border-radius:4px;transform:rotate(-3deg);z-index:2;
}

/* ---- DROP BANNER ---- */
.drop-banner{
  margin:70px 5%;padding:44px;border-radius:16px;
  background:linear-gradient(120deg,#1D1D3A 0%,#2a1a3a 45%,#1a2f3a 100%);
  display:flex;justify-content:space-between;align-items:center;gap:30px;
  border:1px solid rgba(69,224,214,0.25);
  position:relative;overflow:hidden;flex-wrap:wrap;
}
.drop-banner::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(115deg,transparent 30%,rgba(255,61,119,0.08) 50%,transparent 70%);
}
.drop-banner h3{font-family:'Baloo 2',cursive;font-size:28px;margin-bottom:8px;}
.drop-banner p{opacity:0.75;font-size:14px;max-width:420px;}
.countdown{
  font-family:'IBM Plex Mono',monospace;font-size:22px;font-weight:600;color:var(--cyan);
  background:rgba(0,0,0,0.25);padding:14px 22px;border-radius:10px;white-space:nowrap;
}

/* ---- FOOTER ---- */
footer{
  padding:50px 5% 30px;border-top:1px solid rgba(246,241,231,0.08);
  display:flex;justify-content:space-between;font-size:13px;opacity:0.6;
  margin-top:40px;flex-wrap:wrap;gap:12px;
}

/* ---- Generic page/post content (blog, single pages) ---- */
.site-content{
  max-width:800px;margin:0 auto;padding:60px 5%;line-height:1.7;
}
.site-content h1, .site-content h2{font-family:'Baloo 2',cursive;margin-bottom:16px;}
.site-content p{margin-bottom:18px;opacity:0.85;}

@media (max-width:820px){
  .hero{grid-template-columns:1fr;}
  .figure-card{margin:0 auto;}
  .shelf-row{grid-template-columns:repeat(2,1fr);}
  .hero h1{font-size:38px;}
  .drop-banner{flex-direction:column;text-align:center;}
}
