:root {
    --primary-color: #141414;
    --secondary-color: #ffffff;
    --accent-color: #333333;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--secondary-color);
}

/* Header & Mega Menu Styles */
.navbar {
    background-color: var(--secondary-color);
    /* padding: 1rem 2rem; */
    transition: all 0.3s ease;
    padding: 0 !important;
}

.fixed-top {
    position: fixed;
    top: 0px;
    right: 0;
    left: 0;
    z-index: 1030;
}

.navbar-brand {
    font-size: 2rem;
    color: var(--primary-color) !important;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-item {
    position: static;
}

.navbar-nav{
    align-items: center;
    font-size: 14px;
}

.nav-link {
    color: var(--primary-color) !important;
    margin: 0 1rem;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    padding: 8px 0 !important;
}
.nav-icons {
    color: var(--primary-color) !important;
    margin: 0 1rem;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #0c0c0c;
    left: 0;
    bottom: 5px;
    transition: width 0.3s ease;
    transform-origin: left;
}

.gap-15{
    gap: 15px;
}

.row-gap-30{
    row-gap: 30px;
}

.row.row-gap-30 > [class*="col"] {
display: flex;
}


.shop-down{
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.mt-75{
    margin-top: 75px;
}

.shop-down i{
    font-size: 12px;
}

/* Add hover state to trigger the line animation */
.nav-link:hover::after {
    width: 100%;
}

/* Style for the anchor tag inside nav-link */
.nav-link a {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
}

/* Optional: Add hover state for the text color if needed */
.nav-link:hover a {
    color: var(--primary-color);
}

button:focus:not(:focus-visible) {
    outline: 0;
    border: none;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

button.navbar-toggler {
    border: none;
}


.mega-menu {
    position: absolute;
    width: 100%;
    left: 0;
    background: var(--secondary-color);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
}

.nav-item:hover .mega-menu {
    display: block;
}

.category-section {
    margin-bottom: 1rem;
}

.category-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li a {
    color: var(--accent-color);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.category-list li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* Product Slider */
.product-slider {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

.slider-item {
    padding: 0 15px;
}

/* New Sections */
.features-section {
    /* padding: 5rem 0; */
    /* background-color: var(--primary-color); */
    color: var(--primary-color);
}

.feature-box {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-box i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.newsletter-section {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    border: 2px solid var(--primary-color);
    padding: 1rem;
    width: 100%;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    height: 500px;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    /* padding: 150px 0; */
}

.mt-50{
    margin-top: 50px;
}

.hero-item {
    /* padding: 120px 0 0; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-item.active {
    opacity: 1;
}

.hero-content {
    margin-top: 110px;
    position: relative;
    z-index: 2;
    color: var(--secondary-color);
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.form-check-input:checked {
    background-color: #333;
    border-color: #333;
}
.form-check-input:focus{
    border-color: #333;
    box-shadow: none;
}

/* Featured Products */
.featured {
    padding: 5rem 0;
}

.product-card {
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.dropdown-item.active,.dropdown-item:hover{
    background-color: #333;
    color: #ffffff;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    /* padding: 5rem 0 2rem; */
    padding: 50px 0 1px;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    /* color: var(--accent-color); */
    color: #F44336;
    padding-left: 10px;
}

.social-icons i {
    font-size: 1.5rem;
    margin-right: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icons i:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .navbar {
        padding: 0.5rem 1rem;
    }

    .navbar-nav{
        align-items: start;
    }
}

/* trending categories css starts */

.category-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transition: bottom 0.5s ease;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-card:hover .category-overlay {
    bottom: 0;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

/* trending categories css ends */

/* categories section starts */

.category-card {
    position: relative;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.category-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.category-info {
    padding: 1.5rem;
    text-align: center;
}

.category-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-count {
    color: #666;
    font-size: 0.9rem;
}

/* categories section ends */

/* tabbed production section starts */

  /* Tabs Styling */
  .product-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 2rem;
    border: none;
}

.tab-button {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.tab-button.active {
    color: #000;
    font-weight: 500;
}

.tab-button.active::after {
    width: 100%;
}

/* Product Cards Styling */
.product-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* height: 100%; */
}

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

.product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.current-price {
    color: #ff0000;
    font-weight: 600;
    font-size: 1.2rem;
}

.original-price {
    color: #666;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
    margin-top: 0.5rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* tabbed production section ends */

/* brands section starts */

.brand-card {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
}

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

/* .brand-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
} */

.brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.brand-products {
    color: #666;
    font-size: 0.9rem;
}

/* brands section ends */

/* parallex collection starts */

.parallax-section {
    height: 600px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
}

.content-box {
    background: rgba(255,255,255,0.95);
    padding: 3rem;
    margin-left: 10%;
    max-width: 500px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.content-box:hover {
    transform: translateY(-10px);
}

/* parallex collection ends */

/* lookbook section starts */

.lookbook-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #000;
}

.lookbook-content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.floating-cards {
    position: absolute;
    bottom: -75px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.lookbook-container:hover .floating-cards {
    transform: translateY(-100px);
}

.look-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    width: 250px;
}

/* lookbook section ends */



/* pages css starts */

/* login sigup page css starts */

input.form-control:focus {
    box-shadow: none;
    border: 1px #7c7c7c solid;
        }

        .auth-container {
            max-width: 400px;
            /* margin: 120px auto 60px; */
            margin: 160px auto 100px;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }
        .brand-logo {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            font-weight: 900;
            color: #333;
            letter-spacing: 2px;
        }
        .form-control {
            border-radius: 5px;
            padding: 0.75rem 1rem;
            border: 1px solid #ddd;
            font-family: 'Lato', sans-serif;
        }
        .password-toggle {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            border: none;
            background: none;
            color: #666;
            cursor: pointer;
        }
        .btn-primary {
            background-color: #000;
            border: none;
            padding: 0.75rem;
            border-radius: 5px;
            width: 100%;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
            background-color: #333 !important;
        }
        .btn:focus-visible{
            box-shadow:none;
        }
        .social-login {
            border-top: 1px solid #eee;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
        }
        .toggle-form {
            text-align: center;
            margin-top: 1rem;
        }
        .social-btn {
            width: 100%;
            margin: 0.5rem 0;
            padding: 0.75rem;
            border: 1px solid #ddd;
            background: white;
            border-radius: 5px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        .social-btn:hover {
            background-color: #f8f9fa;
        }
        .social-btn i {
            font-size: 1.2rem;
        }
        .form-check-label {
            font-weight: 400;
        }
        a {
            color: #000;
            text-decoration: none;
            font-weight: 500;
        }
        a:hover {
            color: #333;
        }
        .heading-text {
            font-weight: 700;
            letter-spacing: 0.5px;
        }

/* login sigup page css ends */

/* product page css starts */

.product-thumb {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.product-thumb.active {
    border-color: #000;
}

.main-image-container {
    position: relative;
    overflow: hidden;
}

.zoom-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 100;
}

.zoom-icon:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.zoom-icon i{
    color: #252525;
}

/* Rest of your existing styles... */
.size-btn {
    width: 40px;
    height: 40px;
    margin: 5px;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.size-btn:hover, .size-btn.active {
    border-color: #000;
    background-color: #000;
    color: white;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.color-swatch:hover, .color-swatch.active {
    transform: scale(1.1);
    border-color: #000;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    width: fit-content;
}

.quantity-btn {
    border: none;
    background: none;
    padding: 10px 15px;
    cursor: pointer;
}

.quantity-input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 16px;
}

/* Magnific Popup customization */

.size-btn {
    width: 40px;
    height: 40px;
    margin: 5px;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.size-btn:hover, .size-btn.active {
    border-color: #000;
    background-color: #000;
    color: white;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.color-swatch:hover, .color-swatch.active {
    transform: scale(1.1);
    border-color: #000;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    width: fit-content;
}

.quantity-btn {
    border: none;
    background: none;
    padding: 10px 15px;
    cursor: pointer;
}

.quantity-input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

.related-product {
    transition: transform 0.3s;
}

.related-product:hover {
    transform: translateY(-5px);
}

.nav-tabs .nav-link {
    color: #666;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 15px 30px;
}

.nav-tabs .nav-link.active {
    color: #000;
    border-bottom: 2px solid #000;
    font-weight: bold;
}

/* product page css ends */

/* shopping cart checkout starts */
.brand-logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #333;
}

.cart-container, .checkout-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 2rem;
    margin: 2rem 0;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

.product-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #e9ecef;
}

.remove-btn {
    color: #dc3545;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    color: #c82333;
}

.btn-primary {
    background-color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #333;
}

.summary-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
}

.payment-method {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #000;
}

.payment-method.selected {
    border-color: #000;
    background: #f8f9fa;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.fs-14{
    font-size: 14px;
}

input.form-control:focus {
box-shadow: none;
border: 1px #7c7c7c solid;
}
/* shopping cart checkout ends */

/* vendor dashboard css starts */

 /* Responsive Sidebar */
 .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background: #000;
    padding: 1rem;
    color: white;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    padding: 1rem;
    z-index: 1000;
}

.mobile-nav .brand-logo {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
}

/* Main Content Responsive */
.main-content {
    margin-left: 250px;
    padding: 2rem;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        padding-top: 5rem;
    }

    .mobile-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .dashboard-card {
        margin-bottom: 1rem;
    }
}

/* Mobile Product Card */
@media (max-width: 767px) {
    .product-card .row {
        flex-direction: column;
    }

    .product-card .col-md-2,
    .product-card .col-md-4 {
        text-align: center;
        margin-bottom: 1rem;
    }

    .product-card .product-image {
        margin: 0 auto;
    }

    .table-responsive {
        font-size: 0.9rem;
    }

    .status-badge {
        padding: 0.3rem 0.6rem;
    }
}

/* Rest of the existing styles... */
.brand-logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    /* color: white; */
    text-align: center;
    margin-bottom: 2rem;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

.nav-link i {
    width: 20px;
    margin-right: 10px;
}

.dashboard-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.stats-card {
    background: linear-gradient(45deg, #000, #333);
    color: white;
}

/* Overlay for mobile sidebar */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.sidebar-overlay.active {
    display: block;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

.nav-link i {
    width: 20px;
    margin-right: 10px;
}

.dashboard-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.stats-card {
    background: linear-gradient(45deg, #000, #333);
    color: white;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

.product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.btn-primary {
    background-color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #333;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.profile-section {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}

.profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.table th {
    font-weight: 600;
    color: #666;
}

.notification-dot {
    width: 8px;
    height: 8px;
    background: #dc3545;
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
}

        /* Responsive Table */
        @media (max-width: 576px) {
    .table th, .table td {
        white-space: nowrap;
        padding: 0.5rem;
    }
}

/* Responsive Stats Cards */
@media (max-width: 576px) {
    .stats-card {
        margin-bottom: 1rem;
    }
    .stats-card h3 {
        font-size: 1.5rem;
    }
}

/* Quick Actions Responsive */
@media (max-width: 576px) {
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* vendor dashboard css ends */

/* pages css ends */
