/* base start */
        body.dark-mode { background-color: #121212; color: #f0f0f0; }
        #back-to-top {
            position: fixed; bottom: 40px; right: 40px; z-index: 99;
            background-color: #3498db; color: white; border: none;
            border-radius: 50%; padding: 12px 16px; font-size: 18px;
            cursor: pointer; display: none; transition: .3s;
        }
        #back-to-top:hover { background-color: #2980b9; }
        .popup-message {
            position: fixed; top: 20px; right: 20px; z-index: 10000;
            background: #27ae60; color: white; padding: 12px 20px;
            border-radius: 6px; display: none; font-weight: bold;
        }
        .modal-overlay {
            position: fixed; top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.6); display: none;
            justify-content: center; align-items: center; z-index: 9999;
        }
        .modal-box {
            width: 420px; background: white; border-radius: 10px;
            padding: 20px; position: relative; max-height: 90vh; overflow-y: auto;
        }
        .close-btn {
            position: absolute; top: 10px; right: 10px; font-size: 26px;
            cursor: pointer;
        }
        .mandatory-field::after {
            content: " *";
            color: red;
        }
        .form-errors {
            color: red;
        }
        .auth-title {
            color: #3498db;
            font-weight: bold;
            font-size: 24px;
            text-align: center;
            margin-bottom: 15px;
        }

/* base end         */
/* headerstart */
header .container { padding-left: 2rem; padding-right: 2rem; }
.search-input {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0.4rem 0.75rem;
}
.icon-btn { 
    background: none !important; 
    border: none !important; 
    padding: 0.35rem; 
    font-size: 1.3rem; 
    color: #000; 
    position: relative; 
    cursor: pointer; 
}
.icon-btn:focus { outline: none; box-shadow: none; }
.badge-number { font-size: 0.65rem; padding: 0.25em 0.35em; border-radius: 50%; background-color: red; color: #fff; position: absolute; top: -4px; right: -4px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background-color: red; position: absolute; top: 1px; right: 1px; }
.dropdown-toggle::after { display: none; }
.category-bar {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1000;
}
.category-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
}
.menu-toggle-container { position: relative; }
.menu-icon-label {
    font-size: 1rem; 
    cursor: pointer;
    display: inline-block;
    user-select: none;
    padding: 12px 0;
}
.menu-toggle-checkbox { position: absolute; opacity: 0; pointer-events: none; }
.close-btn { 
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
}
.close-btn:hover { color: #000; }
.category-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 700px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1500;
}
#category-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1450;
    display: none;
}
.menu-toggle-checkbox:checked ~ .category-dropdown { display: block; }
.menu-toggle-checkbox:checked ~ #category-menu-overlay { display: block; }
.category-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.category-column { width: calc(33.33% - 20px); }
.category-parent { font-weight: bold; font-size: 13px; margin-bottom: 6px; display: block; color: #333; text-decoration: none; }
.category-parent:hover { color: #000; }
.category-child { margin-left: 15px; font-size: 13px; display: block; }
.category-child a { color: #555; text-decoration: none; }
.category-child a:hover { color: #000; text-decoration: underline; cursor: pointer; }
.overlay, .profile-overlay, .cart-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1400;
    background: rgba(0,0,0,0.3);
}
.profile-dropdown-container { position: relative; }
.profile-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    z-index: 1500;
    display: none;
}
.profile-dropdown-container.active .profile-dropdown-menu { display: block; }
.profile-dropdown-container.active + .profile-overlay { display: block; }
.profile-dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
}
.profile-dropdown-menu a:hover { background: #f5f5f5; }
.cart-dropdown-container { position: relative; }
.cart-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 1rem;
    z-index: 1500;
    display: none;
}
#category-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.3);
    z-index: 1450;
    display: none;
}
.menu-toggle-checkbox:checked ~ .category-dropdown,
.menu-toggle-checkbox:checked ~ #category-menu-overlay {
    display: block !important;
}
.cart-dropdown-container.active .cart-dropdown-menu { display: block; }
.cart-dropdown-container.active + .cart-overlay { display: block; }
.cart-item { display: flex; gap: 10px; margin-bottom: 10px; }
.cart-item img { width: 50px; height: 50px; object-fit: cover; border-radius: 5px; }
.cart-item-details { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.cart-item-name { font-size: 14px; font-weight: 500; }
.cart-item-name:hover { text-decoration: underline; color: #e74c3c; }
.cart-item-qty-price { font-size: 13px; color: #555; }
.cart-total { display: flex; justify-content: space-between; font-weight: 600; margin-top: 10px; }
.cart-checkout { display: block; width: 100%; text-align: center; padding: 0.5rem 0; margin-top: 10px; background: #e74c3c; color: white; border-radius: 5px; text-decoration: none; }
.dark-mode {
    background-color: #121212 !important;
    color: #ffffff !important;
    transition: background 0.3s, color 0.3s;
}
.dark-mode * { color: white !important; }
.dark-mode header { background: #1e1e1e !important; }
.dark-mode .navbar-brand { color: white !important; }
.dark-mode .category-bar { background: #1e1e1e !important; border-color: #333 !important; }
.dark-mode .category-dropdown { background: #1e1e1e !important; border-color: #444 !important; color: white !important; }
.dark-mode .search-input { background: #222 !important; border-color: #555 !important; color: white; }
.dark-mode .profile-dropdown-menu { background: #1e1e1e; border-color: #444; color: white; }
.dark-mode .profile-dropdown-menu a:hover { background: #333; }
.dark-mode .cart-dropdown-menu { background: #1e1e1e; border-color: #444; color: white; }
.dark-mode .cart-dropdown-menu a.cart-checkout { background: #0d6efd; color: white; }
.dark-mode .icon-btn i { color: white !important; }
.dark-mode .category-parent, .dark-mode .category-child a { color: white !important; }
.dark-mode .category-child a:hover { color: #ddd !important; }
.dark-mode .menu-item-link { color: #ddd !important; }
.dark-mode .menu-item-link:hover { color: #fff !important; }
.dark-mode .close-btn { color: #999 !important; }
.menu-item-link { font-weight: 400 !important; color: #333 !important; text-decoration: none; font-size: 16px; padding: 2px 6px; display: inline-block; }
.menu-item-link:hover { color: #000 !important; }
@media (max-width: 991px) {
    .category-dropdown { width: 95vw; }
    .category-column { width: 100%; }
}

.category-column b {
    display: flex;
    align-items: center;
    min-height: 24px;
}
.category-column img {
    flex-shrink: 0;
}
.category-parent-link:hover {
    color: #e74c3c !important; 
}

.menu-toggle-checkbox:checked ~ .category-dropdown {
    display: block;
}

.menu-toggle-checkbox:checked ~ #category-menu-overlay {
    display: block;
}
/* header end */
/* product_card.html start */
#popupMessage {
    display: none;
    position: fixed;
    top: 45px;
    left: 88%;
    transform: translateX(-50%);
    background-color: #27ae60;
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}
#popupMessage.error {
    background-color: #e74c3c;
}
.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
    background: #fff;
    transition: 0.3s;
    position: relative;
    height: 320px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.product-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 5px;
}
.product-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    margin: 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}
.price-add-cart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 5px;
}
.price {
    font-size: 14px;
    font-weight: bold;
    color: #e74c3c;
    text-align: left;
}
.old-price {
    font-size: 11px;
    color: #999;
    text-decoration: line-through;
    display: block;
    text-align: left;
}
.cart-btn {
    background: #3498db;
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-btn:hover {
    background: #2980b9;
}
.wishlist-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 16px;
    border: solid 2px #2980b9;
    color: #2980b9;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    background-color: transparent;
}
.wishlist-icon.active {
    background-color: #2980b9;
    color: #fff;
}
.star-rating {
    color: #f1c40f;
    font-size: 12px;
    margin-bottom: 5px;
    text-align: left;
}
.star-rating small {
    margin-left: 5px;
    font-size: 10px;
    color: #555;
}
.row.g-4.justify-content-center {
    justify-content: flex-start !important;
}
/* product_card.html end */
/* product_list.html start */
#popupMessage {
    display: none;
    position: fixed;
    top: 45px;
    right: 15px;
    background-color: #27ae60;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}
#popupMessage.error {
    background-color: #e74c3c;
}
.product-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
    background: #fff;
    transition: 0.3s;
    position: relative;
    height: 350px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.product-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 5px;
}
.product-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    margin: 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}
.price-container {
    text-align: left;
}
.price-add-cart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 5px;
}
.price {
    font-size: 15px;
    font-weight: bold;
    color: #e74c3c;
}
.old-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-bottom: -2px;
}
.cart-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-btn:hover {
    background: linear-gradient(45deg, #2980b9, #1c5980);
}
.wishlist-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 16px;
    border: solid 2px #2980b9;
    color: #2980b9;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    background-color: #fff;
    z-index: 5;
}
.wishlist-icon.active {
    background-color: #2980b9;
    border-color: #2980b9;
    color: #fff;
}
.star-rating {
    color: #f1c40f;
    font-size: 12px;
    margin-bottom: 5px;
    text-align: left;
}
.star-rating small {
    margin-left: 5px;
    font-size: 10px;
    color: #555;
}
.sort-form select {
    width: auto;
    display: inline-block;
    margin-left: 10px;
}
/* product_list.html end */
/* category-detail.html start */
#popupMessage {
    display: none;
    position: fixed;
    top: 45px;
    left: 88%;
    transform: translateX(-50%);
    background-color: #27ae60;
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}
#popupMessage.error {
    background-color: #e74c3c;
}
.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
    background: #fff;
    transition: 0.3s;
    position: relative;
    height: 320px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.product-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 5px;
}
.product-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    margin: 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.price-add-cart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 5px;
}
.price {
    font-size: 14px;
    font-weight: bold;
    color: #e74c3c;
    text-align: left;
}
.old-price {
    font-size: 11px;
    color: #999;
    text-decoration: line-through;
    display: block;
    text-align: left;
}
.cart-btn {
    background: #3498db;
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-btn:hover {
    background: #2980b9;
}
.wishlist-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 16px;
    border: solid 2px #2980b9;
    color: #2980b9;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    background-color: transparent;
}
.wishlist-icon.active {
    background-color: #2980b9;
    color: #fff;
}

.star-rating {
    color: #f1c40f;
    font-size: 12px;
    margin-bottom: 5px;
    text-align: left;
}
.star-rating small {
    margin-left: 5px;
    font-size: 10px;
    color: #555;
}

.row.g-4.justify-content-center {
    justify-content: flex-start !important;
}
/* category-detail.html end */
/* job_details.html start */
.card-title {
    font-weight: 700;
    font-size: 2rem;
}
.badge i {
    margin-right: 5px;
}
.btn-primary {
    background: #1A73E8;
    border-color: #1A73E8;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: #155ab6;
    border-color: #155ab6;
    transform: translateY(-2px);
}
.card {
    border-radius: 10px;
}
/* job_details.html end */
/* job_list.html start */
.card-hover {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.card-title {
    font-weight: 600;
    font-size: 1.25rem;
}
.card-text {
    color: #555;
}
.text-muted i {
    margin-right: 5px;
}
.card-text.text-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* job_list.html end */
/* footer start */
        footer ul li a {
            text-decoration: none;
            color: #1e1e1e;
        }
        footer ul li a:hover {
            text-decoration: underline !important; 
        }
        .dark-mode footer {
            background-color: #1e1e1e !important;
            color: #ffffff !important;
        }
        .dark-mode footer a {
            color: #ffffff !important;
        }
        .dark-mode footer a:hover {
            text-decoration: underline !important;
        }
        .dark-mode footer hr {
            border-color: #444 !important;
        }
        .dark-mode footer .small {
            color: #ccc !important;
        }
        .dark-mode footer h5,
        .dark-mode footer h6 {
            color: #ffffff !important;
        }
        .dark-mode footer i.fab {
            opacity: 0.85;
        }
/* footer end */
/* hero_section.html start */
.hero-sections.layout-3-items {
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
}
.hero-section.full-width {
    width: 100%; 
    min-height: 400px; 
}
.hero-section.half-width {
    width: calc(50% - 5px);
    min-height: 300px; 
}
.hero-section {
    background-size: cover;
    background-position: center;
    box-sizing: border-box; 
    position: relative; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1; 
}
.hero-content {
    text-align: center;
    padding: 20px;
    z-index: 2; 
    max-width: 90%; 
}
.hero-content h2 {
    color: white; 
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); 
    line-height: 1.2;
}
.hero-content p {
    color: #f0f0f0; 
    font-size: 1.5em;
    margin-bottom: 25px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); 
}
.hero-content .btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #ff5722;
    color: white;
    text-decoration: none;
    border: 2px solid #ff5722;
    border-radius: 22px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s, border-color 0.3s, transform 0.2s;
}
.hero-content .btn:hover {
    background-color: #e64a19;
    border-color: #e64a19;
    transform: translateY(-1px);
}
@media (max-width: 768px) {
    .hero-sections.layout-3-items {
        gap: 5px; 
    }
    .hero-section.full-width {
        min-height: 300px;
    }
    .hero-section.half-width {
        width: 100%; 
        min-height: 200px;
    }
    .hero-content h2 {
        font-size: 1.8em;
    }
}
/* hero_section.html end */
/* home\products.html start */
    #popupMessage {
    display: none;
    position: fixed;
    top: 45px;
    left: 88%;
    transform: translateX(-50%);
    background-color: #27ae60;
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}
#popupMessage.error {
    background-color: #e74c3c;
}
.icon-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    width: 100%;
    justify-content: center;
}
.icon-item {
    width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}
.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #e9eff5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #3498db;
    transition: all 0.3s ease;
}
.icon-item:hover .icon-box,
.icon-item.active .icon-box {
    background: #3498db;
    color: white;
}
.icon-label {
    font-size: 12px;
    margin-top: 3px;
    color: #333;
    font-weight: 500;
    text-align: center;
}
.icon-item:hover .icon-label,
.icon-item.active .icon-label {
    color: #3498db;
}
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}
.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 15px;
}
.carousel-card {
    flex: 0 0 calc(20% - 12px);
    box-sizing: border-box;
}
.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
    background: #fff;
    color: #333;
    transition: 0.3s;
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.product-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 5px;
}
.no-image {
    width: 100%;
    height: 130px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border-radius: 5px;
}
.product-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    margin: 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}
.price-add-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}
.price {
    font-size: 14px;
    font-weight: bold;
    color: #e74c3c;
    text-align: left;
}
.add-to-cart-btn {
    background: #3498db;
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
}
.add-to-cart-btn:hover {
    background: #2980b9;
}
.love-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 16px;
    border: solid 2px #2980b9;
    color: #2980b9;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    background-color: transparent;
}
.love-icon.active {
    background-color: #2980b9;
    color: #fff;
}
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(52, 152, 219, 0.8);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 18px; 
    padding: 0;         
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.price-add-cart .selling-price {
    font-size: 16px;
    font-weight: bold;
    color: #27ae60; 
}
.price-add-cart .cost-price {
    font-size: 14px;
    font-weight: bold;
    color: #e74c3c; 
    text-decoration: line-through;
}
.price-add-cart .discount-badge {
    font-size: 14px;
    font-weight: bold;
    color: #fff; 
    background-color: #e74c3c;
    padding: 5px 10px;
    border-radius: 5px;
}
.carousel-button.left { left: 5px; }
.carousel-button.right { right: 5px; }
.carousel-button:hover { transform: translateY(-50%) scale(1.1); }
@media screen and (max-width: 1400px) { .carousel-card { flex: 0 0 calc(20% - 12px); } }
@media screen and (max-width: 1100px) { .carousel-card { flex: 0 0 calc(20% - 12px); } }
@media screen and (max-width: 800px)  { .carousel-card { flex: 0 0 calc(20% - 12px); } }
@media screen and (max-width: 500px)  { .carousel-card { flex: 0 0 calc(20% - 12px); } }
.dark-mode .icon-box { background: #2a2a2a; color: #3498db; }
.dark-mode .icon-item.active .icon-box,
.dark-mode .icon-item:hover .icon-box { background: #3498db; color: #fff; }
.dark-mode .icon-label { color: #eee; }
.dark-mode .icon-item.active .icon-label,
.dark-mode .icon-item:hover .icon-label { color: #3498db; }
.dark-mode .product-card { background: #1e1e1e; border: 1px solid #333; color: #fff; }
.dark-mode .product-card .product-title,
.dark-mode .product-card .price,
.dark-mode .product-card small { color: #fff; }
.dark-mode .no-image { background: #333; color: #aaa; }
.dark-mode .add-to-cart-btn { background: #3498db; color: #fff; }
.dark-mode .add-to-cart-btn:hover { background: #2980b9; }
.dark-mode .carousel-button { background: rgba(52, 152, 219, 0.7); }

/* home\products.html end */