html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
/* Dropdown & Offcanvas menu items color */
.dropdown-menu .dropdown-item,
.offcanvas-body .nav-link,
.offcanvas-body .dropdown-item,
.offcanvas-body .collapse .nav-link {
    color: #436a2b !important; /* Main green color */
    font-weight: 600;
}

    /* Dropdown hover effect */
    .dropdown-menu .dropdown-item:hover,
    .offcanvas-body .nav-link:hover,
    .offcanvas-body .dropdown-item:hover,
    .offcanvas-body .collapse .nav-link:hover {
        color: #2e4719 !important; /* Slightly darker green on hover */
    }

/* Ensure offcanvas submenu links also use the green color */
.offcanvas-body .collapse .nav-link {
    color: #436a2b !important;
}


/* Navigation links color */
.navbar-nav .nav-link,
.offcanvas-body .nav-link,
.offcanvas-body .dropdown-item {
    color: #436a2b !important;
    font-weight: 600;
}

/* Navigation links hover */
.navbar-nav .nav-link:hover,
.offcanvas-body .nav-link:hover,
.offcanvas-body .dropdown-item:hover {
    color: #2e4719 !important; /* Slightly darker green on hover */
}

/* Shopping cart icon color */
#shoppingCartContainer i,
.col-lg-1 i,
.col-1 i {
    color: #436a2b;
}

/* Optional: badge background */
#shoppingCartContainer .badge,
.col-lg-1 .badge,
.col-1 .badge {
    background-color: #436a2b;
}

/* Offcanvas submenu links */
.offcanvas-body .collapse .nav-link {
    color: #436a2b !important;
}


.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

@media (max-width: 768px) {
    header .navbar-nav {
        display: none;
    }
}

/* Carousel Container */

#carouselExampleCaptions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: auto;
    overflow: hidden;
}

    /* Carousel Inner */
    .carousel slide .carousel-inner {
        width: 1600px !important;
        height: 500px !important;
        text-align: center !important;
    }

    /* Carousel Items */
    .carousel slide .carousel-item {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center !important;
    }

    /* Images */
    .carousel slide .slider-img {
        width: 1600px !important;
        height: 500px !important;
        text-align: center !important;
    }

.custom-btn {
    background-color: #FF4C3B;
    color: white;
    border: none;
    font-weight: 500;
    border: 2px solid #FF4C3B;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.custom-btn:hover {
    background-color: white;
    color: black;
    border: 2px solid #FF4C3B;
}

.custom-btn.selected {
    background-color: white;
    color: black;
    border: 2px solid #FF4C3B;

}

.custom-btn.active {
    background-color: white;
    color: black;
    border: 2px solid #FF4C3B;
}


.card-name {
    color: black; 
    transition: color 0.3s ease;
}

.service-block:hover .card-name {
    color: #ff4c3b; /* Hover color */
}
.toast-custom {
    background-color: white;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}
.toast {
    display: none;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
}

.toast.show {
   display: block;
   opacity: 1;
}

.toast-container {
    z-index: 10000 !important;
    background-color: white;
    position: relative;
    min-width: 300px;
}

.toast-success {
    border-left: 4px solid #28a745;
}

.toast-error {
    border-left: 4px solid #dc3545;
}

.toast-info {
    border-left: 4px solid #17a2b8;
}

.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #00AEEF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    #mainProductImage
    {
        height: 400px !important; /* Adjust height for mobile */

    }
    .thumbnail-image 
    {
        height: 130px !important; /* Smaller thumbnails on mobile */

    }
}

@media (max-width: 620px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: table;
    }
}

@media (min-width: 621px) {
    .mobile {
        display: none;
    }
}