/* ===== Base Reset & Variables ===== */
:root {
  --dark-950: #0a0a0a;
  --dark-900: #111111;
  --dark-800: #1a1a1a;
  --dark-700: #252525;
  --dark-600: #333333;
  --gold-500: #d4a853;
  --gold-400: #e4c373;
  --gold-300: #f0d68a;
  --gold-600: #b8922f;
  --cream-100: #faf5e8;
  --cream-200: #f0e6cc;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  background-color: var(--dark-950);
  color: var(--cream-100);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-900);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-500);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-400);
}

/* ===== Utility Classes ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Gold gradient text */
.gold-gradient-text {
  background: linear-gradient(135deg, #d4a853, #f0d68a, #d4a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shimmer animation */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer {
  background: linear-gradient(90deg, #d4a853 0%, #f0d68a 25%, #d4a853 50%, #f0d68a 75%, #d4a853 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* Fade in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Float animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-bounce {
  animation: bounce 1.5s ease-in-out infinite;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 640px) {
  .navbar-content {
    height: 80px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

@media (min-width: 640px) {
  .logo {
    gap: 0.75rem;
  }
}

.logo-icon {
  position: relative;
  width: 28px;
  height: 28px;
  color: var(--gold-500);
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .logo-icon {
    width: 36px;
    height: 36px;
  }
}

.logo:hover .logo-icon {
  color: var(--gold-400);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-arabic {
  font-size: 1.25rem;
  font-weight: 900;
  font-family: "Tajawal", sans-serif;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .logo-arabic {
    font-size: 1.5rem;
  }
}

.logo-english {
  font-size: 9px;
  color: rgba(212, 168, 83, 0.6);
  margin-top: -4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .logo-english {
    font-size: 10px;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: rgba(240, 230, 204, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--gold-400);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .nav-actions {
    gap: 1rem;
  }
}

.cart-btn {
  position: relative;
  padding: 0.5rem;
  background: none;
  border: none;
  color: rgba(240, 230, 204, 0.8);
  cursor: pointer;
  transition: color 0.3s;
}

.cart-btn:hover {
  color: var(--gold-400);
}

.cart-btn svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 640px) {
  .cart-btn svg {
    width: 24px;
    height: 24px;
  }
}

.cart-count {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 20px;
  height: 20px;
  background: var(--gold-500);
  color: var(--dark-950);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s;
}

.cart-count.show {
  transform: scale(1);
}

.shop-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to left, var(--gold-500), var(--gold-600));
  color: var(--dark-950);
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(212, 168, 83, 0.25);
}

@media (min-width: 640px) {
  .shop-btn {
    display: flex;
  }
}

.shop-btn:hover {
  background: linear-gradient(to left, var(--gold-400), var(--gold-500));
  box-shadow: 0 10px 15px -3px rgba(212, 168, 83, 0.4);
}

.menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: rgba(240, 230, 204, 0.8);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn:hover {
  color: var(--gold-400);
}

.menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 168, 83, 0.1);
}

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

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-content {
  padding: 1.5rem;
}

.mobile-nav-link {
  display: block;
  color: rgba(240, 230, 204, 0.8);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(37, 37, 37, 0.5);
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: var(--gold-400);
}

.mobile-shop-btn {
  display: block;
  text-align: center;
  background: linear-gradient(to left, var(--gold-500), var(--gold-600));
  color: var(--dark-950);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 1rem;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.6), var(--dark-950));
}

.hero-decor-1 {
  position: absolute;
  top: 80px;
  right: 40px;
  width: 288px;
  height: 288px;
  background: rgba(212, 168, 83, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-decor-2 {
  position: absolute;
  bottom: 80px;
  left: 40px;
  width: 384px;
  height: 384px;
  background: rgba(212, 168, 83, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 80px;
}

@media (min-width: 640px) {
  .hero-content {
    padding-top: 96px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-badge {
    margin-bottom: 2rem;
  }
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold-500);
}

.hero-badge span {
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .hero-badge span {
    font-size: 0.875rem;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: "Tajawal", sans-serif;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(240, 230, 204, 0.7);
  max-width: 672px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-subtitle .highlight {
  color: var(--gold-400);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    margin-bottom: 4rem;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(to left, var(--gold-500), var(--gold-600));
  color: var(--dark-950);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 25px 50px -12px rgba(212, 168, 83, 0.3);
  width: 100%;
  border: none;
  cursor: pointer;
}

@media (min-width: 640px) {
  .btn-primary {
    width: auto;
    padding: 1rem 2.5rem;
  }
}

.btn-primary:hover {
  background: linear-gradient(to left, var(--gold-400), var(--gold-500));
  box-shadow: 0 25px 50px -12px rgba(212, 168, 83, 0.5);
  transform: scale(1.05);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px solid rgba(212, 168, 83, 0.3);
  color: var(--gold-400);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
  width: 100%;
  cursor: pointer;
}

@media (min-width: 640px) {
  .btn-secondary {
    width: auto;
    padding: 1rem 2.5rem;
  }
}

.btn-secondary:hover {
  border-color: rgba(212, 168, 83, 0.6);
  background: rgba(212, 168, 83, 0.05);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 768px;
  margin: 0 auto 3rem;
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-item {
  text-align: center;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(212, 168, 83, 0.1);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 1.875rem;
  }
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(240, 230, 204, 0.5);
}

@media (min-width: 640px) {
  .stat-label {
    font-size: 0.875rem;
  }
}

.scroll-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(212, 168, 83, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.scroll-indicator:hover {
  color: var(--gold-400);
}

.scroll-indicator span {
  font-size: 0.75rem;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-500);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-badge .line {
  width: 32px;
  height: 1px;
  background: var(--gold-500);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  font-family: "Tajawal", sans-serif;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-desc {
  color: rgba(240, 230, 204, 0.5);
  font-size: 1rem;
  max-width: 576px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .section-desc {
    font-size: 1.125rem;
  }
}

/* ===== Books Section ===== */
.books-section {
  position: relative;
  padding: 5rem 0;
}

@media (min-width: 640px) {
  .books-section {
    padding: 7rem 0;
  }
}

.books-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(212, 168, 83, 0.2), transparent);
}

.books-section .decor {
  position: absolute;
  top: 50%;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(212, 168, 83, 0.03);
  border-radius: 50%;
  filter: blur(60px);
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .category-filter {
    gap: 0.75rem;
    margin-bottom: 3.5rem;
  }
}

.category-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(26, 26, 26, 0.6);
  color: rgba(240, 230, 204, 0.6);
  border: 1px solid rgba(37, 37, 37, 0.5);
}

@media (min-width: 640px) {
  .category-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
}

.category-btn:hover {
  border-color: rgba(212, 168, 83, 0.3);
  color: var(--gold-400);
}

.category-btn.active {
  background: var(--gold-500);
  color: var(--dark-950);
  border-color: var(--gold-500);
  box-shadow: 0 10px 15px -3px rgba(212, 168, 83, 0.3);
}

.books-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .books-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .books-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Book Card ===== */
.book-card {
  position: relative;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  border: 1px solid rgba(212, 168, 83, 0.1);
  overflow: hidden;
  transition: all 0.5s;
}

.book-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 0 25px 50px -12px rgba(212, 168, 83, 0.1);
}

.book-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  background: var(--gold-500);
  color: var(--dark-950);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.book-discount {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  background: rgba(239, 68, 68, 0.9);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}

.book-image {
  position: relative;
  height: 256px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .book-image {
    height: 288px;
  }
}

.book-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.book-card:hover .book-image img {
  transform: scale(1.1);
}

.book-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark-800), rgba(26, 26, 26, 0.2), transparent);
}

.book-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.book-card:hover .book-overlay {
  opacity: 1;
}

.add-to-cart-hover {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--gold-500);
  color: var(--dark-950);
  box-shadow: 0 20px 25px -5px rgba(212, 168, 83, 0.3);
}

.add-to-cart-hover:hover {
  background: var(--gold-400);
  transform: scale(1.05);
}

.add-to-cart-hover.in-cart {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow: none;
}

.add-to-cart-hover svg {
  width: 16px;
  height: 16px;
}

.book-content {
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .book-content {
    padding: 1.5rem;
  }
}

.book-category {
  color: rgba(212, 168, 83, 0.7);
  font-size: 0.75rem;
  font-weight: 500;
}

.book-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream-100);
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  font-family: "Tajawal", sans-serif;
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .book-title {
    font-size: 1.5rem;
  }
}

.book-card:hover .book-title {
  color: var(--gold-400);
}

.book-subtitle {
  font-size: 0.875rem;
  color: rgba(240, 230, 204, 0.5);
  margin-bottom: 0.75rem;
}

.book-desc {
  font-size: 0.875rem;
  color: rgba(240, 230, 204, 0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.book-features {
  margin-bottom: 1rem;
}

.book-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(240, 230, 204, 0.5);
  margin-bottom: 0.375rem;
}

.book-feature svg {
  width: 12px;
  height: 12px;
  color: rgba(212, 168, 83, 0.7);
  flex-shrink: 0;
}

.book-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.book-rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.stars svg {
  width: 14px;
  height: 14px;
}

.stars svg.filled {
  color: var(--gold-500);
  fill: var(--gold-500);
}

.stars svg.empty {
  color: var(--dark-600);
}

.book-rating span {
  font-size: 0.75rem;
  color: rgba(240, 230, 204, 0.5);
}

.book-pages {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: rgba(240, 230, 204, 0.4);
}

.book-pages svg {
  width: 14px;
  height: 14px;
}

.book-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(37, 37, 37, 0.5);
}

.book-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.book-price .current {
  font-size: 1.5rem;
  font-weight: 900;
}

.book-price .original {
  font-size: 0.875rem;
  color: rgba(240, 230, 204, 0.3);
  text-decoration: line-through;
}

.add-to-cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: linear-gradient(to left, var(--gold-500), var(--gold-600));
  color: var(--dark-950);
  box-shadow: 0 10px 15px -3px rgba(212, 168, 83, 0.2);
}

.add-to-cart-btn:hover {
  background: linear-gradient(to left, var(--gold-400), var(--gold-500));
  transform: scale(1.05);
}

.add-to-cart-btn.in-cart {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow: none;
}

.add-to-cart-btn svg {
  width: 16px;
  height: 16px;
}

/* ===== Bundle Offer ===== */
.bundle-offer {
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(212, 168, 83, 0.2);
  background: linear-gradient(to left, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.8));
  padding: 2rem;
  text-align: center;
}

@media (min-width: 640px) {
  .bundle-offer {
    margin-top: 5rem;
    padding: 3rem;
  }
}

@media (min-width: 768px) {
  .bundle-offer {
    padding: 4rem;
  }
}

.bundle-offer .decor {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 256px;
  height: 128px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.bundle-offer-content {
  position: relative;
  z-index: 10;
}

.bundle-badge {
  display: inline-block;
  background: rgba(212, 168, 83, 0.1);
  color: var(--gold-400);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.bundle-title {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: "Tajawal", sans-serif;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .bundle-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .bundle-title {
    font-size: 2.25rem;
  }
}

.bundle-desc {
  color: rgba(240, 230, 204, 0.5);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  max-width: 512px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .bundle-desc {
    font-size: 1rem;
  }
}

.bundle-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .bundle-cta {
    flex-direction: row;
  }
}

.bundle-prices {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(240, 230, 204, 0.4);
}

.bundle-prices .old {
  text-decoration: line-through;
}

.bundle-prices .new {
  color: var(--gold-400);
  font-weight: 700;
  font-size: 1.125rem;
}

/* ===== Why Section ===== */
.why-section {
  position: relative;
  padding: 5rem 0;
  background: rgba(17, 17, 17, 0.5);
}

@media (min-width: 640px) {
  .why-section {
    padding: 7rem 0;
  }
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(212, 168, 83, 0.2), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(26, 26, 26, 0.4);
  border: 1px solid rgba(212, 168, 83, 0.05);
  transition: all 0.5s;
}

@media (min-width: 640px) {
  .feature-card {
    padding: 2rem;
  }
}

.feature-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
  background: rgba(26, 26, 26, 0.6);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-icon.amber { background: linear-gradient(to bottom right, #f59e0b, #d97706); }
.feature-icon.blue { background: linear-gradient(to bottom right, #3b82f6, #0891b2); }
.feature-icon.green { background: linear-gradient(to bottom right, #22c55e, #059669); }
.feature-icon.purple { background: linear-gradient(to bottom right, #a855f7, #7c3aed); }
.feature-icon.red { background: linear-gradient(to bottom right, #ef4444, #f43f5e); }
.feature-icon.orange { background: linear-gradient(to bottom right, #f97316, #f59e0b); }

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream-100);
  margin-bottom: 0.5rem;
  font-family: "Tajawal", sans-serif;
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .feature-title {
    font-size: 1.25rem;
  }
}

.feature-card:hover .feature-title {
  color: var(--gold-400);
}

.feature-desc {
  font-size: 0.875rem;
  color: rgba(240, 230, 204, 0.5);
  line-height: 1.6;
}

.feature-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-top-left-radius: 1.5rem;
  transition: all 0.5s;
}

.feature-card:hover .feature-corner {
  border-color: rgba(212, 168, 83, 0.2);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  position: relative;
  padding: 5rem 0;
}

@media (min-width: 640px) {
  .testimonials-section {
    padding: 7rem 0;
  }
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(212, 168, 83, 0.2), transparent);
}

.testimonials-section .decor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 288px;
  height: 288px;
  background: rgba(212, 168, 83, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(26, 26, 26, 0.4);
  border: 1px solid rgba(212, 168, 83, 0.05);
  transition: all 0.5s;
}

@media (min-width: 640px) {
  .testimonial-card {
    padding: 2rem;
  }
}

.testimonial-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
}

.testimonial-quote {
  width: 40px;
  height: 40px;
  color: rgba(212, 168, 83, 0.15);
  margin-bottom: 1rem;
}

.testimonial-text {
  color: rgba(240, 230, 204, 0.7);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .testimonial-text {
    font-size: 1rem;
  }
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 1rem;
}

.testimonial-rating svg {
  width: 16px;
  height: 16px;
}

.testimonial-rating svg.filled {
  color: var(--gold-500);
  fill: var(--gold-500);
}

.testimonial-rating svg.empty {
  color: var(--dark-600);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(37, 37, 37, 0.5);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--gold-500), var(--gold-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-950);
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonial-info h4 {
  color: var(--cream-100);
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonial-info p {
  color: rgba(212, 168, 83, 0.5);
  font-size: 0.75rem;
}

/* ===== Newsletter Section ===== */
.newsletter-section {
  position: relative;
  padding: 5rem 0;
  background: rgba(17, 17, 17, 0.5);
}

@media (min-width: 640px) {
  .newsletter-section {
    padding: 7rem 0;
  }
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(212, 168, 83, 0.2), transparent);
}

.newsletter-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(212, 168, 83, 0.2);
  background: linear-gradient(to bottom right, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.8));
  padding: 2rem;
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .newsletter-card {
    padding: 3rem;
  }
}

@media (min-width: 768px) {
  .newsletter-card {
    padding: 4rem;
  }
}

.newsletter-card .decor-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 192px;
  height: 192px;
  background: rgba(212, 168, 83, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.newsletter-card .decor-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 192px;
  height: 192px;
  background: rgba(212, 168, 83, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.newsletter-content {
  position: relative;
  z-index: 10;
}

.newsletter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.2);
  margin-bottom: 1.5rem;
}

.newsletter-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold-500);
}

.newsletter-title {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: "Tajawal", sans-serif;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .newsletter-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .newsletter-title {
    font-size: 2.25rem;
  }
}

.newsletter-desc {
  color: rgba(240, 230, 204, 0.5);
  font-size: 0.875rem;
  max-width: 448px;
  margin: 0 auto 2rem;
}

@media (min-width: 640px) {
  .newsletter-desc {
    font-size: 1rem;
  }
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 448px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-input-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
}

.newsletter-input-wrapper svg {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(240, 230, 204, 0.3);
}

.newsletter-input {
  width: 100%;
  background: rgba(37, 37, 37, 0.6);
  border: 1px solid rgba(51, 51, 51, 0.5);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem 0.875rem 3rem;
  color: var(--cream-100);
  font-size: 0.875rem;
  font-family: "Cairo", sans-serif;
  transition: border-color 0.3s;
}

.newsletter-input::placeholder {
  color: rgba(240, 230, 204, 0.3);
}

.newsletter-input:focus {
  outline: none;
  border-color: rgba(212, 168, 83, 0.5);
}

.newsletter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: linear-gradient(to left, var(--gold-500), var(--gold-600));
  color: var(--dark-950);
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(212, 168, 83, 0.2);
}

@media (min-width: 640px) {
  .newsletter-btn {
    width: auto;
  }
}

.newsletter-btn:hover {
  background: linear-gradient(to left, var(--gold-400), var(--gold-500));
}

.newsletter-btn svg {
  width: 16px;
  height: 16px;
}

.newsletter-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #4ade80;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  max-width: 448px;
  margin: 0 auto;
}

.newsletter-success svg {
  width: 24px;
  height: 24px;
}

.newsletter-success span {
  font-weight: 700;
}

.newsletter-privacy {
  color: rgba(240, 230, 204, 0.3);
  font-size: 0.75rem;
  margin-top: 1rem;
}

/* ===== FAQ Section ===== */
.faq-section {
  position: relative;
  padding: 5rem 0;
}

@media (min-width: 640px) {
  .faq-section {
    padding: 7rem 0;
  }
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(212, 168, 83, 0.2), transparent);
}

.faq-container {
  max-width: 768px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .faq-list {
    gap: 1rem;
  }
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid rgba(37, 37, 37, 0.3);
  background: rgba(26, 26, 26, 0.3);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(212, 168, 83, 0.1);
}

.faq-item.open {
  border-color: rgba(212, 168, 83, 0.3);
  background: rgba(26, 26, 26, 0.6);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  text-align: right;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-family: "Cairo", sans-serif;
}

@media (min-width: 640px) {
  .faq-question {
    padding: 1.5rem;
  }
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.faq-question-icon {
  width: 20px;
  height: 20px;
  color: rgba(240, 230, 204, 0.3);
  flex-shrink: 0;
  transition: color 0.3s;
}

.faq-item.open .faq-question-icon {
  color: var(--gold-500);
}

.faq-question-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cream-100);
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .faq-question-text {
    font-size: 1rem;
  }
}

.faq-item.open .faq-question-text {
  color: var(--gold-400);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: rgba(212, 168, 83, 0.5);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer-content {
  padding: 0 1.25rem 1.25rem 3.5rem;
}

@media (min-width: 640px) {
  .faq-answer-content {
    padding: 0 1.5rem 1.5rem 3.5rem;
  }
}

.faq-answer p {
  font-size: 0.875rem;
  color: rgba(240, 230, 204, 0.6);
  line-height: 1.8;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  background: rgba(17, 17, 17, 0.8);
  border-top: 1px solid rgba(212, 168, 83, 0.1);
}

.footer-main {
  padding: 3rem 0;
}

@media (min-width: 640px) {
  .footer-main {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 640px) {
  .footer-brand {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo svg {
  width: 32px;
  height: 32px;
  color: var(--gold-500);
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: "Tajawal", sans-serif;
}

.footer-logo-english {
  font-size: 10px;
  color: rgba(212, 168, 83, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: -4px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(240, 230, 204, 0.4);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: rgba(37, 37, 37, 0.6);
  border: 1px solid rgba(51, 51, 51, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 230, 204, 0.5);
  transition: all 0.3s;
}

.footer-social a:hover {
  color: var(--gold-400);
  border-color: rgba(212, 168, 83, 0.3);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-col h3 {
  color: var(--gold-400);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(240, 230, 204, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--gold-400);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(240, 230, 204, 0.4);
}

.footer-contact li svg {
  width: 16px;
  height: 16px;
  color: rgba(212, 168, 83, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(37, 37, 37, 0.3);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(240, 230, 204, 0.3);
}

@media (min-width: 640px) {
  .footer-bottom-content {
    flex-direction: row;
  }
}

.footer-bottom p {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-bottom .heart {
  width: 12px;
  height: 12px;
  color: #ef4444;
  fill: #ef4444;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  color: rgba(240, 230, 204, 0.3);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold-400);
}

/* ===== Cart Sidebar ===== */
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.cart-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  width: 100%;
  max-width: 448px;
  background: var(--dark-900);
  border-left: 1px solid rgba(212, 168, 83, 0.1);
  box-shadow: -25px 0 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(37, 37, 37, 0.5);
}

.cart-header-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-header-title svg {
  width: 24px;
  height: 24px;
  color: var(--gold-500);
}

.cart-header-title h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream-100);
  font-family: "Tajawal", sans-serif;
}

.cart-header-count {
  background: rgba(212, 168, 83, 0.2);
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}

.cart-close {
  padding: 0.5rem;
  background: none;
  border: none;
  color: rgba(240, 230, 204, 0.4);
  cursor: pointer;
  transition: color 0.3s;
}

.cart-close:hover {
  color: var(--cream-100);
}

.cart-close svg {
  width: 24px;
  height: 24px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 5rem 0;
}

.cart-empty svg {
  width: 64px;
  height: 64px;
  color: var(--dark-600);
  margin: 0 auto 1rem;
}

.cart-empty h3 {
  color: rgba(240, 230, 204, 0.4);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.cart-empty p {
  color: rgba(240, 230, 204, 0.3);
  font-size: 0.875rem;
}

.cart-empty-btn {
  margin-top: 1.5rem;
  background: rgba(212, 168, 83, 0.1);
  color: var(--gold-400);
  border: 1px solid rgba(212, 168, 83, 0.2);
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.cart-empty-btn:hover {
  background: rgba(212, 168, 83, 0.2);
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(37, 37, 37, 0.3);
  margin-bottom: 1rem;
}

.cart-item img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.75rem;
}

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

.cart-item-info h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cream-100);
  margin-bottom: 0.25rem;
}

.cart-item-info p {
  font-size: 0.75rem;
  color: rgba(240, 230, 204, 0.4);
  margin-bottom: 0.5rem;
}

.cart-item-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-price .current {
  font-size: 0.875rem;
  font-weight: 700;
}

.cart-item-price .original {
  font-size: 0.75rem;
  color: rgba(240, 230, 204, 0.3);
  text-decoration: line-through;
}

.cart-item-remove {
  align-self: flex-start;
  padding: 0.5rem;
  background: none;
  border: none;
  color: rgba(248, 113, 113, 0.5);
  cursor: pointer;
  transition: color 0.3s;
}

.cart-item-remove:hover {
  color: #f87171;
}

.cart-item-remove svg {
  width: 16px;
  height: 16px;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(37, 37, 37, 0.5);
}

.cart-savings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: 0.75rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  color: #4ade80;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-total span {
  color: rgba(240, 230, 204, 0.5);
}

.cart-total-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.cart-total-price .current {
  font-size: 1.5rem;
  font-weight: 900;
}

.cart-total-price .original {
  font-size: 0.875rem;
  color: rgba(240, 230, 204, 0.3);
  text-decoration: line-through;
}

.cart-checkout {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(to left, var(--gold-500), var(--gold-600));
  color: var(--dark-950);
  padding: 1rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 20px 25px -5px rgba(212, 168, 83, 0.2);
}

.cart-checkout:hover {
  background: linear-gradient(to left, var(--gold-400), var(--gold-500));
  box-shadow: 0 20px 25px -5px rgba(212, 168, 83, 0.4);
}

.cart-checkout svg {
  width: 20px;
  height: 20px;
}

.cart-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(240, 230, 204, 0.3);
  margin-top: 1rem;
}

.cart-trust svg {
  width: 16px;
  height: 16px;
  color: rgba(34, 197, 94, 0.5);
}

/* ===== Floating Buttons ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 50;
  width: 56px;
  height: 56px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.3);
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #4ade80;
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

.scroll-top-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 48px;
  height: 48px;
  background: rgba(37, 37, 37, 0.8);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: var(--dark-700);
  border-color: rgba(212, 168, 83, 0.4);
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
}

/* ===== Animations ===== */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

/* Hide elements initially for animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
