/**
 * Theme Name: DreamyStudio26
 * Description: DreamyAroma luxury UI preset — standalone theme (Home, Shop, PDP, Checkout).
 * Version: 26.0.4
 * Author: DreamyAroma
 * Text Domain: dreamystudio26
 * Requires at least: 6.0
 * Tested up to: 6.6
 * Requires PHP: 7.4
 */

/* Global tokens */
:root {
  --bg-canvas: #FFFFFF;
  --ink-primary: #050505;
  --ink-secondary: #757575;
  --ink-light: #E5E5E5;

  --shadow-ground: radial-gradient(closest-side, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
  --anim-physics: cubic-bezier(0.23, 1, 0.32, 1);

  --font-ui: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-edit: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }


/* Ensure HTML [hidden] never blocks clicks */
[hidden]{display:none !important;}
body {
  margin: 0;
  background: var(--bg-canvas);
  color: var(--ink-primary);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }

:focus-visible {
  outline: 2px solid rgba(5, 5, 5, 0.35);
  outline-offset: 3px;
  border-radius: 10px;
}

.dreamy26-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------------
   DreamyFooter26 — Minimal museum footer
------------------------------------------------------------------ */
.dreamy26-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.dreamy26-content {
  flex: 1;
}

.dreamyfooter26 {
  background: var(--bg-canvas);
  border-top: 1px solid var(--ink-light);
  padding: 44px 16px 36px;
}

.dreamyfooter26-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  text-align: center;
}

.dreamyfooter26-mark {
  font-family: var(--font-edit);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.dreamyfooter26-tagline {
  margin-top: 6px;
  color: var(--ink-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

.dreamyfooter26-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.dreamyfooter26-menu a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-secondary);
  display: inline-block;
  padding: 6px 0;
  position: relative;
}

.dreamyfooter26-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--ink-primary);
  opacity: 0;
  transform: scaleX(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dreamyfooter26-menu a:hover::after,
.dreamyfooter26-menu a:focus-visible::after {
  opacity: 0.25;
  transform: scaleX(1);
}

.dreamyfooter26-meta {
  font-size: 0.78rem;
  color: var(--ink-secondary);
}

@media (min-width: 768px) {
  .dreamyfooter26-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: left;
  }
  .dreamyfooter26-nav { text-align: center; }
  .dreamyfooter26-meta { text-align: right; }
}
