/* ============================================================
   Station 27 Designs — Aurora Theme Stylesheet
   station27designs.com
   Ocean-inspired editorial dark theme with glassmorphism
   ============================================================ */

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Sora:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --bg: #0c1018;
    --bg-alt: #0e1320;
    --text: #e2e8f0;
    --heading: #f8fafc;
    --muted: #b0c4d8;
    --accent: #00b4ff;
    --cta: #d68d0f;
    --card-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.10);
    --glass-border-hover: rgba(255, 255, 255, 0.18);

    --radius: 12px;
    --radius-lg: 20px;
    --shadow-glow: 0 0 24px rgba(0, 180, 255, 0.18);
    --shadow-cta: 0 4px 24px rgba(214, 141, 15, 0.35);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --nav-height: 72px;
    --container: 1200px;
    --container-wide: 1400px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Instrument Serif', serif;
    color: var(--heading);
    line-height: 1.25;
    font-weight: 400;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p {
    color: var(--text);
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #33c3ff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ============================================================
   AURORA GLOW — Fixed radial backdrop
   ============================================================ */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(0, 180, 255, 0.10) 0%,
        rgba(0, 180, 255, 0.04) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(12, 16, 24, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--heading);
    font-family: 'Instrument Serif', serif;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.nav-logo:hover {
    color: var(--accent);
}

.nav-logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: none;
}

.nav-links a {
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--heading);
    border-bottom-color: var(--accent);
}

.nav-cta {
    background: var(--cta);
    color: #fff !important;
    border-bottom: none !important;
    padding: 10px 22px !important;
    border-radius: 8px;
    font-weight: 600 !important;
    box-shadow: var(--shadow-cta);
    transition: var(--transition);
}

.nav-cta:hover {
    background: #e8a020 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(214, 141, 15, 0.45);
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    color: var(--heading);
}

.nav-hamburger svg {
    stroke: var(--heading);
    width: 24px;
    height: 24px;
}

.nav-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hamburger open state */
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================================================
   SIDEBAR OVERLAY MENU
   ============================================================ */
.sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -300px;
    bottom: 0;
    width: 280px;
    background: #0a0e16;
    border-left: 1px solid rgba(0, 180, 255, 0.15);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.sidebar-menu.open {
    right: 0;
}

.sidebar-close {
    display: flex;
    justify-content: flex-end;
    padding: 16px 20px 0;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 24px;
    cursor: pointer;
}

.sidebar-close:hover {
    color: var(--heading);
}

.sidebar-wave-header {
    text-align: center;
    padding: 8px 24px 16px;
}

.sidebar-wave-header img {
    width: 100%;
    max-width: 220px;
    height: auto;
    opacity: 0.9;
}

.sidebar-section {
    padding: 0 24px;
}

.sidebar-section-label {
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sidebar-link {
    display: block;
    padding: 10px 14px;
    border-left: 2px solid transparent;
    color: var(--muted);
    font-size: 14px;
    font-family: 'Sora', sans-serif;
    text-decoration: none;
    margin-bottom: 4px;
    border-radius: 0 6px 6px 0;
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    color: var(--heading);
    background: rgba(255, 255, 255, 0.04);
}

.sidebar-link.active {
    color: var(--heading);
    background: rgba(0, 180, 255, 0.12);
    border-left-color: var(--accent);
}

.sidebar-link.etsy-link {
    color: var(--cta);
    font-weight: 500;
    border-left-color: transparent;
}

.sidebar-link.etsy-link:hover {
    color: #e8a020;
}

.sidebar-separator {
    text-align: center;
    padding: 16px 24px;
}

.sidebar-separator img {
    width: 100%;
    max-width: 180px;
    height: auto;
    opacity: 0.5;
}

.sidebar-socials {
    margin-top: auto;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    gap: 16px;
    justify-content: center;
}

.sidebar-socials a {
    color: var(--muted);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-socials a:hover {
    color: var(--accent);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-image, none);
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.85) saturate(1.15);
    z-index: 0;
    transition: var(--transition);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(12, 16, 24, 0.0) 0%,
        rgba(12, 16, 24, 0.15) 40%,
        rgba(12, 16, 24, 0.70) 75%,
        rgba(12, 16, 24, 1.0) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 0 24px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(0, 180, 255, 0.30);
    border-radius: 100px;
    background: rgba(0, 180, 255, 0.06);
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    color: var(--heading);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-cta {
    background: var(--cta);
    color: #fff;
    box-shadow: var(--shadow-cta);
}

.btn-cta:hover {
    background: #e8a020;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(214, 141, 15, 0.50);
}

.btn-ghost {
    background: var(--card-bg);
    color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.10);
    color: var(--heading);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

.btn-accent {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-accent:hover {
    background: rgba(0, 180, 255, 0.10);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Etsy buy button */
.btn-buy-etsy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--cta);
    color: #fff;
    border-radius: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-cta);
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.btn-buy-etsy:hover {
    background: #e8a020;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(214, 141, 15, 0.55);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 96px 0;
}

.section-alt {
    background-color: var(--bg-alt);
}

.section-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--heading);
    text-align: center;
    margin-bottom: 32px;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 56px;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 180, 255, 0.25);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.40),
        0 0 0 1px rgba(0, 180, 255, 0.10),
        var(--shadow-glow);
}

.product-card-image,
.card-image-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.product-card-image img,
.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img,
.product-card:hover .card-image-wrap img {
    transform: scale(1.06);
}

.product-card-body,
.card-body {
    padding: 22px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-card-title,
.card-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.15rem;
    color: var(--heading);
    line-height: 1.3;
    margin: 0;
}

.product-card-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.collection-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(0, 180, 255, 0.10);
    border: 1px solid rgba(0, 180, 255, 0.20);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 4px;
}

/* ============================================================
   BRAND STORY
   ============================================================ */
.brand-story {
    padding: 80px 0;
    background: var(--bg-alt);
    overflow: hidden;
    position: relative;
}

.brand-story::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.brand-story::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.brand-story blockquote {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    color: var(--heading);
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
    line-height: 1.45;
    padding: 0 24px;
}

.brand-story blockquote cite {
    display: block;
    font-style: normal;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 28px;
}

/* ============================================================
   COLLECTIONS GRID
   ============================================================ */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.collection-tile {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    text-decoration: none;
}

.collection-tile-bg {
    position: absolute;
    inset: 0;
    background-image: var(--tile-image, none);
    background-size: cover;
    background-position: center;
    filter: brightness(0.55) saturate(1.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.collection-tile:hover .collection-tile-bg {
    transform: scale(1.06);
    filter: brightness(0.65) saturate(1.2);
}

.collection-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6, 8, 13, 0.75) 0%,
        transparent 55%
    );
    z-index: 1;
}

.collection-tile-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 28px 24px 24px;
    font-family: 'Instrument Serif', serif;
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.collection-tile-name {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.collection-tile-count {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.70);
    letter-spacing: 0.06em;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.social-proof {
    padding: 64px 0;
    text-align: center;
}

.social-proof-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 1.4rem;
    color: var(--cta);
}

.social-proof-text {
    font-size: 1rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto;
}

.social-proof-count {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--glass-border);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
    align-items: start;
}

.footer-brand .footer-logo {
    font-family: 'Instrument Serif', serif;
    font-size: 1.8rem;
    color: var(--heading);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 340px;
}

.footer-heading {
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.875rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--heading);
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--muted);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(0, 180, 255, 0.10);
    border-color: rgba(0, 180, 255, 0.30);
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: var(--muted);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.72rem;
    color: var(--muted);
}

.footer-bottom-links a:hover {
    color: var(--heading);
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-page {
    padding: 64px 0 96px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-gallery-main {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-gallery-main:hover img {
    transform: scale(1.03);
}

/* Gallery arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    backdrop-filter: blur(8px);
}

.gallery-arrow:hover {
    background: rgba(0, 180, 255, 0.6);
}

.gallery-arrow--prev { left: 12px; }
.gallery-arrow--next { right: 12px; }

/* Thumbnails — 3 column grid */
.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-top: 12px;
}

.thumb-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid var(--glass-border);
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s;
}

.thumb-img:hover {
    opacity: 0.8;
}

.thumb-img.active {
    opacity: 1;
    border-color: var(--accent);
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-thumbnails::-webkit-scrollbar {
    display: none;
}

.product-thumbnail {
    flex-shrink: 0;
    width: 64px;
    height: 85px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.65;
    background: var(--card-bg);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--accent);
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(0, 180, 255, 0.30);
}

/* Product info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.product-info .collection-badge {
    align-self: flex-start;
}

.product-info h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.2;
    margin: 0;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading);
}

.product-price-note {
    font-size: 0.85rem;
    color: var(--muted);
}

.product-divider {
    border: none;
    border-top: 1px solid var(--glass-border);
}

/* Product sections (story, at a glance, specs) */
.product-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-section-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.product-section p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.product-glance-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-glance-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text);
}

.product-glance-list li::before {
    content: '•';
    color: var(--accent);
    font-size: 1.1rem;
    line-height: 1.4;
    flex-shrink: 0;
}

.product-specs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-spec-row {
    display: flex;
    gap: 12px;
    font-size: 0.88rem;
}

.product-spec-label {
    font-weight: 600;
    color: var(--muted);
    min-width: 120px;
    flex-shrink: 0;
}

.product-spec-value {
    color: var(--text);
}

/* Specs two-column tag grid */
.product-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.spec-tag {
    font-size: 0.85rem;
    color: var(--muted);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    text-transform: capitalize;
}

/* Colors text */
.product-colors-text {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.8;
}

.product-buy-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.product-etsy-note {
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
}

/* ============================================================
   SHOP PAGE — FILTERS
   ============================================================ */
.shop-header {
    padding: 56px 0 40px;
}

.shop-filters {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 6px;
}

.filter-select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Sora', sans-serif;
    font-size: 0.88rem;
    padding: 10px 36px 10px 16px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b0c4d8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--glass-border-hover);
    color: var(--heading);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 180, 255, 0.12);
}

.filter-select option {
    background: #0e1420;
    color: var(--text);
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-pill:hover,
.filter-pill.active {
    background: rgba(0, 180, 255, 0.10);
    border-color: rgba(0, 180, 255, 0.30);
    color: var(--accent);
}

/* ============================================================
   SKELETON LOADERS
   ============================================================ */
@keyframes shimmer {
    0% { background-position: -600px 0; }
    100% { background-position: 600px 0; }
}

.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.04) 25%,
        rgba(255, 255, 255, 0.08) 37%,
        rgba(255, 255, 255, 0.04) 63%
    );
    background-size: 600px 100%;
    animation: shimmer 1.6s infinite linear;
    border-radius: 6px;
}

.skeleton-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.skeleton-image {
    aspect-ratio: 3 / 4;
    width: 100%;
}

.skeleton-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skeleton-title {
    height: 20px;
    width: 75%;
    border-radius: 4px;
}

.skeleton-badge {
    height: 16px;
    width: 45%;
    border-radius: 100px;
}

.skeleton-text {
    height: 14px;
    width: 90%;
    border-radius: 4px;
}

.skeleton-text-short {
    height: 14px;
    width: 55%;
    border-radius: 4px;
}

/* ============================================================
   EMPTY + 404 STATES
   ============================================================ */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    gap: 20px;
    min-height: 320px;
}

.empty-state-icon {
    font-size: 3.5rem;
    opacity: 0.45;
    line-height: 1;
}

.empty-state-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.6rem;
    color: var(--heading);
}

.empty-state-text {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 380px;
    line-height: 1.7;
    margin: 0;
}

/* 404 page */
.page-404 {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

.page-404-inner {
    text-align: center;
    max-width: 520px;
}

.page-404-number {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(6rem, 18vw, 12rem);
    color: var(--heading);
    line-height: 1;
    letter-spacing: -0.04em;
    opacity: 0.15;
    margin-bottom: -20px;
}

.page-404-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 16px;
}

.page-404-text {
    color: var(--muted);
    margin-bottom: 36px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
    padding: 32px 0 48px;
    text-align: center;
}

.about-hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.about-hero h1 {
    margin-bottom: 24px;
}

.about-hero-lead {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px 96px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.about-value-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.about-value-card:hover {
    border-color: rgba(0, 180, 255, 0.20);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.about-value-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    line-height: 1;
}

.about-value-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.1rem;
    color: var(--heading);
    margin-bottom: 8px;
}

.about-value-text {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
    padding: 80px 0 96px;
}

.contact-content {
    max-width: 640px;
    margin: 0 auto;
    padding: 32px 24px 0;
    text-align: center;
}

.contact-content h1 {
    margin-bottom: 16px;
}

.contact-content > p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 48px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    text-align: left;
}

.contact-link-card:hover {
    border-color: rgba(0, 180, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--heading);
}

.contact-link-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 180, 255, 0.10);
    border: 1px solid rgba(0, 180, 255, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-link-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-link-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--heading);
    line-height: 1.2;
}

.contact-link-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
}

/* ============================================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .product-layout {
        gap: 48px;
    }
}

/* ============================================================
   RESPONSIVE — Tablet/Mobile (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .section {
        padding: 72px 0;
    }

    /* Nav — show hamburger, hide links */
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(6, 8, 13, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        z-index: 999;
        border-top: 1px solid var(--glass-border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        letter-spacing: 0.06em;
    }

    .nav-cta {
        padding: 14px 36px !important;
    }

    /* Product layout — stack */
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery {
        position: static;
    }

    /* Footer — stack */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* Collections grid — 2 columns */
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero */
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* About values */
    .about-values {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RESPONSIVE — Mobile (max 600px)
   ============================================================ */
@media (max-width: 600px) {
    .container,
    .container-wide {
        padding: 0 16px;
    }

    .section {
        padding: 56px 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .shop-filters {
        gap: 10px;
    }

    .filter-select {
        font-size: 0.82rem;
        padding: 9px 32px 9px 14px;
    }

    .product-thumbnails {
        gap: 8px;
    }

    .product-thumbnail {
        width: 56px;
        height: 75px;
    }

    .about-content {
        padding: 0 16px 72px;
    }

    .contact-link-card {
        padding: 20px 22px;
    }

    .footer-bottom-links {
        gap: 16px;
    }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.text-cta { color: var(--cta); }
.text-heading { color: var(--heading); }

.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }

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

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
}

.divider {
    border: none;
    border-top: 1px solid var(--glass-border);
    margin: 0;
}
