/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap");

/* Main Content */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #e9ecef;
    color: #343a40;
}

/* Buttons */
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    color: #fff;
    margin-bottom: 10px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, box-shadow 0.3s;
    font-family: 'Ubuntu', sans-serif;
}
.btn-icon img {
    width: 24px;
    height: auto;
    margin-right: 8px;
}
.btn-shopee {
    background-color: #ee4d2d;
}
.btn-shopee:hover {
    background-color: #d43f2f;
}
.btn-tiktok {
    background-color: #000;
}
.btn-tiktok:hover {
    background-color: #6b6b6b;
}
.btn-tokopedia, .btn-whatsapp {
    background-color: #34b233;
}
.btn-whatsapp i {
    margin-right: 5px;
}
.btn-tokopedia, .btn-whatsapp:hover {
    background-color: #2a8a1e;
}

/* Product Items */
.product-item {
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    background-color: #ffffff;
}
.product-item:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.product-img {
    border-radius: 8px;
    max-width: 130px;
    max-height: 130px;
}
.product-description {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-price {
    font-weight: bold;
    color: #28a745;
    margin-bottom: 10px;
}
.product-description p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}
.btn-detail {
    margin-top: auto; /* Pushes button to the bottom of the container */
}

/* Product Detail Section */
.product-detail img {
    margin-top: 10px;
    max-width: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-detail h1 {
    font-size: 2.5rem;
    margin-top: 0;
    font-family: 'Poppins', sans-serif;
}
.product-detail p {
    font-size: 1.1rem;
    margin: 10px 0;
    font-family: 'Ubuntu', sans-serif;
}

/* Testimonial Gallery */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.gallery-item {
    flex: 1 1 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.gallery-item img:hover {
    transform: scale(1.05);
}
.modal-img {
    width: 100%;
    height: auto;
}

/* Contact Section */
.contact-section {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-card {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.video-card video {
    width: 100%;
    height: auto;
}

.video-card p {
    text-align: center;
    font-weight: bold;
}
.carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: black;
    }

#whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#whatsapp-chat .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#whatsapp-chat .btn i {
font-size: 24px; 
}