/* Navigation Polish */
nav.sticky {
    position: sticky;
    top: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

/* Enhanced Product Cards */
.product-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-5px);
}

/* Badges & Tags */
.badge {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
}

/* Footer styling */
.site-footer {
    border-top: 1px solid var(--border-subtle);
    padding: var(--spacing-lg) 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-grid h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-top: 1px solid var(--accent-teal);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}