/* =====================
   Enhanced Wide Product Card
===================== */

.product-card-container {
    position: relative;
    display: flex;
    height: 100%;
}

/* الكارد */
.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* Hover */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}

/* الصورة */
.product-card__image {
    height: 260px; /* أطول */
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.08);
}

/* المحتوى */
.product-card__content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

/* العنوان */
.product-card__title a {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.5;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* السعر */
.product-card__price h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.product-card__price span {
    font-size: 0.9rem;
    color: #718096;
}

/* الزر */
.product-card__button {
    margin-top: auto;
}

.product-card__button .btn {
    width: 100%;
    background: #1a202c;
    color: #fff;
    border-radius: 14px;
    padding: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-card__button .btn:hover {
    background: #000;
    transform: scale(1.03);
}

/* Badges */
.product-card--sale::after,
.product-card--exclusive::before {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
    .product-card__image {
        height: 220px;
    }

    .product-card__title a {
        font-size: 0.95rem;
    }

    .product-card__price h4 {
        font-size: 1.2rem;
    }
}
.top-navbar {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
.img-fluid {
  background: #fff !important;
  border-radius: 10px !important;
  padding: 8px !important;
}
.undefined.s-button-element.s-button-btn.s-button-outline.s-button-sm.s-button-wide.s-button-primary-outline.s-button-loader-center {
  background: linear-gradient(135deg, #DBAD25, #846916) !important;
  border: none !important;
  color: #fff !important;
}

.undefined.s-button-element.s-button-btn.s-button-outline.s-button-sm.s-button-wide.s-button-primary-outline.s-button-loader-center:hover {
  filter: brightness(0.9);
}
.flex.items-center.gap-8.mt-5 {
  display: none !important;
}
.product-card__title {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}