body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: none;
    background: linear-gradient(180deg in oklch, #BEB69B 6%, rgba(118, 162, 164, 0.95) 20%, rgb(161 131 132 / 84%) 100%);

}


main {
    flex: 1;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    height: auto;
}

header {
    background: none;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background: none !important;
    background-image: none !important;
    background-color: transparent !important;
    padding: 1vw 0;
    margin-top: 4%;
    position: relative;
}

#bottominfo {
    width: 100%;
    text-align: center;
    padding: 1vw 0;
}

#bottominfo p4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.48vw;
    color: #333;
}

#title {
    background: none;
    padding: 0vw 0 2vw 0;
    position: relative;
    height: auto;
}

#productsSection {
    min-height: 100vh;
    padding: 0;
    padding-top: 4vw;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2%;
}

#productsSection h1 {
    font-size: 4.5vw;
    background: linear-gradient(45deg, #dbd9d9d6, #c7f0f1d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin: 2vw 0 3vw 0;
    position: relative;
    padding-top: unset;
}

#productsIntro {
    width: 62%;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 2vw;
    padding: 1.8vw 3vw;
    margin-bottom: 4vw;
}

#productsIntro p1 {
    display: block;
    text-align: center;
    font-size: 1.15vw;
    line-height: 1.7;
    color: #4E4343;
    font-weight: 600;
}

#brandGrid {
    display: flex;
    flex-direction: column;
    gap: 3vw;
    width: 78%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.brandCard {
    display: flex;
    align-items: center;
    gap: 2.5vw;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 2vw;
    padding: 2vw;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.brandCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.3vw;
    background: linear-gradient(90deg, #76A2A4, #865C5E);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.brandCard:hover {
    transform: translateY(-0.5vw);
    box-shadow:
        0 1vw 2vw rgba(0, 0, 0, 0.1),
        0 0.5vw 1vw rgba(118, 162, 164, 0.2);
}

.brandCard:hover::before {
    transform: scaleX(1);
}

.brandPhoto {
    flex-shrink: 0;
    width: 17vw;
    height: 17vw;
    border-radius: 1vw;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.1);
}

.brandPhoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.brandCard:hover .brandPhoto img {
    transform: scale(1.08);
}

.brandText {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5vw;
}

.brandCard h6 {
    font-size: 2.1vw;
    margin: 0 0 0.2vw 0;
    text-align: left;
    text-decoration: none;
    color: #865C5E;
    transition: color 0.3s ease;
}

.brandCard:hover h6 {
    color: #76A2A4;
}

.brandCard p1 {
    display: block;
    text-align: left;
    font-size: 1vw;
    line-height: 1.6;
    color: #555;
    margin: 0;
    opacity: 0.9;
}

.brandCard .weCarry {
    font-weight: 700;
    color: #4E4343;
    margin-top: 0.5vw;
}

.carryList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25vw;
}

.carryList li {
    font-size: 1vw;
    line-height: 1.6;
    color: #555;
    opacity: 0.9;
}

.carryList li::before {
    content: '•';
    color: #76A2A4;
    font-size: 1.2em;
    margin-right: 0.6vw;
}

.inStoreNote {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.52rem, 0.7vw, 0.85rem);
    font-weight: 600;
    color: #4E6F71;
    letter-spacing: 0.02em;
    margin-top: 0.9vw;
    padding: 0.35vw 1vw;
    background-color: rgba(118, 162, 164, 0.18);
    border-radius: 2vw;
}

#productsOutro {
    width: 62%;
    margin: 4vw auto 0;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 2vw;
    padding: 1.5vw 3vw;
}

#productsOutro p1 {
    display: block;
    text-align: center;
    font-size: 1vw;
    line-height: 1.6;
    color: #4E4343;
    font-weight: 600;
}

/* Mobile Styles */
@media (max-width: 768px) {
    #productsSection h1 {
        font-size: 6vw;
        margin: 4vw 0 5vw 0;
        scale: 125%;
    }

    main {
        padding-top: 5vw;
    }

    #productsIntro {
        width: 82%;
        border-radius: 4vw;
        padding: 4vw 5vw;
        margin-bottom: 7vw;
    }

    #productsIntro p1 {
        font-size: 3vw;
    }

    #brandGrid {
        width: 90%;
        gap: 7vw;
    }

    .brandCard {
        flex-direction: column;
        border-radius: 3vw;
        padding: 4vw;
        gap: 3vw;
    }

    .brandPhoto {
        width: 55vw;
        height: 55vw;
        border-radius: 2vw;
    }

    .brandCard h6 {
        font-size: 4.5vw;
        text-align: center;
        align-self: center;
    }

    .brandText {
        align-items: center;
        gap: 1.5vw;
    }

    .brandCard p1 {
        font-size: 2.8vw;
        text-align: center;
        margin: 0 2vw;
    }

    .brandCard .weCarry {
        margin-top: 1.5vw;
    }

    .carryList {
        gap: 0.8vw;
        align-self: center;
    }

    .carryList li {
        font-size: 2.8vw;
        text-align: left;
    }

    .carryList li::before {
        margin-right: 1.5vw;
    }

    .inStoreNote {
        font-size: 2.3vw;
        margin-top: 2.5vw;
        padding: 1.2vw 3.5vw;
        border-radius: 5vw;
        text-align: center;
    }

    #productsOutro {
        width: 82%;
        border-radius: 4vw;
        padding: 3.5vw 5vw;
        margin-top: 8vw;
    }

    #productsOutro p1 {
        font-size: 2.8vw;
    }

    #bottominfo p4 {
        font-size: 1.35vw;
    }
}
