body {
    font-family: "Helvetica Neue", sans-serif;
    background-color: #f8f9fa;
}

/* Make body a flex container */
html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

/* Main content grows to fill space */
main {
    flex: 1;
}

/* Footer stays at bottom */
footer {
    margin-top: auto;
}


h1,
h2,
h3 {
    color: #195c4a;
}

.nav-link.active {
    color: #195c4a !important;
}

.btn-success {
    background-color: #195c4a;
    border-color: #195c4a;
}

.btn-outline-success:hover {
    background-color: #195c4a;
    color: white;
}

.rounded-4 {
    border-radius: 1rem;
}

.bg-deep-green {
    background-color: #195c4a !important;
}

.card-img-top {
    height: 60%;
    object-fit: cover;
    width: 100%;
    border-top-left-radius: 0.75rem;
    /* same as rounded-4 */
    border-top-right-radius: 0.75rem;
}

.card.h-100 {
    display: flex;
    flex-direction: column;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.pagination .page-link {
    color: #195c4a;
    /* Your theme green */
    border-color: #195c4a;
    transition: all 0.2s ease;
}

.pagination .page-link:hover {
    background-color: #195c4a;
    color: #fff;
}

.pagination .page-item.active .page-link {
    background-color: #195c4a;
    border-color: #195c4a;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #aaa;
    background-color: #f8f9fa;
    border-color: #ddd;
}

section .btn-outline-success {
    min-width: 150px;
    font-weight: 500;
    transition: all 0.2s ease;
}

section .btn-outline-success:hover,
section .btn-outline-success.active {
    background-color: #195c4a;
    color: white;
}

.gallery-img {
    height: 500px;
    /* or any height that fits your design */
    width: 100%;
    /* ensures full width of column */
    object-fit: cover;
    /* ensures image fills the box without distortion */
    object-position: center;
    /* centers the crop */
}


.product-tab.active {
    background-color: #195c4a !important;
    color: #fff !important;
    border-color: #195c4a !important;
}

.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #195c4a;
    color: white;
}


footer a:hover i.fa-envelope {
    color: #ffc107;
}

footer a:hover i.fa-facebook-f {
    color: #1877f2;
}

footer a:hover i.fa-instagram {
    color: #e1306c;
}

footer a:hover i.fa-tiktok {
    color: #69c9d0;
}

footer a:hover i.fa-linkedin-in {
    color: #0a66c2;
}

footer a {
    text-decoration: none;
}