/* Main Stylesheet */

/* Base Styles */
body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: #2D2D2D;
    padding: 0 !important;
    margin: 0;
}

a {
    text-decoration: none;
    color: #3BB77E;
    transition: all 0.3s ease;
}

a:hover {
    color: #2da56b;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.text-primary {
    color: #3BB77E !important;
}

.bg-primary {
    background-color: #3BB77E !important;
}

/* Buttons */
.btn {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3BB77E;
    border-color: #3BB77E;
}

.btn-primary:hover {
    background-color: #2da56b;
    border-color: #2da56b;
}

.btn-outline-primary {
    color: #3BB77E;
    border-color: #3BB77E;
}

.btn-outline-primary:hover {
    background-color: #3BB77E;
    color: white;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.card-img-top {
    object-fit: cover;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-weight: 500;
    padding: 8px 12px;
}

/* Forms */
.form-control {
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
}

.form-control:focus {
    box-shadow: none;
    border-color: #3BB77E;
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 5px 8px;
}

/* Utility Classes */
.rounded-3 {
    border-radius: 12px !important;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

/* Product Quantity */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-selector button {
    background-color: #f8f9fa;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector input {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}   

/* Banner Slider Styles */
#mainBanner .carousel-item {
    padding: 5px;
}

#mainBanner .carousel-control-prev,
#mainBanner .carousel-control-next {
    width: 5%;
}

#mainBanner .carousel-control-prev-icon,
#mainBanner .carousel-control-next-icon {
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 60px;
    height: 30px;
    background-size: 70%;
}

#mainBanner .display-4 {
    font-size: 2.5rem;
    line-height: 1;
}

@media (max-width: 768px) {
    #mainBanner .display-4 {
        font-size: 2rem;
    }
    
    #mainBanner .fs-5 {
        font-size: 1rem !important;
    }
    
    #mainBanner img {
        max-height: 180px;
        width: auto;
        margin: 0 auto;
        display: block;
    }
}