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

:root {
    --glow-color: #d4918e;
    --glow-light: #f5ddd9;
    --glow-bg: #faf0ee;
    --hydrate-color: #8aab96;
    --hydrate-light: #d1e2d5;
    --hydrate-bg: #eef5f0;
    --boost-color: #d48a4c;
    --boost-light: #f0d4b3;
    --boost-bg: #fdf3ea;
    --text: #1a1a1a;
    --text-light: #6b6b6b;
    --text-muted: #999;
    --bg: #fafaf8;
    --bg-warm: #f5f3ef;
    --white: #ffffff;
    --border: #e8e6e1;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
    font-family: inherit;
    font-size: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    width: 100%;
    background: var(--white);
    color: var(--text);
    transition: border var(--transition);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--text);
}
textarea { resize: vertical; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}
.section-subtitle {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 48px;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all var(--transition);
}
.btn-primary {
    background: var(--text);
    color: var(--white);
}
.btn-primary:hover { background: #333; transform: translateY(-1px); }
.btn-secondary {
    background: var(--bg-warm);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--border); }
.btn-danger { background: #d44; color: #fff; padding: 10px 24px; border-radius: 8px; font-size: 13px; }
.btn-danger:hover { background: #c33; }
.btn-full { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all var(--transition);
}
.navbar.scrolled, .navbar-solid {
    background: rgba(250,250,248,0.95);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}
.nav-links a {
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color var(--transition);
    position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text);
    transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all var(--transition);
}
/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at 30% 20%, var(--glow-light) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, var(--hydrate-light) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 80%, var(--boost-light) 0%, transparent 40%);
    opacity: 0.3;
    animation: heroFloat 20s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(2%, -2%) scale(1.02); }
    66% { transform: translate(-1%, 1%) scale(0.98); }
}
.hero-content { position: relative; z-index: 1; max-width: 640px; }
.hero-eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.hero-title { font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 6rem); font-weight: 300; letter-spacing: 0.35em; margin-bottom: 8px; color: var(--text); }
.hero-tagline { font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 400; font-style: italic; color: var(--text-light); margin-bottom: 24px; }
.hero-description { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 40px; }
.hero-pillars { display: flex; justify-content: center; gap: 48px; margin-bottom: 48px; }
.pillar { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.pillar svg { width: 36px; height: 36px; color: var(--text-light); }
.pillar span { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }

/* ===== PRODUCTS ===== */
.products { padding: 100px 0; background: var(--white); }
.products .section-title, .products .section-subtitle { text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 80px; }
.product-card { background: var(--bg); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; transition: transform var(--transition), box-shadow var(--transition); position: relative; overflow: hidden; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card[data-product="glow"] { background: var(--glow-bg); }
.product-card[data-product="hydrate"] { background: var(--hydrate-bg); }
.product-card[data-product="boost"] { background: var(--boost-bg); }
.product-badge { display: inline-block; padding: 6px 16px; border-radius: 50px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 28px; }
.glow-bg { background: var(--glow-color); }
.hydrate-bg { background: var(--hydrate-color); }
.boost-bg { background: var(--boost-color); }

/* Sachet */
.product-sachet-wrap { display: flex; justify-content: center; margin-bottom: 28px; }
.sachet { width: 90px; height: 160px; border-radius: 8px 8px 4px 4px; position: relative; display: flex; flex-direction: column; overflow: hidden; }
.sachet-top { height: 20px; background: rgba(255,255,255,0.5); border-bottom: 1px dashed rgba(0,0,0,0.15); }
.sachet-body { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 8px; }
.sachet-brand { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.2em; font-weight: 600; writing-mode: vertical-lr; position: absolute; left: 6px; top: 50%; transform: translateY(-50%); color: rgba(0,0,0,0.25); }
.sachet-name { font-family: var(--font-display); font-size: 14px; font-weight: 600; letter-spacing: 0.08em; }
.sachet-sub { font-size: 6px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(0,0,0,0.5); }
.sachet-detail { font-size: 5.5px; letter-spacing: 0.05em; text-transform: uppercase; text-align: center; margin-top: 4px; color: rgba(0,0,0,0.45); }
.sachet-weight { font-size: 6px; color: rgba(0,0,0,0.35); margin-top: auto; }
.sachet-glow { background: linear-gradient(180deg, var(--glow-light) 0%, var(--glow-color) 100%); color: #fff; }
.sachet-hydrate { background: linear-gradient(180deg, #e8ede9 0%, #c5d4c9 100%); color: var(--text); }
.sachet-boost { background: linear-gradient(180deg, var(--boost-light) 0%, var(--boost-color) 100%); color: #fff; }

.product-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; letter-spacing: 0.04em; margin-bottom: 4px; }
.product-flavor { font-size: 14px; color: var(--text-light); margin-bottom: 8px; font-style: italic; }
.product-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.product-ingredients { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.product-ingredients span { padding: 4px 12px; border-radius: 50px; font-size: 11px; letter-spacing: 0.04em; background: rgba(255,255,255,0.7); color: var(--text-light); }

/* Bottled Water */
.water-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px; background: var(--bg-warm); border-radius: var(--radius-lg); margin-bottom: 80px; }
.water-eyebrow { font-size: 11px; letter-spacing: 0.2em; color: var(--text-muted); margin-bottom: 12px; }
.water-content h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin-bottom: 16px; }
.water-content p { color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }
.water-variants { display: flex; gap: 32px; }
.variant { display: flex; flex-direction: column; gap: 2px; }
.variant strong { font-size: 14px; }
.variant span { font-size: 13px; color: var(--text-muted); }
.water-visual { display: flex; justify-content: center; gap: 24px; align-items: flex-end; }
.bottle { width: 70px; display: flex; flex-direction: column; align-items: center; }
.bottle-cap { width: 20px; height: 12px; background: #c0c0c0; border-radius: 3px 3px 0 0; }
.bottle-neck { width: 16px; height: 30px; background: linear-gradient(180deg, rgba(200,220,230,0.4), rgba(200,220,230,0.2)); border: 1px solid rgba(0,0,0,0.08); border-top: none; }
.bottle-body { width: 60px; height: 160px; background: linear-gradient(180deg, rgba(220,235,240,0.3), rgba(200,215,225,0.15)); border: 1px solid rgba(0,0,0,0.08); border-radius: 4px 4px 8px 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 8px; }
.bottle-body span { font-family: var(--font-display); font-size: 8px; letter-spacing: 0.15em; font-weight: 600; writing-mode: vertical-lr; color: var(--text-light); }
.bottle-body small { font-size: 5px; text-align: center; color: var(--text-muted); letter-spacing: 0.05em; line-height: 1.4; }
.bottle-sm .bottle-body { height: 120px; }
.bottle-sm { width: 60px; }
.bottle-sm .bottle-body { width: 50px; }

/* Multi-Packs */
.packs-section { text-align: center; }
.packs-title { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin-bottom: 8px; }
.packs-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 36px; }
.packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pack { text-align: center; }
.pack-box { height: 140px; border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; margin-bottom: 12px; transition: transform var(--transition); }
.pack-box:hover { transform: scale(1.03); }
.pack-box span { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.15em; font-weight: 600; }
.pack-box small { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.pack p { font-size: 13px; color: var(--text-light); }
.pack-glow .pack-box { background: var(--glow-bg); border: 1px solid var(--glow-light); color: var(--glow-color); }
.pack-hydrate .pack-box { background: var(--hydrate-bg); border: 1px solid var(--hydrate-light); color: var(--hydrate-color); }
.pack-boost .pack-box { background: var(--boost-bg); border: 1px solid var(--boost-light); color: var(--boost-color); }
/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat { text-align: center; padding: 32px 16px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat-num { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--text); margin-bottom: 4px; }
.stat-lbl { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

/* ===== VALUES ===== */
.values { padding: 100px 0; background: var(--white); }
.values .section-title { text-align: center; margin-bottom: 48px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.value-card { text-align: center; padding: 40px 24px; border-radius: var(--radius-lg); background: var(--bg); transition: transform var(--transition), box-shadow var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { margin-bottom: 20px; }
.value-icon svg { width: 44px; height: 44px; color: var(--text-light); margin: 0 auto; }
.value-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; margin-bottom: 12px; }
.value-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ===== CTA ===== */
.cta-section { padding: 100px 0; text-align: center; background: linear-gradient(135deg, var(--glow-bg), var(--hydrate-bg), var(--boost-bg)); }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; margin-bottom: 16px; }
.cta-section p { color: var(--text-light); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--bg); }
.contact .section-title { text-align: center; margin-bottom: 48px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 900px; margin: 0 auto; }
.contact-info p { color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }
.contact-item { margin-bottom: 24px; }
.contact-item strong { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.contact-item span { color: var(--text); }
.socials { display: flex; gap: 16px; }
.socials a { font-size: 13px; color: var(--text-light); transition: color var(--transition); }
.socials a:hover { color: var(--text); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }

/* ===== FOOTER ===== */
.footer { padding: 60px 0 32px; background: var(--text); color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.2em; color: var(--white); display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 14px; font-style: italic; color: rgba(255,255,255,0.5); }
.footer-col h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.35); }

/* ===== BLOG PAGE ===== */
.blog-hero { padding: 140px 0 60px; text-align: center; background: var(--bg-warm); }
.blog-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 400; margin-bottom: 12px; }
.blog-hero p { color: var(--text-light); font-size: 15px; }
.blog-content { padding: 48px 0 100px; }
.blog-filters { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; border-radius: 50px; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); background: var(--white); border: 1px solid var(--border); transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--text); color: var(--white); border-color: var(--text); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); cursor: pointer; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 200px; background: var(--bg-warm); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img .placeholder-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.2em; background: linear-gradient(135deg, var(--glow-bg), var(--hydrate-bg)); }
.blog-card-body { padding: 24px; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.blog-card-cat { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; background: var(--bg); color: var(--text-light); }
.blog-card-date { font-size: 12px; color: var(--text-muted); }
.blog-card-body h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; margin-bottom: 8px; line-height: 1.3; }
.blog-card-body p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.blog-empty { text-align: center; padding: 80px 0; color: var(--text-muted); }
.blog-empty svg { margin: 0 auto 20px; color: var(--border); }
.blog-empty h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-light); margin-bottom: 8px; }

/* Single Post View */
.blog-post-view { padding: 120px 0 80px; }
.back-btn { font-size: 13px; color: var(--text-light); margin-bottom: 32px; display: inline-block; transition: color var(--transition); cursor: pointer; background: none; border: none; font-family: inherit; }
.back-btn:hover { color: var(--text); }
.post-full { max-width: 760px; margin: 0 auto; }
.post-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; }
.post-full h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 400; line-height: 1.2; margin-bottom: 32px; }
.post-featured-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; }
.post-featured-img img { width: 100%; max-height: 440px; object-fit: cover; }
.post-body { font-size: 16px; line-height: 1.9; color: var(--text-light); }
.post-body h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; color: var(--text); margin: 40px 0 16px; }
.post-body h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--text); margin: 32px 0 12px; }
.post-body p { margin-bottom: 18px; }
.post-body ul, .post-body ol { margin: 16px 0; padding-left: 24px; }
.post-body li { margin-bottom: 8px; }
.post-body blockquote { border-left: 3px solid var(--glow-color); padding: 16px 24px; margin: 24px 0; background: var(--bg-warm); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--text); }
.post-body strong { color: var(--text); }
/* ===== ADMIN ===== */
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 24px 80px; background: var(--bg-warm); }
.login-card { background: var(--white); padding: 48px 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); max-width: 420px; width: 100%; text-align: center; }
.login-card h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin-bottom: 8px; }
.login-card > p { color: var(--text-light); font-size: 14px; margin-bottom: 32px; }
.login-card form { display: flex; flex-direction: column; gap: 16px; }
.login-error { color: #d44; font-size: 13px; min-height: 20px; }
.login-hint { margin-top: 24px; font-size: 12px; color: var(--text-muted); }
.admin-dashboard { padding: 100px 0 60px; min-height: 100vh; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.admin-header h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; }
.post-editor { margin-bottom: 40px; }
.editor-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.editor-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.editor-header h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.btn-icon { width: 36px; height: 36px; border-radius: 50%; font-size: 20px; display: flex; align-items: center; justify-content: center; color: var(--text-light); transition: background var(--transition); }
.btn-icon:hover { background: var(--bg); }
.form-row { display: grid; grid-template-columns: 1fr 200px; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.image-upload { position: relative; }
.image-upload input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2; }
.upload-placeholder { border: 2px dashed var(--border); border-radius: var(--radius); padding: 40px; text-align: center; color: var(--text-muted); transition: border-color var(--transition); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.image-upload:hover .upload-placeholder { border-color: var(--text-light); }
.upload-placeholder span { font-size: 13px; }
.upload-preview { position: relative; border-radius: var(--radius); overflow: hidden; }
.upload-preview img { width: 100%; height: 200px; object-fit: cover; }
.remove-img { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; border-radius: 50%; background: rgba(0,0,0,0.6); color: #fff; font-size: 16px; display: flex; align-items: center; justify-content: center; z-index: 3; }
.editor-toolbar { display: flex; gap: 4px; margin-bottom: 8px; padding: 8px; background: var(--bg); border-radius: var(--radius-sm) var(--radius-sm) 0 0; border: 1px solid var(--border); border-bottom: none; }
.editor-toolbar button { padding: 6px 12px; border-radius: 4px; font-size: 13px; color: var(--text-light); transition: all var(--transition); }
.editor-toolbar button:hover { background: var(--white); color: var(--text); }
#postContent { border-radius: 0 0 var(--radius-sm) var(--radius-sm); border-top: none; }
.form-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 8px; }
.posts-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.posts-table th { text-align: left; padding: 14px 20px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); background: var(--bg); border-bottom: 1px solid var(--border); }
.posts-table td { padding: 16px 20px; font-size: 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.posts-table tr:last-child td { border-bottom: none; }
.posts-table tr:hover td { background: var(--bg); }
.posts-table .post-title-cell { font-weight: 500; max-width: 300px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.table-actions { display: flex; gap: 8px; }
.table-actions button { padding: 6px 14px; border-radius: 6px; font-size: 12px; letter-spacing: 0.04em; transition: all var(--transition); }
.btn-edit { background: var(--bg); color: var(--text); }
.btn-edit:hover { background: var(--border); }
.btn-delete { color: #d44; }
.btn-delete:hover { background: #fde8e8; }
.no-posts { text-align: center; padding: 60px; color: var(--text-muted); background: var(--white); border-radius: var(--radius); }
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 200; }
.modal-card { background: var(--white); padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow-lg); max-width: 400px; width: 90%; text-align: center; }
.modal-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; }
.modal-card p { color: var(--text-light); margin-bottom: 24px; }
.modal-actions { display: flex; gap: 12px; justify-content: center; }
.modal-actions .btn-secondary { padding: 10px 24px; border-radius: 8px; font-size: 13px; }
.toast { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px); padding: 14px 28px; border-radius: var(--radius-sm); background: var(--text); color: var(--white); font-size: 14px; z-index: 300; transition: transform 0.4s ease; box-shadow: var(--shadow-lg); }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--white); flex-direction: column; padding: 80px 32px 32px; gap: 24px; box-shadow: var(--shadow-lg); transition: right var(--transition); }
    .nav-links.open { right: 0; }
    .hero { padding: 100px 24px 60px; min-height: auto; }
    .hero-pillars { gap: 32px; }
    .product-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 60px; }
    .water-section { grid-template-columns: 1fr; padding: 40px 24px; text-align: center; }
    .water-variants { justify-content: center; }
    .packs-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .values-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .form-row { grid-template-columns: 1fr; }
    .editor-card { padding: 24px; }
    .posts-table { font-size: 13px; }
    .posts-table th, .posts-table td { padding: 12px; }
}

@media (max-width: 480px) {
    .hero-title { letter-spacing: 0.2em; }
    .hero-pillars { gap: 24px; }
    .section-title { font-size: 1.8rem; }
}