body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: white;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4 {
    margin: 0;
}

header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 85px;
    border-bottom: 1px solid #ccc;
}

.left-nav {
    flex: 1;
    display: flex;
    gap: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.center-logo h1 {
    font-family: serif;
    font-size: 38px;
    letter-spacing: 12px;
    font-weight: 400;
    cursor: pointer;
}

.right-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 18px;
}

.header-categories {
    background-color: #f5f5f5;
    padding: 12px 40px;
    display: flex;
    gap: 25px;
    overflow-x: auto;
    border-bottom: 1px solid #eee;
}

.header-categories a {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    color: #444;
}

.catalog-container {
    padding: 40px;
}

.catalog-title {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.image-categories-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    overflow-x: auto;
    scrollbar-width: none; 
}

.image-categories-grid::-webkit-scrollbar {
    display: none; 
}

.category-item {
    position: relative;
    flex: 0 0 160px;
    height: 160px;
    overflow: hidden;
    cursor: pointer;
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-item:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-item span {
    color: white;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #d5d5d5;
    padding: 20px 0;
    margin-bottom: 20px;
}

.view-options {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: bold;
}

.squares { 
    display: flex; 
    gap: 4px; 
}
.square { 
    width: 10px; 
    height: 10px; 
    background-color: #333; 
}
.square.outline { 
    background-color: transparent; 
    border: 1px solid #333; 
}

.filter-button {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.product-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-image-box {
    background-color: white;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 12px;
}

.product-image-box img {
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

.product-name {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.product-price {
    font-size: 10px;
    color: #666;
}

.main-footer {
    background-color: #000;
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
}

.footer-logo {
    font-size: 22px;
    letter-spacing: 5px;
    font-weight: bold;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    font-size: 22px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: left;
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col li {
    font-size: 12px;
    margin-bottom: 12px;
    color: #bdc3c7;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    font-size: 10px;
    color: #bdc3c7;
}

.header-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr; 
    align-items: center;
    height: 80px;
    padding: 0 40px;
    border-bottom: 1px solid black;
    background-color: white;
}

.center-logo {
    grid-column: 2; 
    display: flex;
    justify-content: center;
}

.center-logo h1 {
    margin: 0;
    font-family: serif;
    font-size: 32px;
    letter-spacing: 12px;
    font-weight: 400;
    color: black;
}

.right-icons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 18px;
    color: black;
}

.left-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.left-nav a {
    text-decoration: none;
    color: black !important; 
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.separador {
    color: black;
    font-size: 10px;
}

#menu_bar {
    display: none !important; 
}

.fa-bars {
    display: none; 
    cursor: pointer;
    font-size: 24px;
    color: black;
}

@media (max-width: 1024px) {
    .header-top {
        grid-template-columns: 1fr 2fr 1fr; 
        padding: 0 20px;
    }

    .fa-bars {
        display: block; 
    }

    .left-nav {
        display: none; 
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 1px solid black;
        z-index: 1000;
    }

    #menu_bar:checked ~ .left-nav {
        display: flex;
    }

    .separador { display: none; }
}

.header-categories {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-categories a {
    text-decoration: none;
    color: #555;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}