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

:root {
    --primary: #FF6BB5;
    --secondary: #6BCEFF;
    --accent: #FFB56B;
    --light: #FFF9FC;
    --dark: #333333;
    --success: #6BFFCE;
    --purple: #CE6BFF;
    --yellow: #FFE56B;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar {
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    color: white;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo i {
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-icons {
    display: flex;
    gap: 20px;
    font-size: 20px;
    position: relative;
}

.nav-icons a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

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

.cart-count, .wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-count {
    background-color: var(--accent);
}

/* Common Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: var(--dark);
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Slideshow Banner */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    margin-bottom: 50px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.slide-2 {
    background: linear-gradient(135deg, var(--success) 0%, var(--accent) 100%);
}

.slide-3 {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--purple) 100%);
}

.slide-content {
    max-width: 50%;
    color: white;
    z-index: 2;
}

.slide-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slide-image {
    position: absolute;
    right: 5%;
    max-width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide-image img {
    max-height: 80%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: white;
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 3;
    border: none;
}

.slide-nav:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Categories Section */
.categories {
    padding: 0 5% 50px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.category-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.category-card h3 {
    margin-bottom: 10px;
}

/* Featured Products */
.featured {
    padding: 50px 5%;
    background-color: #f9f9f9;
    border-radius: 30px;
    margin: 0 5% 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.product-image {
    height: 200px;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.original-price {
    text-decoration: line-through;
    color: #999;
}

.add-to-cart, .add-to-wishlist {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    width: 100%;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 8px;
}

.add-to-cart:hover {
    background-color: #ff4aa3;
}

.add-to-wishlist {
    background-color: var(--accent);
}

.add-to-wishlist:hover {
    background-color: #ff9e4a;
}

/* Special Offer */
.special-offer {
    background: linear-gradient(to right, var(--secondary), var(--success));
    padding: 60px 5%;
    margin: 0 5% 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.offer-content {
    max-width: 60%;
}

.offer-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.offer-content p {
    margin-bottom: 30px;
    font-size: 18px;
}

.offer-image {
    max-width: 35%;
    animation: pulse 2s infinite;
}

.offer-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Newsletter */
.newsletter {
    background-color: white;
    padding: 60px 5%;
    margin: 0 5% 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.newsletter h2 {
    margin-bottom: 20px;
    color: var(--dark);
}

.newsletter p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--primary);
    border-radius: 50px 0 0 50px;
    font-size: 16px;
}

.newsletter-form button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 0 50px 50px 0;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #ff4aa3;
}

/* Shop Page */
.shop-header {
    padding: 30px 5%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.shop-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.filters {
    display: flex;
    justify-content: space-between;
    padding: 0 5% 30px;
    align-items: center;
}

.filter-options {
    display: flex;
    gap: 15px;
}

.filter-btn {
    background-color: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn.active {
    background-color: var(--primary);
    color: white;
}

.sort-options select {
    padding: 8px 15px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    background-color: white;
    color: var(--dark);
}

/* Cart */
.cart-container {
    padding: 30px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-items {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-btn {
    background-color: var(--light);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
}

.quantity-btn:hover {
    background-color: var(--primary);
    color: white;
}

.remove-item {
    color: #ff6b6b;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    margin-left: 20px;
}

.cart-summary {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-total {
    font-weight: 700;
    font-size: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.checkout-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    width: 100%;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
    font-size: 18px;
}

.checkout-btn:hover {
    background-color: #ff4aa3;
}

/* Checkout */
.checkout-container {
    padding: 30px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.checkout-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-section {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-section h2 {
    margin-bottom: 20px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.payment-method {
    flex: 1;
    text-align: center;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method.active {
    border-color: var(--primary);
    background-color: rgba(255, 107, 181, 0.1);
}

.payment-method i {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--primary);
}

.place-order-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    width: 100%;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
    font-size: 18px;
    grid-column: 1 / -1;
}

.place-order-btn:hover {
    background-color: #ff4aa3;
}

/* About Us */
.about-container {
    padding: 50px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Wishlist */
.wishlist-container {
    padding: 30px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.wishlist-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.wishlist-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.wishlist-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.remove-wishlist {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 10px;
}

/* Contact */
.contact-container {
    padding: 50px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary);
    margin-right: 15px;
    width: 30px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--primary);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .category-grid, .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slideshow-container {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }

    .checkout-form, .contact-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .slide {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }
    
    .slide-content, .slide-image {
        max-width: 100%;
        position: static;
    }
    
    .slide-image {
        margin-top: 30px;
        height: auto;
    }
    
    .slide-image img {
        max-height: 200px;
    }
    
    .special-offer, .about-section {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-content, .offer-image, .about-content, .about-image {
        max-width: 100%;
    }
    
    .offer-image, .about-image {
        margin-top: 30px;
    }
    
    .nav-links {
        display: none;
    }
    
    .slideshow-container {
        height: 500px;
    }

    .filters {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .filter-options {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .category-grid, .product-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 50px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 50px;
    }
    
    .slideshow-container {
        height: 450px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-image img {
        max-height: 150px;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
    }

    .cart-item-image {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* product detail */
/* Product Detail Page Styles */
.product-detail-container {
    padding: 30px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Product Images */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-product-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.main-product-image img:hover {
    transform: scale(1.05);
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    flex-shrink: 0;
    background-color: #f9f9f9;
}

.thumbnail.active {
    border-color: var(--primary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail:hover {
    border-color: var(--primary);
}

/* Product Info */
.product-info {
    padding: 20px;
}

.product-category {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.product-title {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--dark);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #FFD700;
    display: flex;
    gap: 2px;
}

.rating-count {
    color: #666;
    font-size: 14px;
}

.product-price-section {
    margin-bottom: 25px;
}

.current-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-right: 15px;
}

.original-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    background-color: var(--accent);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 15px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
}

.product-description h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 20px;
}

.option-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.color-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.color-option.active {
    border-color: var(--primary);
}

.color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-option {
    padding: 8px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.size-option.active {
    border-color: var(--primary);
    background-color: rgba(255, 107, 181, 0.1);
    color: var(--primary);
}

.size-option.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Quantity and Actions */
.quantity-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
}

.quantity-btn {
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 70px;
    height: 50px;
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.add-to-cart-btn, .buy-now-btn, .wishlist-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn {
    background-color: var(--primary);
    color: white;
    flex: 2;
}

.add-to-cart-btn:hover {
    background-color: #ff4aa3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 181, 0.3);
}

.buy-now-btn {
    background-color: var(--secondary);
    color: white;
    flex: 1;
}

.buy-now-btn:hover {
    background-color: #4ab3ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 206, 255, 0.3);
}

.wishlist-btn {
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    flex: 1;
}

.wishlist-btn:hover {
    background-color: rgba(255, 107, 181, 0.1);
}

/* Product Meta */
.product-meta {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-item i {
    color: var(--primary);
    font-size: 20px;
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 60px;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    position: relative;
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Description Tab */
.description-content {
    line-height: 1.8;
    color: #555;
}

.description-content ul, .description-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.description-content li {
    margin-bottom: 10px;
}

/* Specifications Tab */
.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr {
    border-bottom: 1px solid #eee;
}

.specifications-table td {
    padding: 15px 0;
}

.specifications-table td:first-child {
    font-weight: 600;
    color: var(--dark);
    width: 200px;
}

/* Reviews Tab */
.reviews-container {
    max-width: 800px;
}

.review-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.review-form h4 {
    margin-bottom: 20px;
}

.rating-input {
    margin-bottom: 20px;
}

.rating-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.rating-star {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.rating-star.active {
    color: #FFD700;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-item {
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--dark);
}

.review-date {
    color: #999;
    font-size: 14px;
}

/* Shipping Tab */
.shipping-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.shipping-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.shipping-item i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Related Products */
.related-products {
    margin-top: 60px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    color: var(--dark);
}

.view-all-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 5%;
    background-color: #f9f9f9;
    margin-bottom: 30px;
}

.breadcrumb-links {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.breadcrumb-links a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-links a:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    color: #999;
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.product-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-new {
    background-color: var(--success);
}

.badge-sale {
    background-color: var(--accent);
}

.badge-hot {
    background-color: #ff6b6b;
}

.badge-featured {
    background-color: var(--purple);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-detail-grid {
        gap: 20px;
    }
    
    .main-product-image {
        height: 400px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .current-price {
        font-size: 28px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .add-to-cart-btn, .buy-now-btn, .wishlist-btn {
        width: 100%;
    }
    
    .tabs-header {
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-product-image {
        height: 300px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .current-price {
        font-size: 24px;
    }
    
    .quantity-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 15px;
    }
}


/* ==================== DASHBOARD STYLES ==================== */

/* Dashboard Layout */
.dashboard-container {
    padding: 30px 5%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 70vh;
}

.dashboard-header {
    margin-bottom: 40px;
}

.dashboard-header h1 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 10px;
}

.dashboard-header p {
    color: #666;
    font-size: 16px;
}

/* Dashboard Grid Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: fit-content;
}

.user-profile {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary);
}

.user-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.user-email {
    color: #666;
    font-size: 14px;
}

.dashboard-nav {
    list-style: none;
    padding: 0;
}

.dashboard-nav li {
    margin-bottom: 5px;
}

.dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    color: #555;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
    background-color: rgba(255, 107, 181, 0.1);
    color: var(--primary);
}

.dashboard-nav i {
    width: 20px;
    text-align: center;
}

.logout-btn {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logout-btn:hover {
    background-color: #ff5252;
}

/* Dashboard Content */
.dashboard-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Stats Overview */
.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

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

.stat-card i {
    font-size: 32px;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-card p {
    font-size: 14px;
    opacity: 0.9;
}

.stat-card.secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--success) 100%);
}

.stat-card.accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
}

.stat-card.success {
    background: linear-gradient(135deg, var(--success) 0%, var(--primary) 100%);
}

/* Recent Orders Table */
.section-title {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.orders-table th {
    background-color: #f9f9f9;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 2px solid #eee;
}

.orders-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.order-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.status-processing {
    background-color: #D1ECF1;
    color: #0C5460;
}

.status-shipped {
    background-color: #D4EDDA;
    color: #155724;
}

.status-delivered {
    background-color: #D1E7DD;
    color: #0F5132;
}

.status-cancelled {
    background-color: #F8D7DA;
    color: #721C24;
}

.action-btn {
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.view-btn {
    background-color: var(--primary);
    color: white;
}

.view-btn:hover {
    background-color: #ff4aa3;
}

/* Address Book */
.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.address-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.address-card.default {
    border-color: var(--primary);
    background-color: rgba(255, 107, 181, 0.05);
}

.address-card h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.address-card p {
    color: #666;
    margin-bottom: 5px;
    line-height: 1.5;
}

.address-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.edit-btn {
    background-color: var(--secondary);
    color: white;
}

.edit-btn:hover {
    background-color: #4ab3ff;
}

.delete-btn {
    background-color: #ff6b6b;
    color: white;
}

.delete-btn:hover {
    background-color: #ff5252;
}

.add-address-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.add-address-btn:hover {
    background-color: #ff4aa3;
}

/* Wishlist Items */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.wishlist-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.wishlist-item:hover {
    transform: translateY(-5px);
}

.wishlist-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wishlist-item-info {
    padding: 15px;
}

.wishlist-item-info h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.wishlist-item-info .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.wishlist-item-actions {
    display: flex;
    gap: 10px;
}

/* Order Details */
.order-details-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.order-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.info-item h4 {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
}

.order-items {
    margin-bottom: 30px;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.order-item-details {
    flex: 1;
}

.order-item-details h4 {
    margin-bottom: 5px;
}

.order-item-price {
    color: var(--primary);
    font-weight: 700;
}

.order-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    border-top: 2px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

/* Settings Form */
.settings-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.save-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.save-btn:hover {
    background-color: #ff4aa3;
}

/* ==================== ADMIN DASHBOARD STYLES ==================== */

/* Admin Dashboard Grid */
.admin-dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Admin Sidebar */
.admin-sidebar {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 30px 20px;
    height: fit-content;
}

.admin-profile {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
    color: white;
}

.admin-info h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}

.admin-info p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.admin-nav {
    list-style: none;
    padding: 0;
}

.admin-nav li {
    margin-bottom: 5px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
}

.admin-nav a:hover,
.admin-nav a.active {
    background-color: rgba(255, 107, 181, 0.2);
    color: white;
}

.admin-nav i {
    width: 20px;
    text-align: center;
}

/* Admin Stats */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.admin-stat-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary);
}

.admin-stat-card h3 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 5px;
}

.admin-stat-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.stat-change {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
}

.stat-change.positive {
    color: var(--success);
}

.stat-change.negative {
    color: #ff6b6b;
}

/* Charts Container */
.charts-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .charts-container {
        grid-template-columns: 1fr;
    }
}

.chart-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h3 {
    font-size: 20px;
    color: var(--dark);
}

.chart-options {
    display: flex;
    gap: 10px;
}

.chart-option-btn {
    padding: 8px 15px;
    background: none;
    border: 2px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.chart-option-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Recent Activity */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 181, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.activity-content h4 {
    margin-bottom: 5px;
    font-size: 14px;
}

.activity-content p {
    color: #666;
    font-size: 12px;
}

/* Data Tables */
.data-table-container {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow-x: auto;
}

.data-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.data-table th {
    background-color: #f9f9f9;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 2px solid #eee;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.table-actions {
    display: flex;
    gap: 8px;
}

.table-btn {
    padding: 6px 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
}

.edit-table-btn {
    background-color: var(--secondary);
    color: white;
}

.delete-table-btn {
    background-color: #ff6b6b;
    color: white;
}

.view-table-btn {
    background-color: var(--primary);
    color: white;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.quick-action-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

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

.quick-action-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.quick-action-card h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.quick-action-card p {
    color: #666;
    font-size: 14px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    color: var(--dark);
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.modal-body {
    padding: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 20px 3%;
    }
    
    .stats-overview {
        grid-template-columns: 1fr;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .addresses-grid {
        grid-template-columns: 1fr;
    }
    
    .wishlist-grid {
        grid-template-columns: 1fr;
    }
    
    .orders-table {
        font-size: 14px;
    }
    
    .orders-table th,
    .orders-table td {
        padding: 10px;
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.spinner img {
    width: 50px;
    height: 50px;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-state i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    margin-bottom: 10px;
    color: #999;
}

/* Notifications */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}