body {
    font-family: 'Quicksand', sans-serif;
    color: #253D4E;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    color: #18436c;
}
p, a{
    font-family: 'Quicksand', sans-serif;
    color: #253D4E;
}

.text-brand {
    color: #18436c;
}
.bg-brand {
    background-color: #18436c;
}
.border-brand {
    border-color: #18436c;
}
.header-top-link:hover {
    color: #18436c;
    transition: color 0.3s ease;
}
.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.product-card {
    border: 1px solid #ececec;
    transition: all 0.3s ease;
}
.product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #18436c;
}
.progress-bar-fill {
    background-color: #18436c;
}
.deal-countdown span {
    background-color: white;
    color: #18436c;
}
/* Animation for elements on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Hide scrollbar for category slider */
#categories-container::-webkit-scrollbar {
    display: none;
}
#categories-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

 /* Style for the product card on hover */
.product-card {
    border: 1px solid #ececec;
    transition: all 0.3s ease;
}
.product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #3BB77E;
}
/* Active state for tab buttons */
.tab-button.active {
    border-bottom-color: #3BB77E;
    color: #3BB77E;
}


/* Custom styles for form inputs */
.form-input {
    border: 1px solid #ececec;
    border-radius: 0.25rem;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: border-color 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: #3BB77E;
    box-shadow: 0 0 0 2px rgba(59, 183, 126, 0.2);
}
/* Style for hidden elements to apply smooth transition */
.hidden-section {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}



/* Style for the product card on hover */
.product-card {
    border: 1px solid #ececec;
    transition: all 0.3s ease;
}
.product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #3BB77E;
}
/* Custom styles for pagination */
.pagination-link { transition: all 0.3s ease; }
.pagination-link.active {
    background-color: #3BB77E;
    color: white;
    border-color: #3BB77E;
}
/* Custom styles for noUiSlider to match brand theme */
.noUi-connect { background: #3BB77E; }
.noUi-handle {
    border: 2px solid #3BB77E;
    background: #FFF;
    box-shadow: none;
}
.noUi-handle:focus { outline: none; }
.noUi-target { border-color: #e5e7eb; }


