/* Prose styling for product description */
.prose {
    color: #374151;
    max-width: none;
}

.prose p {
    margin-bottom: 1em;
    line-height: 1.75;
}

.prose h2 {
    color: #92400e;
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3;
}

.prose h3 {
    color: #92400e;
    font-size: 1.25em;
    font-weight: 600;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    line-height: 1.4;
}

.prose h4 {
    color: #b45309;
    font-size: 1.125em;
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.5;
}

.prose ul, .prose ol {
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 1.625em;
}

.prose li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    line-height: 1.75;
}

.prose ul > li {
    position: relative;
    padding-left: 0.375em;
}

.prose ul > li::before {
    content: "🍯";
    position: absolute;
    left: -1.625em;
}

.prose ol > li {
    counter-increment: list-counter;
}

.prose ol > li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: -1.625em;
    color: #d97706;
    font-weight: 600;
}

.prose strong {
    color: #92400e;
    font-weight: 600;
}

.prose a {
    color: #d97706;
    text-decoration: underline;
    font-weight: 500;
}

.prose a:hover {
    color: #b45309;
}

.prose blockquote {
    border-left: 4px solid #fbbf24;
    padding-left: 1em;
    font-style: italic;
    color: #6b7280;
    margin: 1.5em 0;
}

.prose code {
    background-color: #fef3c7;
    color: #92400e;
    padding: 0.125em 0.25em;
    border-radius: 0.25em;
    font-size: 0.875em;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.prose pre {
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 0.5em;
    padding: 1em;
    overflow-x: auto;
    margin: 1.5em 0;
}

.prose pre code {
    background-color: transparent;
    padding: 0;
}

.prose img {
    border-radius: 0.5em;
    margin: 1.5em 0;
}

.prose hr {
    border-color: #fde68a;
    margin: 2em 0;
}

/* Tab button active state */
.tab-button.active {
    color: #d97706;
    border-bottom-color: #d97706;
}

/* Smooth transitions */
.tab-content {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}