/**
 * Yıldız Yükseltme - Ultra Modern Design v2
 * Glassmorphism + Gradient + Clean Grid
 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

:root {
    --primary: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #818cf8;
    --primary-bg: #eef2ff;
    --primary-glow: rgba(79, 70, 229, 0.15);
    --gold: #d97706;
    --gold-light: #fbbf24;
    --gold-bg: #fffbeb;
    --bg: #f0f2f5;
    --bg-white: #ffffff;
    --text: #1e293b;
    --text-light: #475569;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --green: #059669;
    --green-bg: #ecfdf5;
    --red: #dc2626;
    --red-bg: #fef2f2;
    --whatsapp: #25d366;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.14);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --max-width: 1120px;
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html { font-size: 15px; scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* HEADER - Glassmorphism Sticky    */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.site-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    letter-spacing: -0.3px;
}
.site-logo:hover { color: var(--primary); text-decoration: none; }
.site-logo .logo-sub {
    font-size: 10px;
    color: var(--primary);
    font-weight: 600;
    display: block;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Search */
.header-search { flex: 0 0 auto; }
.header-search form { display: flex; }
.header-search input {
    background: var(--bg);
    border: 1px solid transparent;
    color: var(--text);
    padding: 9px 16px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    width: 240px;
    border-radius: 10px 0 0 10px;
    outline: none;
    transition: all var(--transition);
}
.header-search input::placeholder { color: var(--text-muted); }
.header-search input:focus { border-color: var(--primary); background: var(--bg-white); box-shadow: 0 0 0 3px var(--primary-glow); }
.header-search button {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 9px 18px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    border-radius: 0 10px 10px 0;
    transition: background var(--transition);
}
.header-search button:hover { background: var(--primary-dark); }

/* Menu toggle */
.menu-toggle {
    display: none;
    background: var(--bg);
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 18px;
    color: var(--text);
    border-radius: 10px;
    transition: background var(--transition);
}
.menu-toggle:hover { background: var(--primary-bg); }

/* Nav */
.site-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}
.site-nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.site-nav-inner::-webkit-scrollbar { display: none; }
.nav-link {
    display: block;
    padding: 11px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
    position: relative;
}
.nav-link:hover {
    color: var(--primary);
    text-decoration: none;
    background: var(--primary-bg);
}
.nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* CONTENT                          */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.content-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    min-height: 70vh;
}
.page-content { padding: 28px 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* HERO - Gradient + Glass          */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* HERO - Immersive Modern Design   */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero-immersive {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.3) saturate(1.2);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(79, 70, 229, 0.85) 0%, rgba(124, 58, 237, 0.7) 40%, rgba(30, 10, 60, 0.8) 100%),
        radial-gradient(ellipse at 20% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(99, 102, 241, 0.2) 0%, transparent 50%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: floatParticle 8s infinite ease-in-out;
}
@keyframes floatParticle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    50% { transform: translateY(-120px) scale(1.5); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 32px 28px;
}
.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 8px #22c55e;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}
.hero-gradient-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, #fcd34d 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.hero-desc strong { color: #fff; }

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}
.hero-btn-primary {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
.hero-btn-primary:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    color: #fff;
}
.hero-btn-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}
.hero-btn-glass:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    color: #fff;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 8px;
    max-width: 600px;
    margin: 0 auto;
}
.hero-stat-item {
    flex: 1;
    text-align: center;
}
.hero-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
}
.hero-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}
.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
}

.hero-trust {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 16px 24px 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* SYMPTOM TICKER - Kayan Banner    */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.symptom-ticker-wrapper {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 50%, #fefce8 100%);
    border: 1px solid #fbbf24;
    border-radius: var(--radius);
    margin: 20px 0 32px;
    overflow: hidden;
}
.symptom-ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}
.symptom-pulse {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
    box-shadow: 0 0 6px #ef4444;
}
.symptom-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.symptom-ticker::before,
.symptom-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}
.symptom-ticker::before {
    left: 0;
    background: linear-gradient(to right, #fef9c3, transparent);
}
.symptom-ticker::after {
    right: 0;
    background: linear-gradient(to left, #fefce8, transparent);
}
.symptom-ticker-track {
    display: flex;
    gap: 0;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}
.symptom-ticker-track span {
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 600;
    color: #92400e;
    white-space: nowrap;
    position: relative;
}
.symptom-ticker-track span::after {
    content: '|';
    position: absolute;
    right: 0;
    color: #d97706;
    opacity: 0.3;
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Legacy hero compat */
.hero-section { display: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* SECTION TITLES                   */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}
.page-title .accent { color: var(--primary); }

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.2px;
}
.section-title .icon { font-size: 18px; }
.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--border), transparent);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* BELİRTİLER SECTION (Animated)    */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.belirtiler-section {
    background: var(--bg-white);
    border: 2px solid #fde68a;
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.belirtiler-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.belirtiler-header {
    text-align: center;
    margin-bottom: 24px;
}
.belirtiler-pulse {
    font-size: 32px;
    display: inline-block;
    animation: pulse-glow 1.5s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}
.belirtiler-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin: 8px 0;
    letter-spacing: -0.3px;
}
.belirtiler-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    animation: badge-flash 2s ease-in-out infinite;
}
@keyframes badge-flash {
    0%, 100% { background: linear-gradient(135deg, #fef3c7, #fde68a); }
    50% { background: linear-gradient(135deg, #fde68a, #f59e0b); color: #fff; }
}
.belirtiler-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}
.belirti-group {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    transition: all var(--transition);
}
.belirti-group:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.belirti-group h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}
.belirti-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.belirti-group li {
    font-size: 13px;
    color: var(--text-light);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.belirti-group li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 16px;
}
.belirtiler-cta {
    text-align: center;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-belirtiler-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    transition: all var(--transition);
    animation: wa-pulse 2s ease-in-out infinite;
}
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}
.btn-belirtiler-wa:hover { transform: scale(1.05); color: #fff; text-decoration: none; }
.btn-belirtiler-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
}
.btn-belirtiler-read:hover { background: var(--primary); color: #fff; text-decoration: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* CART SYSTEM                      */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.product-card-mini {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.product-card-mini:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.product-card-mini .p-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
}
.product-card-mini .p-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.product-card-mini:hover .p-image img {
    transform: scale(1.05);
}
.product-card-mini .p-icon {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    padding: 32px;
    text-align: center;
    font-size: 64px;
}
.product-card-mini .p-body { padding: 20px; }
.product-card-mini .p-badge {
    display: inline-block;
    background: var(--gold-bg);
    color: var(--gold);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.product-card-mini .p-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.product-card-mini .p-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}
.product-card-mini .p-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.product-card-mini .p-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}
.product-card-mini .p-price .old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 6px;
}
.btn-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-add-cart:hover { background: var(--primary-dark); transform: scale(1.05); }

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer {
    position: fixed;
    top: 0; right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-white);
    z-index: 201;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.cart-drawer.active { right: 0; }
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}
.cart-close {
    background: var(--bg);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: var(--text);
    transition: all var(--transition);
}
.cart-close:hover { background: var(--red-bg); color: var(--red); }
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}
.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}
.cart-item .ci-icon { font-size: 36px; }
.cart-item .ci-info { flex: 1; }
.cart-item .ci-name { font-weight: 600; font-size: 14px; color: var(--text); }
.cart-item .ci-price { font-size: 13px; color: var(--primary); font-weight: 700; }
.cart-item .ci-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-item .ci-qty button {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    transition: all var(--transition);
}
.cart-item .ci-qty button:hover { border-color: var(--primary); color: var(--primary); }
.cart-item .ci-qty span { font-weight: 700; font-size: 14px; min-width: 20px; text-align: center; }
.cart-item .ci-remove {
    background: none;
    border: none;
    color: var(--red);
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    transition: opacity var(--transition);
}
.cart-item .ci-remove:hover { opacity: 0.7; }
.cart-empty {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
}
.cart-empty .ce-icon { font-size: 48px; margin-bottom: 12px; }
.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;
}
.cart-total .ct-amount { color: var(--primary); }
.btn-checkout {
    display: block;
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}
.btn-checkout:hover { background: var(--primary-dark); }

/* Cart badge on header */
.cart-header-btn {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 16px;
    color: var(--text);
    transition: all var(--transition);
}
.cart-header-btn:hover { border-color: var(--primary); }
.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* CTA BAR (WhatsApp/IG/YT)         */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.cta-card {
    flex: 1;
    min-width: 200px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.cta-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
}
.cta-card .cta-icon {
    font-size: 28px;
    flex-shrink: 0;
}
.cta-card .cta-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
.cta-card .cta-sub {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* VIDEO SIDEBAR (not a big block)  */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.video-mini {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.video-mini:hover { box-shadow: var(--shadow-md); }
.video-mini .video-thumb {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-mini .video-thumb iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}
.video-mini .video-info {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.video-mini .video-info span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}
.video-mini .yt-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dc2626;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 11px;
    transition: opacity var(--transition);
}
.video-mini .yt-btn:hover { opacity: 0.9; text-decoration: none; color: #fff; }

/* Two column layout (content + sidebar) */
.home-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    margin-bottom: 28px;
    align-items: start;
}
.home-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 80px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* CATEGORY GRID                    */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.category-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}
.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.category-card .cat-icon { font-size: 26px; flex-shrink: 0; }
.category-card .cat-info { flex: 1; min-width: 0; }
.category-card .cat-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    display: block;
}
.category-card .cat-name:hover { color: var(--primary); text-decoration: none; }
.category-card .cat-count { font-size: 11px; color: var(--text-muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ARTICLE LIST                     */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wiki-article-list { list-style: none; padding: 0; margin: 0; }
.wiki-article-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 10px;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.wiki-article-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}
.wiki-article-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.2px; }
.wiki-article-item h3 a { color: var(--text); }
.wiki-article-item h3 a:hover { color: var(--primary); }
.wiki-article-item p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}
.wiki-article-item .item-meta { font-size: 12px; color: var(--text-muted); }
.wiki-article-item .item-meta a { color: var(--primary); font-weight: 500; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* WIKI CONTENT                     */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wiki-content { font-size: 15px; line-height: 1.85; }
.wiki-content p { margin-bottom: 16px; }
.wiki-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 32px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-bg);
}
.wiki-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 24px 0 10px;
}
.wiki-content h4 { font-size: 15px; font-weight: 600; margin: 18px 0 8px; }
.wiki-content ul, .wiki-content ol { margin: 0 0 16px 24px; }
.wiki-content li { margin-bottom: 6px; color: var(--text-light); }
.wiki-content blockquote {
    border-left: 3px solid var(--primary);
    padding: 16px 24px;
    margin: 16px 0;
    background: var(--primary-bg);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-light);
    font-style: italic;
}
.wiki-content a { color: var(--primary); }
.wiki-content a:hover { text-decoration: underline; }
.wiki-content strong { color: var(--text); font-weight: 600; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* TOC                              */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.toc-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin: 0 0 28px;
    display: inline-block;
    max-width: 440px;
}
.toc-title {
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.toc-list { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.toc-list li { counter-increment: toc; margin: 5px 0; }
.toc-list li::before { content: counter(toc) " "; color: var(--primary); font-size: 12px; font-weight: 700; }
.toc-list a { color: var(--text-light); font-size: 13px; font-weight: 500; }
.toc-list a:hover { color: var(--primary); }
.toc-sub { list-style: none; padding-left: 20px; margin: 2px 0; counter-reset: toc-sub; }
.toc-sub li { counter-increment: toc-sub; }
.toc-sub li::before { content: counter(toc) "." counter(toc-sub) " "; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ARTICLE META                     */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.article-meta-line {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* BREADCRUMB                       */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--primary); font-weight: 500; }
.breadcrumb .sep { margin: 0 6px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* TAGS                             */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wiki-tags {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.wiki-tags .tag-label { font-size: 13px; color: var(--text-muted); }
.wiki-tags a {
    background: var(--primary-bg);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all var(--transition);
}
.wiki-tags a:hover { background: var(--primary); color: #fff; text-decoration: none; transform: scale(1.05); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* FAQ                              */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wiki-faq { margin-top: 28px; }
.wiki-faq dt {
    font-weight: 600;
    font-size: 14px;
    padding: 14px 18px;
    cursor: pointer;
    color: var(--text);
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 6px;
    transition: all var(--transition);
}
.wiki-faq dt:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); }
.wiki-faq dd {
    margin: -6px 0 6px;
    padding: 16px 18px;
    font-size: 14px;
    color: var(--text-light);
    display: none;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    line-height: 1.7;
}
.wiki-faq dd.show { display: block; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* SEARCH                           */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.search-box-big { margin: 14px 0 24px; display: flex; max-width: 560px; }
.search-box-big input {
    flex: 1;
    background: var(--bg-white);
    border: 2px solid var(--border);
    color: var(--text);
    padding: 14px 18px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    border-radius: var(--radius) 0 0 var(--radius);
    transition: all var(--transition);
}
.search-box-big input::placeholder { color: var(--text-muted); }
.search-box-big input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.search-box-big button {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: #fff;
    padding: 14px 28px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: background var(--transition);
}
.search-box-big button:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.search-results-count { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* FORMS                            */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wiki-form { max-width: 100%; }
.wiki-form .form-row { margin-bottom: 16px; }
.wiki-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}
.wiki-form input,
.wiki-form textarea,
.wiki-form select {
    width: 100%;
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 11px 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.wiki-form input::placeholder,
.wiki-form textarea::placeholder { color: var(--text-muted); }
.wiki-form input:focus,
.wiki-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.wiki-form textarea { min-height: 120px; resize: vertical; }
.wiki-form .btn-send {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 13px 36px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.wiki-form .btn-send:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* INFOBOX & NOTICE                 */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wiki-infobox {
    background: var(--primary-bg);
    border: 1px solid #c7d2fe;
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 20px 0;
}
.wiki-infobox strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: var(--primary-dark);
}
.wiki-infobox a { font-weight: 600; }
.wiki-infobox .wa-link { display: inline-block; margin-top: 6px; color: #059669; font-weight: 600; }
.wiki-infobox .ig-link { display: inline-block; margin-top: 4px; color: #c13584; }
.wiki-infobox .yt-link { display: inline-block; margin-top: 4px; color: #dc2626; }

.wiki-notice {
    background: var(--gold-bg);
    border: 1px solid #fde68a;
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 14px;
}
.wiki-notice strong { display: block; margin-bottom: 4px; color: var(--gold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ALERTS                           */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.alert {
    padding: 14px 18px;
    margin-bottom: 18px;
    font-size: 14px;
    border-radius: var(--radius);
    border: 1px solid;
}
.alert-success { background: var(--green-bg); border-color: #a7f3d0; color: var(--green); }
.alert-error { background: var(--red-bg); border-color: #fecaca; color: var(--red); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* PAGINATION                       */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wiki-pagination {
    text-align: center;
    margin: 32px 0;
    display: flex;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}
.wiki-pagination a,
.wiki-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    background: var(--bg-white);
    transition: all var(--transition);
}
.wiki-pagination a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}
.wiki-pagination .current {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 404                              */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.error-page { padding: 80px 0; text-align: center; }
.error-page h1 { font-size: 64px; color: var(--primary-light); font-weight: 900; margin-bottom: 12px; }
.error-page p { color: var(--text-light); margin-bottom: 18px; font-size: 16px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* YOUTUBE (legacy full-size compat)*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.youtube-section {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}
.youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 14px;
}
.youtube-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
    border-radius: var(--radius);
}
.youtube-channel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.youtube-channel .yt-info { font-size: 13px; color: var(--text-light); }
.youtube-channel .yt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dc2626;
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 13px;
    transition: opacity var(--transition);
}
.youtube-channel .yt-btn:hover { opacity: 0.9; text-decoration: none; color: #fff; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* WHATSAPP CTA BANNER              */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wa-cta-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #075e54 0%, #128c7e 50%, #25d366 100%);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    margin: 28px 0;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
    position: relative;
    overflow: hidden;
}
.wa-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.wa-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 10%;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.wa-cta-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: waPulse 2s infinite;
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}
.wa-cta-text {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.wa-cta-text strong {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}
.wa-cta-text span {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    line-height: 1.5;
}
.wa-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #075e54;
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.wa-cta-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: #075e54;
    text-decoration: none;
}
.wa-cta-btn svg {
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* WhatsApp Mid-Article (injected via PHP) */
.wa-mid-article {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 2px solid #86efac;
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    margin: 24px 0;
}
.wa-mid-article .wa-mid-icon {
    font-size: 32px;
    flex-shrink: 0;
}
.wa-mid-article .wa-mid-text {
    flex: 1;
    font-size: 14px;
    color: #166534;
    line-height: 1.5;
}
.wa-mid-article .wa-mid-text strong {
    display: block;
    font-size: 15px;
    color: #14532d;
    margin-bottom: 2px;
}
.wa-mid-article .wa-mid-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}
.wa-mid-article .wa-mid-btn:hover {
    background: #128c7e;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* WhatsApp Footer Band */
.wa-footer-band {
    background: linear-gradient(135deg, #075e54, #25d366);
    padding: 28px 24px;
    text-align: center;
    margin: 0 -24px;
}
.wa-footer-band h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}
.wa-footer-band p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-bottom: 16px;
}
.wa-footer-band .wa-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #075e54;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s;
}
.wa-footer-band .wa-footer-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    color: #075e54;
    text-decoration: none;
}

/* WhatsApp Float Enhanced */
/* Instagram Float - Sol Alt */
.instagram-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(131, 58, 180, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: igFloat 3s ease-in-out infinite;
}
.instagram-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(131, 58, 180, 0.6);
}
@keyframes igFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.instagram-float .ig-float-tooltip {
    position: absolute;
    left: 72px;
    background: #fff;
    color: #333;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.instagram-float .ig-float-tooltip::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #fff;
}
.instagram-float:hover .ig-float-tooltip {
    opacity: 1;
}

/* WhatsApp Float - Sağ Alt */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: waFloat 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}
@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.whatsapp-float .wa-tooltip {
    position: absolute;
    right: 72px;
    background: #fff;
    color: #333;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.whatsapp-float .wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
}
.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}

@media (max-width: 768px) {
    .wa-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 18px;
        gap: 14px;
    }
    .wa-cta-icon { width: 52px; height: 52px; }
    .wa-cta-icon svg { width: 28px; height: 28px; }
    .wa-cta-text strong { font-size: 15px; }
    .wa-cta-text span { font-size: 12px; }
    .wa-cta-btn { padding: 12px 24px; font-size: 14px; width: 100%; justify-content: center; }
    .wa-mid-article { flex-direction: column; text-align: center; gap: 10px; padding: 14px 16px; }
    .wa-mid-article .wa-mid-btn { width: 100%; justify-content: center; }
    .wa-footer-band { padding: 20px 16px; margin: 0 -16px; }
    .wa-footer-band h3 { font-size: 17px; }
    .wa-footer-band .wa-footer-btn { padding: 12px 28px; font-size: 14px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* INSTAGRAM FEED (astrolojijuno)   */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ig-feed-section {
    margin: 36px 0 24px;
}
.ig-feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
    gap: 12px;
}
.ig-feed-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ig-feed-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 2px 8px rgba(131,58,180,0.3);
}
.ig-feed-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    display: block;
}
.ig-feed-name:hover { color: #c13584; text-decoration: none; }
.ig-feed-bio {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
}
.ig-feed-follow {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}
.ig-feed-follow:hover {
    opacity: 0.9;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Grid - 3 sütun kare resimler (astrolojijuno tarzı) */
.ig-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    border-radius: 4px;
    overflow: hidden;
}
.ig-feed-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    text-decoration: none;
    display: block;
    cursor: pointer;
}
.ig-feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.ig-feed-item:hover img {
    transform: scale(1.08);
}
.ig-feed-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}
.ig-feed-item:hover .ig-feed-overlay {
    opacity: 1;
}
.ig-feed-item:hover {
    text-decoration: none;
}

.ig-feed-bottom {
    text-align: center;
    margin-top: 16px;
}
.ig-feed-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c13584;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 24px;
    border: 2px solid #c13584;
    border-radius: 8px;
    transition: all 0.3s;
}
.ig-feed-more:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    border-color: transparent;
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .ig-feed-grid { grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .ig-feed-header { padding: 12px 14px; }
    .ig-feed-follow { padding: 7px 16px; font-size: 12px; }
    .ig-feed-more { font-size: 13px; padding: 8px 18px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* SHOP / PRODUCT                   */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.product-gallery {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff, #c7d2fe);
    padding: 48px;
    text-align: center;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-placeholder {
    font-size: 100px;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.product-info { padding: 32px; }
.product-title { font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -0.3px; }
.product-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 16px;
}
.product-price .old-price {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}
.product-desc { font-size: 14px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.product-features { list-style: none; padding: 0; margin: 0 0 24px; }
.product-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-features li .check { color: var(--green); font-weight: bold; }
.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-bg), #fef3c7);
    color: var(--gold);
    border: 1px solid #fde68a;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

/* Order Form */
.order-form {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-top: 24px;
    box-shadow: var(--shadow);
}
.order-form h2 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 20px; }
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 11px 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    border-radius: var(--radius);
    outline: none;
    transition: all var(--transition);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.form-field textarea { min-height: 80px; resize: vertical; }
.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: var(--radius);
    transition: all var(--transition);
    margin-top: 10px;
}
.btn-order:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Order Success */
.order-success {
    background: var(--green-bg);
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    margin: 24px 0;
}
.order-success .icon { font-size: 56px; margin-bottom: 16px; }
.order-success h2 { color: var(--green); margin-bottom: 10px; }
.order-success p { color: var(--text-light); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* BUTTONS                          */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
}
.btn-primary-custom:hover { background: var(--primary-dark); color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), #b45309);
    color: #fff;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
}
.btn-gold:hover { opacity: 0.9; color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* FOOTER                           */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
    max-width: var(--max-width);
    margin: 40px auto 0;
    padding: 32px 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-links { margin-bottom: 14px; display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; }
.footer-links a {
    color: var(--text-light);
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all var(--transition);
    font-weight: 500;
}
.footer-links a:hover { background: var(--primary-bg); color: var(--primary); text-decoration: none; }
.footer-social { margin-bottom: 14px; display: flex; justify-content: center; gap: 16px; }
.footer-social a { color: var(--text-muted); font-size: 13px; font-weight: 500; transition: color var(--transition); }
.footer-social a:hover { color: var(--primary); }
.site-footer p { font-size: 12px; color: var(--text-muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* WHATSAPP FLOAT                   */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--whatsapp);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); text-decoration: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* RESPONSIVE                       */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 769px) {
    .site-nav { display: flex !important; }
    .menu-toggle { display: none !important; }
}

@media (max-width: 768px) {
    html { font-size: 14px; }
    .header-inner { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
    .site-logo { font-size: 18px; flex: 1; }
    .site-logo .logo-sub { font-size: 9px; }
    .header-search { order: 3; width: 100%; }
    .header-search input { width: 100%; flex: 1; padding: 11px 14px; font-size: 14px; }
    .header-search button { padding: 11px 16px; font-size: 14px; }
    .menu-toggle { display: block; order: 2; }

    .site-nav { display: none; }
    .site-nav.active { display: block; }
    .site-nav-inner { flex-direction: column; padding: 0; }
    .nav-link { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--border); }

    .content-wrapper { padding: 0 16px; }
    .page-content { padding: 20px 0; }
    .page-title { font-size: 22px; }

    .hero-immersive { min-height: auto; }
    .hero-content { padding: 32px 16px 20px; }
    .hero-badge-top { font-size: 10px; padding: 6px 14px; margin-bottom: 16px; }
    .hero-title { font-size: 26px; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 12px; }
    .hero-desc { font-size: 13px; margin-bottom: 20px; }
    .hero-actions { gap: 10px; margin-bottom: 24px; }
    .hero-btn { padding: 12px 20px; font-size: 14px; }
    .hero-stats-row { padding: 14px 4px; max-width: 100%; }
    .hero-stat-num { font-size: 20px; }
    .hero-stat-label { font-size: 10px; letter-spacing: 1px; }
    .hero-stat-divider { height: 28px; }
    .hero-trust { gap: 8px; font-size: 10px; padding: 10px 16px 14px; }
    .symptom-ticker-label { padding: 10px 12px; font-size: 10px; }
    .symptom-ticker-track span { padding: 10px 16px; font-size: 12px; }

    .home-grid { grid-template-columns: 1fr; }
    .home-sidebar { position: static; }

    .cta-bar { flex-direction: column; }
    .cta-card { min-width: auto; }

    .section-title { font-size: 18px; }
    .category-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .category-card { padding: 12px; }

    .wiki-article-item { padding: 16px 18px; }
    .wiki-article-item h3 { font-size: 15px; }
    .wiki-article-item:hover { transform: none; }

    .toc-box { max-width: 100%; display: block; }

    .search-box-big { max-width: 100%; flex-direction: column; }
    .search-box-big input { border-radius: var(--radius) var(--radius) 0 0; border-bottom: none; }
    .search-box-big button { border-radius: 0 0 var(--radius) var(--radius); }

    .wiki-form { max-width: 100%; }
    .wiki-form .btn-send { width: 100%; text-align: center; }

    .form-grid { grid-template-columns: 1fr; }
    .product-gallery { min-height: 200px; padding: 24px; }
    .product-placeholder { font-size: 72px; }
    .product-info { padding: 24px; }
    .product-title { font-size: 22px; }
    .product-price { font-size: 26px; }
    .order-form { padding: 24px; }
    .btn-order { width: 100%; justify-content: center; }

    .footer-links { flex-direction: column; gap: 2px; }
    .footer-links a { padding: 8px 12px; }

    .instagram-float { width: 52px; height: 52px; bottom: 16px; left: 16px; }
    .instagram-float .ig-float-tooltip { display: none; }
    .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}

@media (max-width: 400px) {
    .site-logo { font-size: 16px; }
    .site-logo .logo-sub { display: none; }
    .page-title { font-size: 20px; }
    .hero-title { font-size: 22px; }
    .hero-title br { display: none; }
    .hero-desc { font-size: 12px; }
    .hero-stats-row { flex-wrap: wrap; gap: 4px; padding: 10px 4px; }
    .hero-stat-divider { display: none; }
    .hero-stat-item { min-width: 45%; }
    .hero-stat-num { font-size: 18px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-btn { width: 100%; justify-content: center; padding: 11px 16px; font-size: 13px; }
    .hero-badge-top { display: none; }
    .symptom-ticker-wrapper { flex-direction: column; }
    .symptom-ticker-label { width: 100%; justify-content: center; }
    .hero-trust { display: none; }
    .category-grid { grid-template-columns: 1fr; }
}
