/* Import Font */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
}

/* Kustomisasi Warna Primer */
:root {
    --primary-pink: #D94C7E;
    --soft-pink: #F8E0E6;
    --dark-text: #333333;
    --light-gray: #f8f9fa;
}

.text-primary-custom {
    color: var(--primary-pink) !important;
}

/* Jumbotron (REVISI TOTAL) */
.jumbotron {
    background: linear-gradient(45deg, rgba(217, 76, 126, 0.6), rgba(233, 30, 99, 0.6)),
                url('https://images.unsplash.com/photo-1578916171728-46686eac8d58?q=80&w=1974&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    min-height: 70vh; /* Menggunakan min-height agar lebih fleksibel */
    margin-bottom: 0;
    /* Dihapus: padding, text-align: center */
}


/* Card Produk (Tidak ada perubahan signifikan) */
.product-card {
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid #eee;
    border-radius: 0.75rem;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
}


/* Slider UMKM (REVISI TOTAL) */
.umkm-slider-wrapper {
    position: relative; /* Kunci untuk memposisikan tombol panah */
    padding: 0 40px; /* Beri ruang di samping untuk tombol */
}

#umkm-list-container {
    overflow: hidden;
}

#umkm-list-container .row {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
}

.umkm-card-v2 {
    flex: 0 0 100%;
    padding: 0 10px;
}

@media (min-width: 576px) {
    .umkm-card-v2 {
        flex: 0 0 50%;
    }
}

@media (min-width: 992px) {
    .umkm-card-v2 {
        flex: 0 0 25%;
    }
}

/* Styling Card UMKM (Tidak Berubah) */
.umkm-card-v2 .card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    width: 100%;
}

.umkm-card-v2 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.umkm-card-v2 .card-img-top {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    height: 200px;
    object-fit: cover;
    padding: 15px;
    border-radius: 1rem;
}

.umkm-card-v2 .card-body { padding-bottom: 0; }
.umkm-card-v2 .social-icons { padding: 1rem 0; background-color: var(--light-gray); border-bottom-left-radius: 0.75rem; border-bottom-right-radius: 0.75rem; }
.umkm-card-v2 .social-icons a { color: #6c757d; font-size: 1.2rem; margin: 0 8px; transition: color 0.2s ease; }
.umkm-card-v2 .social-icons a:hover { color: var(--primary-pink); }

/* Tombol Slider (REVISI TOTAL) */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    
    /* Tampilan tombol seperti di ilustrasi */
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: var(--dark-text);
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

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

.slider-btn:hover {
    background-color: var(--primary-pink);
    color: white;
    border-color: var(--primary-pink);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#prev-btn {
    left: 0;
}

#next-btn {
    right: 0;
}

#product {
  position: relative;
  z-index: 1;
}

#umkm-section {
  position: relative;
  z-index: 10;
}

.slider-btn {
  z-index: 5;
}

#recent-posts .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#recent-posts .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
#recent-posts img {
  height: 220px;
  object-fit: cover;
}

.swiper {
  width: 100%;
  padding-bottom: 40px;
}

.product-card img {
  height: 200px;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-pink)
}

.umkmSwiper {
  width: 100%;
  padding-bottom: 40px;
}

.umkm-card-v2 img {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-pink);
}

#about h2 {
  position: relative;
  display: inline-block;
}

#about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-pink);
  margin: 10px auto 0;
  border-radius: 2px;
}

#about .bi-check-circle-fill {
  font-size: 1.1rem;
  vertical-align: middle;
}

.news-card:hover {
  transform: translateY(-4px);
  transition: 0.2s ease;
}
.news-card img {
  height: 220px;
  object-fit: cover;
}


