@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&amp;family=Space+Grotesk:wght@500;600&amp;display=swap");

:root {
    --primary: #0ea5e9;
}

body {
    font-family: "Inter", system_ui, sans-serif;
}

.font-display {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-weight: 600;
}

.product-card {
    transition:
        transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 25px -5px rgb(0 0 0 / 0.1),
        0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.modal {
    animation: modalEnter 0.2s ease-out forwards;
}

@keyframes modalEnter {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.size-btn,
.color-btn {
    transition: all 0.1s ease;
}

.size-btn.active,
.color-btn.active {
    background-color: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
}

.nav-active {
    color: #0ea5e9;
    font-weight: 600;
}

.cart-scroll::-webkit-scrollbar {
    width: 6px;
}

.cart-scroll::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 3px;
}

.section-header {
    font-size: 2.75rem;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.premium-shadow {
    box-shadow:
        0 10px 15px -3px rgb(15 23 42 / 0.1),
        0 4px 6px -4px rgb(15 23 42 / 0.1);
}

.prose p {
    margin-bottom: 0.75em;
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5em;
    margin-bottom: 0.75em;
}

.prose ol {
    list-style-type: decimal;
    padding-left: 1.5em;
    margin-bottom: 0.75em;
}

.prose a {
    color: #0ea5e9;
    text-decoration: underline;
}

.prose strong {
    font-weight: 600;
}

.prose em {
    font-style: italic;
}

.prose u {
    text-decoration: underline;
}
