/* vogeledits — Storefront */

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

:root {
    --bg: #ffffff;
    --bg-soft: #f7f7f7;
    --text: #222222;
    --text-light: #777777;
    --text-muted: #aaaaaa;
    --border: #dddddd;
    --accent: #262626;
    --accent-hover: #000000;
    --green: #2da44e;
    --font: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* Announcement Bar */
.announcement-bar {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 9px 20px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.announcement-bar a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.announcement-bar a:hover { opacity: 0.8; }
.announcement-bar strong { font-weight: 600; }

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.5px;
    transition: color 0.05s ease-in-out;
}

.nav-link:hover { color: var(--text); }

/* Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 4px;
}

.mobile-nav {
    display: none;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 12px;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav-link:last-child { border-bottom: none; }

/* Hero */
.hero {
    max-width: 880px;
    margin: 0 auto;
    padding: 72px 24px 56px;
    text-align: center;
}

.hero-title {
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 14px;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* Divider */
.divider {
    max-width: 880px;
    margin: 0 auto;
    border: none;
    border-top: 1px solid #eee;
}

/* Section */
.section {
    max-width: 880px;
    margin: 0 auto;
    padding: 40px 24px;
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Product Grid — 280px columns, 10px gap like KTET */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}

/* Product Card */
.product-card {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    transition: opacity 0.05s ease-in-out;
}

.product-card:hover {
    opacity: 0.7;
}

/* Product Image */
.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    background: var(--bg-soft);
    border: 1px solid #eee;
}

.product-icon {
    font-size: 48px;
    line-height: 1;
}

/* Product Name */
.product-name {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--text);
    margin-top: 12px;
    margin-bottom: 6px;
    line-height: 1.3;
}

/* Product Desc */
.product-desc {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
    letter-spacing: 0.3px;
    flex: 1;
    margin-bottom: 12px;
}

/* Buy Button */
.product-btn {
    display: inline-block;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    background: var(--accent);
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    transition: background 0.05s ease-in-out;
    white-space: nowrap;
    width: fit-content;
}

.product-btn:hover {
    background: var(--accent-hover);
}

.btn-free {
    background: var(--green);
}

.btn-free:hover {
    background: #248c41;
}

/* Newsletter */
.section-newsletter {
    text-align: center;
    padding: 56px 24px;
}

.newsletter-title {
    font-size: 18px;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 6px;
}

.newsletter-subtitle {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 380px;
    margin: 0 auto;
}

.newsletter-input {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 300;
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-right: none;
    outline: none;
    flex: 1;
    color: var(--text);
    background: var(--bg);
    letter-spacing: 0.3px;
}

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

.newsletter-input:focus {
    border-color: var(--text-light);
}

.newsletter-btn {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    background: var(--accent);
    border: 1px solid var(--accent);
    padding: 9px 20px;
    cursor: pointer;
    transition: background 0.05s ease-in-out;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--accent-hover);
}

/* Footer */
.footer {
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.footer-inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    transition: color 0.05s ease-in-out;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 48px 20px 36px; }
    .hero-title { font-size: 24px; }
    .hide-mobile { display: none; }
    .section { padding: 32px 20px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .product-icon { font-size: 36px; }
    .newsletter-form { flex-direction: column; gap: 8px; }
    .newsletter-input { border-right: 1px solid var(--border); }
    .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
}
