
.box2 {
    background-color: rgb(231, 225, 225);

    width: 400px; /* حجم مناسب للصورة */
    height: 450px;
    position: absolute;
    top:1500px;;
    left: 565px;
    z-index: 1;
    border-radius: 20px;
    box-shadow: inset 10px 10px 20px #a1a1a1,
    inset -10px -10px 20px #ffffff;

}
.note2{
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 18px;
    top: 1690px;
    left: 660px;
    font-weight: bold;
    color: #333;
    position: absolute;
    z-index: 3;
}
.banner2 .product2 {
    width: 330px;
    height: 440px;
    position: absolute;
    top: 1500px; /* أو حسب موقع الصندوق الثاني */
    left: 45%;   /* مركز الشاشة */
    transform: translateX(-50%); /* لتوسيط العنصر بالضبط */
    z-index: 2;
    transition: 0.7s ease-in-out;
    --left: -65px;
}





.banner2 .product2 .soda2 {
    background:
            url(../images/FRUIT_ACIDS.png) var(--left) 224px  ,
            url(../images/oil.png);
    background-repeat: repeat-x;
    background-size: 180% auto, auto 100%; /* تكبير ostiker دون التأثير على oil */
    width: 157px;
    height: 400px;
    /* aspect-ratio: 7.6 / 7.6; */
    background-blend-mode: multiply;
    mask-image: url(../images/oil.png);
    mask-size: auto 100%;
    transition-duration: 1s;
}





.more-btn2 {
    display: block;
    position: absolute;
    top: 240%;
    left: 45%; /* عدلي حسب مكان الزر اللي بدك ياه */
    transform: translateX(-50%);
    background-color: #8B9B8B;
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 8px #fff;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 3;
}

.banner2 .product2.clicked {
    --left: 60px;
    transform: translateX(-70px) translateY(-30px);
}

.banner2 .product2.clicked + .note2 {
    opacity: 1;
}

.banner2 .product2.clicked + .note2 + .more-btn2 {
    opacity: 1;
    transform: translate(-50%, -5px);
}
