/* GiftCentral Enhanced Styles */
:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --gold: #f4a261;
  --light: #fafafa;
  --dark: #16213e;
  --text: #333;
  --text-light: #666;
  --success: #00c853;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --radius: 12px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

/* Header */
.site-header {
  background: var(--primary);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

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

.main-nav { display: flex; gap: 25px; }

.main-nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover { color: var(--accent); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 50%, var(--accent) 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 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='%23ffffff' 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");
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 30px;
}

.hero-search {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.hero-search input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  box-shadow: var(--shadow);
}

.hero-search button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}

.hero-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(233,69,96,0.4);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 20px;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.intro-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary);
}

.intro-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin: 50px 0 30px;
  color: var(--primary);
  padding-bottom: 15px;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}

/* Products Grid */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #f5f5f5;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary);
}

.product-info .description {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-info .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
}

.amazon-btn {
  display: block;
  background: linear-gradient(135deg, #FF9900, #FFB84C);
  color: #232F3E;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.amazon-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(255,153,0,0.3);
}

/* FAQ Section */
.faq-section {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 50px;
  box-shadow: var(--shadow);
}

.faq-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.faq-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  padding: 50px 20px;
  text-align: center;
}

footer p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 18px; }
  .hero-search { flex-direction: column; }
  .header-container { flex-direction: column; gap: 15px; }
  .main-nav { flex-wrap: wrap; justify-content: center; }
  .products { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
}

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

.product-card {
  animation: fadeInUp 0.5s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

/* Trust Badges */
.trust-badges {
  background: #f5f5f5;
  padding: 40px 20px;
  margin: 40px 0;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  font-size: 24px;
}

.trust-text {
  font-weight: 500;
  color: var(--primary);
}

/* Category Grid */
.categories {
  padding: 50px 20px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background: white;
  padding: 25px;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  color: var(--primary);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.category-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* Hero Tags */
.hero-tags {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-tag {
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* Featured Section */
.featured {
  padding: 50px 20px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Newsletter */
.newsletter {
  background: var(--primary);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 15px;
}

.newsletter p {
  opacity: 0.9;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.newsletter-form button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--accent);
}

.footer ul {
  list-style: none;
}

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

.footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.7;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  .main-nav {
    display: none;
  }
  .trust-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .newsletter-form {
    flex-direction: column;
  }
}

/* Guides Grid */
.guides {
  padding: 50px 20px;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.guide-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.guide-img {
  height: 160px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 15px;
}

.guide-tag {
  background: rgba(255,255,255,0.9);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

.guide-content {
  padding: 20px;
}

.guide-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary);
}

.guide-content p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.guide-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.guide-link:hover {
  color: var(--primary);
}

/* Trust Badges Mini */
.trust-badges-mini {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  margin-top: 30px;
}

.trust-item-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.trust-icon-mini {
  font-size: 18px;
}

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

/* Category Card Images */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 15px;
}

.category-img {
  font-size: 48px;
  margin-bottom: 12px;
}

.category-info h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--primary);
}

.category-info p {
  font-size: 13px;
  color: var(--text-light);
}

/* Featured Product Card */
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.product-info {
  padding: 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary);
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
}

.product-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FF9900, #FFB84C);
  color: #232F3E;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: auto;
}

.product-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(255,153,0,0.3);
}

/* Featured Grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Newsletter specific */
.newsletter {
  background: var(--primary);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-top: 50px;
}

.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 15px;
}

.newsletter p {
  opacity: 0.9;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.newsletter-form button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #d63050;
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  padding: 50px 20px 30px;
  text-align: center;
  margin-top: 0;
}

footer p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Navigation Active State */
.main-nav a.active {
  color: var(--accent);
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
    padding: 0 10px;
  }
  .hero p {
    font-size: 16px;
    padding: 0 20px;
  }
  .hero-tags {
    display: none;
  }
  .guides-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
    padding: 0 20px;
  }
  .trust-container {
    flex-direction: column;
    gap: 20px;
  }
}

/* ========================================
   Enhanced Hero Section
======================================== */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #e94560 100%);
  padding: 100px 20px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 22px;
  opacity: 0.95;
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-search {
  display: flex;
  max-width: 550px;
  margin: 0 auto;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 50px;
}

.hero-search input {
  flex: 1;
  padding: 18px 28px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  background: white;
}

.hero-search button {
  background: linear-gradient(135deg, #e94560, #c73e54);
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(233,69,96,0.4);
}

/* Hero Tags */
.hero-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-tags span {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.hero-tag {
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-tag:hover {
  background: rgba(255,255,255,0.25);
}

/* ========================================
   Trust Badges Enhanced
======================================== */
.trust-badges {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 50px 20px;
  margin: 0;
  border-bottom: 1px solid #dee2e6;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-icon {
  font-size: 32px;
}

.trust-text {
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

/* ========================================
   Section Titles
======================================== */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin: 60px 0 35px;
  color: #1a1a2e;
  padding-bottom: 15px;
  border-bottom: 3px solid #e94560;
  display: inline-block;
}

/* ========================================
   Categories Section
======================================== */
.categories {
  padding: 60px 20px;
  background: white;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: #1a1a2e;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: #e94560;
}

.category-img {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.category-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a2e;
}

.category-info p {
  font-size: 13px;
  color: #666;
}

/* ========================================
   Featured Section
======================================== */
.featured {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================
   Guides Section
======================================== */
.guides {
  padding: 60px 20px;
  background: white;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.guide-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.guide-img {
  height: 180px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px;
}

.guide-tag {
  background: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a2e;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.guide-content {
  padding: 25px;
}

.guide-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a2e;
  font-weight: 600;
}

.guide-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 18px;
  line-height: 1.6;
}

.guide-link {
  color: #e94560;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.guide-link:hover {
  color: #c73e54;
}

.guide-link:after {
  content: '→';
  transition: transform 0.3s;
}

.guide-card:hover .guide-link:after {
  transform: translateX(5px);
}

/* ========================================
   Newsletter Section
======================================== */
#newsletter {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #e94560 100%);
  padding: 80px 20px;
  text-align: center;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

#newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 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='%23ffffff' fill-opacity='0.03'%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");
}

#newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

#newsletter p {
  opacity: 0.95;
  margin-bottom: 35px;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  background: white;
}

.newsletter-form button {
  background: linear-gradient(135deg, #e94560, #c73e54);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(233,69,96,0.4);
}

/* ========================================
   Footer Enhanced
======================================== */
footer {
  background: #0d0d1a;
  color: white;
  padding: 80px 20px 40px;
  text-align: center;
}

footer p {
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  font-size: 14px;
}

/* ========================================
   Button Styles
======================================== */
.amazon-btn {
  display: block;
  background: linear-gradient(135deg, #FF9900, #FFB84C);
  color: #232F3E;
  text-align: center;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  margin-top: 15px;
}

.amazon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,153,0,0.3);
  background: linear-gradient(135deg, #ffaa00, #ffcc66);
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.category-card,
.guide-card,
.product-card {
  animation: fadeInUp 0.6s ease forwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.15s; }
.category-card:nth-child(3) { animation-delay: 0.2s; }
.category-card:nth-child(4) { animation-delay: 0.25s; }
.category-card:nth-child(5) { animation-delay: 0.3s; }
.category-card:nth-child(6) { animation-delay: 0.35s; }
.category-card:nth-child(7) { animation-delay: 0.4s; }
.category-card:nth-child(8) { animation-delay: 0.45s; }
.category-card:nth-child(9) { animation-delay: 0.5s; }
.category-card:nth-child(10) { animation-delay: 0.55s; }
.category-card:nth-child(11) { animation-delay: 0.6s; }
.category-card:nth-child(12) { animation-delay: 0.65s; }

/* ========================================
   Mobile Optimizations
======================================== */
@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .hero-search {
    flex-direction: column;
    border-radius: 20px;
  }
  
  .hero-search input {
    border-radius: 15px;
  }
  
  .hero-search button {
    border-radius: 15px;
  }
  
  .trust-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .category-card {
    padding: 20px 15px;
  }
  
  .category-img {
    font-size: 36px;
  }
  
  .guides-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  #newsletter h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .guides-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Typography Enhancements
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333;
  background: #fafafa;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #1a1a2e;
  line-height: 1.3;
}

p {
  line-height: 1.7;
  color: #555;
}

/* ========================================
   Enhanced Header
======================================== */
.site-header {
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span {
  color: #e94560;
}

.main-nav {
  display: flex;
  gap: 35px;
}

.main-nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  position: relative;
}

.main-nav a:hover {
  color: #e94560;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e94560;
  transition: width 0.3s;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* ========================================
   Card Hover Effects
======================================== */
.category-card:hover {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.guide-card:hover {
  border-color: #e94560;
}

.product-card:hover .product-image {
  background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
}

/* ========================================
   Price Tags
======================================== */
.price {
  font-size: 24px;
  font-weight: 700;
  color: #e94560;
  margin-bottom: 15px;
}

/* ========================================
   Loading States
======================================== */
.category-grid:empty::before,
.featured-grid:empty::before,
.guides-grid:empty::before {
  content: 'Loading...';
  text-align: center;
  padding: 40px;
  color: #666;
  font-size: 16px;
}

/* ========================================
   Focus States for Accessibility
======================================== */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #e94560;
  outline-offset: 2px;
}

.amazon-btn:focus {
  outline-offset: -2px;
}

/* ========================================
   Print Styles
======================================== */
@media print {
  .site-header,
  .hero,
  .trust-badges,
  .newsletter,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .category-card,
  .guide-card,
  .product-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ========================================
   Final Polish - Shadows & Depth
======================================== */
:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --accent-dark: #c73e54;
  --text: #333;
  --text-light: #666;
  --light: #fafafa;
  --dark: #16213e;
  --success: #00c853;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 15px 50px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 16px;
}

/* Subtle gradient backgrounds */
.categories {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.featured {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Card improvements */
.category-card {
  box-shadow: var(--shadow-sm);
}

.category-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px) scale(1.02);
}

.guide-card {
  box-shadow: var(--shadow-sm);
}

.guide-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px) scale(1.01);
}

.product-card {
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px) scale(1.01);
}

/* Button improvements */
.amazon-btn,
.product-btn {
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.2);
}

.amazon-btn:hover,
.product-btn:hover {
  box-shadow: 0 6px 25px rgba(233, 69, 96, 0.35);
}

/* Trust badge improvements */
.trust-badges {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid #eee;
}

.trust-item {
  background: white;
  padding: 15px 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Newsletter improvements */
#newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 60%, var(--accent) 100%);
}

.newsletter-form input {
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.newsletter-form button {
  box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Remove tap highlight on mobile */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Better text selection */
::selection {
  background: var(--accent);
  color: white;
}

/* Cursor improvements */
.category-card,
.guide-card,
.product-card,
.amazon-btn,
.product-btn,
.guide-link {
  cursor: pointer;
}

/* Smooth page transitions */
body {
  transition: background-color 0.3s ease;
}

/* Loading skeleton effect */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Staggered animation delays */
.category-card:nth-child(1) { animation-delay: 0.08s; }
.category-card:nth-child(2) { animation-delay: 0.12s; }
.category-card:nth-child(3) { animation-delay: 0.16s; }
.category-card:nth-child(4) { animation-delay: 0.20s; }
.category-card:nth-child(5) { animation-delay: 0.24s; }
.category-card:nth-child(6) { animation-delay: 0.28s; }
.category-card:nth-child(7) { animation-delay: 0.32s; }
.category-card:nth-child(8) { animation-delay: 0.36s; }
.category-card:nth-child(9) { animation-delay: 0.40s; }
.category-card:nth-child(10) { animation-delay: 0.44s; }
.category-card:nth-child(11) { animation-delay: 0.48s; }
.category-card:nth-child(12) { animation-delay: 0.52s; }

.guide-card:nth-child(1) { animation-delay: 0.1s; }
.guide-card:nth-child(2) { animation-delay: 0.15s; }
.guide-card:nth-child(3) { animation-delay: 0.2s; }
.guide-card:nth-child(4) { animation-delay: 0.25s; }
.guide-card:nth-child(5) { animation-delay: 0.3s; }
.guide-card:nth-child(6) { animation-delay: 0.35s; }
.guide-card:nth-child(7) { animation-delay: 0.4s; }

.product-card:nth-child(1) { animation-delay: 0.08s; }
.product-card:nth-child(2) { animation-delay: 0.12s; }
.product-card:nth-child(3) { animation-delay: 0.16s; }
.product-card:nth-child(4) { animation-delay: 0.20s; }
.product-card:nth-child(5) { animation-delay: 0.24s; }
.product-card:nth-child(6) { animation-delay: 0.28s; }
.product-card:nth-child(7) { animation-delay: 0.32s; }
.product-card:nth-child(8) { animation-delay: 0.36s; }

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================
   Footer Styles
======================================== */
.site-footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  padding: 0 15px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 20px;
  color: #e94560;
  font-weight: 600;
}

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

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}

.footer-col a:hover {
  color: #e94560;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* ========================================
   Newsletter Content Styles
======================================== */
.newsletter-content {
  max-width: 600px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.newsletter-content p {
  font-size: 18px;
  opacity: 0.95;
  line-height: 1.7;
  margin: 0;
}

.newsletter-note {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 20px;
  font-style: italic;
}

.newsletter-note p {
  font-size: 13px;
  opacity: 0.7;
}

/* ========================================
   Announcement Bar
======================================== */
.announcement-bar {
  background: linear-gradient(135deg, #e94560, #c73e54);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
}

/* ========================================
   Enhanced Hero
======================================== */
.hero-enhanced {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: #e94560;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: #f4a261;
  bottom: -50px;
  left: -50px;
  animation-delay: -7s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: #2a9d8f;
  top: 50%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -30px) rotate(5deg); }
  50% { transform: translate(-10px, 20px) rotate(-5deg); }
  75% { transform: translate(30px, 10px) rotate(3deg); }
}

.hero-enhanced .hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
}

.hero-enhanced h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 600px;
}

.highlight {
  background: linear-gradient(135deg, #e94560, #f4a261);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quick-search {
  display: flex;
  max-width: 600px;
  margin: 0 auto 30px;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 50px;
}

.quick-search input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  background: white;
}

.quick-search button {
  background: linear-gradient(135deg, #e94560, #c73e54);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.quick-search button:hover {
  transform: scale(1.05);
}

.quick-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

.tag:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* ========================================
   Trust Strip
======================================== */
.trust-strip {
  background: #f8f9fa;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
}

.trust-strip .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #333;
}

.trust-strip .trust-icon {
  font-size: 24px;
}

/* ========================================
   Section Headers
======================================== */
.section-header {
  margin-bottom: 40px;
}

.section-header.centered {
  text-align: center;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e94560, #c73e54);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #1a1a2e;
}

/* ========================================
   Trending Section
======================================== */
.trending-section {
  padding: 80px 20px;
  background: white;
}

.trending-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.trending-card {
  display: block;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.trending-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.trending-main {
  grid-row: span 2;
}

.trending-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.trending-main .trending-image {
  height: 420px;
}

.trending-rank {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255,255,255,0.9);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.trending-emoji {
  font-size: 64px;
}

.trending-main .trending-emoji {
  font-size: 100px;
}

.trending-content {
  padding: 20px;
}

.trending-category {
  font-size: 12px;
  color: #e94560;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trending-content h3 {
  font-size: 18px;
  margin-top: 5px;
  color: #1a1a2e;
}

.trending-main .trending-content h3 {
  font-size: 24px;
}

.trending-content p {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

.trending-link {
  display: inline-block;
  margin-top: 15px;
  color: #e94560;
  font-weight: 600;
  font-size: 14px;
}

/* ========================================
   Recipient Section
======================================== */
.recipient-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.recipient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.recipient-card {
  display: block;
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.recipient-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.recipient-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.recipient-card h3 {
  font-size: 16px;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.recipient-card p {
  font-size: 13px;
  color: #666;
}

/* ========================================
   Occasion Section
======================================== */
.occasion-section {
  padding: 80px 20px;
  background: white;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.occasion-card {
  display: block;
  background: white;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.occasion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: #e94560;
}

.occasion-emoji {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

.occasion-card h3 {
  font-size: 18px;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.occasion-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.occasion-count {
  display: inline-block;
  background: #f0f0f0;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #666;
}

/* ========================================
   Featured Scroll
======================================== */
.featured-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
}

.featured-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.product-scroll-card {
  flex: 0 0 150px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  scroll-snap-align: start;
  transition: all 0.3s;
}

.product-scroll-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.product-emoji {
  font-size: 48px;
  display: block;
  margin-bottom: 10px;
}

.product-scroll-card h4 {
  font-size: 14px;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.product-scroll-card .product-price {
  font-size: 16px;
  font-weight: 700;
  color: #e94560;
  margin-bottom: 10px;
}

.product-tag {
  display: inline-block;
  background: #e94560;
  color: white;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
}

/* ========================================
   Category Tiles
======================================== */
.category-highlights {
  padding: 80px 20px;
  background: #f8f9fa;
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.category-tile {
  display: block;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 180px;
}

.tile-bg {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.category-tile:hover .tile-bg {
  transform: scale(1.05);
}

.tile-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.tile-count {
  background: rgba(255,255,255,0.9);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.category-tile h3 {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* ========================================
   Enhanced Newsletter
======================================== */
.newsletter-enhanced {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.newsletter-card {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  padding: 50px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.newsletter-visual {
  flex: 0 0 120px;
}

.newsletter-emoji {
  font-size: 80px;
}

.newsletter-content {
  flex: 1;
}

.newsletter-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: white;
  margin-bottom: 15px;
}

.newsletter-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 25px;
  font-size: 16px;
}

.newsletter-form-enhanced {
  display: flex;
  gap: 10px;
}

.newsletter-form-enhanced input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
}

.newsletter-form-enhanced button {
  background: linear-gradient(135deg, #e94560, #c73e54);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.newsletter-form-enhanced button:hover {
  transform: scale(1.05);
}

.newsletter-note {
  display: block;
  margin-top: 15px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ========================================
   Mobile Responsive
======================================== */
@media (max-width: 768px) {
  .announcement-bar {
    font-size: 12px;
    padding: 8px 15px;
  }
  
  .hero-enhanced {
    padding: 50px 15px;
  }
  
  .hero-enhanced h1 {
    font-size: 32px;
  }
  
  .quick-search {
    flex-direction: column;
    border-radius: 20px;
  }
  
  .quick-tags {
    display: none;
  }
  
  .trust-strip {
    gap: 20px;
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .trending-grid {
    grid-template-columns: 1fr;
  }
  
  .trending-main {
    grid-row: span 1;
  }
  
  .trending-main .trending-image {
    height: 200px;
  }
  
  .recipient-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .newsletter-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .newsletter-form-enhanced {
    flex-direction: column;
  }
}

/* Urgency Badge */
.urgency-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  animation: pulse 2s infinite;
  z-index: 10;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Better CTA Buttons */
.amazon-btn {
  background: linear-gradient(135deg, #ff9900, #ff6600) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  border-radius: 8px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
  transition: all 0.3s ease;
}

.amazon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.6);
}

/* 2026 Modern Standards */

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --primary: #0f0f1a;
    --dark: #1a1a2e;
    --light: #1a1a1a;
    --text: #e0e0e0;
    --text-light: #a0a0a0;
  }
  
  body { background: var(--light); color: var(--text); }
  .product-card { background: #252525; }
  .container { background: var(--light); }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Touch Optimization for Mobile */
@media (hover: none) and (pointer: coarse) {
  .amazon-btn, .filter-btn, .vote-btn {
    min-height: 48px;
    min-width: 44px;
  }
}

/* Print Styles */
@media print {
  .announcement-bar, .site-header, .amazon-btn, .vote-section { display: none; }
}

/* Performance: Content Visibility */
.categories-grid, .products-grid, .recipient-grid {
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}
