/*
 Theme Name:   The OZ Label
 Theme URI:    https://www.instagram.com/theozlabel/
 Description:  The OZ Label Clothing Co. — dark-mode streetwear & photography brand storefront. Child theme of PicoStrap5.
 Author:       The OZ Label
 Author URI:   https://www.instagram.com/theozlabel/
 Template:     picostrap5-master
 Version:      1.0.0
 Text Domain:  theozlabel
 License:      GPL-2.0
 License URI:  http://www.opensource.org/licenses/gpl-license.php
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */

/* VOID — dark mono (default) */
:root,
body,
body.theme-dark-mono {
  --bg:         #08080a;
  --surface:    #101012;
  --fg:         #e9e6df;
  --dim:        #6b6b70;
  --line:       #222226;
  --accent:     #e9e6df;
  --accent-fg:  #08080a;
  --ph1:        #141416;
  --ph2:        #1c1c1f;
  --phtx:       #4a4a50;
  --dark:       1;
  --ease:       cubic-bezier(.22, 1, .36, 1);
  --radius:     0px;
  --display:    'Anton', Impact, sans-serif;
  color-scheme: dark;
}

/* BLOOD — dark red */
body.theme-dark-red {
  --bg:         #0a0809;
  --accent:     #b3121b;
  --accent-fg:  #f3ece9;
}

/* BONE — dark gold */
body.theme-dark-gold {
  --bg:         #13110e;
  --accent:     #c79a4e;
}

/* ASH — light */
body.theme-light {
  --bg:         #f4f3f1;
  --fg:         #0b0b0b;
  --accent:     #0b0b0b;
  --dark:       0;
  color-scheme: light;
}

/* ============================================================
   GLOBAL RESETS
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

::selection {
  background: var(--fg);
  color: var(--bg);
}

/* ============================================================
   FILM GRAIN — fixed SVG fractalNoise overlay
   ============================================================ */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .44;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

body.theme-light::after {
  mix-blend-mode: multiply;
  opacity: .3;
}

/* ============================================================
   DARK VIGNETTE — radial gradient overlay
   ============================================================ */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9989;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 40%, transparent 52%, rgba(0,0,0,.55) 100%);
  opacity: var(--dark);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--accent-fg);
  border: none;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: transform .25s var(--ease), filter .25s;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}

.btn-solid:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
  color: var(--accent-fg);
  text-decoration: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 16px 26px;
  border-radius: var(--radius);
  transition: background .25s var(--ease), color .25s, border-color .25s;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}

.btn-ghost:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
  text-decoration: none;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--fg);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.btn-line::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 0;
  background: var(--fg);
  transition: width .3s var(--ease);
}

.btn-line:hover::after { width: 100%; }

/* ============================================================
   FONT FAMILY UTILITIES
   ============================================================ */

.font-display { font-family: var(--display); }
.font-mono    { font-family: 'Space Mono', monospace; }
.font-body    { font-family: 'Archivo', sans-serif; }
