.big-wrapper {
    background-image: linear-gradient(0deg, #E162030D 5.45%, #E162031A 11.58%, #E162031A 21.12%, #E162034D 25.22%, #F4B30133 35.72%, #E162031A 45.26%, #E1620366 54.01%, #F4B30166 61.04%, #E8880233 64.55%, #E8880266 69.70%, #E67B021A 71.51%, #E36C0352 77.62%, #FFB81533 78.61%, #EC820912 80.59%, #E265030D 82.57%, #E1620333 85.54%, #E1620333 87.52%, #EFAE0066 94.98%, #FFFFFFFF 100.50%);
    background-size: 400% 400%;
    background-repeat: no-repeat;
    padding: 0 20px 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.media-section {
    text-align: center;
    margin-bottom: 100px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.media-card {
    background-color: #fff;
    padding: 20px 15px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    box-sizing: border-box;
}

.media-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    max-width: 100%;
}

.media-quote {
    font-size: 12px;
    line-height: 1.4;
    color: #444;
    font-style: italic;
}

.ingredients-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ing-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    padding: 0 20px;
}

.ing-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    padding: 0 20px;
}

.icons-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    padding: 0;
}

.icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 15px;
}

.icon-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #444;
}




.media-section.mobile-view {
    display: none;
}

.media-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
    padding: 0 20px;
}

.media-subtitle {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
    padding: 0 20px;
}

.media-scroll-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 0 20px;
}

.media-scroll-container::-webkit-scrollbar {
    display: none;
}

.media-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    max-width: 100%;
}

.media-quote {
    font-size: 13px;
    line-height: 1.5;
    color: #444;
    font-style: italic;
}

.media-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.scroll-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s;
    color: #333;
}

.scroll-btn:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

.scroll-btn:active {
    background-color: #e0e0e0;
    transform: scale(0.95);
}

.texture-ing-col.mobile-view {
    display: none;
}

@media (max-width: 1024px) {
    .ing-title {
        margin-bottom: 10px;
    }

    .ing-desc {
        font-size: 14px;
    }

    .big-wrapper {
        padding: 20px 0;
        width: 100%;
    }

    .media-section {
        display: none;
    }

    .media-section.mobile-view {
        display: flex;
        flex-direction: column;
        text-align: center;
        max-width: 1200px;
        margin: 0 auto 50px;
        position: relative;
    }

    .texture-ing-col.mobile-view {
        display: flex;
        flex: 1;
        padding: 0 20px;
    }

    .icons-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        padding: 0;
        width: 100%;
        justify-items: center;
    }

    .icon-item {
        width: 60px;
    }

    .media-grid {
        display: grid;
        grid-template-rows: repeat(2, 1fr);
        grid-auto-flow: column;
        grid-template-columns: unset;
        grid-auto-columns: 95vw;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
    }

    .media-card {
        scroll-snap-align: start;
        height: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .media-grid::-webkit-scrollbar {
        display: none;
    }
}