/* Roles css */
.card-header {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

input::placeholder {
    color: #bbb;
    font-style: italic;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}


/* users blade css */
.input-custom {
    background-color: #ffffff !important;
    border: 1px solid #d1d5db !important;
    border-radius: 0.5rem !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #374151 !important;
    width: 100% !important;
    /* height: auto !important; */
    box-shadow: none !important;
}

.input-custom::placeholder {
    color: #9ca3af !important; /* Light gray placeholder */
    font-weight: 500 !important;
}


.input-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: #111827;
}


/* users index */
            .view-btn {
                background: #1FD184;
                padding: 4px 8px;
                border-radius: 20px;
                margin-right: 4px;
                color: white;
                font-weight: bold;
                display: flex;
                align-items: center;
                transition: background-color 0.3s ease; /* Smooth transition */
                border: 2px solid rgb(204, 202, 202);
                font-weight: bold;
            }
        
            .view-btn:hover {
                background: #17b972; /* Darker shade of green */
                cursor: pointer; /* Change cursor on hover */
                
            }
        
            .download-btn {
                background: #1289F7;
                padding: 4px 8px;
                border-radius: 20px;
                margin-right: 4px;
                color: white;
                font-weight: bold;
                display: flex;
                align-items: center;
                transition: background-color 0.3s ease; /* Smooth transition */
                border: 2px solid rgb(204, 202, 202);
                font-weight: bold;
            }
        
            .download-btn:hover {
                background: #0e6fcc; /* Darker shade of blue */
                cursor: pointer; /* Change cursor on hover */
            }
            .dataTables_wrapper {
                overflow: overlay;
            }
            .pagination .active{
                background: #BE202F !important;
                color: #fff !important;
                border-radius: 50% !important;
            }
            .active a{
                color: white;
            }
            



/* header css */
.top-note {
    background-color: dark !important;
    color: white !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1000 !important;
}
.top-note marquee {
    font-size: 14px;
    color: #fff;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* thoda smooth placement */
}

.navbar-nav .nav-link:hover {
  color: #000;
}
.navbar-nav .text-danger {
  font-weight: bold;
}

.logo img {
    max-height: 50px;
}

.header-icons a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    position: relative;
}

/* Refined Section */
.refined {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid #eee;
}
.refined h5 {
    margin: 0;
    font-size: 14px;
    color: #333;
}
.refined select {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Mega Menu */
.menu-item .mega-menu {
    display: none;
    position: absolute;
    top: 100%; /* just below the nav item */
    left: 0;
    background: #fff;
    padding: 15px;
    min-width: 200px;
    z-index: 1000;
}
.menu-item:hover .mega-menu {
    display: block;
}
.mega-menu ul li {
    padding: 5px 0;
}
.mega-menu ul li a {
    color: #333;
    text-decoration: none;
}
.mega-menu ul li a:hover {
    color: #000;
    font-weight: bold;
}

/* Search bar hidden by default */
.search-container {
  position: relative;
}
.search-bar {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  width: 250px;
}
.search-container.active .search-bar {
  display: block;
}

/* Active state */
.search-container.active .search-bar {
    display: block;
}



.html, .body {
    height: 100%;         
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;               
}

/* product image in welcome */

.image-container {
    position: relative;
}
.object-fit-cover {
    object-fit: cover;
}
.card {
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.search-container {
    position: relative;
}
.search-bar {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    z-index: 1000;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.search-container.active .search-bar {
    display: block;
}


/* Product Detail Page */

.product-main-image {
    transition: transform 0.3s ease;
    cursor: zoom-in;
    border-radius: 8px;
}

.product-main-image:hover {
    transform: scale(1.02);
}

.thumbnail-item {
    border-radius: 6px;
    transition: all 0.3s ease;
}

.thumbnail-item.active {
    border-color: #007bff !important;
}

.thumbnail-item img {
    transition: transform 0.3s ease;
}

.thumbnail-item:hover img {
    transform: scale(1.1);
}

.total-price-container {
    border: 2px solid #e9ecef;
}

/* Magnifier effect */
.magnifier-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.magnifier-lens {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: none;
    width: 180px; /* Increased lens size */
    height: 180px;
    display: none;
    background-repeat: no-repeat;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-size: 450% 450%; /* Increased zoom level to 3x */
    z-index: 1000;
    pointer-events: none;
}

/* Optional: Add zoom level indicator */
.zoom-level {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    display: none;
}

.magnifier-container:hover .zoom-level {
    display: block;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .product-title {
        font-size: 1.4rem;
    }
    
    .thumbnail-item {
        height: 60px !important;
    }
    
    .total-price-container {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 1.2rem;
    }
    
    .thumbnail-item {
        height: 50px !important;
    }
}



/* ---------- Filter Tabs ---------- */
.filter-tabs {
    gap: 10px;
}
.filter-option {
    position: relative;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    background: #f8f9fa;
    transition: all 0.3s ease-in-out;
}
.filter-option input {
    display: none;
}
.filter-option:hover {
    background: #e9ecef;
}
.filter-option.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* ---------- Product Card for Summer ---------- */
.product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.product-img-wrapper {
    height: 280px;
    overflow: hidden;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}
.product-price {
    font-size: 15px;
    color: #28a745;
    font-weight: 700;
}



/* about faqs contact store finder css */
.page-container {
    background: #fff;
    padding: 40px;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 900px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

/* About Page */
.about-page h1 {
    color: #ff6600;
    font-weight: bold;
}
.about-page p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* FAQ Page */
.faq-page h1 {
    color: #007bff;
    margin-bottom: 20px;
}
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.faq-item h4 {
    font-weight: bold;
    color: #333;
}
.faq-item p {
    color: #666;
}

/* Store Finder Page */
.store-finder-page h1 {
    color: #28a745;
}
.store-finder-page ul {
    list-style-type: disc;
    margin-top: 15px;
}
.store-finder-page li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Contact Page */
.contact-page h1 {
    color: #dc3545;
}
.contact-form label {
    font-weight: 600;
    color: #333;
}
.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #ccc;
}
.contact-form button {
    border-radius: 8px;
    padding: 10px 20px;
}


/* Customer care css  */

.page-container {
    max-width: 920px;
    margin: 40px auto;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
    font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1f2937;
}

.page-container h1 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: #0f172a;
}

.page-container .lead {
    color: #374151;
    margin-bottom: 18px;
}

.policy-section {
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eef2f7;
}

.policy-section h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #0b1220;
}

.policy-section p,
.policy-section li {
    color: #374151;
    line-height: 1.6;
}

.track-form .form-control {
    max-width: 360px;
}

/* checkout place  */
.alert {
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

/* Orders styles */
.nav-pills .nav-link {
    cursor: pointer;
    color: #03005A;
    border: 1px solid #dee2e6;
    margin: 0 2px;
    transition: all 0.3s;
}
.nav-pills .nav-link.active {
    background-color: #03005A;
    color: white;
    border-color: #03005A;
}
.nav-pills .nav-link:hover:not(.active) {
    background-color: #f8f9fa;
}
.badge {
    font-size: 0.7em;
    margin-left: 5px;
}
#noResults {
    display: none;
}
.timeline {
    position: relative;
    padding-left: 30px;
}
.timeline-item {
    position: relative;
    margin-bottom: 20px;
}
.timeline-marker {
    position: absolute;
    left: -30px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.timeline-content {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}


/* notifications css */
.notification-dropdown {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.notification-item:hover {
    background-color: #f8f9fa;
}

.star-icon.active {
    color: #ffc107 !important;
}

.star-icon:hover {
    color: #ffc107 !important;
}

