/* ===== RESET & ROOT ===== */
:root {
    --primary: #6c3bff;
    --primary-dark: #5429e0;
    --primary-light: #8b5cf6;
    --accent: #00d4aa;
    --accent-dark: #00b894;
    --dark: #0a0a18;
    --dark2: #0f0f22;
    --dark3: #13132a;
    --card: rgba(255,255,255,.05);
    --card-hover: rgba(255,255,255,.08);
    --border: rgba(255,255,255,.08);
    --border-hover: rgba(108,59,255,.4);
    --text: #eeeeff;
    --text2: #c8c8e8;
    --muted: rgba(255,255,255,.45);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 32px rgba(0,0,0,.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.5);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2px;
}

/* ===== HEADER ===== */
header {
    background: rgba(10,10,24,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 16px;
}
.logo {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -.3px;
}
.logo span { color: var(--primary-light); }
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.header-nav a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    transition: all .2s;
}
.header-nav a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.header-nav .btn-login {
    background: var(--primary);
    color: #fff;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
}
.header-nav .btn-login:hover { background: var(--primary-dark); color: #fff; }
.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    transition: all .2s;
}
.cart-btn:hover { border-color: var(--primary-light); color: var(--primary-light); }
.cart-count {
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}
.cart-count.hidden { display: none; }

/* ===== HERO ===== */
.hero {
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 100% 60% at 50% -5%, rgba(108,59,255,.25) 0%, transparent 65%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236c3bff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text { position: relative; z-index: 1; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(108,59,255,.15);
    border: 1px solid rgba(108,59,255,.3);
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: .4px;
    text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 460px;
}
.hero-search {
    display: flex;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    overflow: hidden;
    max-width: 480px;
    margin-bottom: 28px;
    transition: border-color .2s;
}
.hero-search:focus-within { border-color: rgba(108,59,255,.5); }
.hero-search input {
    flex: 1;
    background: none;
    border: none;
    padding: 14px 18px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
}
.hero-search input::placeholder { color: var(--muted); }
.hero-search button {
    background: var(--primary);
    border: none;
    padding: 14px 22px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: background .2s;
    white-space: nowrap;
}
.hero-search button:hover { background: var(--primary-dark); }
.hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-val {
    font-size: 22px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.hero-stat-lbl { font-size: 12px; color: var(--muted); margin-top: 3px; }
.hero-visual {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.hero-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 20px;
    transition: transform .3s;
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card:nth-child(2) { margin-top: 24px; }
.hero-card:nth-child(4) { margin-top: -24px; }
.hero-card-icon { font-size: 32px; margin-bottom: 10px; }
.hero-card-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.hero-card-price { font-size: 16px; font-weight: 800; color: var(--accent); }

/* ===== TRUST BAR ===== */
.trust-bar {
    background: rgba(255,255,255,.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}
.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
}
.trust-item span { font-size: 18px; }

/* ===== SECTION HEADER ===== */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
    flex-wrap: wrap;
}
.section-title { font-size: 22px; font-weight: 800; letter-spacing: -.4px; }
.section-title small {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 4px;
    letter-spacing: .2px;
    text-transform: uppercase;
}
.section-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s;
}
.section-link:hover { gap: 8px; }

/* ===== CATEGORY PILLS ===== */
.cat-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    transition: all .2s;
    white-space: nowrap;
}
.cat-btn:hover { background: rgba(108,59,255,.1); border-color: rgba(108,59,255,.3); color: var(--primary-light); }
.cat-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ===== PRODUCT GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}
.product-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .25s;
    position: relative;
}
.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.product-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    position: relative;
    flex-shrink: 0;
}
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.product-badge.hot { background: #ff4d6d; }
.product-badge.new { background: var(--accent-dark); }
.product-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.product-name { font-size: 14px; font-weight: 700; line-height: 1.35; }
.product-desc { font-size: 12px; color: var(--muted); line-height: 1.5; flex: 1; }
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.product-price { font-size: 18px; font-weight: 900; color: var(--accent); }
.product-old-price { font-size: 11px; color: var(--muted); text-decoration: line-through; }
.product-actions { display: flex; gap: 6px; }
.btn-cart {
    background: rgba(108,59,255,.15);
    border: 1px solid rgba(108,59,255,.3);
    color: var(--primary-light);
    border-radius: 9px;
    padding: 8px 10px;
    font-size: 14px;
    transition: all .2s;
}
.btn-cart:hover { background: rgba(108,59,255,.3); }
.btn-buy {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    transition: background .2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.btn-buy:hover { background: var(--primary-dark); }
.stock-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-block;
}
.stock-ok { background: rgba(0,212,170,.12); color: #00d4aa; }
.stock-low { background: rgba(245,158,11,.12); color: #f59e0b; }
.stock-out { background: rgba(255,77,109,.12); color: #ff4d6d; }

/* ===== FEATURED PRODUCTS (big cards) ===== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}
.featured-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .3s;
    position: relative;
    text-decoration: none;
    color: inherit;
}
.featured-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(108,59,255,.25);
}
.featured-card-img {
    width: 100%;
    height: 160px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
    overflow: hidden;
}
.featured-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.55) 100%);
}
.featured-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.featured-card-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.featured-card-name {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
}
.featured-card-desc {
    font-size: 12px;
    color: var(--muted);
    flex: 1;
    line-height: 1.5;
}
.featured-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.featured-card-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--accent);
}
.featured-card-cta {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: background .2s;
}
.featured-card:hover .featured-card-cta { background: var(--primary-dark); }
.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff4d6d, #ff8c42);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255,77,109,.4);
}

/* ===== CATEGORY CARDS ===== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 48px;
}
.cat-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: all .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.cat-card:hover { border-color: var(--border-hover); background: rgba(108,59,255,.08); transform: translateY(-3px); }
.cat-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(108,59,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.cat-card-name { font-size: 13px; font-weight: 700; }
.cat-card-count { font-size: 11px; color: var(--muted); }

/* ===== HOW IT WORKS ===== */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.how-step {
    text-align: center;
    padding: 28px 20px;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
}
.how-step::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 18px;
    z-index: 1;
}
.how-step:last-child::after { display: none; }
.how-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.how-icon { font-size: 32px; margin-bottom: 12px; }
.how-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.how-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ===== PAYMENT METHODS STRIP ===== */
.pay-strip {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.pay-strip-title { font-size: 14px; font-weight: 700; color: var(--muted); white-space: nowrap; }
.pay-strip-methods { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.pay-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    padding: 48px 0;
}
.product-detail-img {
    height: 300px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    margin-bottom: 28px;
}
.detail-info h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 12px; letter-spacing: -.5px; }
.detail-desc { color: var(--text2); font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.detail-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.detail-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text2);
}
.buy-box {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: sticky;
    top: 80px;
}
.buy-box .price { font-size: 36px; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.buy-box .old-price { font-size: 14px; color: var(--muted); text-decoration: line-through; margin-bottom: 20px; }
.buy-box .btn-buy-lg {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 15px;
    font-weight: 800;
    border-radius: 12px;
    text-align: center;
    background: var(--primary);
    color: #fff;
    border: none;
    margin-bottom: 10px;
    transition: background .2s;
}
.buy-box .btn-buy-lg:hover { background: var(--primary-dark); }
.buy-box .btn-cart-lg {
    display: block;
    width: 100%;
    padding: 13px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    text-align: center;
    background: rgba(108,59,255,.12);
    border: 1px solid rgba(108,59,255,.3);
    color: var(--primary-light);
    margin-bottom: 20px;
    transition: all .2s;
}
.buy-box .btn-cart-lg:hover { background: rgba(108,59,255,.25); }
.delivery-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
    padding: 9px 0;
    border-top: 1px solid var(--border);
}

/* ===== CART PAGE ===== */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    padding: 48px 0;
    align-items: start;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 12px;
    transition: border-color .2s;
}
.cart-item:hover { border-color: rgba(255,255,255,.12); }
.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cart-item-meta { font-size: 12px; color: var(--muted); }
.cart-item-price { font-size: 18px; font-weight: 800; color: var(--accent); white-space: nowrap; }
.cart-item-remove {
    background: rgba(255,77,109,.1);
    border: 1px solid rgba(255,77,109,.2);
    color: #ff4d6d;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 13px;
    transition: all .2s;
}
.cart-item-remove:hover { background: rgba(255,77,109,.25); }
.cart-summary {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky;
    top: 80px;
}
.cart-summary h3 { font-size: 16px; font-weight: 800; margin-bottom: 20px; }
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text2);
}
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 800;
    padding: 16px 0 20px;
    color: var(--accent);
}
.cart-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--muted);
}
.cart-empty-icon { font-size: 64px; margin-bottom: 16px; }
.cart-empty h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }

/* ===== FORMS ===== */
.form-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    max-width: 480px;
    margin: 0 auto;
}
.form-card h2 { font-size: 22px; font-weight: 800; margin-bottom: 28px; text-align: center; }
.field { margin-bottom: 16px; }
.field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 7px;
}
.field input, .field select, .field textarea {
    width: 100%;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); }
.field input::placeholder { color: var(--muted); }
.btn-full {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    transition: background .2s;
}
.btn-full:hover { background: var(--primary-dark); }
.form-link { text-align: center; font-size: 13px; color: var(--muted); margin-top: 18px; }
.form-link a { color: var(--primary-light); font-weight: 700; }

/* ===== ALERTS ===== */
.alert { padding: 13px 16px; border-radius: var(--radius-sm); font-size: 13px; margin-bottom: 16px; }
.alert-success { background: rgba(0,212,170,.1); border: 1px solid rgba(0,212,170,.3); color: #00d4aa; }
.alert-error { background: rgba(255,77,109,.1); border: 1px solid rgba(255,77,109,.3); color: #ff4d6d; }
.alert-warning { background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.3); color: #f59e0b; }

/* ===== PAYMENT PAGE ===== */
.pay-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.pay-method {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.04);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    cursor: pointer;
    transition: all .2s;
}
.pay-method:hover { border-color: rgba(108,59,255,.3); }
.pay-method input[type=radio] { accent-color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }
.pay-method.selected { border-color: var(--primary); background: rgba(108,59,255,.08); }
.pay-method-icon { font-size: 24px; }
.pay-method-label { font-weight: 700; font-size: 14px; }
.pay-method-sub { font-size: 12px; color: var(--muted); }
.pay-detail {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.9;
}
.copy-btn {
    background: rgba(108,59,255,.15);
    border: 1px solid rgba(108,59,255,.3);
    color: var(--primary-light);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
    transition: all .2s;
}
.copy-btn:hover { background: rgba(108,59,255,.3); }

/* ===== CUSTOMER PANEL ===== */
.panel-grid { display: grid; grid-template-columns: 240px 1fr; gap: 28px; padding: 48px 0; }
.panel-sidebar {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 80px;
}
.panel-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    transition: all .2s;
    margin-bottom: 3px;
}
.panel-nav a:hover, .panel-nav a.active { background: rgba(108,59,255,.15); color: var(--primary-light); }
.order-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 14px;
    transition: border-color .2s;
}
.order-card:hover { border-color: rgba(255,255,255,.12); }
.order-card-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.order-card-head h4 { font-size: 15px; font-weight: 700; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge-success { background: rgba(0,212,170,.12); color: #00d4aa; }
.badge-warning { background: rgba(245,158,11,.12); color: #f59e0b; }
.badge-danger { background: rgba(255,77,109,.12); color: #ff4d6d; }
.badge-info { background: rgba(108,59,255,.12); color: #8b5cf6; }
.badge-muted { background: rgba(255,255,255,.07); color: var(--muted); }
.delivery-box {
    background: rgba(0,212,170,.06);
    border: 1px solid rgba(0,212,170,.2);
    border-radius: 10px;
    padding: 16px;
    margin-top: 14px;
    font-family: monospace;
    font-size: 13px;
    white-space: pre-wrap;
    word-break: break-all;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 56px 0 28px;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
    align-items: start;
}
.footer-brand .logo { font-size: 18px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 14px; color: var(--text2); }
.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
    transition: color .2s;
}
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--muted);
}
.footer-pay { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-pay-pill {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .how-grid { grid-template-columns: repeat(2, 1fr); }
    .how-step::after { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .product-detail { grid-template-columns: 1fr; }
    .buy-box { position: static; }
    .panel-grid { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
}
@media (max-width: 768px) {
    .section { padding: 48px 0; }
    .hero { padding: 60px 0 48px; }
    .hero h1 { font-size: 2rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .how-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-grid .footer-brand { grid-column: 1 / -1; }
    .trust-items { gap: 20px; }
    .featured-grid { grid-template-columns: 1fr; }
    .header-nav .nav-link { display: none; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 16px; }
    .form-card { padding: 24px 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ── Ürün Sekmeleri ─────────────────────────────────────── */
.prod-tab-nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 0;
    flex-wrap: wrap;
}
.prod-tab-btn {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .2s, border-color .2s;
    font-family: inherit;
    white-space: nowrap;
}
.prod-tab-btn:hover { color: var(--text); }
.prod-tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }

.prod-tab-panel { display: none; padding: 28px 0; }
.prod-tab-panel.active { display: block; }

/* ── Açıklama ───────────────────────────────────────────── */
.prod-desc-content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 28px;
}
.prod-specs {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.prod-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
}
.prod-spec-row:last-child { border-bottom: none; }
.prod-spec-row span { color: var(--muted); }
.prod-spec-row strong { color: var(--text); }

/* ── Teslimat Adımları ──────────────────────────────────── */
.delivery-steps {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}
.delivery-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.delivery-step:last-child { border-bottom: none; }
.delivery-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.delivery-step-text { font-size: 14px; color: var(--text); padding-top: 4px; }

.delivery-faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
}
.faq-q { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.faq-a { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── Yorumlar ───────────────────────────────────────────── */
.reviews-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.review-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-author { font-size: 14px; font-weight: 700; }
.review-date { font-size: 11px; color: var(--muted); margin-top: 2px; }
.review-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.review-body { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Yorum formu */
.review-form-wrap {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 8px;
}
.review-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}
@media (max-width: 600px) { .review-form-grid { grid-template-columns: 1fr; } }

/* Yıldız seçici */
.star-picker {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
    padding: 8px 0;
}
.star-picker input { display: none; }
.star-picker label {
    font-size: 26px;
    color: var(--border);
    cursor: pointer;
    transition: color .15s;
}
.star-picker input:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label { color: #f59e0b; }

.btn-primary-sm {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: opacity .2s;
}
.btn-primary-sm:hover { opacity: .85; }

.alert-box {
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}
.alert-box.alert-success { background: rgba(0,212,170,.1); border: 1px solid rgba(0,212,170,.3); color: #00d4aa; }
.alert-box.alert-error   { background: rgba(255,77,109,.1); border: 1px solid rgba(255,77,109,.3); color: #ff4d6d; }

/* ── Statik Sayfa ───────────────────────────────────────── */
.static-content {
    font-size: 15px;
    line-height: 2;
    color: var(--muted);
}
.static-content strong { color: var(--text); }

/* ── Form 2 Kolon ───────────────────────────────────────── */
.form-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-2col .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-2col { grid-template-columns: 1fr; } }

/* ===== BANNER — ÜST SLIDER ===== */
.banner-top-wrap { padding: 0 0 32px; }

.banner-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 280px;
    background: var(--dark3);
}

.banner-slide {
    display: none;
    position: relative;
    min-height: 280px;
    width: 100%;
    overflow: hidden;
}
.banner-slide.active { display: block; animation: bannerIn .45s ease; }
@keyframes bannerIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }

/* Tam arka plan görseli */
.banner-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.banner-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.banner-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.1) 100%);
}

/* İçerik */
.banner-slide-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 280px;
    padding: 40px 48px;
    gap: 12px;
    max-width: 600px;
}
.banner-title {
    font-size: clamp(20px, 3.5vw, 32px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.5px;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.banner-sub {
    font-size: clamp(13px, 1.8vw, 15px);
    color: rgba(255,255,255,.82);
    line-height: 1.6;
    max-width: 440px;
}
.banner-btn {
    display: inline-block;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.45);
    color: #fff;
    padding: 11px 26px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background .2s, border-color .2s;
    margin-top: 4px;
}
.banner-btn:hover { background: rgba(255,255,255,.3); border-color: rgba(255,255,255,.7); }

/* Ok + Dots */
.banner-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}
.banner-arrow {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}
.banner-arrow:hover { background: rgba(255,255,255,.25); }
.banner-dots { display: flex; align-items: center; gap: 8px; }
.banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    border: none;
    cursor: pointer;
    transition: all .25s;
    padding: 0;
}
.banner-dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* ===== BANNER — ALT COLUMNS ===== */
.banner-columns {
    display: grid;
    grid-template-columns: repeat(var(--cols, 3), 1fr);
    gap: 16px;
}
.banner-col {
    position: relative;
    min-height: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transition: transform .25s, box-shadow .25s;
}
.banner-col:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.banner-col-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.banner-col-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.banner-col-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.banner-col-content {
    position: relative;
    z-index: 1;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.banner-col-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.banner-col-sub {
    font-size: 12px;
    color: rgba(255,255,255,.78);
    line-height: 1.5;
}
.banner-col-btn {
    display: inline-block;
    margin-top: 8px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-self: flex-start;
    transition: background .2s;
}
.banner-col:hover .banner-col-btn { background: rgba(255,255,255,.3); }

/* Responsive — Banner */
@media (max-width: 768px) {
    .banner-slider { min-height: 200px; }
    .banner-slide { min-height: 200px; }
    .banner-slide-content { min-height: 200px; padding: 28px 24px; gap: 10px; }
    .banner-columns { grid-template-columns: 1fr 1fr; }
    .banner-col { min-height: 150px; }
}
@media (max-width: 480px) {
    .banner-slider { min-height: 180px; }
    .banner-slide { min-height: 180px; }
    .banner-slide-content { min-height: 180px; padding: 22px 18px; }
    .banner-title { font-size: 18px; }
    .banner-sub { font-size: 12px; }
    .banner-btn { padding: 9px 18px; font-size: 12px; }
    .banner-columns { grid-template-columns: 1fr; }
    .banner-col { min-height: 140px; }
    .banner-col-title { font-size: 14px; }
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    text-align: center;
}
@media (max-width: 600px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }
.stat-item {}
.stat-val { font-size: clamp(24px, 4vw, 36px); font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

/* ===== REVIEWS SHOWCASE ===== */
.reviews-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.review-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    transition: border-color .2s;
}
.review-card:hover { border-color: var(--border-hover); }
.review-stars { font-size: 14px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--text2); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 700; }
.review-product { font-size: 11px; color: var(--muted); }

/* ===== FOOTER YENİ ===== */
.footer-pay-bar {
    border-top: 1px solid var(--border);
    padding: 20px 0 0;
    margin-top: 40px;
    margin-bottom: 0;
}
.footer-pay-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

/* ===== STATİK SAYFA LAYOUT ===== */
.static-page-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 32px;
    max-width: 1000px;
}
@media (max-width: 768px) {
    .static-page-layout { grid-template-columns: 1fr; }
    .static-page-aside { order: -1; }
}
.static-page-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    margin-bottom: 28px;
    line-height: 1.2;
}
.static-content { color: var(--text2); }
.page-section-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin: 28px 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.page-section-title:first-child { margin-top: 0; }
.page-para { font-size: 14px; line-height: 1.8; margin-bottom: 10px; }
.page-list { list-style: none; margin: 8px 0 16px; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.page-list-item {
    font-size: 14px;
    padding: 8px 14px;
    background: rgba(255,255,255,.03);
    border-radius: 8px;
    border-left: 3px solid var(--border);
}
.page-list-item.ok { border-left-color: var(--accent); color: var(--text); }
.page-list-item.no { border-left-color: #ff4655; }
.page-step {
    font-size: 14px;
    padding: 10px 14px;
    background: rgba(108,59,255,.06);
    border-radius: 8px;
    margin-bottom: 6px;
    font-weight: 600;
}
.aside-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.aside-card h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--muted);
    margin-bottom: 14px;
}
.aside-link {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
    text-decoration: none;
    transition: background .15s, color .15s;
    margin-bottom: 2px;
}
.aside-link:hover, .aside-link.active {
    background: rgba(108,59,255,.12);
    color: var(--primary);
}

/* ===== İLETİŞİM SAYFASI ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
}
@media (max-width: 768px) {
    .contact-layout { grid-template-columns: 1fr; }
}
.contact-card-wrap {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 16px;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: background .15s;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item:hover { background: rgba(255,255,255,.03); }
.contact-info-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-info-label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 2px; }
.contact-info-val { font-size: 13px; font-weight: 700; }
.contact-trust {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-trust-item { font-size: 13px; color: var(--text2); display: flex; align-items: center; gap: 8px; }
.contact-trust-item span { font-size: 16px; }
.contact-form-wrap {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .contact-form-row { grid-template-columns: 1fr; } }

/* ===== YAYINCILAR SHOWCASE ===== */
.publishers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.publisher-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: all .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}
.publisher-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.publisher-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.1);
}
.publisher-name {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}
.publisher-platform {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-light);
    background: rgba(108,59,255,.12);
    border: 1px solid rgba(108,59,255,.2);
    padding: 3px 10px;
    border-radius: 20px;
}
.publisher-followers {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}
.publisher-category {
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
}

/* ===== FOOTER SOSYAL MEDYA ===== */
.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-pay-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s, color .2s;
    flex-shrink: 0;
    color: var(--muted);
}
.social-btn svg {
    width: 17px;
    height: 17px;
    display: block;
    flex-shrink: 0;
}
.social-btn:hover {
    color: var(--sc, #6c3bff);
    background: color-mix(in srgb, var(--sc, #6c3bff) 15%, transparent);
    border-color: color-mix(in srgb, var(--sc, #6c3bff) 45%, transparent);
    transform: translateY(-2px);
}
@supports not (color: color-mix(in srgb, red 50%, blue)) {
    .social-btn:hover {
        background: rgba(108,59,255,.2);
        border-color: rgba(108,59,255,.4);
    }
}
@media (max-width: 600px) {
    .footer-bottom-bar { flex-direction: column; align-items: flex-start; }
}
