/* ============================================
   ink-haz — RETRO Y2K ✦✧★
   Chunky borders, pixel fonts, bright pastels
   Early 2000s web aesthetic ~ like it's 2002
   ============================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Nunito:wght@400;600;700;800;900&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
    /* Light pastel base */
    --bg: #fff0f5;
    --bg-alt: #ffe8f0;
    --bg-card: #ffffff;
    --surface: #ffffff;
    --surface-bright: #fff8fb;

    --text: #440030;
    --text-light: #6b3a5c;
    --text-muted: #9a6888;

    /* Y2K Palette */
    --pink: #ff69b4;
    --pink-light: #ff8cc8;
    --pink-dark: #e0409f;
    --pink-glow: rgba(255, 105, 180, 0.5);
    --hot-pink: #ff1493;

    --blue: #00bfff;
    --blue-glow: rgba(0, 191, 255, 0.4);

    --purple: #9b59b6;
    --purple-glow: rgba(155, 89, 182, 0.4);

    --lilac: #dda0dd;
    --silver: #c0c0c0;
    --chrome-1: #888;
    --chrome-2: #aaa;
    --chrome-3: #666;

    --lime: #39ff14;
    --aqua: #00ffff;

    /* Gradients */
    --grad-chrome: linear-gradient(180deg, #666 0%, #333 100%);
    --grad-pink: linear-gradient(180deg, #ff8cc8, #ff1493);
    --grad-cyber: linear-gradient(135deg, #ff69b4, #9b59b6, #00bfff);
    --grad-glow: linear-gradient(135deg, rgba(255,105,180,0.1), rgba(155,89,182,0.06));
    --grad-glass: none;
    --grad-dark: linear-gradient(180deg, #fff0f5 0%, #f0e6ff 50%, #e8f4ff 100%);
    --grad-aurora: linear-gradient(135deg, rgba(255,105,180,0.08), rgba(155,89,182,0.05));

    /* Borders */
    --border: #ffb3d9;
    --border-glow: #ff69b4;
    --border-light: #ffd6eb;

    /* Status */
    --success: #00c853;
    --danger: #ff1744;
    --warning: #ffd600;

    /* Typography */
    --font-heading: 'Press Start 2P', 'Courier New', monospace;
    --font-body: 'Nunito', 'Trebuchet MS', 'Verdana', sans-serif;

    /* Spacing */
    --gap: 1.5rem;
    --section-gap: 4rem;
    --radius: 0px;
    --radius-sm: 0px;
    --radius-lg: 0px;

    /* Effects — hard retro shadows, no blur */
    --shadow: 4px 4px 0px #ffb3d9;
    --shadow-hover: 6px 6px 0px #ff69b4;
    --shadow-chrome: 3px 3px 0px #c0c0c0;
    --shadow-glow: 4px 4px 0px var(--pink);
    --shadow-neon: 4px 4px 0px var(--hot-pink);
    --transition: all 0.15s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,105,180,0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(155,89,182,0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(0,191,255,0.05) 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Tiled dot pattern overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(255,105,180,0.07) 1px, transparent 1px),
        radial-gradient(circle, rgba(155,89,182,0.05) 1px, transparent 1px);
    background-size: 60px 60px, 90px 90px;
    background-position: 0 0, 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* Subtle grid overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,105,180,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,105,180,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

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

a:hover {
    color: var(--purple);
}

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

ul { list-style: none; }

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ---- Y2K Animations ---- */
@keyframes y2k-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 3px 3px 0px var(--hot-pink); }
    50% { box-shadow: 3px 3px 0px var(--hot-pink), 0 0 8px var(--pink-glow); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float-up-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes sparkle-flash {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.3); }
}

@keyframes blink-y2k {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0.3; }
}

@keyframes neon-border {
    0%, 100% { border-color: var(--pink); }
    50% { border-color: var(--purple); }
}

@keyframes marquee-slide {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes rainbow-border {
    0% { border-color: #ff69b4; }
    25% { border-color: #9b59b6; }
    50% { border-color: #00bfff; }
    75% { border-color: #39ff14; }
    100% { border-color: #ff69b4; }
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 3px solid var(--hot-pink);
    box-shadow: 0 4px 0px var(--pink-light);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 0px var(--hot-pink), 0 8px 0px rgba(255,105,180,0.2);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--hot-pink);
    text-shadow: 2px 2px 0px var(--pink-light);
}

.logo-accent {
    color: var(--purple);
    text-shadow: 2px 2px 0px var(--lilac);
}

.logo-dot {
    font-size: 1.2rem;
    color: var(--pink);
    animation: sparkle-flash 1.5s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.5rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '★';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    font-size: 0.6rem;
    color: var(--hot-pink);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--hot-pink);
    text-shadow: 1px 1px 0px var(--pink-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: translateX(-50%) scale(1);
}

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

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--hot-pink);
    border: 2px solid var(--pink);
    transition: var(--transition);
    background: #fff;
    box-shadow: 3px 3px 0px var(--pink-light);
}

.cart-link:hover {
    color: #fff;
    background: var(--hot-pink);
    box-shadow: 2px 2px 0px var(--pink-dark);
    transform: translate(1px, 1px);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--hot-pink);
    color: white;
    font-size: 0.45rem;
    font-weight: 900;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 2px 2px 0px rgba(0,0,0,0.15);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--hot-pink);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    padding: 1rem 2rem 2rem;
    background: #ffffff;
    border-top: 2px dashed var(--pink);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 0;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    border-bottom: 2px dotted var(--border-light);
}

.mobile-menu a::before {
    content: '✦';
    font-size: 0.5rem;
    color: var(--pink);
    animation: blink-y2k 1s infinite;
}

.mobile-menu a:hover {
    color: var(--hot-pink);
}

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,192,203,0.2) 0%, rgba(221,160,221,0.15) 50%, rgba(135,206,235,0.1) 100%);
}

.hero::before {
    content: '✦ ✧ ★ ✧ ✦ ★ ✧ ✦ ★ ✧ ✦';
    position: absolute;
    top: 12%;
    right: 0;
    font-size: 1.5rem;
    color: var(--pink);
    opacity: 0.15;
    letter-spacing: 2rem;
    animation: marquee-slide 20s linear infinite;
    white-space: nowrap;
    pointer-events: none;
}

.hero::after {
    content: '~ * ~ * ~ * ~ * ~';
    position: absolute;
    bottom: 8%;
    left: 0;
    font-size: 1.2rem;
    color: var(--purple);
    opacity: 0.1;
    letter-spacing: 1.5rem;
    animation: marquee-slide 25s linear infinite reverse;
    white-space: nowrap;
    pointer-events: none;
}

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -15px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 2px solid var(--pink);
    font-size: 0.45rem;
    font-weight: 400;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hot-pink);
    margin-bottom: 1.5rem;
    box-shadow: 3px 3px 0px var(--pink-light);
    animation: rainbow-border 4s linear infinite;
}

.hero-badge .star {
    color: var(--hot-pink);
    animation: blink-y2k 0.8s infinite;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--text);
    text-shadow: 3px 3px 0px var(--pink-light);
}

.hero h1 .highlight {
    position: relative;
    display: inline;
    color: var(--hot-pink);
    text-shadow: 3px 3px 0px var(--lilac);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    animation: none;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--hot-pink);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 4px solid var(--hot-pink);
    box-shadow: 8px 8px 0px var(--pink-light), 12px 12px 0px var(--lilac);
    background: #fff;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,105,180,0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-image-wrapper::after {
    content: '★';
    position: absolute;
    top: -16px;
    right: -16px;
    font-size: 2rem;
    color: var(--hot-pink);
    text-shadow: 2px 2px 0px var(--pink-light);
    animation: sparkle-flash 2s ease-in-out infinite;
    z-index: 2;
}

.hero-float-card {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: #fff;
    padding: 1rem 1.2rem;
    border: 3px solid var(--pink);
    box-shadow: 4px 4px 0px var(--hot-pink);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 3;
}

.hero-float-card .number {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--hot-pink);
    text-shadow: 2px 2px 0px var(--pink-light);
}

.hero-float-card .label {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.3;
}

/* ---- Buttons Y2K RETRO ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid;
    text-decoration: none;
    position: relative;
}

.btn::before {
    display: none;
}

.btn:hover::before {
    display: none;
}

.btn-primary {
    background: var(--hot-pink);
    color: white;
    border-color: var(--pink-dark);
    border-style: outset;
    box-shadow: 4px 4px 0px var(--pink-dark);
    text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--pink-dark);
}

.btn-primary:active {
    transform: translate(4px, 4px);
    box-shadow: none;
    border-style: inset;
}

.btn-outline {
    background: #fff;
    color: var(--hot-pink);
    border-color: var(--pink);
    border-style: solid;
    box-shadow: 3px 3px 0px var(--pink-light);
}

.btn-outline:hover {
    background: var(--pink-light);
    color: #fff;
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px var(--pink);
}

.btn-chrome {
    background: linear-gradient(180deg, #e8e8e8, #c0c0c0);
    color: #333;
    border-color: #999;
    border-style: outset;
    box-shadow: 3px 3px 0px #999;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.5);
}

.btn-chrome:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px #999;
}

.btn-sm {
    padding: 0.45rem 1rem;
    font-size: 0.42rem;
}

.btn-lg {
    padding: 0.9rem 2.2rem;
    font-size: 0.55rem;
}

.btn-icon {
    width: 42px;
    height: 42px;
    padding: 0;
}

.btn-danger {
    background: var(--danger);
    color: white;
    border-color: #cc0033;
    border-style: outset;
    box-shadow: 3px 3px 0px #cc0033;
}

.btn-danger:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px #cc0033;
}

.btn-success {
    background: var(--success);
    color: #fff;
    border-color: #009940;
    border-style: outset;
    box-shadow: 3px 3px 0px #009940;
}

/* ---- Section Headers ---- */
.section {
    padding: var(--section-gap) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.42rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hot-pink);
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 2;
    color: var(--text);
    text-shadow: 2px 2px 0px var(--pink-light);
}

.section-subtitle {
    margin-top: 0.8rem;
    font-size: 0.92rem;
    color: var(--text-light);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

/* ---- Product Cards ---- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    overflow: hidden;
    border: 3px solid var(--border);
    transition: var(--transition);
    position: relative;
    box-shadow: 4px 4px 0px var(--pink-light);
}

.product-card:hover {
    transform: translate(-2px, -2px);
    border-color: var(--hot-pink);
    box-shadow: 6px 6px 0px var(--hot-pink);
}

.product-card::before {
    display: none;
}

.product-card-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-alt);
    border-bottom: 3px solid var(--border);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.3rem 0.6rem;
    background: var(--hot-pink);
    color: white;
    font-size: 0.4rem;
    font-weight: 400;
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid var(--pink-dark);
    box-shadow: 2px 2px 0px var(--pink-dark);
    z-index: 3;
}

.product-quick-add {
    position: absolute;
    bottom: 0.8rem;
    right: 0.8rem;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 3;
}

.product-card:hover .product-quick-add {
    opacity: 1;
    transform: translateY(0);
}

.product-card-info {
    padding: 1rem 1.2rem 1.2rem;
}

.product-card-category {
    font-size: 0.4rem;
    font-weight: 400;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hot-pink);
    margin-bottom: 0.4rem;
}

.product-card-name {
    font-family: var(--font-heading);
    font-size: 0.52rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    line-height: 1.8;
    color: var(--text);
}

.product-card-name a {
    color: inherit;
}

.product-card-name a:hover {
    color: var(--hot-pink);
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-current {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.65rem;
    color: var(--text);
    text-shadow: 1px 1px 0px var(--pink-light);
}

.price-original {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-sale {
    color: var(--hot-pink) !important;
    -webkit-text-fill-color: unset !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

/* ---- Categories ---- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.category-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid var(--border);
    box-shadow: 4px 4px 0px var(--pink-light);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(255,105,180,0.12) 100%);
    transition: var(--transition);
}

.category-card:hover {
    transform: translate(-2px, -2px);
    border-color: var(--hot-pink);
    box-shadow: 6px 6px 0px var(--hot-pink);
}

.category-card-content {
    padding: 1.2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    line-height: 1.8;
}

.category-card span {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 700;
}

.category-card .y2k-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--pink);
    opacity: 0.3;
    transition: var(--transition);
}

.category-card:hover .y2k-icon {
    opacity: 0.8;
    transform: rotate(20deg) scale(1.2);
}

/* ---- Features Bar ---- */
.features-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2.5rem 0;
    border-top: 3px dashed var(--pink);
    border-bottom: 3px dashed var(--pink);
    position: relative;
}

.features-bar::before {
    display: none;
}

.feature-item {
    text-align: center;
    padding: 1.2rem;
    background: #fff;
    border: 2px solid var(--border);
    box-shadow: 3px 3px 0px var(--pink-light);
}

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    animation: float-up-down 2.5s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon { animation-delay: 0.8s; }
.feature-item:nth-child(3) .feature-icon { animation-delay: 1.6s; }

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 0.45rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
    color: var(--text);
    line-height: 2;
}

.feature-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ---- CTA Banner ---- */
.cta-banner {
    background: #fff;
    border: 4px solid var(--hot-pink);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 6px 6px 0px var(--pink-light), 10px 10px 0px var(--lilac);
    animation: rainbow-border 6s linear infinite;
}

.cta-banner::before {
    content: '✦ ✧ ★ ✧ ✦';
    position: absolute;
    top: 0.8rem;
    right: 1.5rem;
    font-size: 1rem;
    color: var(--hot-pink);
    opacity: 0.35;
    letter-spacing: 0.8rem;
    animation: blink-y2k 1.5s infinite;
}

.cta-banner::after {
    content: '~ * ~ * ~';
    position: absolute;
    bottom: 0.6rem;
    left: 1.5rem;
    font-size: 0.9rem;
    color: var(--purple);
    opacity: 0.25;
    letter-spacing: 0.5rem;
    animation: blink-y2k 2s infinite;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(0.7rem, 2vw, 1rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    color: var(--text);
    text-shadow: 2px 2px 0px var(--pink-light);
    position: relative;
    z-index: 1;
    line-height: 2.2;
}

.cta-banner p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.cta-banner .btn-primary {
    position: relative;
    z-index: 1;
}

/* ---- Shop Page ---- */
.shop-hero {
    padding: 7rem 0 2.5rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,192,203,0.15) 0%, transparent 100%);
    position: relative;
}

.shop-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--pink) 0px, var(--pink) 10px, transparent 10px, transparent 20px);
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.filter-btn {
    padding: 0.45rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.4rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    border: 2px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
    text-decoration: none;
    box-shadow: 2px 2px 0px var(--border);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--hot-pink);
    color: white;
    border-color: var(--pink-dark);
    box-shadow: 2px 2px 0px var(--pink-dark);
    transform: none;
}

.shop-content {
    padding: 2.5rem 0;
}

.shop-results {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.shop-results span {
    font-size: 0.4rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border);
    font-size: 0.82rem;
    color: var(--text);
    background: #fff;
    cursor: pointer;
    box-shadow: 2px 2px 0px var(--border);
}

/* ---- Product Detail ---- */
.product-detail {
    padding: 5rem 0 3rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 90px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #fff;
    border: 4px solid var(--hot-pink);
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 6px 6px 0px var(--pink-light);
}

.product-main-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,105,180,0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.product-thumbnails {
    display: flex;
    gap: 0.6rem;
}

.product-thumbnail {
    width: 70px;
    height: 70px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    border: 3px solid var(--border);
    transition: var(--transition);
    box-shadow: 2px 2px 0px var(--border);
}

.product-thumbnail.active,
.product-thumbnail:hover {
    border-color: var(--hot-pink);
    box-shadow: 2px 2px 0px var(--hot-pink);
}

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

.product-info {
    padding-top: 0.5rem;
}

.product-info .breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.4rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-info .breadcrumb a {
    color: var(--text-muted);
}

.product-info .breadcrumb a:hover {
    color: var(--hot-pink);
}

.product-info .breadcrumb span {
    opacity: 0.4;
}

.product-info h1 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--text);
    text-shadow: 2px 2px 0px var(--pink-light);
    line-height: 2;
}

.product-info .product-category {
    font-size: 0.4rem;
    font-family: var(--font-heading);
    color: var(--hot-pink);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
}

.product-info .product-price-block {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px dotted var(--border);
}

.product-info .product-price-block .price-current {
    font-size: 1.1rem;
}

.product-info .product-description {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.product-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: var(--bg);
    border: 2px solid var(--border);
    box-shadow: 3px 3px 0px var(--border);
}

.product-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.product-meta-item .label {
    font-size: 0.38rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-heading);
}

.product-meta-item .value {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--text);
}

.product-actions {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.product-actions .btn {
    flex: 1;
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.45rem;
    color: var(--success);
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
}

.product-stock.low { color: var(--warning); }
.product-stock.out { color: var(--danger); }

.product-stock::before {
    content: '●';
    font-size: 0.6rem;
    animation: blink-y2k 1s infinite;
}

/* ---- Related Products ---- */
.related-products {
    padding: 3rem 0;
    border-top: 3px dashed var(--pink);
    margin-top: 2rem;
}

/* ---- Cart Page ---- */
.cart-page {
    padding: 5rem 0 3rem;
}

.cart-page h1 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    color: var(--text);
    text-shadow: 2px 2px 0px var(--pink-light);
    line-height: 2;
}

.cart-empty {
    text-align: center;
    padding: 3rem 0;
}

.cart-empty p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cart-empty .star-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.2rem;
    color: var(--hot-pink);
    text-shadow: 3px 3px 0px var(--pink-light);
    animation: sparkle-flash 2s ease-in-out infinite;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cart-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem;
    background: #fff;
    border: 2px solid var(--border);
    transition: var(--transition);
    box-shadow: 3px 3px 0px var(--pink-light);
}

.cart-item:hover {
    border-color: var(--hot-pink);
    box-shadow: 4px 4px 0px var(--hot-pink);
}

.cart-item-image {
    width: 110px;
    height: 110px;
    overflow: hidden;
    background: var(--bg-alt);
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.52rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.3rem;
    line-height: 1.8;
}

.cart-item-name a {
    color: inherit;
}

.cart-item-name a:hover {
    color: var(--hot-pink);
}

.cart-item-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    overflow: hidden;
    background: #fff;
    box-shadow: 2px 2px 0px var(--border);
}

.quantity-control button {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text);
    transition: var(--transition);
    font-weight: 900;
}

.quantity-control button:hover {
    background: var(--hot-pink);
    color: #fff;
}

.quantity-control .qty-value {
    width: 38px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.55rem;
    border-left: 2px solid var(--border);
    border-right: 2px solid var(--border);
    height: 34px;
    line-height: 34px;
}

.cart-item-price {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.65rem;
    color: var(--text);
    text-shadow: 1px 1px 0px var(--pink-light);
}

.cart-item-remove {
    border: none;
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.72rem;
    transition: var(--transition);
    padding: 0.3rem;
    font-weight: 800;
}

.cart-item-remove:hover {
    color: var(--danger);
}

/* Cart Summary */
.cart-summary {
    background: #fff;
    border: 3px solid var(--hot-pink);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
    box-shadow: 5px 5px 0px var(--pink-light), 8px 8px 0px var(--lilac);
    animation: none;
}

.cart-summary h3 {
    font-family: var(--font-heading);
    font-size: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px dotted var(--border);
    line-height: 2;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.82rem;
    font-weight: 700;
}

.cart-summary-row.total {
    padding-top: 0.8rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--hot-pink);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.6rem;
}

.cart-summary .btn {
    width: 100%;
    margin-top: 1.2rem;
}

.cart-summary .secure-note {
    text-align: center;
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
    font-weight: 700;
}

/* ---- Checkout ---- */
.checkout-page {
    padding: 5rem 0 3rem;
}

.checkout-page h1 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    color: var(--text);
    text-shadow: 2px 2px 0px var(--pink-light);
    line-height: 2;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.checkout-form {
    background: #fff;
    border: 3px solid var(--border);
    padding: 1.5rem;
    box-shadow: 4px 4px 0px var(--pink-light);
}

.form-section {
    margin-bottom: 1.5rem;
}

.form-section h3 {
    font-family: var(--font-heading);
    font-size: 0.42rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    color: var(--hot-pink);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 2;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.38rem;
    font-weight: 400;
    color: var(--text-light);
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.7rem 0.8rem;
    border: 2px solid var(--border);
    font-size: 0.88rem;
    color: var(--text);
    background: #fff;
    transition: var(--transition);
    box-shadow: inset 2px 2px 0px rgba(0,0,0,0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--hot-pink);
    box-shadow: inset 2px 2px 0px rgba(255,105,180,0.08);
    outline: 2px dashed var(--pink-light);
    outline-offset: 2px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ---- About Page ---- */
.about-hero {
    padding: 7rem 0 3rem;
    text-align: center;
    position: relative;
}

.about-content {
    padding: 3rem 0;
}

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

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.2rem;
    color: var(--text);
    text-shadow: 2px 2px 0px var(--pink-light);
    line-height: 2.2;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff;
    border: 4px solid var(--hot-pink);
    box-shadow: 8px 8px 0px var(--pink-light), 12px 12px 0px var(--lilac);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-values {
    padding: 3rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border: 3px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 4px 4px 0px var(--pink-light);
}

.value-card::before {
    display: none;
}

.value-card:hover {
    transform: translate(-2px, -2px);
    border-color: var(--hot-pink);
    box-shadow: 6px 6px 0px var(--hot-pink);
}

.value-card .icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    animation: float-up-down 2.5s ease-in-out infinite;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    line-height: 2;
    color: var(--text);
}

.value-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    font-weight: 600;
}

/* ---- Contact Page ---- */
.contact-page {
    padding: 5rem 0 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h1 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    color: var(--text);
    text-shadow: 2px 2px 0px var(--pink-light);
    line-height: 2;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-detail .icon {
    width: 46px;
    height: 46px;
    background: var(--bg);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 3px 3px 0px var(--pink-light);
    transition: var(--transition);
}

.contact-detail:hover .icon {
    background: var(--hot-pink);
    color: #fff;
    border-color: var(--pink-dark);
    box-shadow: 3px 3px 0px var(--pink-dark);
}

.contact-detail .text {
    font-size: 0.82rem;
}

.contact-detail .text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.38rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
    color: var(--text);
}

.contact-detail .text span {
    color: var(--text-light);
    font-weight: 600;
}

.contact-form {
    background: #fff;
    border: 3px solid var(--hot-pink);
    padding: 1.5rem;
    box-shadow: 5px 5px 0px var(--pink-light), 8px 8px 0px var(--lilac);
}

.contact-form h2 {
    font-family: var(--font-heading);
    font-size: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    line-height: 2;
    color: var(--text);
}

/* ---- Flash Messages ---- */
.flash {
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid;
    font-weight: 700;
    box-shadow: 3px 3px 0px;
}

.flash-success {
    background: #e8ffe8;
    color: #006600;
    border-color: #00cc00;
}

.flash-error {
    background: #ffe8e8;
    color: #cc0000;
    border-color: #ff4444;
}

/* ---- Order Confirmation ---- */
.order-confirmation {
    text-align: center;
    padding: 5rem 0;
    max-width: 550px;
    margin: 0 auto;
}

.order-confirmation .check-icon {
    width: 80px;
    height: 80px;
    background: var(--hot-pink);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--pink-dark);
    box-shadow: 5px 5px 0px var(--pink-dark);
}

.order-confirmation h1 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    color: var(--text);
    text-shadow: 2px 2px 0px var(--pink-light);
    line-height: 2;
}

.order-confirmation .order-number {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: var(--hot-pink);
    font-weight: 400;
    margin-bottom: 1rem;
}

.order-confirmation p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* ---- Footer ---- */
.footer {
    background: #fff;
    border-top: 4px solid var(--hot-pink);
    color: var(--text);
    padding: 3rem 0 0;
    margin-top: var(--section-gap);
    position: relative;
    box-shadow: 0 -4px 0px var(--pink-light);
}

.footer::before {
    content: '★ · ★ · ★ · ★ · ★ · ★ · ★ · ★ · ★ · ★ · ★ · ★ · ★ · ★ · ★ · ★ · ★';
    position: absolute;
    top: -22px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.7rem;
    color: var(--hot-pink);
    letter-spacing: 0.3rem;
    animation: blink-y2k 2s infinite;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
    color: var(--hot-pink);
    text-shadow: 2px 2px 0px var(--pink-light);
}

.footer-desc {
    font-size: 0.82rem;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 600;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 0.38rem;
    font-weight: 400;
    color: var(--hot-pink);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer ul li {
    margin-bottom: 0.4rem;
}

.footer ul a {
    font-size: 0.82rem;
    color: var(--text-light);
    transition: var(--transition);
    font-weight: 600;
}

.footer ul a:hover {
    color: var(--hot-pink);
    padding-left: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 0.8rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.65rem 0.8rem;
    border: 2px solid var(--border);
    border-right: none;
    background: #fff;
    color: var(--text);
    font-size: 0.82rem;
    box-shadow: inset 2px 2px 0px rgba(0,0,0,0.05);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    border-color: var(--hot-pink);
    outline: none;
}

.newsletter-form button {
    width: 42px;
    height: auto;
    background: var(--hot-pink);
    border: 2px solid var(--pink-dark);
    color: white;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    font-weight: 900;
}

.newsletter-form button:hover {
    background: var(--pink-dark);
}

.footer-bottom {
    border-top: 3px dashed var(--border);
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.38rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
}

.footer-stars {
    color: var(--hot-pink);
    letter-spacing: 0.6rem;
    font-size: 0.8rem;
    animation: blink-y2k 1.5s infinite;
}

/* ---- Placeholder ---- */
.placeholder-art {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,105,180,0.08), rgba(155,89,182,0.05));
    color: var(--hot-pink);
    font-size: 3rem;
    text-shadow: 3px 3px 0px var(--pink-light);
}

/* ---- Toast Notifications ---- */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 0.8rem 1.2rem;
    background: #fff;
    border: 3px solid var(--hot-pink);
    box-shadow: 4px 4px 0px var(--hot-pink);
    z-index: 9999;
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 700;
    animation: toast-in 0.3s ease;
}

@keyframes toast-in {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ---- Animations ---- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   A D M I N   P A N E L  ✦
   ============================================ */

.admin-layout {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.admin-sidebar {
    background: #fff;
    border-right: 3px solid var(--hot-pink);
    padding: 1.5rem 0;
    position: fixed;
    width: 240px;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 4px 0 0px var(--pink-light);
    z-index: 10;
}

.admin-sidebar .logo {
    padding: 0 1.2rem;
    margin-bottom: 1.5rem;
}

.admin-sidebar .logo span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hot-pink);
    text-shadow: 2px 2px 0px var(--pink-light);
}

.admin-nav {
    display: flex;
    flex-direction: column;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
    border-left: 4px solid transparent;
    font-weight: 700;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: var(--bg);
    color: var(--hot-pink);
    border-left-color: var(--hot-pink);
}

.admin-nav a .icon {
    width: 20px;
    text-align: center;
}

.admin-main {
    margin-left: 240px;
    padding: 1.5rem 1rem;
    background: var(--bg);
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.admin-header h1 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    text-shadow: 2px 2px 0px var(--pink-light);
    line-height: 2;
}

.admin-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: #fff;
    padding: 1.5rem 0.8rem;
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 3px 3px 0px var(--pink-light);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card::before {
    display: none;
}

.stat-card:hover {
    border-color: var(--hot-pink);
    box-shadow: 4px 4px 0px var(--hot-pink);
    transform: translate(-1px, -1px);
}

.stat-card .label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 400;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.stat-card .value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text);
    text-shadow: 1px 1px 0px var(--pink-light);
    position: relative;
    z-index: 1;
    line-height: 1.5;
    margin-top: 0.3rem;
}

.stat-card .trend {
    font-size: 0.95rem;
    color: var(--success);
    margin-top: 0.3rem;
    position: relative;
    z-index: 1;
    font-weight: 800;
}

/* Admin Table */
.admin-table {
    width: 100%;
    background: #fff;
    border: 2px solid var(--border);
    overflow: hidden;
    box-shadow: 4px 4px 0px var(--pink-light);
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 0.8rem 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    background: var(--bg);
    border-bottom: 2px solid var(--border);
}

.admin-table td {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    border-bottom: 2px dotted var(--border-light);
    vertical-align: middle;
    font-weight: 600;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: rgba(255, 105, 180, 0.04);
}

.admin-table .product-cell {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.admin-table .product-thumb {
    width: 46px;
    height: 46px;
    overflow: hidden;
    background: var(--bg-alt);
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.admin-table .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-table .actions {
    display: flex;
    gap: 0.4rem;
}

.admin-table .actions a,
.admin-table .actions button {
    padding: 0.35rem 0.65rem;
    font-size: 0.65rem;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 2px solid;
}

.admin-table .actions .edit-btn {
    background: #f0e6ff;
    color: var(--purple);
    text-decoration: none;
    border-color: var(--purple);
    box-shadow: 2px 2px 0px rgba(155,89,182,0.3);
}

.admin-table .actions .edit-btn:hover {
    background: var(--purple);
    color: #fff;
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px rgba(155,89,182,0.3);
}

.admin-table .actions .delete-btn {
    background: #ffe6ea;
    color: var(--danger);
    border-color: var(--danger);
    box-shadow: 2px 2px 0px rgba(255,23,68,0.3);
}

.admin-table .actions .delete-btn:hover {
    background: var(--danger);
    color: #fff;
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px rgba(255,23,68,0.3);
}

.status-badge {
    display: inline-flex;
    padding: 0.25rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-heading);
    border: 2px solid;
}

.status-badge.active { background: #e6ffe6; color: #006600; border-color: #00cc00; }
.status-badge.inactive { background: #ffe6ea; color: #cc0000; border-color: #ff4444; }
.status-badge.pending { background: #fffde6; color: #997700; border-color: #ffd600; }
.status-badge.confirmed { background: #f0e6ff; color: var(--purple); border-color: var(--purple); }
.status-badge.shipped { background: #e6f5ff; color: #0077cc; border-color: #00bfff; }
.status-badge.delivered { background: #e6ffe6; color: #006600; border-color: #00cc00; }
.status-badge.cancelled { background: #ffe6ea; color: #cc0000; border-color: #ff4444; }

/* Admin Forms */
.admin-form {
    background: #fff;
    border: 2px solid var(--border);
    padding: 1.5rem;
    max-width: 800px;
    box-shadow: 4px 4px 0px var(--pink-light);
}

.admin-form .form-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px dotted var(--border);
}

.admin-form .form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.admin-form .image-preview {
    width: 140px;
    height: 140px;
    overflow: hidden;
    background: var(--bg-alt);
    margin-top: 0.5rem;
    border: 2px solid var(--border);
    box-shadow: 3px 3px 0px var(--border);
}

.admin-form .image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Admin Login ---- */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    background-image:
        radial-gradient(circle at 20% 40%, rgba(255,105,180,0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(155,89,182,0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(0,191,255,0.06) 0%, transparent 40%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.admin-login::before {
    content: '★ ✦ ★ ✦ ★ ✦ ★ ✦ ★ ✦ ★ ✦ ★ ✦ ★ ✦ ★ ✦ ★ ✦ ★';
    position: absolute;
    top: 40%;
    left: 0;
    white-space: nowrap;
    font-size: 1.5rem;
    color: var(--pink);
    opacity: 0.08;
    letter-spacing: 3rem;
    animation: marquee-slide 30s linear infinite;
}

.admin-login::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(255,105,180,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.admin-login-card {
    background: #fff;
    padding: 2.5rem;
    border: 4px solid var(--hot-pink);
    box-shadow: 8px 8px 0px var(--pink-light), 12px 12px 0px var(--lilac);
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.admin-login-card::before {
    content: '✦ ★ ✦';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: var(--hot-pink);
    text-shadow: 2px 2px 0px var(--pink-light);
    animation: blink-y2k 1s infinite;
    letter-spacing: 0.5rem;
    background: #fff;
    padding: 0 0.5rem;
}

.admin-login-card h1 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    color: var(--text);
    text-shadow: 2px 2px 0px var(--pink-light);
    line-height: 2;
}

.admin-login-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.admin-login-card .form-group {
    margin-bottom: 0.8rem;
    text-align: left;
}

.admin-login-card .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* ---- Scrollbar RETRO Y2K ---- */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
    border-left: 2px solid var(--border);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--pink-light), var(--hot-pink), var(--purple));
    border: 2px solid var(--pink-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--hot-pink);
}

/* ---- Selection ---- */
::selection {
    background: var(--hot-pink);
    color: white;
}

/* ---- Y2K Decorative Stars ---- */
.y2k-star {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    color: var(--hot-pink);
    font-size: 1.5rem;
    animation: blink-y2k 2s infinite;
    text-shadow: 2px 2px 0px var(--pink-light);
}

.y2k-star-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.y2k-star-2 {
    top: 40%;
    right: 8%;
    animation-delay: 0.7s;
    font-size: 1rem;
}

.y2k-star-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1.4s;
    font-size: 1.2rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
    .product-gallery { position: static; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .admin-sidebar { width: 200px; }
    .admin-main { margin-left: 200px; }
}

@media (max-width: 768px) {
    :root { --section-gap: 3rem; }
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 0.9rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .categories-grid { grid-template-columns: 1fr 1fr; }
    .features-bar { grid-template-columns: 1fr; gap: 1rem; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 2rem 1.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    .cart-item { flex-direction: column; }
    .cart-item-image { width: 100%; height: 180px; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .products-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
}
