/* تصحيح التعليقات السابقة */
.tabs.hide-scroll {
    display: block;
    /* text-align-last: justify; */
}

/* ضبط موقع زر السلايدر */
a.advanced-slider__caption__inner__content__button.outlined {
    position: absolute;
    top: 450px;
    left: 100px;
}

/* المنتجات - سطح المكتب */
.product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important; /* مساحة بين المنتجات */
}

/* المنتجات - موبايل */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr !important;
    }
}

/* تكبير الصور */
.product-card img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* وصف المنتج: فقط سطرين */
.product-card .product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* تأثير hover */
.product-card:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease-in-out;
}
/* نخفي الصورة الثانية بشكل افتراضي */
.product-card img.second-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* عند الهوفر نعرض الصورة الثانية ونخفي الأولى */
.product-card:hover img.main-image {
    opacity: 0;
}

.product-card:hover img.second-image {
    opacity: 1;
}

header.flex.flex-col.md\:flex-row.items-center {
  display: none !important;
}