/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar Utility */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-in-up {
    animation: fade-in-up 0.6s ease-out forwards;
}

/* Product Detail Page - Responsive Layout */
.product-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-detail-content {
    width: 100%;
}

.product-detail-sidebar {
    width: 100%;
}

.product-detail-sidebar-sticky {
    position: relative;
}

/* Desktop layout - 1024px and above */
@media (min-width: 1024px) {
    .product-detail-layout {
        flex-direction: row;
        gap: 48px;
        align-items: flex-start;
    }

    .product-detail-content {
        flex: 1;
        min-width: 0;
    }

    .product-detail-sidebar {
        width: 340px;
        flex-shrink: 0;
        order: 0;
    }

    .product-detail-sidebar-sticky {
        position: sticky;
        top: 100px;
    }
}