/* ═══════════════════════════════════════════════════════════
   PÚNYCODEX — Store Page Styles
   ═══════════════════════════════════════════════════════════ */

.page-store {
    padding-top: var(--nav-height);
}

.page-hero {
    padding: var(--space-7) 0 var(--space-5);
}

.page-hero p {
    max-width: 500px;
    margin: 0 auto;
}

.store-content {
    padding: var(--space-5) 0 var(--space-7);
}

.store-tabs {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    margin-bottom: var(--space-5);
    flex-wrap: wrap;
}

.store-tab {
    padding: 10px 24px;
    border: 1px solid var(--gold-dim);
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.store-tab:hover {
    border-color: var(--gold-glow);
    color: var(--gold);
}

.store-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--void);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-7);
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.product-card {
    background: var(--surface);
    border: 1px solid var(--gold-dim);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-smooth);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--abyss) 0%, var(--surface) 50%, var(--abyss) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon {
    font-size: 64px;
    opacity: 0.3;
    filter: grayscale(1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.7);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-name {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-primary);
    padding: var(--space-3) var(--space-3) 0;
}

.product-price {
    font-size: 14px;
    color: var(--text-dim);
    padding: 0 var(--space-3) var(--space-3);
    text-decoration: line-through;
}

.store-cta {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-6);
    background: var(--surface);
    border: 1px solid var(--gold-dim);
    border-radius: var(--radius-lg);
}

.store-cta h3 {
    margin-bottom: var(--space-3);
}

.newsletter-form {
    display: flex;
    gap: var(--space-2);
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    background: var(--abyss);
    border: 1px solid var(--gold-dim);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color var(--duration-fast) var(--ease-smooth);
}

.newsletter-input:focus {
    border-color: var(--gold-glow);
}

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

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
}
