.detailed-ing-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
    text-align: left;
    max-width: 1200px;
}

.texture-img-col {
    flex: 1;
}

.texture-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ing-list-col {
    flex: 1.2;
}

.ing-group {
    margin-bottom: 30px;
}

.ing-group-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.ing-items {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.ing-link {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    cursor: pointer;
    color: #111;
    margin-right: 5px;
}

.ing-link:hover { color: #E16203; }

.video-section {
    text-align: center;
    max-width: 1200px;
}

.video-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
}

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

.video-card {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 15px;
    overflow: hidden;
    transform: translateZ(0);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.3);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.play-icon {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid white;
    margin-left: 4px;
}

.video-card.is-playing .play-btn {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
}

.video-card.is-playing .video-overlay {
    opacity: 0;
}

@media (max-width: 1024px) {
    .detailed-ing-section {;
        margin-bottom: 40px;
    }

    .texture-img-col {
        display: none;
    }

    .ing-list-col {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }

    .ing-group-title {
        text-align: left;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .video-section {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }

    .video-title {
        font-size: 21px;
        margin-bottom: 20px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ing-items {
        font-size: 16px;
    }
}