/* =========================================
   Components (notanorm.de)
   ========================================= */

/* =========================================
   Header & Navigation
   ========================================= */
.header-article {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffffeb;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex !important;
    }
}

.desktop-nav a {
    position: relative;
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: #d4af37;
}

.desktop-nav a.active {
    color: #1a365d;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.25rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a365d;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid rgba(26, 54, 93, 0.05);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: #2d3748;
    text-decoration: none;
    padding: 0.75rem 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    transition: color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #d4af37;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

/* Hero Sections */
.hero-porridge {
    position: relative;
    padding: 10rem 2rem 8rem;
    background: #1a365d;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-porridge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Feature Cards */
.instrument-card {
    background: white;
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(26, 54, 93, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.instrument-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px -10px rgba(26, 54, 93, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
}

/* Category Grid */
.category-item {
    background: #fdfbf7;
    padding: 1.5rem 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #1a365d;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.category-item:hover {
    background: white;
    border-color: #d4af37;
    color: #d4af37;
    transform: scale(1.05);
}

/* FAQ Accordion Premium */
.faq-item {
    background: white;
    border-radius: 1.25rem;
    border: 1px solid rgba(26, 54, 93, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 30px -10px rgba(26, 54, 93, 0.08);
}

.faq-button {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-button:hover {
    background: rgba(253, 251, 247, 0.5);
}

.faq-button.active {
    color: var(--color-secondary);
    background: var(--color-bg);
    border-left: 5px solid var(--color-secondary);
}

/* Product Content Loosening */
.product-content {
    color: #4a5568 !important;
    font-size: 1.125rem;
    line-height: 1.85;
}

.product-content p {
    margin-bottom: 2.25rem !important;
}

.product-content strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Amazon & Affiliate Boxes */
.amazon-box-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .amazon-box-wrapper {
        flex-direction: row;
        gap: 1rem;
    }
}

.amazon-product-card {
    flex: 1;
    background: white;
    border: 1px solid rgba(26, 54, 93, 0.04);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.amazon-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 30px rgba(26, 54, 93, 0.08);
}

.amazon-icon-container {
    width: 3.5rem;
    height: 3.5rem;
    background: #fdfbf7;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.amazon-product-card:hover .amazon-icon-container {
    transform: scale(1.1);
    color: #d4af37;
}

/* Premium Highlight Cards (for Lists) */
.product-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: white;
    border: 1px solid rgba(26, 54, 93, 0.04);
    border-radius: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(26, 54, 93, 0.06);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.product-highlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 30px 60px -20px rgba(26, 54, 93, 0.15);
}

.product-card-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdfbf7 0%, #f5f0e6 100%);
    border-radius: 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    flex-shrink: 0;
    margin-top: 0;
    transition: all 0.4s ease;
}

.product-highlight-card:hover .product-card-icon {
    transform: rotate(10deg);
    background: #fdfbf7;
    border-color: rgba(212, 175, 55, 0.3);
}

/* Premium Buttons */
.premium-button {
    background: linear-gradient(135deg, #d4af37 0%, #b8932d 100%);
    color: white !important;
    padding: 0.85rem 2rem;
    border-radius: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none !important;
    margin-top: 1.25rem;
}

.premium-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, #e5c052 0%, #d4af37 100%);
}

.premium-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* Produktkarten - Layout Verbesserungen */
.product-highlight-card .flex-1 > div:last-child {
    padding-bottom: 0.5rem;
}

.product-highlight-card .mt-8 {
    margin-top: 1.25rem;
}

/* =========================================
   Footer
   ========================================= */
.footer-porridge {
    background: #fdfbf7;
    padding: 5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(26, 54, 93, 0.05);
}

.footer-logo-porridge {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 2rem;
}

.footer-nav-porridge {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}