body {
    font-family: 'poppins', sans-serif;
}


.back-to-top {

    bottom: 142px;
    right: 36px;
}

#whatsappChat {
    position: fixed;
    /*right: 9px;*/
    /* bottom: 74px;*/

    right: 15px;
    bottom: 74px;

    z-index: 11;
    opacity: 0.9;
    animation: actionWhatsapp 0.8s infinite alternate;

}



/* Footer General Styles */
.footer {

    color: #ccc;
    padding: 3rem 1rem;
    font-size: 0.9rem;
}

.footer-heading {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-subheading {
    font-size: 1rem;
    color: #969494;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Links and Text */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #aeadad;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

/* Newsletter Form */
.newsletter-form .form-control {
    border: none;
    border-radius: 0;
    padding: 0.75rem;
}

.newsletter-form .btn-primary {
    border-radius: 0;
    padding: 0.75rem 1rem;
}

.newsletter-form .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Social Icons */
.social-icons .btn-circle {
    border-radius: 50%;
    padding: 0.3rem 0.6rem;
    font-size: 1rem;
    margin-right: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons .btn-circle:hover {
    background-color: #183414;
    transform: scale(1.1);
}

/* Footer Bottom */
.footer .border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}



/* Sticky Navbar */
.navbar-main-div.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
    /* Ensures the navbar stays on top */
    transition: background-color 0.3s ease-in-out;
}

/* Navbar Background Change on Scroll */
.navbar-main-div.sticky-top.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    /* Darker background when scrolling */
}


/* Hover effect for navbar links */
.navbar .navbar-nav .nav-link:hover {
    color: #f39c12;
    /* Vibrant yellow/orange on hover */
}

.navbar-nav.ml-auto .btn:hover {
    color: #f39c12;
    /* Change color on hover */
}

/* SVG Icons for Cart and User */
.navbar-nav.ml-auto svg {
    fill: #fff;
    width: 24px;
    height: 24px;
}

/* Mobile View Adjustments */
@media (max-width: 991px) {
    .navbar .navbar-nav {
        text-align: center;
    }

    .navbar .navbar-toggler {
        border: none;
        /* Toggler button color */
    }

    .navbar .navbar-toggler-icon {
        background-color: #fff;
        /* Toggler icon color */
    }

    .navbar .navbar-collapse {
        margin-top: 10px;
    }
}

.product_search {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    align-items: center;
    border-radius: 50px;
    background-color: #f8f9fa;
    /* Light background */
    padding: 5px 15px;
}

.input-group input {
    border: none;
    border-radius: 50px;
    padding: 10px 15px;
    font-size: 1rem;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
}

.input-group input:focus {
    outline: none;
    box-shadow: none;
    /* Highlight when focused */
}

/* Button Styling */
.btn-search {
    background-color: white;
    /* Vibrant blue color */
    border: none;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-search:hover {
    background-color: whitesmoke;
    /* Darker shade of blue on hover */
}

.btn-search svg {
    fill: white;
    /* White color for the icon */
    width: 18px;
    height: 18px;
}

/* Responsive Design */
@media (max-width: 576px) {
    .product_search {
        max-width: 100%;
    }
}


.feature-icons-section {
    background: #f9fafd;
}

.icon-box {
    background: #ffffff;
    border: 1px solid #e0e6f1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.icon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.icon-box .icon {
    color: #007bff;
    transition: color 0.3s ease;
}

.icon-box:hover .icon {
    color: #0056b3;
}

.title {
    font-weight: 600;
    font-size: 1.125rem;
    color: #212529;
}


.product-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

.tf-page-title {
    background: linear-gradient(135deg, #373b40 0%, #212529 100%);
    padding: 3rem 1rem;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 15px rgb(38 57 77 / 0.2);
    margin-bottom: 2rem;
    border-radius: 0 0 15px 15px;
}

.tf-page-title .container-full {
    max-width: 1140px;
    margin: 0 auto;
}

.about-section {
    background: #fffaf9;
    color: #333;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #6b3e26;
    /* warm gemstone brown */
}

.lead {
    font-size: 1.2rem;
    color: #7a5c48;
}

.about-image {
    transition: transform 0.6s ease;
    box-shadow: 0 10px 30px rgba(107, 62, 38, 0.15);
}

.about-image img {
    border-radius: 12px;
}

.about-section.fade-in {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.tf-page-title .heading {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
    text-transform: capitalize;
}

.tf-page-title .fs-4 {
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
}


.card-product .countdown-box {

    top: 70%;
    max-height: 50px;
    background-color: none;
    border-radius: 3px;
}

.wrap-sidebar-account {
    padding: 1rem;
    background-color: #f8f9fa;
    /* Light gray background */
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    /* Fixed sidebar width */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.my-account-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.my-account-nav li {
    margin-bottom: 0.5rem;
}

.my-account-nav-item {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.my-account-nav-item:hover {
    /* Bootstrap primary color */
    color: #f39c12;
    text-decoration: none;
}

.my-account-nav-item.active {
    background-color: #6BB252;
    /* Darker blue for active */
    color: white;
    font-weight: 600;
    cursor: default;
}



.form-bid {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.form-bid .input-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.form-bid input[type="number"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: border 0.3s ease;
}