/* ============================================================
   HRT STORAGE — Redesigned Stylesheet
   Product-forward. Premium. Pride-first.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    /* Brand */
    --pink:      #FF4D8D;
    --blue:      #4DC8FF;
    --purple:    #9747FF;
    --teal:      #00C4B4;
    --yellow:    #FFD600;

    /* Rainbow gradient */
    --rainbow: linear-gradient(135deg, #FF6B6B 0%, #FF9A3C 20%, #FFE566 38%, #6BCB77 55%, #4D96FF 72%, #9747FF 87%, #FF4D8D 100%);
    --rainbow-soft: linear-gradient(135deg, #FFD4E8 0%, #FFE8CC 25%, #FFFACC 45%, #D4F5DC 62%, #CCE8FF 78%, #E2D4FF 92%, #FFD4E8 100%);

    /* Light theme */
    --bg:        #FFFFFF;
    --bg2:       #F7F4FD;
    --bg3:       #EDE8F9;
    --surface:   #FFFFFF;
    --surface2:  #F7F4FD;
    --border:    #E4DCF5;
    --text:      #12082A;
    --text2:     #4A3A6A;
    --text3:     #8A7AAA;
    --text-inv:  #FFFFFF;

    /* Interactive */
    --accent:       var(--purple);
    --accent-dim:   rgba(151, 71, 255, 0.12);
    --accent-border:rgba(151, 71, 255, 0.3);
    --link:         #6B21CC;
    --link-hover:   #4B0E9E;

    /* Forms */
    --input-bg:     #FAFAFA;
    --input-border: #D5C8EE;
    --input-focus:  var(--purple);

    /* Feedback */
    --success: #22C55E;
    --error:   #EF4444;
    --warning: #F59E0B;

    /* Nav */
    --nav-bg:     rgba(255,255,255,0.85);
    --nav-border: rgba(151,71,255,0.12);
    --nav-h:      68px;

    /* Shadows */
    --shadow-xs: 0 1px 4px rgba(74,58,106,0.06);
    --shadow-sm: 0 2px 12px rgba(74,58,106,0.08);
    --shadow:    0 4px 24px rgba(74,58,106,0.12);
    --shadow-lg: 0 8px 48px rgba(74,58,106,0.16);
    --shadow-xl: 0 16px 64px rgba(74,58,106,0.2);
    --shadow-product: 0 20px 60px rgba(18,8,42,0.18);

    /* Radii */
    --r-sm:   8px;
    --r:      14px;
    --r-lg:   22px;
    --r-xl:   36px;
    --r-pill: 9999px;

    --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
    --transition-fast: 0.14s ease;
    --transition-slow: 0.4s ease;
}

[data-theme="dark"] {
    --bg:        #0D0B14;
    --bg2:       #130F20;
    --bg3:       #1C1730;
    --surface:   #1C1730;
    --surface2:  #241E3C;
    --border:    #332B52;
    --text:      #EDE8FF;
    --text2:     #B8AADC;
    --text3:     #7A6EA0;
    --text-inv:  #0D0B14;

    --accent:       #C084FC;
    --accent-dim:   rgba(192,132,252,0.1);
    --accent-border:rgba(192,132,252,0.25);
    --link:         #C084FC;
    --link-hover:   #D8A4FF;

    --input-bg:     #241E3C;
    --input-border: #3D3060;
    --input-focus:  #C084FC;

    --nav-bg:     rgba(13,11,20,0.88);
    --nav-border: rgba(192,132,252,0.15);

    --shadow-xs: 0 1px 4px rgba(0,0,0,0.2);
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.3);
    --shadow:    0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);
    --shadow-xl: 0 16px 64px rgba(0,0,0,0.6);
    --shadow-product: 0 20px 60px rgba(0,0,0,0.5);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: var(--nav-h);
    transition: background var(--transition-slow), color var(--transition-slow);
}

a { color: var(--link); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--link-hover); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.gradient-text {
    background: var(--rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    animation: gradient-shift 5s ease infinite;
}
@keyframes gradient-shift {
    0%,100% { background-position: 0% center; }
    50%      { background-position: 100% center; }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 0.32em 0.9em;
    border-radius: var(--r-pill);
    margin-bottom: 1rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-family: inherit;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1;
    padding: 0.85em 1.75em;
    border-radius: var(--r-pill);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-primary {
    background: var(--rainbow);
    background-size: 200% auto;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.18);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(151,71,255,0.35);
}
.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(151,71,255,0.45);
    color: #fff;
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.btn-secondary:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-ghost {
    background: var(--accent-dim);
    color: var(--accent);
    border-color: transparent;
}
.btn-ghost:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* Inverted (on dark backgrounds) */
.btn-inv {
    background: rgba(255,255,255,0.95);
    color: #6B21CC;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    font-weight: 800;
}
.btn-inv:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    color: #4B0E9E;
}

.btn-sm  { font-size: 0.82rem; padding: 0.65em 1.3em; }
.btn-lg  { font-size: 1.05rem; padding: 1em 2.1em; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: background var(--transition-slow), border-color var(--transition-slow);
}
.nav::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--rainbow);
    background-size: 300% auto;
    animation: gradient-shift 5s linear infinite;
    z-index: 1;
}
.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    gap: 1.5rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text);
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo:hover { color: var(--text); }
.nav-logo-icon {
    width: 34px;
    height: 34px;
    background: var(--rainbow);
    background-size: 200% auto;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    animation: logo-glow 4s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes logo-glow {
    0%,100% { background-position: 0% center; box-shadow: 0 2px 12px rgba(151,71,255,0.3); }
    50%      { background-position: 100% center; box-shadow: 0 2px 18px rgba(255,77,141,0.4); }
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    flex: 1;
    justify-content: center;
}
.nav-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text2);
    padding: 0.5em 0.9em;
    border-radius: var(--r-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
}
.nav-link:hover { color: var(--accent); background: var(--accent-dim); }
.nav-link.active {
    color: var(--accent);
    background: var(--accent-dim);
}

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }

.theme-toggle {
    width: 42px; height: 24px;
    border-radius: var(--r-pill);
    background: var(--border);
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    overflow: hidden;
}
.theme-toggle:hover { background: var(--accent); }
.theme-icon-light, .theme-icon-dark {
    position: absolute;
    font-size: 0.8rem;
    transition: all var(--transition);
    line-height: 1;
}
.theme-icon-light { opacity: 1; transform: scale(1); }
.theme-icon-dark  { opacity: 0; transform: scale(0.4); }
[data-theme="dark"] .theme-icon-light { opacity: 0; transform: scale(0.4); }
[data-theme="dark"] .theme-icon-dark  { opacity: 1; transform: scale(1); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px; height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    padding: 7px;
    transition: background var(--transition-fast);
}
.mobile-menu-btn:hover { background: var(--bg2); }
.mobile-menu-btn span {
    display: block; width: 100%; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    border-top: 1px solid var(--nav-border);
    padding: 0.75rem 1.5rem 1rem;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.15rem; }
.mobile-menu a {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text2);
    padding: 0.7em 1em;
    border-radius: var(--r-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
}
.mobile-menu a:hover, .mobile-menu a.active {
    color: var(--accent);
    background: var(--accent-dim);
}

/* ============================================================
   HERO  (always dark, image-forward)
   ============================================================ */
.hero {
    background: #0D0B14;
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 5rem;
}

/* Ambient glow blobs */
.hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(151,71,255,0.18) 0%, transparent 70%);
    top: -100px; left: -100px;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(77,200,255,0.12) 0%, transparent 70%);
    bottom: -80px; right: -80px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-content {}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.06;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 44ch;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
}
.trust-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--rainbow);
    flex-shrink: 0;
}

/* Hero product image */
.hero-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product-img {
    width: 100%;
    max-width: 520px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-product);
    position: relative;
    z-index: 1;
    transition: transform var(--transition-slow);
    animation: hero-float 6s ease-in-out infinite;
}
@keyframes hero-float {
    0%,100% { transform: translateY(0) rotate(0deg); }
    33%      { transform: translateY(-10px) rotate(0.5deg); }
    66%      { transform: translateY(-5px) rotate(-0.5deg); }
}

/* Color dot strip below hero image */
.hero-colors {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border-radius: var(--r-pill);
    padding: 8px 14px;
    z-index: 2;
}
.hero-color-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    transition: transform var(--transition-fast);
}
.hero-color-dot:hover { transform: scale(1.3); }

/* ============================================================
   DESIGNS GALLERY  (case product cards)
   ============================================================ */
.designs-section {
    background: var(--bg);
    padding: 5.5rem 0;
}

.designs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.designs-header-text {}
.designs-header-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}
.designs-header-text p {
    font-size: 1rem;
    color: var(--text2);
    max-width: 44ch;
}

/* Horizontal scroll gallery */
.designs-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Product card */
.design-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.design-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-border);
}

.design-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #E8E6F0;
    position: relative;
}
[data-theme="dark"] .design-card-img { background: #1C1830; }

.design-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.design-card:hover .design-card-img img {
    transform: scale(1.05);
}

.design-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.28em 0.75em;
    border-radius: var(--r-pill);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}
.tag-pride   { background: rgba(247,168,184,0.85); color: #8B0036; }
.tag-bold    { background: rgba(255,77,141,0.85);  color: #fff; }
.tag-classic { background: rgba(30,20,50,0.75);    color: #E0D8FF; }

.design-card-body {
    padding: 1.2rem 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.design-card-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}
.design-card-desc {
    font-size: 0.85rem;
    color: var(--text2);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 1rem;
}
.design-card-swatches {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}
.design-swatch {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.design-card-actions {
    display: flex;
    gap: 0.5rem;
}
.design-card-actions .btn { flex: 1; font-size: 0.8rem; padding: 0.65em 0.9em; }

/* ============================================================
   WHAT'S INSIDE  (product specs)
   ============================================================ */
.inside-section {
    background: var(--bg2);
    padding: 5.5rem 0;
}

.inside-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.inside-img-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #E2E0EC;
    position: relative;
}
[data-theme="dark"] .inside-img-wrap { background: #1C1830; }
.inside-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}
.inside-img-wrap:hover img { transform: scale(1.03); }

.inside-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.inside-content > p {
    font-size: 1rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 2.25rem;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.spec-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.1rem 1.25rem;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-fast);
}
.spec-row:hover { border-color: var(--accent-border); transform: translateX(4px); }
.spec-row-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--accent-dim);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.spec-row-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    min-width: 2.5ch;
    flex-shrink: 0;
}
.spec-row-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.15rem;
}
.spec-row-info span {
    font-size: 0.8rem;
    color: var(--text3);
}

.spec-note {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text3);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 0.85rem 1rem;
    line-height: 1.5;
}

/* ============================================================
   CUSTOMIZER SECTION
   ============================================================ */
.customizer-section {
    background: var(--bg);
    padding: 5.5rem 0;
}

.customizer-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.customizer-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.customizer-header-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}
.customizer-header-text p {
    font-size: 1rem;
    color: var(--text2);
    max-width: 44ch;
}

.qustomizer-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1.5px solid var(--border);
    background: var(--surface);
    transition: box-shadow var(--transition);
}
.qustomizer-wrap:hover { box-shadow: var(--shadow-xl); }
.qustomizer-wrap iframe { width: 100%; display: block; }

/* Customizer placeholder (used on customizer.php page, not index) */
.customizer-placeholder-area {
    background: var(--surface);
    border: 2px dashed var(--border);
    border-radius: var(--r-lg);
    min-height: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    padding: 3rem;
    text-align: center;
    transition: border-color var(--transition-fast);
}
.customizer-placeholder-area:hover { border-color: var(--accent); }
.cp-emoji { font-size: 3rem; animation: hero-float 4s ease-in-out infinite; display: block; }
.cp-title { font-size: 1.4rem; font-weight: 900; color: var(--text); letter-spacing: -0.01em; }
.cp-desc  { font-size: 0.95rem; color: var(--text2); max-width: 38ch; line-height: 1.6; }
.cp-tag   {
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent); background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 0.3em 0.9em; border-radius: var(--r-pill);
}

/* ============================================================
   SAFE SPACE SECTION
   ============================================================ */
.safe-section {
    background: #0D0B14;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.safe-section::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,77,141,0.1) 0%, transparent 65%);
    top: -200px; right: -200px;
    pointer-events: none;
}
.safe-section::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(77,200,255,0.08) 0%, transparent 65%);
    bottom: -150px; left: -100px;
    pointer-events: none;
}

.safe-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.safe-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.safe-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.safe-content p:last-of-type { margin-bottom: 2rem; }

.safe-values {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.safe-value {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}
.safe-value-icon {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.pride-flags-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}
.pride-flag-pill {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r);
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    transition: all var(--transition-fast);
    cursor: default;
}
.pride-flag-pill:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.8);
}
.pfp-stripe {
    width: 4px; height: 26px;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-band {
    background: var(--rainbow);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-band::before {
    content: '🦄';
    position: absolute;
    font-size: 14rem;
    opacity: 0.06;
    right: 3rem; top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    line-height: 1;
}
.cta-band-inner {
    position: relative; z-index: 1;
    max-width: 680px; margin: 0 auto;
    padding: 0 1.5rem;
}
.cta-band h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.cta-band p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ============================================================
   PAGE HERO  (sub-pages)
   ============================================================ */
.page-hero {
    background: var(--bg2);
    padding: 4rem 0 3.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--rainbow-soft);
    opacity: 0.3;
}
[data-theme="dark"] .page-hero::before { opacity: 0.07; }
.page-hero-inner {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.page-hero p {
    font-size: 1.05rem;
    color: var(--text2);
    max-width: 50ch;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-toolbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--shadow-xs);
}
.search-wrap {
    position: relative;
    flex: 1; min-width: 200px; max-width: 340px;
}
.search-icon {
    position: absolute;
    left: 1rem; top: 50%;
    transform: translateY(-50%);
    color: var(--text3);
    pointer-events: none;
}
.search-input {
    width: 100%;
    padding: 0.68em 1em 0.68em 2.7em;
    border: 1.5px solid var(--input-border);
    border-radius: var(--r-pill);
    background: var(--input-bg);
    color: var(--text);
    font-family: inherit; font-size: 0.88rem; font-weight: 600;
    outline: none;
    transition: border-color var(--transition-fast);
}
.search-input:focus { border-color: var(--input-focus); }
.shop-count { font-size: 0.82rem; font-weight: 700; color: var(--text3); white-space: nowrap; }

.category-filters {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    margin-bottom: 2.25rem;
}
.filter-btn {
    font-family: inherit; font-size: 0.82rem; font-weight: 700;
    padding: 0.52em 1.15em;
    border-radius: var(--r-pill);
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text2);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.filter-btn.active {
    background: var(--accent); color: #fff; border-color: var(--accent);
    box-shadow: 0 2px 10px var(--accent-dim);
}

.shop-colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1.1rem;
}

/* Color card (shop) */
.shop-color-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all var(--transition);
}
.shop-color-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-border);
}
.shop-color-card.hidden { display: none; }

.shop-swatch {
    height: 130px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0.65rem;
}
.shop-swatch-unavailable-badge {
    position: absolute; top: 0.6rem; left: 0.6rem;
    font-size: 0.65rem; font-weight: 800;
    color: white; background: rgba(0,0,0,0.5);
    padding: 0.2em 0.6em; border-radius: var(--r-pill);
    backdrop-filter: blur(4px);
}
.shop-card-info { padding: 0.95rem 1rem 1.1rem; }
.shop-card-name {
    font-size: 0.88rem; font-weight: 800; color: var(--text);
    margin-bottom: 0.25rem;
    display: flex; align-items: center; justify-content: space-between; gap: 0.4rem;
}
.shop-card-hex { font-size: 0.68rem; font-family: monospace; color: var(--text3); letter-spacing: 0.04em; flex-shrink: 0; }
.shop-card-cat {
    display: inline-block;
    font-size: 0.67rem; font-weight: 700;
    color: var(--accent); background: var(--accent-dim);
    padding: 0.2em 0.55em; border-radius: var(--r-pill);
    margin-bottom: 0.5rem;
}
.shop-card-desc {
    font-size: 0.78rem; color: var(--text3); line-height: 1.45;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    margin-bottom: 0.8rem;
}
.shop-card-actions { display: flex; gap: 0.4rem; }
.shop-card-actions .btn { flex: 1; justify-content: center; font-size: 0.76rem; padding: 0.55em 0.8em; }

.no-results {
    grid-column: 1/-1; text-align: center;
    padding: 3.5rem 2rem; color: var(--text3);
}
.no-results .nr-emoji { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.no-results p { font-size: 0.95rem; font-weight: 600; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-img-placeholder {
    aspect-ratio: 1; max-width: 460px;
    border-radius: var(--r-lg);
    background: var(--rainbow-soft);
    border: 2px solid var(--border);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.75rem; font-size: 4.5rem;
    box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
}
.about-img-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background: var(--rainbow); opacity: 0.05;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
    margin-top: 2rem;
}
.about-value-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 1.4rem;
    box-shadow: var(--shadow-xs);
    transition: all var(--transition);
}
.about-value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent-border); }
.av-icon { font-size: 1.6rem; margin-bottom: 0.5rem; display: block; }
.av-title { font-size: 0.95rem; font-weight: 800; color: var(--text); margin-bottom: 0.35rem; }
.av-desc  { font-size: 0.82rem; color: var(--text2); line-height: 1.5; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-info-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.15rem; background: var(--surface);
    border: 1.5px solid var(--border); border-radius: var(--r);
    transition: all var(--transition-fast);
}
.contact-info-item:hover { border-color: var(--accent-border); }
.cii-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.cii-text strong { font-size: 0.875rem; display: block; margin-bottom: 0.2rem; font-weight: 800; }
.cii-text p { font-size: 0.82rem; color: var(--text2); margin: 0; line-height: 1.5; }
.cii-text a { color: var(--link); font-weight: 600; }
.cii-text a:hover { color: var(--link-hover); }

.contact-form-wrap {
    background: var(--surface); border: 1.5px solid var(--border);
    border-radius: var(--r-lg); padding: 2.25rem;
    box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1.4rem; }
.form-label {
    display: block; font-size: 0.82rem; font-weight: 800;
    color: var(--text); margin-bottom: 0.45rem;
}
.form-label .req { color: var(--pink); }
.form-control {
    width: 100%;
    padding: 0.78em 1.05em;
    border: 1.5px solid var(--input-border);
    border-radius: var(--r-sm);
    background: var(--input-bg);
    color: var(--text);
    font-family: inherit; font-size: 0.92rem; font-weight: 600;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none; display: block;
}
.form-control:focus {
    border-color: var(--input-focus);
    box-shadow: 0 0 0 3px var(--accent-dim);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-error {
    font-size: 0.77rem; color: var(--error);
    margin-top: 0.3rem; font-weight: 700;
    display: flex; align-items: center; gap: 0.3rem;
}

.alert {
    padding: 0.9rem 1.1rem; border-radius: var(--r);
    margin-bottom: 1.5rem; font-weight: 700; font-size: 0.875rem;
    display: flex; align-items: flex-start; gap: 0.65rem;
}
.alert-success {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.25);
    color: var(--success);
}
.alert-error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.25);
    color: var(--error);
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 2.25rem; }
.faq-item {
    background: var(--surface); border: 1.5px solid var(--border);
    border-radius: var(--r); overflow: hidden;
    transition: border-color var(--transition-fast);
}
.faq-item.open { border-color: var(--accent-border); }
.faq-question {
    display: flex; align-items: center;
    justify-content: space-between; gap: 1rem;
    padding: 1.1rem 1.2rem; cursor: pointer;
    font-size: 0.92rem; font-weight: 700; color: var(--text);
    background: none; border: none; width: 100%; text-align: left;
    font-family: inherit; transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
    flex-shrink: 0; width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); transition: transform var(--transition);
    font-size: 1.1rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    display: none; padding: 0 1.2rem 1.1rem;
    font-size: 0.875rem; color: var(--text2); line-height: 1.65;
}
.faq-answer a { color: var(--link); }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-safe {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
}
.footer-safe-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; flex-wrap: wrap; text-align: center;
}
.footer-safe-inner p { font-size: 0.85rem; color: var(--text2); }
.footer-safe-inner strong { color: var(--text); }
.footer-safe-flags { font-size: 1.1rem; letter-spacing: 0.1em; }

.footer-body {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.1fr 1.2fr;
    gap: 3rem;
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.footer-logo {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 1.15rem; font-weight: 900;
    text-decoration: none; color: var(--text); margin-bottom: 0.9rem;
}
.footer-logo .nav-logo-icon { width: 28px; height: 28px; font-size: 0.9rem; border-radius: 6px; }
.footer-brand p { font-size: 0.875rem; color: var(--text2); line-height: 1.65; margin-bottom: 1rem; }
.footer-col h3 {
    font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text3); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col li { font-size: 0.86rem; color: var(--text2); line-height: 1.5; }
.footer-col a { color: var(--text2); text-decoration: none; font-weight: 600; transition: color var(--transition-fast); }
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--surface); border: 1.5px solid var(--border);
    color: var(--text2); transition: all var(--transition-fast);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }

.footer-bottom {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 1.15rem;
    text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text3); font-weight: 600; }

/* ============================================================
   TOAST & BACK TO TOP
   ============================================================ */
.toast {
    position: fixed; bottom: 2rem; left: 50%;
    transform: translateX(-50%) translateY(0.75rem);
    background: var(--surface); border: 1.5px solid var(--border);
    color: var(--text); padding: 0.85em 1.5em;
    border-radius: var(--r-pill); font-weight: 700; font-size: 0.875rem;
    box-shadow: var(--shadow-xl); z-index: 9999;
    opacity: 0; transition: all var(--transition);
    pointer-events: none; white-space: nowrap;
    backdrop-filter: blur(16px);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.back-to-top {
    position: fixed; bottom: 1.5rem; right: 1.5rem;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px var(--accent-dim);
    transition: all var(--transition); z-index: 990; cursor: pointer; border: none;
}
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(151,71,255,0.45); }
.back-to-top[hidden] { display: none; }

/* ============================================================
   SPARKLE
   ============================================================ */
#sparkle-container { position: fixed; inset: 0; pointer-events: none; z-index: 9998; }
.sparkle {
    position: absolute; pointer-events: none;
    animation: sparkle-fade 0.75s ease-out forwards;
    transform-origin: center; user-select: none; line-height: 1;
}
@keyframes sparkle-fade {
    0%   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%,-120%) scale(0.2); }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.07s; }
.fade-up:nth-child(3) { transition-delay: 0.14s; }
.fade-up:nth-child(4) { transition-delay: 0.21s; }
.fade-up:nth-child(5) { transition-delay: 0.28s; }
.fade-up:nth-child(6) { transition-delay: 0.35s; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-inner  { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-sub    { margin: 0 auto 2.25rem; }
    .hero-actions { justify-content: center; }
    .hero-trust  { justify-content: center; }
    .hero-image-wrap { order: -1; }
    .hero-product-img { max-width: 440px; }

    .inside-grid { grid-template-columns: 1fr; gap: 3rem; }
    .safe-inner  { grid-template-columns: 1fr; gap: 3rem; }
    .safe-content p { max-width: 60ch; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    body { padding-top: var(--nav-h); }
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero { min-height: auto; padding: 3.5rem 0 4rem; }
    .hero-title { font-size: clamp(2.2rem, 7vw, 3rem); }

    .designs-header { flex-direction: column; align-items: flex-start; }
    .designs-scroll  { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    .inside-grid { grid-template-columns: 1fr; }
    .pride-flags-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
    .shop-toolbar { flex-direction: column; align-items: stretch; }
    .search-wrap  { max-width: 100%; }
    .contact-form-wrap { padding: 1.5rem; }

    .toast { white-space: normal; text-align: center; max-width: 90vw; }
    .back-to-top { bottom: 1rem; right: 1rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .section    { padding: 3.5rem 0; }
    .hero       { padding: 3rem 0 3.5rem; }
    .hero-actions .btn { width: 100%; }
    .designs-scroll { grid-template-columns: 1fr; }
    .category-filters .filter-btn { font-size: 0.78rem; padding: 0.45em 0.9em; }

    .safe-section { padding: 4rem 0; }
    .cta-band { padding: 3.5rem 0; }
    .cta-band::before { display: none; }
}

/* ============================================================
   COMPATIBILITY / SUBPAGE HELPERS
   ============================================================ */

/* Old class aliases still used in about/customizer/contact */
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.section-sub {
    font-size: 1rem;
    color: var(--text2);
    max-width: 52ch;
    line-height: 1.65;
    margin-bottom: 2.5rem;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header .section-sub { margin: 0 auto 2.5rem; }

/* about-hero = 2-col grid with image */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
}
@media (max-width: 768px) { .about-hero { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Customizer page hero (sub-page version) */
.customizer-page-hero {
    background: var(--bg2);
    padding: 4rem 0 3.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.customizer-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--rainbow-soft);
    opacity: 0.25;
    pointer-events: none;
}
[data-theme="dark"] .customizer-page-hero::before { opacity: 0.07; }

/* Customizer features 3-up grid */
.customizer-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}
@media (max-width: 768px) { .customizer-features { grid-template-columns: 1fr; } }

.cf-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 1.6rem 1.4rem;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: all var(--transition);
}
.cf-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cf-icon  { font-size: 1.9rem; display: block; margin-bottom: 0.65rem; }
.cf-title { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 0.35rem; }
.cf-desc  { font-size: 0.84rem; color: var(--text2); line-height: 1.55; }

/* Notify form row */
.notify-form {
    display: flex;
    gap: 0.75rem;
    max-width: 440px;
    flex-wrap: wrap;
    justify-content: center;
}
.notify-form input {
    flex: 1; min-width: 200px;
    padding: 0.75em 1.15em;
    border: 1.5px solid var(--input-border);
    border-radius: var(--r-pill);
    background: var(--input-bg);
    color: var(--text);
    font-family: inherit; font-size: 0.92rem; font-weight: 600;
    transition: border-color var(--transition-fast);
    outline: none;
}
.notify-form input:focus { border-color: var(--input-focus); }

/* Kill any stale wishlist elements */
.nav-wishlist,
.wishlist-badge,
[data-wish],
.shop-wish-btn,
.design-wish-btn,
.wish-heart { display: none !important; }

/* CSS variable aliases (old → new) */
:root {
    --radius:    var(--r);
    --radius-sm: var(--r-sm);
    --radius-lg: var(--r-lg);
    --radius-xl: var(--r-xl);
    --radius-pill: var(--r-pill);
    --card-bg:   var(--surface);
    --card-border: var(--border);
}
