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

/* Global tokens */
:root {
  --bg-canvas: #F8F8F8;
  --ink-primary: #333333;
  --ink-secondary: #555555;
  --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: 'Cormorant Garamond', 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);
  line-height: 1.75;
  letter-spacing: -0.012em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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


button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid rgba(51, 51, 51, 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 — Luxury Dark Footer
------------------------------------------------------------------ */
.dreamyfooter26 {
  background: var(--ink-primary, #333333);
  color: var(--bg-canvas, #FFFFFF);
  border-top: none;
}

.dreamyfooter26-newsletter {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 16px;
  text-align: center;
}

.dreamyfooter26-newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}

.dreamyfooter26-newsletter-title {
  font-family: var(--font-edit);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: #FFFFFF;
}

.dreamyfooter26-newsletter-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0 0 24px;
}

.dreamyfooter26-newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}

.dreamyfooter26-newsletter-form input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  padding: 12px 16px;
  border-radius: 4px;
  outline: none;
  font-family: var(--font-ui);
  transition: border-color 0.3s ease;
}

.dreamyfooter26-newsletter-form input:focus {
  border-color: #FFFFFF;
}

.dreamyfooter26-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.dreamyfooter26-newsletter-form button {
  background: #FFFFFF;
  color: #333333;
  border: none;
  padding: 0 24px;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.dreamyfooter26-newsletter-form button:hover {
  opacity: 0.85;
}

@media (max-width: 480px) {
  .dreamyfooter26-newsletter-form {
    flex-direction: column;
  }

  .dreamyfooter26-newsletter-form button {
    padding: 14px 24px;
  }
}

.dreamyfooter26-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 16px 40px;
}

.dreamyfooter26-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding-bottom: 60px;
}

.dreamyfooter26-col-title {
  font-family: var(--font-edit);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.dreamyfooter26-mark {
  font-family: var(--font-edit);
  font-size: 2.22rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.dreamyfooter26-tagline {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

.dreamyfooter26-socials {
  margin-top: 18px;
  display: flex;
  gap: 16px;
}

.dreamyfooter26-socials a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  font-weight: 500;
}

.dreamyfooter26-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dreamyfooter26-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.dreamyfooter26-links a:hover,
.dreamyfooter26-links a:focus-visible {
  color: #FFFFFF;
  transform: translateX(4px);
}

.dreamyfooter26-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.dreamyfooter26-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .dreamyfooter26-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dreamyfooter26-columns {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .dreamyfooter26-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}