@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/* Estilos base */
.body {
    background-color: #d1bc97;
}

/* Subtitulos */
h2 {
    color: #aa8744;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    width: 6rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-right-width: 1px;
    border-color: rgb(209 213 219);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 10;
    flex-shrink: 0;
}

.sidebar-top,
.sidebar-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-top {
    gap: 2.5rem;
}

.sidebar-bottom {
    gap: 1.5rem;
}

.logo-img {
    height: 3rem;
    width: 3rem;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon {
    padding: 0.75rem;
    border-radius: 0.75rem;
    color: #363636;
    transition: background-color 0.2s ease;
}

.nav-icon:hover {
    background-color: #fdfbf3;
}

.nav-icon-active:hover {
    background-color: #fdfbf3;
    color: #363636;
}

.cart-icon,
.user-profile-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    border-radius: 9999px;
    transition: background-color 0.2s ease;
}

.cart-icon:hover,
.user-profile-link:hover {
    background-color: #fdfbf3;
}

/* Avatar */
.user-avatar {
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1 / 1;
    background-size: cover;
    border-radius: 9999px;
    height: 2.5rem;
    width: 2.5rem;
    background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuAwfRFOpx_t1-W39jlOWpZ1-UZ6s-7XBj-k4EMTdvOY0LG4iqDMKZlSZn8JZePtXY1_p1Dlv6J80glF3mHz3JEZQQ_aHHBdZXZ23OIW4XDLGfhuIgVgGhGomvfUMdP0lI1dyjW06b0DxQ34sLbO-vszky2imha1FA3US8t5_cOss_97Gl6QzQUs1-FEnLBBGAcj8eWKscod5vbkfV4QTjTTtrGUCa0rkA8OBMzEtQVYGD_DSRYRuFYclxUuraA2Wx-QN2mjWaEwN65g');
}

/* Contenido Principal */
.main-content {
    flex: 1 1 0%;
    padding: 2rem;
    overflow-y: auto;
}

.content-wrapper {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.page-header {
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #363636;
}

@media (prefers-color-scheme: dark) {
    .page-title {
        color: #d1bc97;
    }
}

/* Secciones */
.sections-container> :not(:first-child) {
    margin-top: 3rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #aa8744;
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1.125rem;
    line-height: 1.625;
    color: #363636cc;
}

@media (prefers-color-scheme: dark) {
    .section-text {
        color: #fdfbf3cc;
    }
}

.values-list {
    list-style-type: disc;
    list-style-position: inside;
}

.values-list> :not(:first-child) {
    margin-top: 1rem;
}

.value-highlight {
    font-weight: 600;
}

.space-images-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .space-images-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.space-image {
    border-radius: 0.5rem;
    object-fit: cover;
    width: 100%;
    height: 16rem;
}

.material-symbols-outlined {
    vertical-align: middle;
}