/*==========---TESLİM METNİ---==========*/
.delivery-text {
  color: #fff;
  background-color: #7050ba;
  font-size: 12px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  width:100%;
  padding: 4px 8px;
  letter-spacing: -0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*==========---LANDING---==========*/
.landing-carousel {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}
.landing-carousel .carousel-img {
  object-fit: cover;
  width: 100%;
  height: 600px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s;
  z-index: 1;
}
.landing-carousel .carousel-img.active {
  opacity: 1;
  z-index: 2;
}
.landing-carousel::before {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.carousel-center-text {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 4;
  pointer-events: none;
}

.carousel-hero-box {
  margin-left: 17vw;
  max-width: 520px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: auto;
}

.carousel-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 10px;
  line-height: 1.1;
}

.carousel-hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: #718096;
  margin-bottom: 12px;
}

.carousel-hero-underline {
  width: 90px;
  height: 3px;
  background: #ed632b;
  margin-bottom: 24px;
}

.carousel-hero-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #4A5568;
  margin-bottom: 32px;
}

.carousel-hero-btn {
  display: inline-block;
  background: #ed632b;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 32px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.carousel-hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.carousel-hero-btn:hover {
  background: #ed632b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
}

.carousel-hero-btn:hover::before {
  left: 100%;
}

/*==========---AKTİF KATEGORİ BAŞLIĞI---==========*/
.active-category-title-container {
font-family: 'Cormorant Garamond', serif;
  display: flex;
  width: 100%;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #ed632b;
  letter-spacing: 0.5px;
  padding: 10px 0;
  transition: all 0.2s;
}

#active-category {
  color: #7050ba;
  display: block;
  padding:6px 30px;
  margin-bottom:0;
  border-radius: 20px;
  border-bottom:3px solid #ed632b;
  gap: 2px;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}

/*==========---ARAMA KUTUSU---==========*/
.products .input-group {
  position: relative;
  max-width: 400px;
  margin-left: auto;
}

.products .input-group .form-control {
  border: 2px solid #e4e4e4;
  border-radius: 25px;
  padding: 12px 20px 12px 50px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.products .input-group .form-control:focus {
  border-color: #ed632b;
  box-shadow: 0 4px 12px rgba(107, 70, 193, 0.15);
  outline: none;
}

.products .input-group .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #ed632b;
  font-size: 16px;
  z-index: 10;
  pointer-events: none;
}

.products .input-group .form-control::placeholder {
  color: #999;
  font-style: italic;
}



/*==========---ÜRÜN KARTI ve ARKAPLAN---==========*/
.products {
  padding: 50px 0 100px 0;
  position: relative;
  padding-bottom: 30px;
  overflow: hidden;
}
.products .row2 {
  margin-top: 40px;
}
.products .products-bg-bottom-right {
  position: absolute;
  bottom: -146px;
  right: -136px;
  width: 1166px;
  filter: opacity(0.9);
  overflow: hidden;
  transform: scale(-1, 1);
}

.products .item {
  border: 1px solid #e4e4e4;
  background: #fff;
  padding: 0 0 32px 0;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 32px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-radius: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
}

.products .item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.12);
}

.content {
  padding: 16px 2px 0 2px;
}

.item-header {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2D3748;
  margin-bottom: 10px;
  line-height: 1.4;
}
.item-amount {
  font-size: 12px;
  color: #718096;
  margin-bottom: 8px;
}
.price,
.item .price {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
.price strike,
.price .tl {
  color: #718096;
  font-size: 14px;
  text-decoration: line-through;
}
.iris-price-after {
  color: #2D3748;
}

.alt-bosluk {
  margin-top:20px;
  display: flex;
  justify-content: center;
}

.sepete-ekle-outer {
  display: inline-block;
  border-right: 2px solid #ed632b;
  border-bottom: 2px solid #ed632b;
  padding: 1px;
  background: transparent;
  border-radius: 0;
}
.sepete-ekle-inner {
  border: 1px solid #ed632b;
  border-radius: 0;
  background: #ed632b;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 8px 32px;
  margin-left: -5px;
  margin-top: -5px;
  text-transform: uppercase;
  min-width: 170px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.sepete-ekle-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.sepete-ekle-inner:hover {
  background: #ed632b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
}

.sepete-ekle-inner:hover::before {
  left: 100%;
}

.item .discount {
  position: absolute;
  left: -6px;
  top: -28px;
  z-index: 10;
  padding: 4px 8px;
  background: url('../img/indirim.png') no-repeat center center;
  background-size: contain;
  color: #fff;
  font-weight: 600;
  font-size: 10px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.2px;
  text-transform: none;
  box-shadow: none;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  overflow: visible;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: none;
  pointer-events: none;
  transform: none;
}

@keyframes subtlePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 3px 10px rgba(107, 70, 193, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.6);
  }
}

@keyframes simpleGlow {
  0%, 100% {
    box-shadow: 0 3px 6px rgba(237, 137, 54, 0.7);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 0 rgba(237, 137, 54, 0);
    filter: brightness(1.4);
  }
}



.item .image {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image img,
.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item .image img {
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item .image:hover img {
  transform: scale(1.08);
  z-index: 1;
}
.incele-icon {
  position: absolute;
  bottom: 20px;
  right: 10px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  color: #2D3748;
  box-shadow: 0 2px 8px 0 rgba(60,60,60,0.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  transform: scale(0.8);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item .image:hover .incele-icon {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 99;
}


/*==========---HOŞGELDİNİZ KUTUSU---==========*/
.welcome-divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top:50px;
}
.welcome-divider-line {
  flex: 1;
  height: 2px;
  background: #ededed;
  border-radius: 1px;
  min-width: 20px;
}
.welcome-divider-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(60,60,60,0.04);
  padding: 12px 36px;
  margin: 0 18px;
  display: flex;
  align-items: center;
}
.welcome-divider-title {
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2D3748;
  letter-spacing: 0.5px;
}

/*==========---TABLET (501px - 991px)---==========*/
@media (min-width: 501px) and (max-width: 991px) {
  .carousel-hero-box {
    margin-left: 0;
    max-width: 100vw;
    align-items: center;
    text-align: center;
  }
  .carousel-center-text {
    justify-content: center;
  }
  .carousel-hero-title {
    font-size: 2.5rem;
  }
  .carousel-hero-subtitle {
    font-size: 1.2rem;
  }
  .landing-carousel {
    max-width: 100%;
    height: 320px;
  }
  .landing-carousel .carousel-img {
    height: 320px;
  }
  .item {
    max-width: 100%;
    padding: 24px 8px 18px 8px;
  }
  
  /* Arama kutusu tablet düzenleme */
  .products .input-group {
    max-width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  
  .active-category-title-container {
    text-align: center;
    justify-content: center;
    font-size: 22px;
  }
  
  #active-category {
    padding: 5px 25px;
    font-size: 18px;
  }
  
  .item-header {
    font-size: 15px;
  }
  
  .welcome-divider-title {
    font-size: 1.5rem;
  }
  
  .welcome-divider-box {
    padding: 10px 24px;
    margin: 0 12px;
  }
  
}

/*==========---MOBİL (max-width: 500px)---==========*/
@media (max-width: 500px) {
  .landing-carousel {
    height: 280px;
  }
  .landing-carousel .carousel-img {
    height: 280px;
  }
  .carousel-center-text {
    justify-content: center;
    align-items: center;
    padding: 0 15px;
  }
  .carousel-hero-box {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
    align-items: center;
    text-align: center;
    padding: 0 10px;
  }
  .carousel-hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .carousel-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .carousel-hero-underline {
    width: 60px;
    height: 2px;
    margin: 0 auto 16px auto;
  }
  .carousel-hero-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .carousel-hero-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 24px;
  }
  .item {
    max-width: 100%;
    padding: 16px 4px 12px 4px;
    border-radius: 8px;
  }
  .item-header {
    font-size: 14px;
  }
  .incele-icon {
    font-size: 1rem;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }
  .welcome-divider-container {
    padding: 20px 0 10px 0;
  }
  
  /* Arama kutusu mobil düzenleme */
  .products .input-group {
    max-width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  
  .products .input-group .form-control {
    padding: 10px 15px 10px 45px;
    font-size: 12px;
  }
  
  .products .input-group .search-icon {
    left: 15px;
    font-size: 13px;
  }
  
  .active-category-title-container {
    text-align: center;
    justify-content: center;
    font-size: 18px;
    padding: 8px 0;
  }
  
  #active-category {
    padding: 4px 20px;
    font-size: 16px;
  }
  
  .welcome-divider-title {
    font-size: 1.1rem;
  }
  
  .welcome-divider-box {
    padding: 8px 12px;
    margin: 0 6px;
  }
  
  /* Mobile Add to Cart Button - Smaller size */
  .sepete-ekle-inner {
    font-size: 0.85rem !important;
    padding: 6px 20px !important;
    min-width: 120px !important;
    letter-spacing: 1px !important;
  }
  
  /* Products container ve col padding minimum */
  .products .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  
  .products .row {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }
  
  .products .row > [class*="col"] {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  
  .products {
    padding: 20px 0 30px 0 !important;
  }
  
  /* Pagination mobil düzenleme - Basit */
  .pagination {
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
    padding: 0 10px;
  }
  
  .pagination .page-link {
    padding: 8px 12px;
    font-size: 14px;
    min-width: 40px;
  }
}

/*==========---PAGINATION (Sayfa Navigasyonu)---==========*/
#pagination-container {
  margin: 40px 0;
  padding: 20px 0;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination .page-item {
  margin: 0 2px;
}

.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2D3748;
  background-color: #fff;
  border: 2px solid #e4e4e4;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pagination .page-link:hover {
  color: #ed632b;
  background-color: #fff5f0;
  border-color: #ed632b;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(237, 99, 43, 0.2);
}

.pagination .page-item.active .page-link {
  color: #fff;
  background: linear-gradient(135deg, #7050ba 0%, #8B5CF6 100%);
  border-color: #7050ba;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(112, 80, 186, 0.3);
  transform: translateY(-2px);
}

.pagination .page-item.disabled .page-link {
  color: #cbd5e0;
  background-color: #f7fafc;
  border-color: #e2e8f0;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

.pagination .page-item.disabled .page-link:hover {
  color: #cbd5e0;
  background-color: #f7fafc;
  border-color: #e2e8f0;
  transform: none;
  box-shadow: none;
}

.pagination .page-link span {
  display: inline-block;
}

/* Pagination container responsive */
@media (max-width: 768px) {
  #pagination-container {
    margin: 30px 0;
    padding: 15px 0;
  }
  
  .pagination {
    gap: 4px;
  }
  
  .pagination .page-link {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }
}

@media (max-width: 500px) {
  .pagination .page-link {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 12px;
  }
}

