@import url('https://fonts.googleapis.com/css2?family=Material+Icons&display=swap');
.material-icons {
    font-size: 20px;
    vertical-align: middle;
}

.animate-fadeIn {
    animation: fadeIn 0.25s ease-in-out;
}

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

:where([class^="ri-"])::before {
    content: "\f3c2";
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    animation: slideInUp 1s ease-out;
}

.slide.active .slide-content h1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.slide.active .slide-content p {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.slide.active .slide-content .buttons {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

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

.nav-button {
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: rgba(241, 139, 45, 0.9);
    transform: scale(1.1);
}

.dot {
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #F18B2D;
    transform: scale(1.2);
}

.cta-primary {
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: rgba(241, 139, 45, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(241, 139, 45, 0.3);
}

.cta-secondary {
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #F18B2D;
    color: white;
    transform: translateY(-2px);
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
}

.skeleton-img {
    aspect-ratio: 1 / 1;
}

.skeleton {
    transition: opacity 0.4s ease;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 8px;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        padding: 0 12px;
    }
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1280px) {
    .product-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (max-width: 640px) {
    .product-img {
        height: 160px;
    }
    .product-title {
        font-size: 0.875rem;
        line-height: 1.3;
        height: 2.6em;
        overflow: hidden;
    }
    .product-price {
        font-size: 1.125rem;
    }
}

.discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 9999px;
    z-index: 10;
}

.section-padding {
    padding: 20px 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 32px 0;
    }
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0 16px;
    margin-bottom: 12px;
    color: #111;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
}