/* Reset y fuentes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #121212;
    color: #ffffff;
    line-height: 1.6;
}

/* Utilidades */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: #E4A68B;
    color: #121212;
}

.btn-primary:hover {
    background: #4caf50;
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(176, 190, 197, 0.3);
}

.btn-secondary {
    background: #333333;
    color: #ffffff;
    border: 1px solid #b0bec5;
}

.btn-secondary:hover {
    background: #b0bec5;
    color: #121212;
    transform: scale(1.05);
}

.btn-danger {
    background: #ff6b6b;
    color: #ffffff;
}

.btn-danger:hover {
    background: #ff8787;
    transform: scale(1.05);
}

.error {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1e1e1e;
    color: #ffffff;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
}

.notification.active {
    opacity: 1;
    transform: translateX(0);
}

.notification.error {
    background: #ff6b6b;
}

@keyframes slideIn {
    to { transform: translateX(0); }
}

/* Header */
header {
    background: #333333;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 1.8rem;
    font-weight: 500;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-item {
    position: relative;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.main-nav a:hover {
    background: #b0bec5;
    color: #121212;
    border-radius: 4px;
    transform: scale(1.05);
}

.main-nav a.active {
    background: #b0bec5;
    color: #121212;
    border-radius: 4px;
}

.main-nav a i {
    margin-right: 0.5rem;
    font-size: 0.85rem;
}

.cart-count {
    background: #ff6b6b;
    color: #ffffff;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e1e1e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    min-width: 180px;
    z-index: 100;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}

.dropdown-menu a:hover {
    background: #b0bec5;
    color: #121212;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
}

/* Hero */
.hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    background: #1e1e1e;
    margin-top: 60px;
    transition: opacity 0.5s ease;
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
}

/* Products Section */
.products-section {
    background: #1e1e1e;
    padding: 4rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 8px;
}

.products-section h2 {
    color: #b0bec5;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.product-card {
    background: #333333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 520px;
}

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

.product-image {
    width: 500px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #b0bec5;
    border-radius: 4px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 1rem;
    text-align: center;
    width: 100%;
}

.product-info h3 {
    color: #b0bec5;
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

.product-info .category {
    color: #777;
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
}

.product-info .price {
    color: #4caf50;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 1rem;
}

/* Products Header (Search and Filters) */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.products-header h2 {
    font-size: 1.8rem;
    font-weight: 500;
}

.products-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    position: relative;
}

.search-form input {
    background: #333333;
    border: 1px solid #b0bec5;
    padding: 0.5rem;
    border-radius: 4px;
    color: #ffffff;
    font-size: 0.9rem;
    width: 200px;
}

.search-form .btn {
    padding: 0.5rem 1rem;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e1e1e;
    border: 1px solid #b0bec5;
    border-radius: 4px;
    width: 200px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 100;
}

.search-suggestions.active {
    display: block;
}

.search-suggestions div {
    padding: 0.5rem;
    cursor: pointer;
}

.search-suggestions div:hover {
    background: #b0bec5;
    color: #121212;
}

.filters select {
    background: #333333;
    color: #ffffff;
    border: 1px solid #b0bec5;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination .btn {
    padding: 0.5rem 1rem;
}

.pagination .btn.active {
    background: #b0bec5;
    color: #121212;
}

/* Product Detail */
.product-detail {
    padding: 6rem 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-detail .product-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-info h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-info .price {
    font-size: 1.5rem;
    color: #b0bec5;
    margin-bottom: 1rem;
}

.product-info .description {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.add-to-cart-form {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.add-to-cart-form label {
    font-size: 0.9rem;
    color: #e0e0e0;
}

.add-to-cart-form input {
    width: 60px;
    padding: 0.5rem;
    background: #333333;
    border: 1px solid #b0bec5;
    border-radius: 4px;
    color: #ffffff;
}

/* Cart Section */
.cart-section {
    padding: 6rem 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cart-section h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.cart-items {
    display: grid;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    background: #1e1e1e;
    border-radius: 6px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
    padding: 0 1rem;
}

.cart-item-details h3 {
    font-size: 1.1rem;
    font-weight: 400;
}

.cart-item-details p {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.cart-item .btn {
    align-self: center;
}

.cart-total {
    margin-top: 2rem;
    text-align: right;
}

.cart-total h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #b0bec5;
}

/* Checkout Section */
.checkout-section {
    padding: 6rem 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.checkout-section h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cart-summary h2,
.shipping-form h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.shipping-form .form-group {
    margin-bottom: 1.5rem;
}

.checkout-form .btn {
    width: 100%;
}

/* Confirmation Section */
.confirmation-section {
    padding: 6rem 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-section h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.confirmation-section p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

/* Profile Section */
.profile-section {
    padding: 6rem 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.profile-section h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.profile-form h2,
.order-history h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.user-form .btn {
    width: 100%;
}

.orders-list {
    display: grid;
    gap: 1rem;
}

.order-card {
    background: #1e1e1e;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.order-card h3 {
    font-size: 1.1rem;
    font-weight: 400;
}

.order-card p {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Register/Login Section */
.register-section,
.login-section {
    padding: 6rem 2rem 3rem;
    max-width: 500px;
    margin: 0 auto;
}

.register-section h1,
.login-section h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
}

.register-form,
.login-form,
.product-form,
.user-form {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-form.category-form {
    border: 1px solid #b0bec5;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: #333333;
    border: 1px solid #b0bec5;
    border-radius: 4px;
    color: #ffffff;
    font-size: 0.9rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
}

.register-form .btn,
.login-form .btn,
.product-form .btn,
.user-form .btn {
    width: 100%;
    margin-top: 1rem;
}

.register-form p,
.login-form p {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.register-form p a,
.login-form p a {
    color: #b0bec5;
    text-decoration: none;
}

.register-form p a:hover,
.login-form p a:hover {
    color: #ffffff;
}

/* Admin Dashboard */
.admin-dashboard {
    padding: 6rem 2rem 3rem;
    background: #1e1e1e;
    margin: 0 auto;
    max-width: 1400px;
    border-radius: 6px;
    min-height: calc(100vh - 60px);
}

.admin-dashboard h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #333333;
    padding: 1.5rem;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.stat-card p {
    font-size: 1.5rem;
    color: #b0bec5;
}

.stat-card i {
    font-size: 1.8rem;
    color: #b0bec5;
    margin-bottom: 0.5rem;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.quick-links .btn {
    flex: 1;
    min-width: 200px;
}

/* Usuarios */
.users-section {
    padding: 6rem 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.users-section h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Productos Admin */
.products-admin-section {
    padding: 6rem 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.products-admin-section h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.product-form input[type="file"] {
    padding: 0.5rem;
}

/* Pedidos */
.orders-section {
    padding: 6rem 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.orders-section h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.order-status {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    display: inline-block;
}

.order-status.pending {
    background: #b0bec5;
    color: #121212;
}

.order-status.completed {
    background: #4caf50;
    color: #ffffff;
}

.order-status.cancelled {
    background: #ff6b6b;
    color: #ffffff;
}

/* Tablas */
.table-container {
    overflow-x: auto;
    margin-top: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #333333;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

th, td {
    padding: 1rem;
    text-align: left;
    font-size: 0.9rem;
}

th {
    background: #1e1e1e;
    font-weight: 500;
    color: #b0bec5;
}

td {
    border-bottom: 1px solid #2c2c2c;
    color: #e0e0e0;
}

tr:hover {
    background: #2c2c2c;
}

th i {
    margin-right: 0.5rem;
}

td .btn {
    margin-right: 0.5rem;
}

/* Footer */
footer {
    background: #333333;
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.4rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: #b0bec5;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #2c2c2c;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #e0e0e0;
}

/* Responsividad */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #333333;
        padding: 1rem;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 1rem;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        background: #2c2c2c;
    }

    .menu-toggle {
        display: block;
    }

    .hero,
    .products-section,
    .admin-dashboard,
    .users-section,
    .products-admin-section,
    .orders-section,
    .cart-section,
    .checkout-section,
    .profile-section {
        padding: 4rem 1rem 2rem;
    }

    .products-grid,
    .checkout-grid,
    .profile-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .quick-links .btn {
        min-width: 100%;
    }

    .table-container {
        font-size: 0.85rem;
    }

    th, td {
        padding: 0.75rem;
    }

    .product-image,
    .product-image img {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .product-card {
        max-width: 340px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    header .logo {
        font-size: 1.4rem;
    }

    .hero h1,
    .admin-dashboard h1,
    .users-section h1,
    .products-admin-section h1,
    .orders-section h1,
    .cart-section h1,
    .checkout-section h1,
    .profile-section h1,
    .register-section h1,
    .login-section h1 {
        font-size: 1.4rem;
    }

    .products-header h2 {
        font-size: 1.4rem;
    }

    .search-form input {
        width: 150px;
    }

    .search-suggestions {
        width: 150px;
    }

    .stat-card p {
        font-size: 1.2rem;
    }
}
/* Product Details Section */
.product-details-section {
    padding: 4rem 1rem;
    background-color: #1a1a1a;
    color: #e0e0e0;
}

.product-details-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-details-image {
    flex: 1 1 300px;
    text-align: center;
}

.product-details-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.product-details-info {
    flex: 1 1 400px;
}

.product-details-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.product-details-info .category {
    font-size: 1rem;
    color: #aaaaaa;
    margin-bottom: 0.5rem;
}

.product-details-info .price {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.product-details-info .stock {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.product-details-info .description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 2rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-details-container {
        flex-direction: column;
        align-items: center;
    }

    .product-details-image img {
        max-width: 300px;
    }

    .product-details-info h1 {
        font-size: 1.5rem;
    }

    .product-details-info .price {
        font-size: 1.2rem;
    }
}
/* Order Details Section */
.order-details {
    margin-bottom: 2rem;
}

.order-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.order-details p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.order-items {
    margin-bottom: 2rem;
}

.order-items h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.order-items table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2a2a;
    color: #e0e0e0;
}

.order-items table th,
.order-items table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #444;
}

.order-items table th {
    background-color: #3a3a3a;
    font-weight: bold;
}

.order-items table td {
    font-size: 0.9rem;
}
/* Table Container (ya existente, pero verificamos) */
.table-container {
    overflow-x: auto;
    margin-top: 2rem;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2a2a;
    color: #e0e0e0;
}

.table-container table th,
.table-container table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #444;
}

.table-container table th {
    background-color: #3a3a3a;
    font-weight: bold;
}

.table-container table td {
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.logo img {
    height: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
    position: relative; /* Necesario para el subrayado animado */
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    display: inline-block; /* Para que transform funcione correctamente */
    transition: color 0.3s ease, transform 0.3s ease; /* Transiciones para color y escala */
}

/* Subrayado animado */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #00bcd4;
    bottom: 0;
    left: 1rem; /* Alineado con el padding del enlace */
    transition: width 0.3s ease;
}

/* Hover: cambio de color, escala y subrayado */
.nav-links a:hover {
    color: #00bcd4;
    transform: scale(1.05); /* Efecto de agrandamiento ligero */
}

.nav-links a:hover::after {
    width: calc(100% - 2rem); /* Ajustado por el padding左右 (1rem a cada lado) */
}

.dashboard-section {
    margin-bottom: 30px;
}

.dashboard-section h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.table-container {
    overflow-x: auto;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #252525;
    border-radius: 8px;
    overflow: hidden;
}

.dashboard-table th, .dashboard-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.dashboard-table th {
    background-color: #333;
    color: #ffffff;
    font-weight: bold;
}

.dashboard-table td {
    color: #d0d0d0;
}

.dashboard-table tr:hover {
    background-color: #2a2a2a;
}
.main-nav .cart-highlight .fa-shopping-cart {
    color: #008800 !important;
    font-size: 1.2rem !important;
    transform: scale(1.3) !important;
}