/* styles.css - Yellow Abaya Core Design System */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  /* Brand Colors */
  --clr-primary: #F2C94C; /* Golden Yellow */
  --clr-secondary: #5B9EA6; /* Teal / Sky Blue */
  --clr-dark: #1F2937; /* Dark Navy */
  --clr-light: #F5F3EF; /* Soft Gray */
  --clr-white: #FFFFFF; /* Pure White */
  
  /* Accents & Gradients */
  --clr-accent: #e5b839;
  --gradient-primary: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  --gradient-dark: linear-gradient(135deg, #111827, var(--clr-dark));
  --gradient-glass: rgba(255, 255, 255, 0.7);

  /* Typography */
  --font-arabic: 'Tajawal', sans-serif;
  --font-english: 'Outfit', sans-serif;

  /* Layout */
  --border-radius: 12px;
  --border-radius-lg: 24px;
  --box-shadow: 0 10px 30px rgba(31, 41, 55, 0.08);
  --box-shadow-hover: 0 20px 40px rgba(91, 158, 166, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: 1px solid rgba(255, 255, 255, 0.4);
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-arabic);
  background-color: var(--clr-light);
  color: var(--clr-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--clr-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-primary { color: var(--clr-primary); }
.text-secondary { color: var(--clr-secondary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-arabic);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 8px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--clr-dark);
  box-shadow: 0 4px 15px rgba(242, 201, 76, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 201, 76, 0.4);
}

.btn-dark {
  background: var(--gradient-dark);
  color: var(--clr-primary);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 41, 55, 0.4);
  color: var(--clr-white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--clr-secondary);
  color: var(--clr-secondary);
}

.btn-outline:hover {
  background: var(--clr-secondary);
  color: var(--clr-white);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: var(--glass-border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--box-shadow);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}

.logo {
  font-family: var(--font-english);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--clr-primary);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--clr-secondary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
  right: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--clr-dark);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.cart-btn:hover {
  color: var(--clr-secondary);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--clr-primary);
  color: var(--clr-dark);
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-english);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--clr-dark);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  color: var(--clr-secondary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: var(--clr-light);
  color: var(--clr-dark);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f3ef 50%, #ebe8e2 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a976' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
  opacity: 0.5;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  z-index: 2;
  position: relative;
}

/* In RTL, reverse the order so image appears on left, text on right */
html[dir="rtl"] .hero-container .hero-image {
  order: 2;
}

html[dir="rtl"] .hero-container .hero-content {
  order: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--clr-dark);
  text-shadow: none;
}

.hero-content h1 span {
  color: var(--clr-primary);
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--clr-primary);
  font-weight: 600;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #4B5563;
  max-width: 500px;
}

.hero-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
  max-width: 500px;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: white;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: var(--border-radius);
  color: var(--clr-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--box-shadow);
}

.hero-badge i {
  color: var(--clr-primary);
  font-size: 1.5rem;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 201, 76, 0.15);
  padding: 8px 16px;
  border-radius: 30px;
  color: var(--clr-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
  border: 1px solid rgba(242, 201, 76, 0.3);
}

.hero-feature-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 20px 25px;
  border-radius: var(--border-radius);
  margin: 25px 0;
  border: 1px solid rgba(242, 201, 76, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-feature-box i {
  color: var(--clr-primary);
  font-size: 1.5rem;
  margin-top: 3px;
}

.hero-feature-box p {
  color: #4B5563;
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.hero-features-row {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  min-width: 80px;
}

.hero-feature-item i {
  color: var(--clr-primary);
  font-size: 1.8rem;
}

.hero-feature-item span {
  color: var(--clr-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-feature-item span small {
  display: block;
  color: #6B7280;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 2px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--clr-dark);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--clr-secondary);
  font-size: 1.1rem;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--clr-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  group: hover;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.product-image {
  position: relative;
  padding-top: 133%; /* 3:4 aspect ratio */
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--clr-primary);
  color: var(--clr-dark);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

.product-info {
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 3;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--clr-dark);
}

.product-price {
  font-family: var(--font-english);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-secondary);
  margin-bottom: 15px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--clr-white);
  padding: 40px 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--clr-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--clr-secondary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--clr-primary);
  color: var(--clr-dark);
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-desc {
  color: #6B7280;
  font-size: 0.95rem;
}

/* Cart Sidebar */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  left: -400px;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: var(--clr-white);
  z-index: 1100;
  box-shadow: 10px 0 30px rgba(0,0,0,0.2);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  transform: translateX(400px);
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.5rem;
}

.close-cart {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--clr-dark);
  transition: var(--transition);
}

.close-cart:hover {
  color: #EF4444;
  transform: rotate(90deg);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-empty {
  text-align: center;
  color: #6B7280;
  margin-top: 50px;
}

.cart-empty i {
  font-size: 3rem;
  color: #D1D5DB;
  margin-bottom: 15px;
}

.cart-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F3F4F6;
}

.cart-item-img {
  width: 80px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--clr-secondary);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-english);
}

.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
}

.qty-btn {
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--clr-light);
}

.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  font-family: var(--font-english);
  font-weight: 600;
  background: transparent;
}

.remove-item {
  background: transparent;
  border: none;
  color: #EF4444;
  cursor: pointer;
  transition: var(--transition);
}

.remove-item:hover {
  transform: scale(1.1);
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #E5E7EB;
  background: var(--clr-light);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cart-total span:last-child {
  font-family: var(--font-english);
  color: var(--clr-secondary);
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: var(--clr-dark);
  color: var(--clr-white);
  padding: 60px 0 20px;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--clr-white);
  margin-bottom: 20px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
}

.social-links a:hover {
  background: var(--clr-primary);
  color: var(--clr-dark);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--clr-primary);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--clr-secondary);
  padding-right: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  font-family: var(--font-english);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    box-shadow: var(--box-shadow);
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
  }

  .nav-links.active {
    max-height: 500px; /* Arbitrary large value */
    padding: 20px;
    opacity: 1;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }

  html[dir="rtl"] .hero-container .hero-image {
    order: 1;
  }

  html[dir="rtl"] .hero-container .hero-content {
    order: 2;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-badge {
    bottom: 20px;
    left: 20px;
    right: 20px;
    justify-content: center;
  }

  .hero-badge-top {
    justify-content: center;
  }

  .hero-feature-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-features-row {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Abayas Showcase Carousel */
.abayas-carousel-section {
  background: var(--clr-dark);
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  border-top: 3px solid var(--clr-primary);
  border-bottom: 3px solid var(--clr-primary);
  margin: 40px 0;
}

.abayas-carousel-title {
  text-align: center;
  color: var(--clr-primary);
  margin-bottom: 40px;
  font-size: 2.2rem;
  font-weight: 700;
}

.abayas-carousel-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
}

.abaya-carousel-item {
  width: 210px;
  min-width: 210px;
  aspect-ratio: 1 / 2;
  background: var(--clr-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
}

.abaya-carousel-item:hover {
  border-color: var(--clr-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(242, 201, 76, 0.2);
}

.abaya-carousel-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #f5f5f5;
  flex-shrink: 0;
}

.wanda-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--clr-primary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
}

.abaya-carousel-info {
  padding: 20px;
  text-align: center;
}

.abaya-carousel-info h3 {
  color: var(--clr-dark);
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.abaya-carousel-info .price {
  color: var(--clr-secondary);
  font-weight: bold;
  font-size: 1.1rem;
}

/* RTL scrolling to right visually means it moves left to right */
/* Carousel Navigation */
.carousel-wrapper {
  position: relative;
  margin: 20px 0;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--clr-primary);
  color: var(--clr-dark);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  font-size: 1.2rem;
}

.carousel-nav:hover {
  background: var(--clr-secondary);
  color: var(--clr-white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  right: 10px;
}

.carousel-nav.next {
  left: 10px;
}

/* Center carousels with few items */
#track-under, #track-niqabs {
  justify-content: center;
}


/* Hero Buttons - Professional UI/UX */
.hero-btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--clr-primary), #d4a976);
  color: var(--clr-dark);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(242, 201, 76, 0.4), 0 0 0 4px rgba(242, 201, 76, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy hover */
  position: relative;
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 30px;
  z-index: 1;
}

.hero-btn-large::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #ffd98f, var(--clr-primary));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}

.hero-btn-large:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(242, 201, 76, 0.6), 0 0 0 6px rgba(242, 201, 76, 0.15);
  color: var(--clr-dark);
}

.hero-btn-large:hover::before {
  opacity: 1;
}

.hero-btn-large i {
  transition: transform 0.4s ease;
  font-size: 1.1rem;
}

.hero-btn-large:hover i {
  transform: translateX(-5px); /* Moves left in RTL */
}
