* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-decoration: none;
  color: inherit;
}

:root {
  /* Modern Color Palette - Bold Red & Yellow */
  --primary: #DC2626;
  /* Vibrant Red - Bold & Appetizing */
  --primary-dark: #B91C1C;
  --primary-light: #EF4444;

  --secondary: #1F2937;
  /* Dark Gray - Sophistication */
  --secondary-dark: #111827;
  --secondary-light: #374151;

  --accent: #FBBF24;
  /* Bright Yellow - Energy & Excitement */
  --accent-dark: #F59E0B;

  --success: #06D6A0;
  /* Mint Green - Freshness */
  --warning: #F77F00;
  /* Orange - Urgency */
  --danger: #EF476F;
  /* Pink Red - Alerts */

  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --bg-dark: #1A1D23;
  --bg-card: #FFFFFF;

  --text-primary: #1A1D23;
  --text-secondary: #495057;
  /* Darker for better contrast (was #6C757D) */
  --text-light: #6C757D;
  /* Adjusted */
  --text-inverse: #FFFFFF;

  --border-color: #DEE2E6;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.6;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   NAVIGATION BAR - Modern & Sticky
   ======================================== */
.navbar {
  background: var(--bg-primary);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.navbar .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  letter-spacing: -0.5px;
  transition: var(--transition);
}

.logo span {
  color: var(--secondary);
}

.logo:hover {
  transform: scale(1.05);
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.desktop-menu>a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.desktop-menu>a:hover {
  color: var(--primary);
  background: rgba(255, 107, 53, 0.08);
}

.desktop-menu>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--primary);
  transition: transform 0.3s ease;
}

.desktop-menu>a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown>a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-item-dropdown>a:hover {
  color: var(--primary);
  background: rgba(255, 107, 53, 0.08);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 0.75rem);
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--bg-secondary);
  color: var(--primary);
  padding-left: 1.25rem;
}

/* CTA Button */
.btn-download {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-inverse);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: var(--bg-secondary);
  color: var(--primary);
}

/* Mobile Navigation */
@media (max-width: 992px) {
  .desktop-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: var(--bg-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    gap: 0;
  }

  .desktop-menu.active {
    left: 0;
  }

  .desktop-menu>a,
  .nav-item-dropdown>a {
    width: 100%;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: var(--radius-md);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--bg-secondary);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
  }

  .mobile-toggle {
    display: block;
  }

  .btn-download {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
}

/* ========================================
   FOOTER - Modern & Organized
   ======================================== */
.site-footer {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0F1115 100%);
  color: var(--text-inverse);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--success));
}

.site-footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
  color: var(--text-inverse);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-logo span {
  color: var(--accent);
}

.footer-col p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 214, 160, 0.15);
  color: var(--success);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-badge i {
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom i.fa-heart {
  color: var(--danger);
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  10%,
  30% {
    transform: scale(1.15);
  }

  20%,
  40% {
    transform: scale(1);
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================
   HERO SECTION - Eye-catching & Dynamic
   ======================================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #DC2626 0%, #EF4444 50%, #FBBF24 100%);
  padding: 8rem 2rem 5rem;
  margin-top: 70px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.2) 0%, transparent 50%);
  animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-10px, -10px) scale(1.05);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-inverse);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease;
}

/* Search Box */
.search-box {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-primary);
  border-radius: var(--radius-full);
  padding: 0.5rem;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 1.2s ease;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-primary);
}

.search-box input::placeholder {
  color: var(--text-light);
}

.search-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  color: var(--text-inverse);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    padding: 6rem 1.5rem 4rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .search-box {
    flex-direction: column;
    padding: 0.75rem;
  }

  .search-btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  /* Disable animations on mobile to reduce CLS */
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .deal-card:hover {
    transform: none !important;
  }
}



/* ========================================
   CONTAINER & UTILITIES
   ======================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
}

/* ========================================
   CATEGORY PILLS - Horizontal Scroll
   ======================================== */
.categories-wrapper {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-secondary);
}

.categories-wrapper::-webkit-scrollbar {
  height: 6px;
}

.categories-wrapper::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
}

.categories-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.5rem;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}

.cat-pill:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.cat-pill.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-inverse);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* ========================================
   DEALS GRID - Modern Card Layout
   ======================================== */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.deal-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border-color);
}

.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--bg-secondary);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.deal-card:hover .card-img img {
  transform: scale(1.08);
}

.discount-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--danger), #FF6B9D);
  color: var(--text-inverse);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(239, 71, 111, 0.4);
  z-index: 2;
}

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card-meta i {
  color: var(--primary);
  font-size: 0.9rem;
}

.card-title {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

.card-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-title a:hover {
  color: var(--primary);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.price-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.old-price {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.btn-get {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--text-inverse);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 78, 137, 0.3);
}

.btn-get:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  transform: translateX(3px);
  box-shadow: 0 6px 20px rgba(0, 78, 137, 0.4);
}

/* Ad Card */
.ad-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border: 2px dashed var(--border-color);
  position: relative;
}

.ad-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--text-light);
  color: var(--text-inverse);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .deals-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .deals-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
  }

  .card-img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .deals-grid {
    grid-template-columns: 1fr;
  }
}

/* swiper-container */
.swiper-container {
  width: 100%;
  padding: 2rem 0;
  overflow: hidden;
}

.swiper-slide {
  display: block !important;
  /* Changed from flex to block to allow grid to work */
  width: 100%;
}

/* Ensure deals-grid works inside swiper */
.swiper-slide .deals-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 1.5rem;
  width: 100%;
  padding: 0 1rem;
}

/* Swiper Pagination Dots Custom Styling */
.swiper-pagination {
  text-align: center;
  margin-top: 20px;
  position: relative !important;
  bottom: 0 !important;
}

#deals-carousel .swiper-button-prev::after,
#deals-carousel .swiper-button-next::after {
  color: #7b5222 !important;
  /* Gold arrows */
  font-size: 20px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
}

/* Remove duplicate deals-grid - already defined above in swiper-slide context */

/* CATEGORY SECTION */
.category-card-section {
  padding: 4rem 1rem;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  color: #7b5222;
  margin-bottom: 2.5rem;
}

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.category-card {
  background-color: #2b2b2b;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}


.category-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.category-card-content {
  padding: 1rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.category-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #fff;
}

.category-card-meta {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.category-card-tag {
  display: inline-block;
  background-color: #7b5222;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}



/* FILTER SECTION */
.filter-modern-section {
  padding: 3.5rem 1rem 2.5rem;
  background: linear-gradient(to right, #1a1a1a, #2c2c2c);
  font-family: 'Poppins', sans-serif;
  margin-top: 3rem;
  border-radius: 20px;
}

.filter-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.custom-dropdown {
  position: relative;
  width: 200px;
}

.custom-dropdown .selected {
  padding: 12px 16px;
  border: 1px solid #555;
  border-radius: 12px;
  background-color: #2b2b2b;
  cursor: pointer;
  color: #f8f9f6;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  font-weight: 500;
}

.custom-dropdown .selected::after {
  content: '▼';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: #bbb;
}

.custom-dropdown .selected:hover {
  background-color: #3b3b3b;
  border-color: #7b5222;
}

.custom-dropdown .options {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  background-color: #2b2b2b;
  border: 1px solid #444;
  border-radius: 12px;
  z-index: 100;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.custom-dropdown .option {
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #f8f9f6;
  font-size: 0.95rem;
}

.custom-dropdown .option:hover {
  background-color: #7b5222;
  color: #fff;
}


/* TRENDING SECTION */
.trending-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  /* Increased from 1300px to use more screen width */
  margin: auto;
  text-align: center;
}

.trending-section h2 {
  font-size: 2.5rem;
  color: #7b5222;
  margin-bottom: 2.5rem;
}

/* Deals grid inside Swiper slides */
.trending-section .swiper-slide .deals-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem;
  /* Good spacing between cards */
  width: 100%;
  max-width: 100%;
  padding: 0 1rem;
}

/* Responsive grid columns */
@media (max-width: 1024px) {
  .trending-section .swiper-slide .deals-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
    padding: 0 1rem;
  }
}

@media (max-width: 640px) {
  .trending-section .swiper-slide .deals-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .trending-section .swiper-slide .deals-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
    padding: 0 0.5rem;
  }
}

.deal-card {
  background-color: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(123, 82, 34, 0.3);
}

.deal-image {
  height: 280px;
  background-size: cover;
  background-position: center;
}

.deal-content {
  padding: 1rem;
  text-align: left;
  font-family: 'Inter', sans-serif;

}

.deal-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #333;
}

.deal-meta {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.deal-tag {
  display: inline-block;
  background-color: #7b5222;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}

.view-all-btn {
  margin-top: 3rem;
  background-color: #7b5222;
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-all-btn:hover {
  background-color: #5a3c17;
}

/* ========================================
   NEWSLETTER SECTION - Engaging Subscription
   ======================================== */
.newsletter {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  color: var(--text-inverse);
  padding: 5rem 2rem;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.newsletter::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, -20px);
  }
}

.newsletter .container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
}

.newsletter h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-inverse);
}

.newsletter p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.newsletter form {
  display: flex;
  gap: 1rem;
  max-width: 550px;
  margin: 0 auto;
}

.newsletter input[type="email"] {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--text-inverse);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.newsletter input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--accent);
}

.newsletter button {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-inverse);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
  white-space: nowrap;
}

.newsletter button:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.5);
}

@media (max-width: 576px) {
  .newsletter h2 {
    font-size: 2rem;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter button {
    width: 100%;
  }
}

/* ========================================
   ABOUT SECTION - Informative & Clean
   ======================================== */
.about-section {
  background: var(--bg-primary);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-section .container {
  max-width: 900px;
  text-align: center;
}

.about-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-top: 2rem;
}

.about-section strong {
  color: var(--primary);
  font-weight: 600;
}

.about-parallax {
  background-image: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(251, 191, 36, 0.85)), url('../images/crouselbg3.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-inverse);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-content h2 {
  font-size: 2.75rem;
  color: var(--text-inverse);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
}