@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

:root {
    --primary-purple: #9333ea;
    --primary-green: #22c55e;
    --black-background: #0c0a09;
    --text-primary: #f0f2f5;
    --text-secondary: #a1a1aa;
    --card-background-vitrine: rgba(255, 255, 255, 0.08);
    --card-border-vitrine: rgba(255, 255, 255, 0.15);
    --card-hover-border-vitrine: rgba(147, 51, 234, 0.7);
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

body {
    background-color: var(--black-background);
    background-image: radial-gradient(circle at 15% 20%, rgba(147, 51, 234, 0.12) 0%, transparent 35%),
                      radial-gradient(circle at 85% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 40%);
    background-attachment: fixed;
    font-family: var(--font-sans);
    color: var(--text-primary);
}

h1.text-3xl, h2.text-2xl {
    font-family: var(--font-serif);
    letter-spacing: -0.02em;
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeOutDown { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(20px); } }

.view-enter { animation: fadeInUp 0.6s 0.2s ease-out forwards; opacity: 0; }
.view-exit { animation: fadeOutDown 0.3s ease-in forwards; }

.product-card > div, .combo-category-card > div, .specific-combo-card > div {
    background: var(--card-background-vitrine);
    border: 1px solid var(--card-border-vitrine);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease-out;
}
.product-card:hover > div, .combo-category-card:hover > div, .specific-combo-card:hover > div {
    transform: scale(1.05);
    border-color: var(--card-hover-border-vitrine);
    box-shadow: 0 10px 30px -15px rgba(147, 51, 234, 0.25);
}

.scrollbar-thin::-webkit-scrollbar { height: 6px; }
.scrollbar-thin::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 10px; }
.scrollbar-thin::-webkit-scrollbar-thumb { background-color: var(--primary-purple); border-radius: 10px; }
.scrollbar-thin::-webkit-scrollbar-thumb:hover { background-color: #a855f7; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(147, 51, 234, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(147, 51, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(147, 51, 234, 0); }
}

.link-button {
    background: #000;
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.link-button:hover {
    transform: translateY(-3px);
    border-color: var(--primary-purple);
    box-shadow: 0 4px 20px -5px rgba(147, 51, 234, 0.4);
}
.link-button.back-button {
    margin: 2rem auto 0;
    max-width: 24rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.product-card-detail {
    background: linear-gradient(145deg, #18181b, #111111);
    border: 1px solid #333;
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 50px -15px rgba(192, 132, 252, 0.5), 0 0 15px -5px rgba(34, 197, 94, 0.4);
}
.product-detail-header { padding: 1.5rem; text-align: center; background: rgba(0,0,0,0.2); border-bottom: 1px solid #333; }
.product-accordion-container { padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.product-accordion-item { border-bottom: 1px solid #333; }
.product-accordion-item:last-child { border-bottom: none; }
.product-accordion-header {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0.5rem; text-align: left; background: transparent; border: none;
    color: white; cursor: pointer; font-size: 1rem; font-weight: 600;
}
.product-accordion-header i { transition: transform 0.3s ease; }
.product-accordion-item.open .product-accordion-header i { transform: rotate(180deg); }
.product-accordion-content { max-height: 0px; overflow: hidden; transition: max-height 0.4s ease-out; }
.product-accordion-body { padding: 0 0.5rem 1rem 0.5rem; color: #d1d5db; line-height: 1.7; text-align: justify; }
.product-detail-footer { padding: 1.5rem; background: #111111; margin-top: auto; border-top: 1px solid #333; }

.store-cta-button-full, .specialist-cta-button-full {
    display: block; text-align: center; padding: 1rem; border-radius: 0.75rem;
    font-weight: bold; font-size: 1rem; text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease, border-color 0.3s ease;
    cursor: pointer;
}
.store-cta-button-full { background-color: #111; color: white; border: 1px solid rgba(147, 51, 234, 0.3); }
.store-cta-button-full:hover { transform: translateY(-2px); filter: brightness(1.15); border-color: var(--primary-purple); }

.specialist-cta-button-full { background-color: #111; color: white; border: 1px solid rgba(34, 197, 94, 0.3); }
.specialist-cta-button-full:hover { transform: translateY(-2px); filter: brightness(1.15); border-color: var(--primary-green); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }