/* Estilos principales de Layoyt globales */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: clip;
}

/* Scrollbars personalizados */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #fcc256;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e6ad3e;
}
* {
    scrollbar-width: thin;
    scrollbar-color: #fcc256 transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.section-title {
    text-align: center;
    font-size: var(--text-h2);
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-main);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--text-p);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
}

.home-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

@media (min-width: 768px) {
    .products-grid {
        gap: var(--spacing-md);
    }
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}