.brand-section {
    background-color: #f7f7f7;
    display: flex;
    align-items: flex-start;
    align-content: center;
    gap: 64px;
    justify-content: center;
    padding: 15px 72px;
}
.brand-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: -4rem;
}

.brand-logo,
.brand-story,
.signature-products,
.product-showcase {
    padding: 2rem;
    border-radius: 8px;
    /*background-color: #fff;*/
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
}

.brand-logo {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.brand-story {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.signature-products {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.product-showcase {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 80%;
    min-height: 300px;
}

.brand-logo-container {
    background-color: rgba(199, 167, 86, 0.1);
    padding: 3rem;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.brand-logo-img {
    max-width: 300px;
    height: auto;
}

.brand-title {
    color: #c7a756;
    /* text-align: center; */
    letter-spacing: -0.7px;
    font: 500 44px / 1.1 "Libre Bodoni", -apple-system, Roboto, Helvetica, sans-serif;
}

.h2-brand {
    color: #c7a756;
    /* text-align: center; */
    letter-spacing: -0.7px;
    font: 500 44px / 1.1 "Libre Bodoni", -apple-system, Roboto, Helvetica, sans-serif;
}

.story-content,
.products-content {
    color: #141414;
    letter-spacing: 0.38px;
    margin-top: 24px;
    font: 400 19px / 23px Quicksand, sans-serif;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
    min-height: 379px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    max-width: 100%;
    height: 100%;
    max-height: 379px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: rgba(199, 167, 86, 0.1);
    border-radius: 8px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #c7a756;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.carousel-button:hover,
.carousel-button:focus {
    background: #c7a756;
    color: white;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.carousel-button.prev {
    left: 1rem;
}

.carousel-button.next {
    right: 1rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: #c7a756;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1200px) {
    .content-grid {
        gap: 0;
    }
    .brand-logo-img {
        max-width: 200px;
    }
    /*.content-grid {*/
    /*    display: grid;*/
    /*    grid-template-columns: repeat(2, 1fr);*/
    /*    gap: 2rem;*/
    /*    margin-bottom: 4rem;*/
    /*}*/

    /*.contact-section {*/
    /*    padding: 40px 20px;*/
    /*    flex-direction: column;*/
    /*}*/

    .brand-logo,
    .brand-story,
    .signature-products,
    .product-showcase {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .brand-page {
        padding: 0;
    }

    .brand-section {
        padding: 0;
    }
    .carousel-container {
        margin-bottom: 40px
    }
}

@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        transition: none;
    }
}