/*
 * ============================================================
 *  Desktop Enhancements — تحسينات الشاشات الكبيرة
 *  Premium feel, animations, hover effects
 *  ============================================================
 */

/* ─── Ultra-wide container max ─────────────── */
@media (min-width: 1536px) {
  .container {
    max-width: 1400px !important;
  }
}

/* ─── 4K+ screens ──────────────────────────── */
@media (min-width: 2000px) {
  .container {
    max-width: 1600px !important;
  }
}

/* ─── Desktop-only hover lift ──────────────── */
@media (hover: hover) {
  /* Product cards — 3D lift */
  .group:hover .card-lift {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 160, 23, 0.12);
    border-color: rgba(212, 160, 23, 0.3);
  }

  /* Smooth image zoom on cards */
  .group:hover .img-zoom {
    transform: scale(1.06);
  }

  /* Link underline animation */
  .link-underline {
    position: relative;
  }
  .link-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a017;
    transition: width 0.25s ease;
  }
  .link-underline:hover::after {
    width: 100%;
  }
}

/* ─── Hero section — dramatic desktop ──────── */
@media (min-width: 1024px) {
  .hero-section {
    min-height: 70vh;
  }
  .hero-section .hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
  }
}

/* ─── Better spacing on desktop ────────────── */
@media (min-width: 768px) {
  .section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* ─── Smooth page transitions ──────────────── */
.page-enter {
  animation: pageFadeIn 0.3s ease;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
