/*
Theme Name: SoftKey Store
Theme URI: https://softkeystore.com
Author: SoftKey Store
Author URI: https://softkeystore.com
Description: Windows & Office License Key Store — EN/DE bilingual, responsive, SEO-optimized e-commerce theme.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: softkey-store
Tags: e-commerce, responsive, two-columns, custom-menu, featured-images, translation-ready
*/

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  background: #f8f7f4;
  color: #1a1a2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* === CSS VARIABLES === */
:root {
  --c-blue: #0057ff;
  --c-blue-dark: #003fcc;
  --c-blue-light: #e8eeff;
  --c-accent: #00d4aa;
  --c-accent-dark: #00a888;
  --c-orange: #ff6b35;
  --c-text: #1a1a2e;
  --c-text-muted: #6b7280;
  --c-bg: #f8f7f4;
  --c-white: #ffffff;
  --c-surface: #ffffff;
  --c-border: #e5e7eb;
  --c-bundle: #7c3aed;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --transition: 0.2s ease;
  --container: 1200px;
}

/* === UTILITIES === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background: var(--c-blue);
  color: #fff;
  text-align: center;
  padding: 10px 48px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.close-bar {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 20px; line-height: 1; opacity: .8;
}
.close-bar:hover { opacity: 1; }

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,247,244,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; gap: 24px;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 20px;
  color: var(--c-text); white-space: nowrap; flex-shrink: 0;
}
.logo-icon { font-size: 24px; color: var(--c-blue); }
.logo-accent { color: var(--c-blue); }

.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  display: block; padding: 6px 14px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500; color: var(--c-text);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover { background: var(--c-blue-light); color: var(--c-blue); }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  font-size: 13px; font-weight: 600; color: var(--c-text-muted);
  padding: 4px 8px; border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.lang-btn.active, .lang-btn:hover { color: var(--c-blue); background: var(--c-blue-light); }
.lang-sep { color: var(--c-border); font-size: 14px; }

.cart-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--c-surface); border: 1px solid var(--c-border);
  color: var(--c-text); transition: all var(--transition);
}
.cart-btn:hover { border-color: var(--c-blue); color: var(--c-blue); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--c-blue); color: #fff;
  font-size: 11px; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === CART DRAWER === */
.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0; width: 360px; z-index: 1000;
  background: var(--c-surface); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform 0.3s ease;
  display: flex; flex-direction: column;
}
.cart-drawer:not([hidden]) { display: flex; }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-inner { display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--c-border);
}
.cart-header h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; }
.cart-header button { font-size: 28px; color: var(--c-text-muted); line-height: 1; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { color: var(--c-text-muted); text-align: center; padding: 40px 0; }
.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--c-border);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 500; }
.cart-item-price { font-size: 13px; color: var(--c-text-muted); }
.cart-item-remove { color: var(--c-text-muted); font-size: 18px; line-height: 1; transition: color var(--transition); }
.cart-item-remove:hover { color: #ef4444; }
.cart-footer { padding: 16px 24px; border-top: 1px solid var(--c-border); }
.cart-total { display: flex; justify-content: space-between; align-items: center; font-size: 16px; margin-bottom: 14px; }
.cart-total strong { font-size: 22px; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--c-blue); }
.btn-full { width: 100%; justify-content: center; }
.cart-overlay { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,.4); }
.cart-overlay.visible { display: block; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif; font-size: 15px; font-weight: 600;
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--c-blue); color: #fff; border: 2px solid var(--c-blue); }
.btn-primary:hover { background: var(--c-blue-dark); border-color: var(--c-blue-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,87,255,.35); }
.btn-ghost { background: transparent; color: var(--c-text); border: 2px solid var(--c-border); }
.btn-ghost:hover { border-color: var(--c-blue); color: var(--c-blue); }
.btn-add-cart { width: 100%; margin-top: 16px; padding: 13px; font-size: 15px; }

/* === HERO === */
.hero {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 48px;
  min-height: calc(100vh - 118px);
  padding: 64px 24px 80px;
  max-width: var(--container); margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: var(--c-blue-light); color: var(--c-blue);
  font-size: 14px; font-weight: 600; padding: 6px 16px;
  border-radius: 100px; margin-bottom: 24px;
  border: 1px solid rgba(0,87,255,.2);
}
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(40px, 5vw, 68px); font-weight: 800;
  line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px;
}
.hero-accent { color: var(--c-blue); }
.hero-sub { font-size: 18px; color: var(--c-text-muted); max-width: 520px; line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 16px 24px; width: fit-content;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: var(--c-text); }
.stat span { font-size: 12px; color: var(--c-text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--c-border); }

.hero-visual { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; padding-right: 24px; flex-shrink: 0; }
.windows-card, .office-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px; width: 220px; box-shadow: var(--shadow-md);
}
.win-logo, .off-logo {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800;
}
.win-logo { background: var(--c-blue-light); color: var(--c-blue); }
.off-logo { background: #fff2e8; color: var(--c-orange); font-family: 'Plus Jakarta Sans', sans-serif; }
.win-info, .off-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.win-info span, .off-info span { font-size: 14px; font-weight: 600; }
.win-info small, .off-info small { font-size: 12px; color: var(--c-text-muted); }
.win-price, .off-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 800; color: var(--c-blue); }
.trust-badge { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; border-radius: 100px; padding: 8px 18px; font-size: 13px; font-weight: 600; }
.floating { animation: float 3s ease-in-out infinite; }
.delay-1 { animation-delay: .5s; }
.delay-2 { animation-delay: 1s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* === TRUST BAR === */
.trust-bar {
  background: var(--c-surface); border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border); padding: 18px 24px;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--c-text-muted); padding: 8px 28px; border-right: 1px solid var(--c-border); }
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--c-blue); flex-shrink: 0; }

/* === SECTION COMMON === */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.section-header p { font-size: 17px; color: var(--c-text-muted); max-width: 520px; margin: 0 auto; }

/* === PRODUCTS SECTION === */
.products-section { padding: 80px 0; }
.filter-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.tab { padding: 9px 22px; border-radius: 100px; border: 1.5px solid var(--c-border); font-size: 14px; font-weight: 600; color: var(--c-text-muted); background: var(--c-surface); transition: all var(--transition); }
.tab:hover { border-color: var(--c-blue); color: var(--c-blue); }
.tab.active { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.product-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 28px 24px 24px; position: relative; transition: all var(--transition); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(0,87,255,.2); }
.card-bundle { border-color: rgba(124,58,237,.3); }
.card-bundle:hover { border-color: var(--c-bundle); }

.product-badge { position: absolute; top: -12px; left: 24px; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.badge-popular { background: var(--c-blue); color: #fff; }
.badge-new { background: var(--c-accent); color: #fff; }
.badge-bundle { background: var(--c-bundle); color: #fff; }

.product-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; margin-bottom: 16px; flex-shrink: 0; }
.windows-icon { background: var(--c-blue-light); color: var(--c-blue); }
.office-icon { background: #fff2e8; color: var(--c-orange); font-family: 'Plus Jakarta Sans', sans-serif; }
.m365-icon { background: #f0fdf4; color: #166534; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; letter-spacing: -1px; }
.server-icon { background: #f5f3ff; color: var(--c-bundle); }

.product-info { flex: 1; display: flex; flex-direction: column; }
.product-category { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-text-muted); margin-bottom: 6px; }
.product-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.product-desc { font-size: 14px; color: var(--c-text-muted); margin-bottom: 14px; line-height: 1.6; }
.product-features { display: flex; flex-direction: column; gap: 5px; margin-bottom: 20px; flex: 1; }
.product-features li { font-size: 13px; color: var(--c-text); font-weight: 500; }

.product-pricing { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.price-old { font-size: 15px; color: var(--c-text-muted); text-decoration: line-through; }
.price-new { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 800; color: var(--c-blue); }
.price-save { font-size: 12px; font-weight: 700; background: #dcfce7; color: #166534; padding: 3px 10px; border-radius: 100px; }
.product-card.hidden { display: none; }

/* === HOW IT WORKS === */
.how-it-works { padding: 80px 0; background: var(--c-surface); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.steps-grid { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; }
.step { flex: 1; min-width: 220px; max-width: 300px; text-align: center; padding: 0 24px; }
.step-number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; font-weight: 800; color: var(--c-blue-light); line-height: 1; margin-bottom: 16px; }
.step-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--c-blue-light); color: var(--c-blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--c-text-muted); line-height: 1.7; }
.step-arrow { font-size: 28px; color: var(--c-border); align-self: flex-start; padding-top: 60px; flex-shrink: 0; }

/* === TESTIMONIALS === */
.testimonials { padding: 80px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 28px; transition: box-shadow var(--transition); }
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { font-size: 20px; color: #f59e0b; margin-bottom: 14px; }
.review-card p { font-size: 15px; line-height: 1.7; color: var(--c-text); margin-bottom: 20px; font-style: italic; }
.review-card footer { display: flex; flex-direction: column; gap: 2px; }
.review-card footer strong { font-size: 15px; font-weight: 700; }
.review-card footer span { font-size: 13px; color: var(--c-text-muted); }

/* === FAQ === */
.faq-section { padding: 80px 0; background: var(--c-surface); border-top: 1px solid var(--c-border); }
.faq-container { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; background: var(--c-bg); transition: border-color var(--transition); }
.faq-item[open] { border-color: var(--c-blue); }
.faq-item summary { padding: 18px 24px; font-size: 16px; font-weight: 600; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: color var(--transition); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; flex-shrink: 0; font-size: 22px; color: var(--c-blue); font-weight: 400; line-height: 1; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--c-blue); }
.faq-answer { padding: 0 24px 20px; font-size: 15px; color: var(--c-text-muted); line-height: 1.8; }

/* === CONTACT === */
.contact-section { padding: 80px 0; background: linear-gradient(135deg, #0057ff 0%, #003fcc 100%); color: #fff; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.contact-text h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.contact-text p { font-size: 17px; opacity: .88; line-height: 1.7; margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: #fff; opacity: .9; transition: opacity var(--transition); }
.contact-method:hover { opacity: 1; }
.cta-box { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); padding: 36px 32px; backdrop-filter: blur(10px); }
.cta-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; opacity: .7; margin-bottom: 10px; }
.cta-box h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.cta-box > p { font-size: 14px; opacity: .8; margin-bottom: 20px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { flex: 1; padding: 12px 16px; border-radius: var(--radius-sm); border: 1.5px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); color: #fff; font-size: 15px; font-family: inherit; outline: none; transition: border-color var(--transition); }
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { border-color: rgba(255,255,255,.6); }
.newsletter-form .btn-primary { background: #fff; color: var(--c-blue); border-color: #fff; flex-shrink: 0; }
.newsletter-form .btn-primary:hover { background: rgba(255,255,255,.9); box-shadow: none; }

/* === FOOTER === */
.site-footer { background: #0f0f1a; color: #d1d5db; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 64px 24px 48px; max-width: var(--container); margin: 0 auto; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: #9ca3af; max-width: 280px; margin-bottom: 20px; }
.payment-icons { display: flex; gap: 8px; }
.pay-icon { background: #1f2937; color: #9ca3af; font-size: 11px; font-weight: 700; padding: 6px 10px; border-radius: var(--radius-sm); border: 1px solid #374151; }
.footer-nav h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: #9ca3af; transition: color var(--transition); }
.footer-nav a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1f2937; padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: center; }
.footer-bottom p { font-size: 13px; color: #6b7280; text-align: center; }

/* === TOAST === */
.toast { position: fixed; bottom: 24px; right: 24px; z-index: 9999; background: #1a1a2e; color: #fff; padding: 14px 22px; border-radius: var(--radius-md); font-size: 14px; font-weight: 600; box-shadow: var(--shadow-lg); transform: translateY(100px); opacity: 0; transition: all 0.3s ease; pointer-events: none; }
.toast.show { transform: translateY(0); opacity: 1; }

/* === PAGE SPECIFIC === */
.page-hero { background: linear-gradient(135deg, #0057ff 0%, #003fcc 100%); color: #fff; padding: 80px 24px; text-align: center; }
.page-hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(32px, 5vw, 56px); font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; }
.page-hero p { font-size: 18px; opacity: .88; max-width: 560px; margin: 0 auto; }
.page-breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--c-border); background: var(--c-surface); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--c-text-muted); }
.breadcrumb a { color: var(--c-blue); }

/* === LEGAL PAGES === */
.legal-body { max-width: 760px; margin: 0 auto; padding: 60px 24px; }
.legal-body h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.legal-body .updated { color: var(--c-text-muted); font-size: 14px; margin-bottom: 40px; }
.legal-body h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; margin: 32px 0 12px; }
.legal-body p { font-size: 15px; line-height: 1.8; color: var(--c-text); margin-bottom: 12px; }
.legal-body ul { padding-left: 20px; margin-bottom: 12px; }
.legal-body ul li { font-size: 15px; line-height: 1.8; margin-bottom: 4px; }

/* === CHECKOUT === */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; padding: 48px 24px; max-width: var(--container); margin: 0 auto; }
.checkout-form h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--c-text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--c-border); font-size: 15px; font-family: inherit; background: var(--c-surface); color: var(--c-text); outline: none; transition: border-color var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--c-blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.order-summary { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 28px; height: fit-content; position: sticky; top: 84px; }
.order-summary h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.summary-line { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--c-border); }
.summary-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; padding-top: 16px; margin-top: 4px; }
.summary-total span:last-child { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--c-blue); font-size: 22px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 60px 24px; }
  .hero-visual { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .checkout-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav { display: none; position: fixed; inset: 0; top: 68px; background: var(--c-bg); z-index: 99; padding: 24px; flex-direction: column; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 14px 16px; font-size: 17px; }
  .trust-bar { display: grid; grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--c-border); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--c-border); }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding-top: 0; align-self: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 32px; }
  .footer-brand { grid-column: auto; }
  .newsletter-form { flex-direction: column; }
  .cart-drawer { width: 100%; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 16px; }
  .stat-divider { width: 80%; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .products-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* === PAGE HERO VARIANTS === */
.page-hero { color: #fff; padding: 80px 24px; text-align: center; }
.page-hero--blue { background: linear-gradient(135deg, #0057ff 0%, #003fcc 100%); }
.page-hero--orange { background: linear-gradient(135deg, #ff6b35 0%, #e04e18 100%); }

/* === CHECKOUT PAGE === */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; padding: 48px 24px; max-width: var(--container); margin: 0 auto; }
.checkout-form h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 24px; }

@media (max-width: 860px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}

/* === LEGAL CONTENT (WP editor output) === */
.legal-content h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; margin: 32px 0 12px; }
.legal-content p { font-size: 15px; line-height: 1.8; color: var(--c-text); margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; margin-bottom: 12px; }
.legal-content ul li { font-size: 15px; line-height: 1.8; margin-bottom: 4px; }

/* === PAGE HEADER (breadcrumb + title, no hero) === */
.page-header { padding: 36px 0 0; background: var(--c-bg); }
.breadcrumb-nav { padding: 0 0 8px; }
.breadcrumb-list { display: flex; align-items: center; gap: 6px; list-style: none; flex-wrap: wrap; font-size: 13px; padding: 0; margin: 0; }
.breadcrumb-list li { display: flex; align-items: center; gap: 6px; color: var(--c-text-muted); }
.breadcrumb-list li + li::before { content: '/'; color: var(--c-border); }
.breadcrumb-list a { color: var(--c-blue); font-weight: 500; text-decoration: none; }
.breadcrumb-list a:hover { text-decoration: underline; }

/* === FILTER BAR === */
.filter-bar { display: flex; align-items: center; gap: 8px; padding: 28px 0 24px; flex-wrap: wrap; }
.filter-bar-label { font-size: 13px; font-weight: 600; color: var(--c-text-muted); flex-shrink: 0; }
.filter-chip { padding: 7px 18px; border-radius: 100px; border: 1.5px solid var(--c-border); font-size: 13px; font-weight: 600; color: var(--c-text-muted); background: var(--c-surface); cursor: pointer; transition: all .15s; white-space: nowrap; }
.filter-chip:hover { border-color: var(--c-text); color: var(--c-text); }
.filter-chip.on { background: var(--c-text); color: #fff; border-color: var(--c-text); }
.filter-sort { margin-left: auto; padding: 7px 14px; border: 1.5px solid var(--c-border); border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; color: var(--c-text-muted); background: var(--c-surface); cursor: pointer; outline: none; }
.filter-sort:focus { border-color: var(--c-blue); }

/* === CATEGORY LABEL === */
.cat-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-text); padding-bottom: 14px; margin-bottom: 24px; border-bottom: 2px solid var(--c-text); display: flex; align-items: center; justify-content: space-between; }
.cat-label-count { font-size: 12px; color: var(--c-text-muted); font-weight: 500; text-transform: none; letter-spacing: 0; }
.cat-section { margin-bottom: 56px; }

/* Product title clickable */
.product-card h3 { cursor: pointer; transition: color .15s; }
.product-card h3:hover { color: var(--c-blue); }

/* === PRODUCT MODAL === */
.sk-modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; pointer-events: none; transition: opacity .2s; }
.sk-modal-overlay.open { opacity: 1; pointer-events: all; }
.sk-modal { background: var(--c-surface); border-radius: var(--radius-lg); width: 100%; max-width: 680px; max-height: 90vh; overflow-y: auto; transform: translateY(20px) scale(.98); transition: transform .25s ease; position: relative; }
.sk-modal-overlay.open .sk-modal { transform: translateY(0) scale(1); }
.sk-modal-close { position: sticky; top: 12px; float: right; margin: 12px 12px 0 0; width: 32px; height: 32px; border-radius: 50%; background: var(--c-bg); border: 1px solid var(--c-border); font-size: 18px; color: var(--c-text-muted); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; transition: all .15s; }
.sk-modal-close:hover { background: #fee2e2; color: #dc2626; }
.sk-modal-head { display: flex; align-items: flex-start; gap: 20px; padding: 20px 28px 20px; border-bottom: 1px solid var(--c-border); }
.sk-modal-icon { width: 60px; height: 60px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800; flex-shrink: 0; }
.sk-modal-meta { flex: 1; min-width: 0; }
.sk-modal-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-text-muted); margin-bottom: 4px; }
.sk-modal-title { font-size: 22px; font-weight: 700; line-height: 1.3; color: var(--c-text); }
.sk-modal-body { padding: 24px 28px; }
.sk-modal-desc { font-size: 15px; color: var(--c-text-muted); line-height: 1.75; margin-bottom: 22px; }
.sk-modal-feats-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-text-muted); margin-bottom: 10px; }
.sk-modal-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; list-style: none; margin-bottom: 22px; }
.sk-modal-feats li { font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 7px; }
.sk-modal-feats li::before { content: "✓"; color: #059669; font-weight: 700; font-size: 13px; }
.sk-modal-specs { background: var(--c-bg); border-radius: var(--radius-md); padding: 14px 18px; margin-bottom: 4px; }
.sk-modal-specs table { width: 100%; border-collapse: collapse; }
.sk-modal-specs td { font-size: 13px; padding: 5px 0; vertical-align: top; }
.sk-modal-specs td:first-child { color: var(--c-text-muted); font-weight: 500; width: 130px; }
.sk-modal-specs td:last-child { font-weight: 600; color: var(--c-text); }
.sk-modal-footer { display: flex; align-items: center; justify-content: space-between; padding: 18px 28px; border-top: 1px solid var(--c-border); gap: 12px; flex-wrap: wrap; position: sticky; bottom: 0; background: var(--c-surface); }
.sk-modal-price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.sk-modal-old { font-size: 15px; color: var(--c-text-muted); text-decoration: line-through; }
.sk-modal-new { font-size: 30px; font-weight: 800; color: var(--c-blue); }
.sk-modal-save { font-size: 11px; font-weight: 700; background: #dcfce7; color: #166534; padding: 3px 9px; border-radius: 100px; }
.sk-modal-actions { display: flex; gap: 8px; }
@media (max-width: 580px) {
  .sk-modal-head { flex-direction: column; padding: 20px; }
  .sk-modal-body { padding: 18px 20px; }
  .sk-modal-footer { padding: 14px 20px; }
  .sk-modal-feats { grid-template-columns: 1fr; }
  .sk-modal-new { font-size: 24px; }
}

/* === PRODUCT CARD ACTIONS === */
.product-card-actions {
  display: flex; gap: 8px; margin-top: 14px;
}
.product-card-actions .btn {
  flex: 1; padding: 10px 0; font-size: 13px; justify-content: center;
}
.product-card-actions .btn-ghost { flex: 0 0 auto; padding: 10px 16px; }
.product-card-actions .btn-primary { flex: 1; }

/* h3 başlık hover — modal açar */
.sk-open-modal {
  cursor: pointer;
}
.product-card h3.sk-open-modal:hover {
  color: var(--c-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* bundle-icon */
.bundle-icon {
  background: #f5f3ff; color: #7c3aed;
  font-size: 13px; letter-spacing: -1px;
}
