@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root{
  --bg:#f6f6f7;
  --card:#ffffff;
  --text:#111;
  --muted:#6b7280;
  --line:#e5e7eb;
  --accent:#0ea5e9;
  --accent2:#22c55e;
}
*{box-sizing:border-box}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#f7f8fb;
  color:#0f172a;
  margin:0;
}

a{color:inherit;text-decoration:none}
.container{max-width:1180px;margin:0 auto;padding:18px}
.topbar{
  background:#fff;border-bottom:1px solid var(--line);
}
.brand{
  display:flex;align-items:center;gap:12px;font-weight:800;letter-spacing:.2px
}
.brand .logo{
  width:34px;height:34px;border-radius:8px;background:#111;color:#fff;display:flex;align-items:center;justify-content:center;
  font-size:14px;
}
.nav{
  display:flex;gap:14px;flex-wrap:wrap;margin-top:10px
}
.nav a{
  padding:8px 10px;border-radius:10px;color:#111;border:1px solid transparent;
}
.nav a:hover{border-color:var(--line);background:#fafafa}
.nav a.active{border-color:#111;background:#111;color:#fff}
.hero{
  display:grid;grid-template-columns: 1.6fr 1fr;gap:16px;margin-top:18px;
}
@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
}
.card.pad{padding:16px}
.h1{font-size:34px;line-height:1.1;margin:0 0 8px 0}
.sub{color:var(--muted);font-size:14px;line-height:1.5;margin:0}
.media{
  border-radius:14px;
  height:420px;
  background:
    radial-gradient(circle at 25% 35%, rgba(14,165,233,.22), transparent 55%),
    radial-gradient(circle at 70% 25%, rgba(34,197,94,.18), transparent 55%),
    linear-gradient(135deg,#fff,#f3f4f6);
  border:1px solid var(--line);
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  padding:14px;
}
.media .caption{
  background:rgba(255,255,255,.85);
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px 12px;
  font-size:13px;
  color:#111;
  backdrop-filter: blur(8px);
}
.panel h3{margin:0 0 12px 0;font-size:16px}
.row{display:flex;gap:10px;flex-wrap:wrap}
.field{margin:10px 0}
label{display:block;font-size:12px;color:var(--muted);margin-bottom:6px}
select,input[type="number"],input[type="text"],input[type="email"],textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px 12px;
  font-size:14px;
  outline:none;
  background:#fff;
}
select:focus,input:focus,textarea:focus{border-color:#111}
.inline2{display:grid;grid-template-columns:1fr 1fr;gap:10px}
@media (max-width: 520px){.inline2{grid-template-columns:1fr}}
.prices{border-top:1px solid var(--line);margin-top:10px;padding-top:10px}
.qgrid{display:grid;gap:8px}
.qopt{
  display:grid;grid-template-columns:20px 1fr auto;
  gap:10px;align-items:center;
  padding:10px 10px;border:1px solid var(--line);border-radius:14px;
  cursor:pointer;background:#fff;
}
.qopt:hover{border-color:#cbd5e1}
.qopt.active{border-color:#111}
.qopt small{color:var(--muted)}
.price{
  font-weight:800;
}
.save{color:var(--accent2);font-size:12px;font-weight:700;margin-left:10px}
.totalBox{
  margin-top:12px;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fafafa;
  display:flex;justify-content:space-between;align-items:flex-end;gap:10px;
}
.totalBox .big{font-size:26px;font-weight:900;line-height:1}
.totalBox .muted{color:var(--muted);font-size:12px}
.btn{
  width:100%;
  border:0;
  border-radius:14px;
  padding:12px 14px;
  font-weight:800;
  cursor:pointer;
  background:#111;color:#fff;
  font-size:14px;
}
.btn:hover{opacity:.95}
.note{font-size:12px;color:var(--muted);line-height:1.45;margin-top:10px}
.badge{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 10px;border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-size:12px;color:#111;font-weight:700;
}
.badge .dot{width:8px;height:8px;border-radius:50%;background:var(--accent2)}
.footer{margin:28px 0 12px;color:var(--muted);font-size:12px;text-align:center}
hr.sep{border:0;border-top:1px solid var(--line);margin:14px 0}
.helpLinks{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.helpLinks a{font-size:12px;color:#111;text-decoration:underline;opacity:.85}


/* --- Style polish pass (AlteredVinyl) --- */
:root{
  --ink:#0f172a;
  --muted:rgba(15,23,42,.65);
  --line:rgba(15,23,42,.10);
  --card:#ffffff;
  --shadow:0 12px 30px rgba(15,23,42,.06);
  --shadow2:0 10px 18px rgba(15,23,42,.08);
  --radius:18px;
}
.container{ max-width:1120px; padding:0 18px; }

header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(15,23,42,.08);
}

.nav a{
  font-weight:650;
  color:rgba(15,23,42,.82);
  text-decoration:none;
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover{ background:rgba(15,23,42,.04); color:var(--ink); }
.nav a.active{ background:rgba(15,23,42,.06); color:var(--ink); }

.card, .panel{
  background:var(--card);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
}
.h1{ letter-spacing:-.3px; }
.sub{ color:var(--muted); max-width:60ch; }

.qtyOption{
  border-radius:16px;
  border:1px solid var(--line);
  transition: transform .08s ease, box-shadow .15s ease, border-color .15s ease;
}
.qtyOption:hover{
  transform: translateY(-1px);
  border-color: rgba(15,23,42,.18);
  box-shadow: var(--shadow2);
}
.qtyOption.selected{
  border-color: rgba(15,23,42,.28);
  box-shadow: var(--shadow2);
}

.primaryBtn, button[type="submit"]{
  border-radius:14px;
  padding:12px 16px;
  font-weight:800;
  background:#111827;
  color:#fff;
  border:none;
  cursor:pointer;
}
.primaryBtn:hover, button[type="submit"]:hover{ filter: brightness(1.05); }

input, select, textarea{
  border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
}
small, .smallMuted{ color:var(--muted); }

/* Directory hero (ocean waves background) */
.stickersHero{
  margin-top: 0;
  height: 420px;
  border-radius: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  background-image:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("https://alteredvinyl.com/assets/front_assets/images/dklsghf.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stickersHero h1{
  color:#fff;
  font-size:64px;
  line-height:1;
  margin:0;
  font-weight:800;
  letter-spacing:-.5px;
  text-shadow: 0 6px 20px rgba(0,0,0,.25);
}

@media (max-width: 900px){
  .stickersHero{ height: 320px; }
  .stickersHero h1{ font-size: 44px; }
}

/* Directory tiles */
.stickerTiles{
  margin-top: -90px; /* pulls cards up over the hero like your old look */
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 980px){
  .stickerTiles{ grid-template-columns: 1fr; margin-top: -50px; }
}

.stickerTile{
  background:#fff;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 40px rgba(15,23,42,.10);
  overflow:hidden;
  min-height: 260px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  transition: transform .12s ease, box-shadow .2s ease;
}

.stickerTile:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(15,23,42,.14);
}

.stickerTile img{
  max-width: 75%;
  height: auto;
  display:block;
}
/* ===============================
   STICKERS DIRECTORY (WAVES HERO)
   =============================== */

.stickers-hero {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("/backup-19sep25/assets/front_assets/images/dklsghf.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stickers-hero h1 {
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
  text-shadow: 0 6px 20px rgba(0,0,0,.25);
}

@media (max-width: 900px) {
  .stickers-hero {
    height: 300px;
  }
  .stickers-hero h1 {
    font-size: 44px;
  }
}

.stickers-grid-wrap {
  margin-top: -90px;
}

.stickers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 900px) {
  .stickers-grid {
    grid-template-columns: 1fr;
  }
}

.sticker-card {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  transition: transform .15s ease, box-shadow .15s ease;
}

.sticker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0,0,0,.18);
}

.sticker-card img {
  max-width: 80%;
  height: auto;
}
/* ===============================
   Stickers Directory (StickerMule-ish)
   =============================== */

.stickers-banner{
  height: 220px;
  background-image:
    linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.18)),
    url("/backup-19sep25/assets/front_assets/images/dklsghf.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

.stickers-banner-inner{
  width: 100%;
  max-width: 1120px;
  padding: 0 18px;
  text-align:center;
}

.stickers-banner h1{
  margin: 0;
  color:#fff;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -.6px;
  text-shadow: 0 10px 30px rgba(0,0,0,.25);
}

@media (max-width: 900px){
  .stickers-banner{ height: 170px; }
  .stickers-banner h1{ font-size: 38px; }
}

/* Product grid */
.products-grid{
  margin-top: 36px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 26px;
  align-items:start;
}

@media (max-width: 1000px){
  .products-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .products-grid{ grid-template-columns: 1fr; }
}

.product-tile{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap: 12px;
  padding: 10px 6px;
  border-radius: 14px;
  transition: transform .12s ease;
}

.product-tile:hover{
  transform: translateY(-2px);
}

.product-tile img{
  width: 170px;       /* controls size */
  max-width: 100%;
  height: auto;
  display:block;
}

.product-name{
  font-size: 15px;
  font-weight: 650;
  color: rgba(15,23,42,.85);
  text-align:center;
}
/* Size tiles (override qty row grid layout) */
#sizeOptions{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}

#sizeOptions .qopt{
  grid-template-columns: 1fr;   /* override the 3-col qty layout */
  text-align:center;
  justify-items:center;
  padding:14px 12px;
}

#sizeOptions .qopt strong{
  font-size:14px;
}

@media (min-width: 700px){
  #sizeOptions{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
/* ==========================================================
   SIGNS TILES HOVER (Signs365-style slide + translucent panel)
   One image only. Overlay is CSS (no fake transparent images).
   ========================================================== */

/* put this class on the <a> or wrapper for each sign tile */
.signTileFX{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15,23,42,.10);
  border: 1px solid rgba(15,23,42,.10);
  transition: transform .14s ease, box-shadow .18s ease;
}

.signTileFX:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(15,23,42,.14);
}

/* base image (single image) */
.signTileFX .signTileImg{
  display:block;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .35s ease;
}

.signTileFX:hover .signTileImg{
  transform: scale(1.03);
}

/* translucent info panel */
.signTileFX .signTilePanel{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width: min(78%, 340px);
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(15,23,42,.12);
  transition: transform .40s ease;
  pointer-events:none; /* panel itself doesn't steal hover */
}

/* IMPORTANT: on hover we slide the panel LEFT only halfway */
.signTileFX:hover .signTilePanel{
  transform: translate(-95%, -50%); /* slides left about half */
}

/* text inside panel */
.signTileFX .signTileTitle{
  font-weight: 900;
  font-size: 14px;
  color: rgba(15,23,42,.92);
  margin: 0 0 2px 0;
  text-align:center;
}

.signTileFX .signTileSub{
  margin:0;
  font-size: 12px;
  color: rgba(15,23,42,.58);
  text-align:center;
}

/* buttons row (if you keep buttons on directory tiles) */
.signTileFX .signTileBtns{
  margin-top: 10px;
  display:flex;
  gap:10px;
  justify-content:center;
  pointer-events:auto; /* buttons can be clicked */
}

.signTileFX .signBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(15,23,42,.14);
  background:#fff;
  color: rgba(15,23,42,.88);
  transition: filter .15s ease, transform .10s ease;
}

.signTileFX .signBtn:hover{
  filter: brightness(0.98);
  transform: translateY(-1px);
}

.signTileFX .signBtn.primary{
  background: #0f7f86; /* your teal vibe */
  border-color: rgba(0,0,0,.0);
  color:#fff;
}
/* Cart item rows (StickerApp-ish) */
.cart-list { display:flex; flex-direction:column; gap:12px; }

.cart-row{
  display:flex; gap:14px; align-items:center;
  padding:14px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  background:#fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.cart-thumb{
  width:88px; height:88px; border-radius:12px;
  background:#f5f6f7;
  border:1px solid rgba(0,0,0,.06);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; flex:0 0 88px;
}

.cart-thumb img{
  width:100%; height:100%;
  object-fit:contain;
  display:block;
}

.cart-meta{ flex:1; min-width:0; }
.cart-title{ font-weight:900; font-size:16px; margin:0; line-height:1.15; }
.cart-sub{ margin:4px 0 0; opacity:.75; font-weight:700; font-size:13px; }
.cart-sub small{ opacity:.8; font-weight:800; }

.cart-actions{
  display:flex; align-items:center; gap:10px;
  flex:0 0 auto;
}

.cart-qty{
  width:92px; height:38px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.12);
  padding:0 10px;
  font-weight:800;
  background:#fff;
}

.cart-price{
  min-width:92px;
  text-align:right;
  font-weight:900;
}

.cart-remove{
  width:38px; height:38px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  font-weight:900;
  cursor:pointer;
}
.cart-remove:hover{ background:#f5f6f7; }

/* Equal spacing above and below category grids (stickers + signs) */
.product-grid,
.category-grid,
.signs-grid {
  margin-bottom: 48px;
}
