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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden;
}

/* Main container */
#main-container {
  padding: 1.5rem;
  background-color: #787dfd;
}

/* Product grid */
#product-grid {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

/* Large product card */
#large-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 400px;
}

#large-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Large product image */
#large-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

#large-product-card:hover #large-product-image {
  transform: scale(1.05);
}

/* Small cards container */
#small-cards-container {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

/* Small product cards */
#small-card-1,
#small-card-2,
#small-card-3,
#small-card-4,
#small-card-5,
#small-card-6 {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 120px;
}

#small-card-1:hover,
#small-card-2:hover,
#small-card-3:hover,
#small-card-4:hover,
#small-card-5:hover,
#small-card-6:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Small product images */
.small-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

#small-card-1:hover .small-product-image,
#small-card-2:hover .small-product-image,
#small-card-3:hover .small-product-image,
#small-card-4:hover .small-product-image,
#small-card-5:hover .small-product-image,
#small-card-6:hover .small-product-image {
  transform: scale(1.05);
}


/* Responsive adjustments */
@media (max-width: 991.98px) {
  #large-product-card {
    height: 300px;
  }
  
  #small-card-1,
  #small-card-2,
  #small-card-3,
  #small-card-4,
  #small-card-5,
  #small-card-6 {
    height: 100px;
  }
}

@media (max-width: 767.98px) {
  #large-product-card {
    height: 250px;
  }
  
  #small-card-1,
  #small-card-2,
  #small-card-3,
  #small-card-4,
  #small-card-5,
  #small-card-6 {
    height: 80px;
  }
  
  #main-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 575.98px) {
  #large-product-card {
    height: 200px;
  }
  
  #small-card-1,
  #small-card-2,
  #small-card-3,
  #small-card-4,
  #small-card-5,
  #small-card-6 {
    height: 70px;
  }
}

/* Bootstrap grid utilities */
.row {
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}


#kampanya-slider-main {
    width: 100%;
    margin: 0;
    padding: 0;
}

#kampanya-slider-kutu {
    width: 100%;
    height: 400px;
    background: #000;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#kampanya-slider-icerik {
    width: 100%;
    height: 100%;
    position: relative;
}

#kampanya-slider-gorsel-1,
#kampanya-slider-gorsel-2,
#kampanya-slider-gorsel-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s ease;
}

#kampanya-slider-gorsel-1.active,
#kampanya-slider-gorsel-2.active,
#kampanya-slider-gorsel-3.active {
    opacity: 1;
    transform: scale(1);
}

#kampanya-slider-gorsel-1 img,
#kampanya-slider-gorsel-2 img,
#kampanya-slider-gorsel-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

#kampanya-slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 30px;
}

#kampanya-slider-btn-1,
#kampanya-slider-btn-2,
#kampanya-slider-btn-3 {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kampanya-slider-btn-1:hover,
#kampanya-slider-btn-2:hover,
#kampanya-slider-btn-3:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

#kampanya-slider-btn-1.active,
#kampanya-slider-btn-2.active,
#kampanya-slider-btn-3.active {
    background: #fff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    #kampanya-slider-kutu {
        height: 300px;
    }

    #kampanya-slider-nav {
        bottom: 15px;
        gap: 6px;
        padding: 6px 12px;
    }

    #kampanya-slider-btn-1,
    #kampanya-slider-btn-2,
    #kampanya-slider-btn-3 {
        width: 6px;
        height: 6px;
    }
}
