body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid black;
    padding: 0 20px;
    height: 80px;
}

.left-section, .right-section {
    flex: 1; 
    display: flex;
    align-items: center;
    color: #000000;
}

.right-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 18px;
}

.center-logo h1{
    font-family: serif;
    font-size: 38px;
    letter-spacing: 12px;
    font-weight: 400;
    cursor: pointer;
}

.center-section h1 {
    font-family: serif;
    font-size: 45px;
    letter-spacing: 12px;
    margin: 0;
    font-weight: 400;
    color: black;
}

.left-nav {
    text-decoration: none;
    flex: 1;
    display: flex;
    gap: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.left-nav a{
    color: #000;
    text-decoration: none;
    font-weight: 780;
}

.separador {
    color: #000000;
    font-weight: lighter;
}

.icono-negro {
    filter: grayscale(100%) brightness(0);
    cursor: pointer;
    user-select: none;
}

.banner {
    width: 100%;
    height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../img/banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #333;
    background-position: top center;
}

.banner h2 {
    font-family: serif;
    font-size: 50px;
    letter-spacing: 5px;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.new-in {
    padding: 60px 40px;
    background-color: #f1f1f1;
    border-bottom: 1px solid #ddd;
}

.new-in-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.new-in-header h2 {
    font-size: 22px;
    letter-spacing: 2px;
    margin: 0;
    font-weight: bold;
}

.btn-ver-todo {
    background: transparent;
    border: 1px solid black;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.tag {
    font-size: 11px;
    color: #555;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.product-img {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img img {
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply; 
}

.main-footer {
    background-color: #000000;
    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-socials a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-socials a:hover {
    opacity: 0.6;
}

.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;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    font-size: 12px;
    margin-bottom: 12px;
    color: #bdc3c7;
    cursor: pointer;
    text-transform: uppercase;
}

.footer-col ul li:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 10px;
    color: #bdc3c7;
    letter-spacing: 1px;
}

.user-link {
    text-decoration: none;
    color: black; 
    display: flex;
    align-items: center;
}

.right-section span {
    cursor: pointer;
}

#menu_bar, .fa-bars {
    display: none;
}

@media (max-width: 1024px) {
    
    .header-container {
        position: relative; 
    }

    .fa-bars {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }

    .separador {
        display: none;
    }

    .left-nav {
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background: #ffffff;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1px 0;
        border-bottom: 1px solid #000;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.2s ease-in-out;
    }

    .left-nav a {
        width: 100%;
        text-align: center;
        padding: 3px 0;
        text-decoration: none;
        color: #000;
        font-weight: 780;
        text-transform: uppercase;
    }

    #menu_bar:checked ~ .left-nav {
        max-height: 180px; 
        opacity: 1;
    }
}