/* ========================================
   POLEX SLIPPERS - MAIN STYLESHEET
   ======================================== */

/* ========================================
   CSS VARIABLES & ROOT STYLES
   ======================================== */
:root {
  --brand-color: #769FCD;
  --brand-light: #B9D7EA;
  --brand-lighter: #D6E6F2;
  --brand-lightest: #F7FBFC;
  /* Card heights */
  --product-card-height-sm: 300px;
  --product-card-height-md: 360px;
}

/* ========================================
   BASE STYLES
   ======================================== */
body {
  background-color: var(--brand-lightest);
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

/* Başlıklar: Nunito */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
}

/* ========================================
          TOPBAR STYLES
          ======================================== */
.topbar {
  background: var(--brand-lightest);
  border-bottom: 1px solid var(--brand-lighter);
  z-index: 1030;
}

.brand-logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--brand-color);
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
}

/* ========================================
          NAVIGATION STYLES
          ======================================== */
.categories-navbar {
  background: var(--brand-lightest);
  font-family: 'Poppins', sans-serif;
  z-index: 1040;
}

.categories-navbar .nav-link {
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--brand-color);
  font-family: 'Poppins', sans-serif;
}

.categories-navbar .nav-link:hover,
.categories-navbar .nav-link:focus {
  color: var(--brand-light);
}

/* Dropdown Styles */
.dropdown-menu {
  --bs-dropdown-bg: var(--brand-lightest);
  --bs-dropdown-link-color: #213547;
  --bs-dropdown-link-hover-bg: var(--brand-lighter);
  --bs-dropdown-link-hover-color: var(--brand-color);
  --bs-dropdown-border-color: var(--brand-lighter);
  --bs-dropdown-link-active-bg: var(--brand-light);
  --bs-dropdown-link-active-color: var(--brand-color);
  border: 1px solid var(--brand-lighter);
  box-shadow: 0 8px 24px rgba(118, 159, 205, 0.18);
  font-family: 'Poppins', sans-serif;
  z-index: 1050 !important;
}

.dropdown-item {
  font-family: 'Poppins', sans-serif;
}

/* Flag Icons styling */
.fi {
  margin-right: 8px;
  font-size: 1.1em;
}

.dropdown-divider {
  border-top-color: var(--brand-lighter);
}

/* Desktop'ta hover ile dropdown açılışı */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
  .navbar .dropdown-toggle::after {
    margin-left: 0.25rem;
  }
}

/* ========================================
   SWIPER/CAROUSEL STYLES
   ======================================== */
.hero-swiper {
  --swiper-navigation-color: var(--brand-color);
  --swiper-pagination-color: var(--brand-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(118, 159, 205, 0.15);
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--brand-color);
  backdrop-filter: blur(8px);
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

@media (max-width: 576px) {
  .hero-swiper .swiper-slide img {
    height: 260px;
  }
}

/* ========================================
   SECTION HEADING STYLES
   ======================================== */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-heading .title {
  margin: 0;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
}

.section-heading .title .accent {
  color: var(--brand-color);
}

.cat-nav {
  display: flex;
  gap: 0.5rem;
}

.cat-nav .cat-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-light);
  background: var(--brand-lightest);
  color: var(--brand-color);
}

.cat-nav .cat-nav-btn:hover {
  background: var(--brand-lighter);
}

/* ========================================
   CATEGORY CARD STYLES
   ======================================== */
.categories-swiper .swiper-slide {
  height: auto;
}

.category-card {
  background: #fff;
  border: 1px solid var(--brand-lighter);
  border-radius: 16px;
  padding: 18px 18px 14px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-card .image-wrap {
  background: #fff;
  border-radius: 12px;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.category-card .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card .label {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #213547;
}

/* ========================================
   PRODUCT CARD STYLES
   ======================================== */
.product-card {
  background: #ffffff;
  border: 1px solid var(--brand-lighter);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(118, 159, 205, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: var(--product-card-height-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 768px) {
  .product-card { 
     height: var(--product-card-height-md);
  }
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(118, 159, 205, 0.18);
}

.product-image {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  place-items: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.35s ease;
  /* Yüksek çözünürlüklü resimler için optimizasyon */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
}

.product-image img.secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-image img.secondary {
  opacity: 1;
  transform: scale(1.02);
}

.product-card .info {
  padding: 14px 16px 16px;
}

.product-card .brand {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-color);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.product-card .name {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #213547;
  margin: 0;
  line-height: 1.3;
}

/* ========================================
   FEATURE CARD STYLES
   ======================================== */
.features-section {
  background: var(--brand-lightest);
  padding: 4rem 0;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 20px rgba(118, 159, 205, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(118, 159, 205, 0.15);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--brand-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.feature-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #213547;
  margin-bottom: 1rem;
}

.feature-description {
  font-family: 'Roboto', sans-serif;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   PROMO BANNER STYLES
   ======================================== */
.promo-banner-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: var(--product-card-height-sm);
  box-shadow: 0 8px 24px rgba(118, 159, 205, 0.12);
  background: center/cover no-repeat;
  display: block;
  color: #ffffff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .promo-banner-card { 
    height: var(--product-card-height-md); 
  }
}

.promo-banner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}

.promo-banner-card .content {
  position: absolute;
  inset: 0;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.promo-banner-card .eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  opacity: 0.9;
}

.promo-banner-card .title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0.25rem 0 0;
}

.promo-banner-card .cta {
  align-self: flex-start;
  background: #ffffff;
  color: #213547;
  border-radius: 999px;
  padding: 8px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
}

/* Use <img> as background layer inside promo banner card */
.promo-banner-card .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ========================================
   FOOTER STYLES
   ======================================== */
.site-footer {
  background: var(--brand-color);
  color: #ffffff;
}

.site-footer .brand {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}

.site-footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
}

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

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  opacity: 0.95;
}

.contact-list i {
  font-size: 1.1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  margin-right: 8px;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

/* ========================================
   UTILITY BUTTONS
   ======================================== */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--brand-color);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

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

.scroll-to-top:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
}

.whatsapp-sticky {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ========================================
   PRODUCT LIST PAGE STYLES
   ======================================== */
/* Responsive grid yapısı - Her zaman 4 sütun */
@media (max-width: 575px) {
  /* Mobil: 1 sütun */
  .product-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  /* Tablet: 2 sütun */
  .product-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  /* Desktop ve üstü: Her zaman 4 sütun */
  .product-item {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* Pagination Styling */
.pagination .page-link {
  color: var(--brand-color);
  border-color: var(--brand-lighter);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.pagination .page-link:hover {
  background-color: var(--brand-lighter);
  border-color: var(--brand-light);
  color: var(--brand-color);
}

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

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  border-color: var(--brand-lighter);
  background-color: transparent;
}

.pagination .page-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(118, 159, 205, 0.25);
}

/* Yüksek çözünürlüklü resimler için responsive optimizasyon */
@media (max-width: 576px) {
  .product-image img {
    /* Mobilde daha küçük boyutlar için optimizasyon */
    max-width: 100%;
    height: auto;
  }
  
  .pagination .page-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 577px) and (max-width: 991px) {
  .product-image img {
    /* Tablet için orta boyut optimizasyonu */
    max-width: 100%;
    height: auto;
  }
}

@media (min-width: 992px) {
  .product-image img {
    /* Desktop için tam boyut */
    max-width: 100%;
    height: auto;
  }
}

/* ========================================
   PRODUCT DETAIL PAGE STYLES
   ======================================== */
.product-details-page {
  background-color: #ffffff;
}

.page-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: #213547;
  margin-bottom: 0;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--brand-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6b7280;
}

/* Sol Kolon: Ürün Adı ve Rengi */
.product-basic-info {
  padding: 2rem 0;
}

.product-basic-info .product-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

/* Ürün Resimleri */
.main-product-image {
  text-align: center;
  position: relative;
}

.main-product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(118, 159, 205, 0.15);
  transition: transform 0.3s ease;
}

.main-product-image img:hover {
  transform: scale(1.02);
}

/* Resim Navigation Buttons */
.main-product-image .btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(118, 159, 205, 0.2);
  color: var(--brand-color);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.main-product-image .btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--brand-color);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(118, 159, 205, 0.3);
}

.main-product-image .btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(118, 159, 205, 0.25);
}

@media (max-width: 576px) {
  .main-product-image .btn {
    width: 36px !important;
    height: 36px !important;
  }
}

.product-thumbnails {
  margin-top: 1rem;
}

.thumbnail-img {
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  max-width: 100%;
  height: auto;
}

.thumbnail-img:hover {
  border-color: var(--brand-color);
  transform: scale(1.05);
}

.thumbnail-img.active {
  border-color: var(--brand-color);
  box-shadow: 0 2px 8px rgba(118, 159, 205, 0.3);
}

/* Ürün Bilgileri */
.product-info {
  padding: 1rem 0;
}

.product-category .badge {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.product-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: #213547;
  font-size: 2rem;
  line-height: 1.2;
}

.product-rating .stars {
  font-size: 1.1rem;
}

.product-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.current-price {
  color: var(--brand-color) !important;
  margin: 0;
}

.original-price {
  font-size: 1.1rem;
}

.discount-badge .badge {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
}

.product-description p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.stock-status {
  font-size: 1rem;
  font-weight: 500;
}

/* Renk Seçimi */
.color-options {
  margin-bottom: 0.5rem;
}

.color-option {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.color-option:hover {
  transform: scale(1.1);
}

.color-option.active {
  border-color: var(--brand-color);
  box-shadow: 0 2px 8px rgba(118, 159, 205, 0.3);
}

.color-option.active::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Beden Seçimi */
.size-options .btn {
  min-width: 48px;
  height: 48px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.size-option.active {
  background-color: var(--brand-color);
  border-color: var(--brand-color);
  color: white;
}

.size-option:hover:not(.active) {
  border-color: var(--brand-color);
  color: var(--brand-color);
}

/* Miktar Seçimi */
.quantity-controls .btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
}

.quantity-controls input {
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
}

/* Aksiyon Butonları */
.action-buttons .btn {
  border-radius: 12px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.action-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(118, 159, 205, 0.3);
}

/* Politika Bilgileri */
.policy-info {
  padding: 1rem;
  background: var(--brand-lighter);
  border-radius: 12px;
  border: 1px solid var(--brand-light);
}

.policy-item {
  font-size: 0.9rem;
  color: #6b7280;
}

.policy-item i {
  font-size: 1.1rem;
}

/* Diğer Renkler Bölümü */
.other-colors-section {
  border-top: 1px solid var(--brand-lighter);
  padding-top: 1.5rem;
}

.color-variant-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
}

.color-variant-link:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.color-variant-link img {
  border: 2px solid transparent;
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(118, 159, 205, 0.1);
}

.color-variant-link:hover img {
  border-color: var(--brand-color);
  box-shadow: 0 4px 12px rgba(118, 159, 205, 0.2);
}

.color-variant-link.active img {
  border-color: var(--brand-color);
  box-shadow: 0 4px 12px rgba(118, 159, 205, 0.3);
}

.color-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  margin-top: 0.5rem;
  color: var(--brand-color);
  font-family: 'Poppins', sans-serif;
}

.color-variant-link.active .color-name {
  color: var(--brand-color);
  font-weight: 700;
}

/* Ana Resim Navigasyon Butonları */
.main-image-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.main-nav-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--brand-color) !important;
  backdrop-filter: blur(8px);
  pointer-events: auto;
  transition: all 0.3s ease;
  z-index: 10;
}

.main-nav-btn:hover {
  background: rgba(255, 255, 255, 1) !important;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(118, 159, 205, 0.2);
}

.main-nav-btn:active {
  transform: scale(0.95);
}

.main-nav-btn i {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Ana resim geçiş animasyonu */
#mainProductImage {
  transition: opacity 0.3s ease;
}

#mainProductImage.fade-out {
  opacity: 0;
}

#mainProductImage.fade-in {
  opacity: 1;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
  .product-title {
    font-size: 1.75rem;
  }
  
  .product-basic-info .product-title {
    font-size: 2rem;
  }
  
  .main-product-image img {
    max-height: 320px;
    object-fit: contain;
  }
}

@media (max-width: 575px) {
  .product-title {
    font-size: 1.5rem;
  }
  
  .product-basic-info .product-title {
    font-size: 1.75rem;
  }
  
  .main-product-image img {
    max-height: 240px;
  }
}

/* ========================================
   BANNERS (Homepage image tiles)
   ======================================== */
.banners .col-lg-4 > div {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.banners .col-lg-4 > div img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Dark gradient overlay for better text contrast */
.banners .col-lg-4 > div::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
  z-index: 0;
}

.banner-text {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #ffffff;
  z-index: 1;
}

.banner-text span {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  opacity: 0.95;
}

.banner-text h4 {
  margin: 6px 0 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: #ffffff;
}

.banner-text a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.banner-text a i {
  transition: transform 0.2s ease;
}

/* Move arrow slightly right on hover */
.banner-text a:hover i,
.banners .col-lg-4 > div:hover .banner-text i {
  transform: translateX(6px);
}
