/* Modern Boykot Takip CSS - Responsive ve Güncel */

/* ------------- TEMEL STILLER ------------- */
:root {
  --primary: #0d6efd;
  --secondary: #6c757d;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
  --dark: #343a40;
  --light: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  --border-radius: 10px;
  --border-radius-lg: 15px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}

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

a:hover {
  color: #0056b3;
}

.btn {
  transition: var(--transition);
  font-weight: 500;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: #0b5ed7;
  border-color: #0b5ed7;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.rounded-pill {
  border-radius: 50px !important;
}

/* Yardımcı Sınıflar */
.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* ------------- NAVBAR ------------- */
.navbar {
  background: linear-gradient(90deg, #0051ff 0%, #0a2dbd 100%);
  padding: 15px 0;
  transition: all 0.3s ease;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1030;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 22px;
  color: var(--white) !important;
}

.logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 50%;
}

.navbar-toggler {
  color: #fff;
  font-size: 20px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ------------- HERO SECTION ------------- */
.hero {
  background: linear-gradient(45deg, #0051ff 0%, #6426ff 100%);
  position: relative;
  padding: 130px 0 80px;
  margin-top: 0;
  overflow: hidden;
  color: #fff;
}

/* Hero içerik stilleri */
.hero-content {
  position: relative;
  z-index: 5;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #fff;
}

.hero h1 .text-highlight {
  color: #ffdd00;
  position: relative;
  display: inline-block;
}

.hero .lead-text {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-features {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.hero-feature-item:last-child {
  margin-bottom: 0;
}

.hero-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 16px;
}

.hero-feature-icon.negative {
  background-color: rgba(220, 53, 69, 0.2);
  color: #ff5a6a;
}

.hero-feature-icon.positive {
  background-color: rgba(40, 167, 69, 0.2);
  color: #2ecc71;
}

.hero-buttons .btn {
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn-light {
  background: #ffffff;
  color: #0051ff;
}

.hero-buttons .btn-light:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn-outline-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Hero görsel alanı */
.hero-image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-image {
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
  max-width: 90%;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  animation: float 6s infinite ease-in-out;
}

.hero-decoration-1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation-delay: 0.5s;
}

.hero-decoration-2 {
  width: 40px;
  height: 40px;
  bottom: 15%;
  right: 15%;
  animation-delay: 1s;
}

.hero-symbol {
  position: absolute;
  z-index: 1;
  opacity: 0.8;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.hero-symbol-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #ff3d57;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(255, 61, 87, 0.4);
  z-index: 5;
}

/* Animasyonlar */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Dalga SVG */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 3;
}

/* Mobil için hero düzeltmeleri */
@media (max-width: 991.98px) {
  .hero {
    padding: 120px 0 80px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .lead-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 95%;
  }
  
  .hero-features {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-feature-item {
    justify-content: flex-start;
  }
  
  .hero-image-wrapper {
    margin-top: 40px;
  }
  
  .hero-badge {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 110px 0 60px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-buttons .btn {
    margin-bottom: 15px;
    width: 100%;
  }
  
  .hero-feature-item {
    align-items: flex-start;
  }
  
  .hero-decoration {
    display: none;
  }
}

/* ------------- SEARCH SECTION ------------- */
.search-section {
  margin-top: 0;
  position: relative;
  z-index: 10;
  padding-top: 30px;
}

.search-card {
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.search-input {
  border-radius: 0;
  height: 60px;
  font-size: 18px;
}

.search-suggestions a.badge {
  font-weight: 500;
  transition: all 0.3s ease;
}

.search-suggestions a.badge:hover {
  background-color: var(--primary) !important;
  color: white !important;
  transform: translateY(-3px);
}

/* ------------- CATEGORIES SECTION ------------- */
.categories-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

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

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  font-weight: 600;
  border-radius: 50px;
  font-size: 14px;
}

.section-tag.text-danger {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger);
}

.section-tag.text-success {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success);
}

.section-tag.text-info {
  background-color: rgba(23, 162, 184, 0.1);
  color: var(--info);
}

.section-tag.text-warning {
  background-color: rgba(255, 193, 7, 0.1);
  color: var(--warning);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.category-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-card {
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cat-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 30px;
  color: white;
  transition: all 0.3s ease;
}

.category-card:hover .cat-icon-wrap {
  transform: scale(1.1);
}

.category-card h5 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}

/* Category background colors */
.bg-primary { background-color: var(--primary); }
.bg-success { background-color: var(--success); }
.bg-danger { background-color: var(--danger); }
.bg-info { background-color: var(--info); }
.bg-warning { background-color: var(--warning); }
.bg-dark { background-color: var(--dark); }

/* ------------- BOYCOTT SECTION ------------- */
.boycott-section {
  background-color: #fff;
}

.boycott-brands-list {
  margin-top: 30px;
}

.boycott-brand-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-left: 4px solid var(--danger);
}

.boycott-brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.brand-info {
  display: flex;
  align-items: center;
}

.brand-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

.brand-details h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.brand-categories {
  margin-top: 5px;
}

.brand-categories .badge {
  margin-right: 5px;
  font-weight: 500;
  padding: 5px 10px;
}

/* ------------- HOW IT WORKS ------------- */
.how-it-works {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-left: 20px;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-item::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 20px;
  height: calc(100% + 5px);
  width: 2px;
  background-color: rgba(13, 110, 253, 0.2);
}

.step-item:last-child::before {
  display: none;
}

.step-number {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.step-content {
  padding-top: 5px;
}

.step-content h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.step-content p {
  margin-bottom: 0;
  color: #6c757d;
}

/* ------------- SEARCH RESULTS ------------- */
.search-results {
  background-color: #f8f9fa;
  min-height: 80vh;
}

.product-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.product-badge.alternative {
  background-color: var(--success);
  color: white;
}

.product-badge.boycott {
  background-color: var(--danger);
  color: white;
}

.product-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.no-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
}

.no-image-container i {
  font-size: 40px;
  color: #d1d5db;
  margin-bottom: 10px;
}

.no-image-container p {
  color: #6c757d;
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

.product-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-brand {
  margin-bottom: 15px;
  font-size: 14px;
}

.brand-label {
  color: #6c757d;
  font-weight: 500;
}

.brand-name {
  font-weight: 600;
}

.boycott-warning {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger);
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: auto;
  margin-bottom: 15px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.unit-price {
  font-size: 12px;
  color: #6c757d;
}

.btn-product-details {
  padding: 8px 15px;
  background-color: var(--primary);
  color: white;
  border-radius: 5px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.btn-product-details:hover {
  background-color: #0b5ed7;
  color: white;
  transform: translateY(-3px);
}

.product-boycott {
  border: 2px solid rgba(220, 53, 69, 0.3);
}

.product-alternative {
  border: 2px solid rgba(40, 167, 69, 0.3);
}

/* Pagination */
.pagination-wrapper {
  margin-top: 50px;
}

.pagination .page-link {
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0 5px;
  border: none;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.pagination .page-item.active .page-link {
  background-color: var(--primary);
  color: white;
}

.pagination .page-link:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
  z-index: 3;
}

.pagination .page-item.disabled .page-link {
  background-color: #f8f9fa;
  color: #6c757d;
}

/* Error Pages */
.search-error {
  padding: 50px 0;
}

.error-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

/* ------------- FOOTER ------------- */
.footer {
  background-color: #0d1324;
  color: #f8f9fa;
  position: relative;
}

.footer-top {
  padding: 80px 0 40px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.08);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-5px);
}

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

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

.footer-links a {
  color: #ced4da;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

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

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #ced4da;
}

.footer-contact li i {
  width: 30px;
  height: 30px;
  background-color: rgba(255,255,255,0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.footer-bottom {
  background-color: rgba(255,255,255,0.03);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  color: #6c757d;
  margin: 0;
}

/* ------------- RESPONSIVE STYLES ------------- */
@media (max-width: 1199.98px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-image {
    margin-top: 40px;
    max-height: 280px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
  
  .boycott-brand-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .boycott-brand-item .btn {
    margin-top: 15px;
    align-self: flex-end;
  }
}

@media (max-width: 767.98px) {
  .py-6 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .hero {
    padding: 120px 0 60px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .hero .d-flex.align-items-center.mb-3 {
    justify-content: center;
  }
  
  .hero .d-flex.align-items-start.mb-4 {
    flex-direction: column;
    align-items: center !important;
  }
  
  .hero .d-flex.align-items-start.mb-4 .me-3 {
    margin-right: 0 !important;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .footer-title {
    margin-top: 20px;
  }
  
  .product-card {
    margin-bottom: 15px;
  }
  
  .product-image {
    height: 150px;
    padding: 10px;
  }
  
  .product-title {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  
  .product-brand {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .boycott-warning {
    padding: 8px;
    font-size: 12px;
  }
  
  .product-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .product-price {
    margin-bottom: 8px;
  }
  
  .price-amount {
    font-size: 16px;
  }
  
  .unit-price {
    font-size: 11px;
  }
  
  .btn-product-details {
    width: 100%;
    text-align: center;
    padding: 6px;
    font-size: 12px;
  }
  
  /* 2 columns for mobile categories */
  .col-6.col-md-4.col-lg-2 {
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .category-card {
    padding: 10px 5px;
  }
  
  .category-card h5 {
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
  }
  
  .cat-icon-wrap {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .category-thumb {
    height: 45px;
  }
}

@media (max-width: 575.98px) {
  .search-input {
    height: 50px;
    font-size: 16px;
  }
  
  .product-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn-product-details {
    margin-top: 10px;
  }
  
  .hero-btn {
    width: 100%;
  }
}

/* AOS Animations */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* App Features Section */
.features-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.feature-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 35px 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4a6dff 0%, #6a11cb 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-card p {
  color: #6c757d;
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='white' fill-opacity='0.05' fill-rule='evenodd'%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/svg%3E");
  z-index: 0;
}

.cta-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-card .btn-light {
  background-color: #fff;
  color: #ff416c;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cta-card .btn-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Categories with thumbnail */
.category-thumb img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  transition: all 0.3s ease;
}

/* Responsive changes for category cards */
@media (max-width: 767.98px) {
  .category-card {
    padding: 20px 10px;
  }
  
  .cat-icon-wrap {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .category-card h5 {
    font-size: 14px;
    margin-top: 8px;
  }
}

/* Adjustments for very small screens */
@media (max-width: 359px) {
  .product-title {
    font-size: 12px;
  }
  
  .product-image {
    height: 120px;
  }
  
  .price-amount {
    font-size: 14px;
  }
} 