/* Tal om alt – Custom styles */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Brand name styling */
.brand-name {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-style: normal;
}

/* Card component */
.card-preview {
    width: 220px;
    min-height: 340px;
    border-radius: 12px;
    background: #FFFDF9;
    box-shadow: 0 2px 12px rgba(44, 36, 22, 0.08);
    overflow: hidden;
    font-size: 14px;
    display: flex;
    flex-direction: column;
}

.card-preview .card-bar {
    height: 6px;
    width: 100%;
}

.card-preview .card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-preview .card-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 8px;
}

.card-preview .card-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #2C2416;
}

.card-preview .card-explanation {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 11px;
    color: #666;
    border-left: 2px solid currentColor;
    padding-left: 8px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.card-preview .card-question {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 12px;
    color: #2C2416;
    margin-top: auto;
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-preview .card-followups {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 8px;
}

.card-preview .card-footer {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: #999;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f0ece4;
}

/* Product card hover */
.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44, 36, 22, 0.12);
}

/* Button styles */
.btn-primary {
    background-color: #2C2416;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: #3d3424;
}

.btn-secondary {
    background-color: transparent;
    color: #2C2416;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    border: 1.5px solid #2C2416;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2C2416;
    color: white;
}

/* FAQ accordion */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
}

/* Badge */
.age-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 999px;
    display: inline-block;
}
