/* Custom CSS */
:root {
    --primary-color: #1f7fbf;
    --secondary-color: #f3f0e5;
    --text-color: #1c1c1c;
    /* --text-color: #333; */
    --price-color: #f26419;
    --tag-color: #f26419;
}
.btn-color-orange {
    background-color: #f26419;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.btn-color-orange:hover {
    background-color: #f26419;
    color: #fff;
}
.cancelled-order {
    background-color: #f26419;
}
.delivered-order {
    background-color: green;
}
.processing-order {
    background-color: #1f7fbf;
}
.approved-order {
    background-color: #1f7fbf;
}

body {
    font-family: "Hind Siliguri", sans-serif;
    color: var(--text-color);
    background-color: #fff;
}
.color-dark a {
    color: #000 !important;
}

/* Top Bar */
.top-bar {
    background-color: #1d7fbf;
    color: white;
    padding: 5px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
    width: 60px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.d-flex.mobile-icons {
    display: none !important;
}

/* Hero Banner */
.hero-banner {
    background-color: var(--secondary-color);
    padding: 20px 0;
    margin-bottom: 30px;
}

.hero-content {
    position: relative;
}

/* Product Sections */

.text-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
}

.text-separator:before,
.text-separator:after {
    content: "";
    flex: 1;
    border-top: 1px solid #000;
}

.text-separator .separator-text {
    padding: 0 20px;
    font-size: 1.5rem;
    font-weight: 500;
}

.product-card {
    /* border: 1px solid #eee;
  border-radius: 5px; */
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.discount-tag {
    position: absolute;
    top: 10px;
    left: 0;
    background-color: var(--tag-color);
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 14px;
    z-index: 1;
    border-radius: 0 15px 15px 0;
}

.product-details {
    padding: 10px;
    text-align: center;
}

.product-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    height: 40px;
    overflow: hidden;
}

.product-price {
    font-weight: bold;
    color: var(--price-color);
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
    font-size: 14px;
}

.discounted-price {
    font-size: 16px;
}

.view-all {
    text-align: right;
    margin-bottom: 30px;
}

.view-all a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 30px 0;
}

footer h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-color);
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-bottom {
    background-color: #111;
    padding: 10px 0;
    color: #999;
    font-size: 14px;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #6c5ce7;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* Single Product page start */

.product-image {
    max-width: 100%;
    height: auto;
    /* border-radius: 10px; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.product-details a {
    text-decoration: none !important;
}

.product-title {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}
.product-details-title {
    font-weight: bold;
    font-size: 1.5rem;
    color: #333;
}
.price {
    color: #4690cd;
    font-size: 1.25rem;
    font-weight: bold;
}
.btn-buy {
    background-color: var(--price-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.btn-buy:hover {
    background-color: #4690cd;
}
.nav-tabs .nav-link.active {
    background-color: #4690cd;
    color: #fff;
}
.cart-btn {
    border-radius: 35px;
}

#account-panel li a {
    color: #fff;
    margin-bottom: 10px;
    background: #1f7fbf;
}

/* checkout page css */

.sub-title {
    position: relative;
    padding-bottom: 1em;
    margin-bottom: 1em;
}

.sub-title h2 {
    font-size: 22px;
    font-family: "Roboto";
    text-transform: uppercase;
    font-weight: bold;
    color: #1f7fbf;
}

.sub-title::after {
    position: absolute;
    content: "";
    width: 70px;
    height: 5px;
    background-color: var(--price-color);
    left: 0;
    bottom: 0px;
}

.payment-form {
    padding: 30px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    border: 0px;
    margin-top: 30px;
}

/* Sticky Cart  */
.my-align-items-center a {
    margin: 0 auto;
}
.sticky-cart {
    position: fixed;
    right: 1px;
    top: 90%;
    transform: translateY(-70%);
    background-color: var(--tag-color);
    color: white;
    /* width: 80px; */
    width: auto;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-weight: bold;
    z-index: 1050;
}

.sticky-cart .price {
    background-color: #ffffff;
    color: #000000;
    padding: 5px;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 13px;
}

@media (max-width: 767px) {
    .product-card {
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 20px;
    }
}

.footer-logo {
    height: 60px;
    width: 90px;
}

footer .list-inline-item:not(:last-child)::after {
    content: "";
    margin-left: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    height: 12px;
    display: inline-block;
}

footer a:hover {
    color: #f8bb86 !important;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-nav .list-inline-item {
        margin-bottom: 10px;
    }

    .col-md-4.text-md-end {
        text-align: center !important;
        margin-top: 15px;
    }
}

/*----------------- custom css by me ---------------- */
.btn-warning {
    --bs-btn-color: #000;
    --bs-btn-bg: #1d7fbf;
    --bs-btn-border-color: #1d7fbf;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #1d7fbf;
    --bs-btn-hover-border-color: #1d7fbf;
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #1d7fbf;
    --bs-btn-active-border-color: #1d7fbf;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #1d7fbf;
    --bs-btn-disabled-border-color: #1d7fbf;
}

/* login,registration,reset password,forget password css */
.cart-btn {
    border-radius: 35px;
}

.login-card {
    /* max-width: 400px; */
    max-width: 50%;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f0f0f0;
}

.login-card a {
    font-weight: bold;
}
