/* Egyptian Creativity - Wishlist Page with Index Page Design */

/* CSS Variables - Matching Index Page Color Palette */
:root {
  /* Your specified color palette */
  --royal-dark-blue: #052077;
  --rich-blue: #2b2b90;
  --medium-blue-violet: #3535ab;
  --royal-orange: #e06427;
  --soft-yellow: #e5bbcb;
  --soft-gold: #cb8a58;
  --beige-gold: #dfbe8c;
  --dark-golden-brown: #ba8249;
  
  /* Additional Egyptian colors */
  --pyramid-gold: #FFD700;
  --desert-sand: #F4E4BC;
  --papyrus: #F7F3E3;
  --ancient-bronze: #CD7F32;
  
  /* Text colors */
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-light: #ffffff;
  --text-gold: var(--soft-gold);
  
  /* Shadows and effects */
  --shadow-primary: 0 10px 30px rgba(5, 32, 119, 0.3);
  --shadow-gold: 0 0 30px rgba(203, 138, 88, 0.5);
  --glow-gold: 0 0 20px rgba(255, 215, 0, 0.6);
  
  /* Typography */
  --font-primary: 'Cinzel', serif;
  --font-secondary: 'Cormorant Garamond', serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
  font-size: 16px;
  cursor: url('../images/go3raann.cur'), auto !important;
}

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--rich-blue) 0%, var(--medium-blue-violet) 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ANIMATED BACKGROUND (Same as Index Page) */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rich-blue) 0%, var(--medium-blue-violet) 50%, var(--royal-dark-blue) 100%);
}

.pyramid-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, transparent 50%, rgba(212, 175, 55, 0.05) 50%);
  animation: pyramidRotate 20s linear infinite;
}

@keyframes pyramidRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.sand-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.sand-particles::before,
.sand-particles::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--pyramid-gold);
  border-radius: 50%;
  animation: sandFloat 15s linear infinite;
}

.sand-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.sand-particles::after {
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

@keyframes sandFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10%, 90% {
    opacity: 1;
  }
  50% {
    transform: translateY(-100px) translateX(50px);
  }
}

.hieroglyph-symbols {
  position: absolute;
  width: 100%;
  height: 100%;
}

.symbol {
  position: absolute;
  font-size: 2rem;
  color: rgba(212, 175, 55, 0.1);
  animation: symbolFloat 20s ease-in-out infinite;
}

.symbol:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.symbol:nth-child(2) { top: 20%; right: 10%; animation-delay: 3s; }
.symbol:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 6s; }
.symbol:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 9s; }
.symbol:nth-child(5) { top: 50%; left: 8%; animation-delay: 12s; }
.symbol:nth-child(6) { top: 70%; right: 5%; animation-delay: 15s; }

@keyframes symbolFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
    opacity: 0.3;
  }
}

.golden-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.1), transparent, rgba(212, 175, 55, 0.05), transparent);
  animation: raysRotate 30s linear infinite;
}

@keyframes raysRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.floating-artifacts {
  position: absolute;
  width: 100%;
  height: 100%;
}

.artifact {
  position: absolute;
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.2);
  animation: artifactFloat 15s ease-in-out infinite;
}

.artifact-1 { top: 10%; left: 10%; animation-delay: 0s; }
.artifact-2 { top: 20%; right: 15%; animation-delay: 4s; }
.artifact-3 { bottom: 30%; left: 20%; animation-delay: 8s; }
.artifact-4 { bottom: 20%; right: 10%; animation-delay: 12s; }

@keyframes artifactFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.4;
  }
}

/* Loading Screen */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--royal-dark-blue) 0%, var(--rich-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: all 1s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: var(--text-light);
}

.loading-pyramid {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  animation: pulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

.loading-pyramid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loading-text {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--pyramid-gold);
}

.loading-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--soft-yellow);
}

.loading-progress {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: 0 auto 2rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--pyramid-gold), var(--soft-gold));
  border-radius: 2px;
  width: 0;
  transition: width 0.3s ease;
}

.skip-btn {
  background: transparent;
  border: 2px solid var(--pyramid-gold);
  color: var(--pyramid-gold);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.skip-btn:hover {
  background: var(--pyramid-gold);
  color: var(--royal-dark-blue);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* Header - Same as Index Page */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 32, 119, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(203, 138, 88, 0.3);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(5, 32, 119, 0.98);
  box-shadow: var(--shadow-primary);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 1.2rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-light);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--pyramid-gold);
  line-height: 1;
}

.logo-sub {
  font-size: 0.8rem;
  color: var(--soft-yellow);
  line-height: 1;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pyramid-gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pyramid-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-icon {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-light);
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.header-icon:hover {
  background: var(--pyramid-gold);
  color: var(--royal-dark-blue);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.header-icon.active {
  background: var(--pyramid-gold);
  color: var(--royal-dark-blue);
}

.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--royal-orange);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 0.75rem;
  width: 44px;
  height: 44px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.mobile-menu-btn span {
  width: 22px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-smooth);
  display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section - Same as Index Page */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  position: relative;
  background: transparent;
}
/* Ensure hero spacing doesn't collide with fixed navbar across breakpoints */
@media (max-width: 992px) {
  .hero {
    padding: 140px 0 80px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 130px 0 70px;
  }
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hero-text {
  color: var(--text-light);
}

.hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.7rem !important;
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  border: 2px solid #ffd700 !important;
  border-radius: 50px !important;
  padding: 0.7rem 2.5rem !important;
  margin-bottom: 2rem !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4) !important;
  letter-spacing: 0.04em !important;
  text-align: center !important;
  justify-content: center !important;
  text-shadow: none !important;
}

.section-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #232c7a !important;
  border: 1.5px solid var(--pyramid-gold) !important;
  border-radius: 40px !important;
  padding: 0.7rem 2.5rem !important;
  margin-bottom: 2rem !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--pyramid-gold) !important;
  box-shadow: 0 4px 24px 0 rgba(203, 138, 88, 0.10) !important;
  letter-spacing: 0.04em !important;
  text-align: center !important;
  text-shadow: none !important;
  background-clip: padding-box !important;
}

.hero-title {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-title .line {
  display: block;
  line-height: 1.1;
}

.hero-title .golden {
  background: linear-gradient(45deg, var(--pyramid-gold), var(--soft-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--soft-yellow);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hero-buttons .btn {
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  border-radius: 2.5rem;
  font-size: 1.25rem;
  padding: 1.2rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--royal-orange);
  color: var(--text-light);
  box-shadow: 0 4px 20px rgba(224, 100, 39, 0.4);
}

.btn-primary:hover {
  background: #d55a1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224, 100, 39, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--pyramid-gold);
  border: 2px solid var(--pyramid-gold);
}

.btn-secondary:hover {
  background: var(--pyramid-gold);
  color: var(--royal-dark-blue);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pyramid-gold);
  line-height: 1;
  text-shadow: var(--glow-gold);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--soft-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--soft-yellow);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-line {
  width: 1px;
  height: 30px;
  background: var(--pyramid-gold);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.5); }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Filter Section */
.filter-section {
  padding: 2rem 0;
  background: rgba(53, 53, 171, 0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(203, 138, 88, 0.3);
  border-bottom: 1px solid rgba(203, 138, 88, 0.3);
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(203, 138, 88, 0.3);
  border-radius: 20px;
  box-shadow: var(--shadow-primary);
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-left {
  flex: 1;
}

.wishlist-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

.summary-label {
  color: var(--soft-yellow);
  font-size: 0.9rem;
}

.summary-value {
  color: var(--pyramid-gold);
  font-size: 1rem;
  font-weight: 700;
}

.summary-separator {
  color: var(--soft-gold);
}

.filter-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sort-select,
.filter-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(203, 138, 88, 0.3);
  color: var(--text-light);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  min-width: 160px;
  backdrop-filter: blur(10px);
}

.sort-select, .filter-select, .sort-select option, .filter-select option {
  background-color: rgba(43, 43, 144, 0.97) !important;
  color: var(--text-light) !important;
  border: 1px solid var(--pyramid-gold) !important;
}

.sort-select:focus,
.filter-select:focus {
  outline: none;
  border-color: var(--pyramid-gold);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.view-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2px;
  backdrop-filter: blur(10px);
}

.view-btn {
  background: transparent;
  border: none;
  color: var(--soft-yellow);
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-btn.active,
.view-btn:hover {
  background: var(--pyramid-gold);
  color: var(--royal-dark-blue);
}

/* Main Content Spacing - Consistent with other pages */
main {
    padding: 170px 0 80px;
    margin-top: 20px;
    position: relative;
}

/* Wishlist Section */
.wishlist-section {
  padding: 4rem 0;
  background: rgba(43, 43, 144, 0.3);
  backdrop-filter: blur(10px);
  min-height: 60vh;
}

.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-light);
}

.empty-icon {
  margin-bottom: 2rem;
  color: var(--pyramid-gold);
  opacity: 0.7;
}

.empty-state h2 {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  color: var(--pyramid-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.empty-state p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: var(--soft-yellow);
}

.empty-state .btn-primary {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* Wishlist Grid */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 2.5rem 0;
}

.wishlist-item {
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  margin: 0 0.5rem;
  background: rgba(44, 44, 120, 0.45);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(44, 44, 120, 0.18), 0 0 32px 0 rgba(255,215,0,0.10);
  border: 2.5px solid rgba(255, 215, 0, 0.18);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: var(--shadow-primary);
  opacity: 0;
  transform: translateY(30px);
}

.wishlist-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.wishlist-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(5, 32, 119, 0.4);
  border-color: var(--pyramid-gold);
}

.wishlist-item-image {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 auto 1.5rem auto;
  display: block;
}

.item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 32, 119, 0.8) 0%, rgba(203, 138, 88, 0.6) 100%);
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  backdrop-filter: blur(5px);
}

.remove-btn, .add-to-cart-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.7rem !important;
  font-family: var(--font-primary) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  border-radius: 2rem !important;
  border: 2.5px solid var(--pyramid-gold) !important;
  background: transparent !important;
  color: var(--text-light) !important;
  padding: 1.2rem 2.2rem !important;
  margin: 0.5rem auto 0.5rem auto !important;
  box-shadow: 0 0 18px 0 rgba(255,215,0,0.10) !important;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1) !important;
  letter-spacing: 0.03em !important;
  cursor: pointer !important;
  text-transform: none !important;
}

.remove-btn:hover, .add-to-cart-btn:hover {
  background: var(--pyramid-gold) !important;
  color: var(--royal-dark-blue) !important;
  box-shadow: 0 0 24px 0 var(--pyramid-gold) !important;
  border-color: var(--pyramid-gold) !important;
  transform: translateY(-2px) scale(1.04) !important;
}

.add-to-cart-btn:disabled {
  background: var(--soft-yellow) !important;
  color: var(--text-secondary) !important;
  border-color: var(--soft-yellow) !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.item-content {
  padding: 2.5rem;
}

.item-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.item-badge {
  background: var(--pyramid-gold);
  color: var(--royal-dark-blue);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.item-title {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  color: var(--pyramid-gold);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.item-description {
  font-size: 1rem;
  color: var(--soft-yellow);
  line-height: 1.7;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3; /* standard property for compatibility */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(203, 138, 88, 0.3);
  backdrop-filter: blur(10px);
}

.item-sku {
  color: var(--soft-yellow);
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

.item-availability {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.item-availability.in-stock {
  color: #10b981;
}

.item-availability.low-stock {
  color: #f59e0b;
}

.item-availability.out-of-stock {
  color: #ef4444;
}

.item-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.current-price {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  color: var(--pyramid-gold);
  font-weight: 800;
  text-shadow: var(--glow-gold);
}

.original-price {
  color: var(--soft-yellow);
  text-decoration: line-through;
  font-size: 1.3rem;
  opacity: 0.7;
}

.discount-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.item-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--soft-yellow);
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  border: 2px solid rgba(203, 138, 88, 0.3);
  font-weight: 600;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.feature-tag:hover {
  border-color: var(--pyramid-gold);
  background: rgba(255, 215, 0, 0.1);
  color: var(--pyramid-gold);
  transform: translateY(-2px);
}

.item-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.item-actions .btn-primary,
.item-actions .btn-secondary {
  flex: 1;
  justify-content: center;
  padding: 1.2rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-outline {
  background: transparent;
  color: var(--pyramid-gold);
  border: 2px solid var(--pyramid-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  font-weight: 700;
}

.btn-outline:hover {
  background: var(--pyramid-gold);
  color: var(--royal-dark-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* List View */
.wishlist-grid.list-view {
  grid-template-columns: 1fr;
}

.wishlist-item.list-view {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  height: auto;
}

.wishlist-item.list-view .item-image {
  aspect-ratio: 1;
}

.wishlist-item.list-view .item-overlay {
  display: none;
}

.wishlist-item.list-view .item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

/* Recommended Section */
.recommended-section {
  padding: 6rem 0;
  background: rgba(53, 53, 171, 0.3);
  backdrop-filter: blur(10px);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #232c7a;
  border: 1.5px solid var(--pyramid-gold);
  border-radius: 40px;
  padding: 0.7rem 2.5rem;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pyramid-gold);
  box-shadow: 0 4px 24px 0 rgba(203, 138, 88, 0.10);
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: none;
  background-clip: padding-box;
}

.section-title {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.section-description {
  font-size: 1.1rem;
  color: var(--soft-yellow);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.recommended-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(203, 138, 88, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s ease;
  position: relative;
  box-shadow: var(--shadow-primary);
  opacity: 0;
  transform: translateY(30px);
}

.recommended-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.recommended-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(5, 32, 119, 0.4);
  border-color: var(--pyramid-gold);
}

.rec-image {
  aspect-ratio: 1.2;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
}

.rec-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.recommended-item:hover .rec-image img {
  transform: scale(1.1) rotate(1deg);
}

.rec-add-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: rgba(5, 32, 119, 0.9);
  border: none;
  border-radius: 50%;
  color: var(--pyramid-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-bounce);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 15px rgba(5, 32, 119, 0.3);
}

.recommended-item:hover .rec-add-btn {
  opacity: 1;
  transform: scale(1);
}

.rec-add-btn:hover {
  background: var(--pyramid-gold);
  color: var(--royal-dark-blue);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.rec-content {
  padding: 2rem;
}

.rec-content h4 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  color: var(--pyramid-gold);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.rec-price {
  font-weight: 800;
  color: var(--pyramid-gold);
  font-size: 1.3rem;
  font-family: var(--font-primary);
  text-shadow: var(--glow-gold);
}

/* Newsletter Section - Same as Index Page */
.newsletter {
  background: rgba(53, 53, 171, 0.3);
  backdrop-filter: blur(10px);
  padding: 4rem 0;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-icon {
  font-size: 3rem;
  color: var(--pyramid-gold);
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
  text-shadow: var(--glow-gold);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.newsletter-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.newsletter-subtitle {
  color: var(--soft-yellow);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  max-width: 400px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(203, 138, 88, 0.3);
  color: var(--text-light);
  padding: 1rem;
  border-radius: 25px;
  font-size: 1rem;
  backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
  color: var(--soft-yellow);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--pyramid-gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.newsletter-btn {
  white-space: nowrap;
  border-radius: 25px;
}

/* Footer - Same as Index Page */
.footer {
  background: var(--royal-dark-blue);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(203, 138, 88, 0.3);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: var(--soft-yellow);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--pyramid-gold);
  color: var(--royal-dark-blue);
  transform: translateY(-2px);
}

.footer-section h4 {
  color: var(--pyramid-gold);
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--soft-yellow);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--pyramid-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--soft-yellow);
}

/* Notification Container */
.notification-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 3000;
}

.notification {
  background: rgba(5, 32, 119, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid var(--pyramid-gold);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  min-width: 300px;
  transform: translateX(100%);
  transition: var(--transition-smooth);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.notification.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

/* Search Modal (Copied from blog-styles.css for consistency) */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 32, 119, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(203, 138, 88, 0.3);
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  margin: 10vh auto;
  transform: translateY(-20px);
  transition: var(--transition-smooth);
}

.search-modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(203, 138, 88, 0.3);
}

.modal-header h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--pyramid-gold);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--pyramid-gold);
}

.search-input-container {
  position: relative;
  padding: 1.5rem;
}

.search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(203, 138, 88, 0.3);
  color: var(--text-light);
  padding: 1rem 3rem 1rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.search-input:focus {
  outline: none;
  border-color: var(--pyramid-gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.search-input::placeholder {
  color: var(--soft-yellow);
}

.search-icon {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--soft-gold);
}

.search-suggestions {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.suggestion-item {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.suggestion-item:hover {
  background: var(--pyramid-gold);
  color: var(--royal-dark-blue);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    text-align: center;
  }
  
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-left,
  .filter-right {
    width: 100%;
  }
  
  .filter-controls {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .recommended-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none !important;
    flex-direction: column !important;
    width: 100% !important;
    background: linear-gradient(135deg, var(--royal-dark-blue) 0%, var(--rich-blue) 100%) !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1500 !important;
    padding: 2rem 0 !important;
    text-align: center !important;
    box-shadow: 0 12px 40px rgba(5, 32, 119, 0.3) !important;
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: none !important;
  }
  .nav-menu.active {
    display: block !important;
    animation: slideDown 0.3s ease-out !important;
  }
  .nav-link {
    display: block !important;
    padding: 1.2rem 2rem !important;
    font-size: 1.1rem !important;
    color: var(--text-light) !important;
    border: none !important;
    background: none !important;
    text-align: center !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    margin: 0.25rem 1rem !important;
    border-radius: 8px !important;
  }
  .nav-link:hover,
  .nav-link.active {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--pyramid-gold) !important;
    transform: translateY(-2px) !important;
  }
  .nav-link::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    width: 0 !important;
    height: 2px !important;
    background: var(--pyramid-gold) !important;
    transition: all 0.3s ease !important;
    transform: translateX(-50%) !important;
  }
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 60% !important;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

  /* Ensure mobile menu button is always visible on mobile */
  .header-actions .mobile-menu-btn {
    order: 999;
  }
  
  /* Enhanced mobile styles - MATCH INDEX PAGE EXACTLY */
  .container {
    padding: 0 1.5rem;
  }
  
  .header-container {
    padding: 0 1.5rem;
  }
  
  .hero {
    padding: 160px 0 80px;
  }
  
  .hero-content {
    gap: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  /* Mobile navigation improvements - MATCH INDEX PAGE */
  .mobile-menu-btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  
  .mobile-menu-btn span {
    width: 20px;
    height: 2.5px;
    border-radius: 2px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .wishlist-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .wishlist-item.list-view {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .recommended-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .newsletter-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 1rem;
  }
  
  .logo {
    gap: 0.5rem;
  }
  
  .logo-main {
    font-size: 1rem;
  }
  
  .logo-sub {
    font-size: 0.7rem;
  }
  
  .hero {
    padding: 140px 0 60px;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .wishlist-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .item-content {
    padding: 1.5rem;
  }
  
  .item-title {
    font-size: 1.4rem;
  }
  
  .current-price {
    font-size: 1.8rem;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--pyramid-gold);
  outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: var(--pyramid-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--soft-gold);
}

/* Selection styles */
::selection {
  background: var(--pyramid-gold);
  color: var(--royal-dark-blue);
}

::-moz-selection {
  background: var(--pyramid-gold);
  color: var(--royal-dark-blue);
}

.wishlist-card {
  background: linear-gradient(135deg, #292a8d 0%, #4849b6 100%);
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(44, 44, 120, 0.18), 0 0 32px 0 rgba(255,215,0,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  padding: 0;
  min-height: 540px;
}
.wishlist-card:hover {
  box-shadow: 0 16px 40px rgba(5, 32, 119, 0.25);
  transform: translateY(-8px) scale(1.02);
}
.wishlist-card-image-wrapper {
  width: 100%;
  background: #181a2a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.wishlist-card-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(44,44,120,0.10);
  background: #fff;
}
.wishlist-card-discount {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wishlist-card-content {
  width: 100%;
  padding: 1.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.wishlist-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.wishlist-card-badge {
  background: var(--pyramid-gold);
  color: var(--royal-dark-blue);
  padding: 0.3rem 0.9rem;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.18);
}
.wishlist-card-title {
  font-family: var(--font-primary);
  font-size: 1.45rem;
  color: var(--pyramid-gold);
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.wishlist-card-description {
  font-size: 1rem;
  color: var(--soft-yellow);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wishlist-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  color: var(--soft-yellow);
}
.wishlist-card-sku {
  font-family: 'Courier New', monospace;
  font-weight: 600;
}
.wishlist-card-availability {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wishlist-card-availability.in-stock { color: #10b981; }
.wishlist-card-availability.out-of-stock { color: #ef4444; }
.wishlist-card-availability.low-stock { color: #f59e0b; }
.wishlist-card-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.wishlist-card-price {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--pyramid-gold);
  font-weight: 800;
  text-shadow: var(--glow-gold);
}
.wishlist-card-original-price {
  color: var(--soft-yellow);
  text-decoration: line-through;
  font-size: 1.1rem;
  opacity: 0.7;
}
.wishlist-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.wishlist-card-feature {
  background: rgba(255, 255, 255, 0.08);
  color: var(--soft-yellow);
  padding: 0.3rem 0.9rem;
  border-radius: 14px;
  font-size: 0.9rem;
  border: 1.5px solid rgba(203, 138, 88, 0.18);
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.wishlist-card-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
  width: 100%;
}
.wishlist-card-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 1.5rem;
  border: 2px solid var(--pyramid-gold);
  background: transparent;
  color: var(--text-light);
  padding: 0.8rem 1.2rem;
  box-shadow: 0 0 10px 0 rgba(255,215,0,0.08);
  transition: all 0.18s cubic-bezier(0.4,0,0.2,1);
  letter-spacing: 0.02em;
  cursor: pointer;
}
.wishlist-card-btn-primary {
  background: var(--pyramid-gold);
  color: var(--royal-dark-blue);
  border: 2px solid var(--pyramid-gold);
}
.wishlist-card-btn-primary:disabled {
  background: var(--soft-yellow);
  color: var(--text-secondary);
  border-color: var(--soft-yellow);
  cursor: not-allowed;
}
.wishlist-card-btn-outline {
  background: transparent;
  color: var(--pyramid-gold);
  border: 2px solid var(--pyramid-gold);
  margin-right: 0;
  margin-left: 1.2rem;
}
.wishlist-card-btn:hover, .wishlist-card-btn-primary:hover {
  background: var(--pyramid-gold);
  color: var(--royal-dark-blue);
  box-shadow: 0 0 18px 0 var(--pyramid-gold);
  border-color: var(--pyramid-gold);
  transform: translateY(-2px) scale(1.04);
}
.wishlist-card-btn-outline:hover {
  background: var(--royal-dark-blue);
  color: var(--pyramid-gold);
  border-color: var(--pyramid-gold);
}

/* --- Force wishlist buttons to be clickable --- */
.wishlist-card-btn,
.wishlist-card-btn-primary,
.wishlist-card-btn-outline {
  pointer-events: auto !important;
  z-index: 10 !important;
  position: relative;
}
.wishlist-card,
.wishlist-card-content,
.wishlist-card-actions {
  pointer-events: auto !important;
  z-index: 10 !important;
  position: relative;
}