body {
    background-color: #FFF5F7;
    font-family: 'Cairo', sans-serif;
    color: #333;
}

.navbar {
    background-color: #FFC1CC;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FF69B4 !important;
}

.nav-link {
    color: #333 !important;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #FF69B4 !important;
}

.hero {
    background: linear-gradient(rgba(255, 193, 204, 0.9), rgba(255, 193, 204, 0.9)), url('https://images.unsplash.com/photo-1512820790803-83ca734da794?q=80&w=1500&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    color: #333;
    transition: opacity 0.5s ease-in-out;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #FF69B4;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 550px;
    margin: 0 auto 25px;
}

.hero-content .btn-primary {
    background-color: #FF69B4;
    border: none;
    padding: 8px 25px;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.hero-content .btn-primary:hover {
    background-color: #FF8DA1;
    transform: scale(1.05);
}

.category-card, .product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover, .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-card img, .product-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-card:hover img, .product-card:hover img {
    transform: scale(1.05);
}

.category-card .card-body, .product-card .card-body {
    padding: 15px;
    text-align: center;
}

.btn-primary, .btn-cart, .btn-details, .btn-contact, .btn-search, .btn-complete {
    background-color: #FF69B4;
    border: none;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary:hover, .btn-cart:hover, .btn-details:hover, .btn-contact:hover, .btn-search:hover, .btn-complete:hover {
    background-color: #FF8DA1;
    transform: scale(1.05);
}

.btn-success {
    background-color: #28a745;
    border: none;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-success:hover {
    background-color: #218838;
    transform: scale(1.05);
}

.btn-danger {
    background-color: #dc3545;
    border: none;
    transition: background-color 0.3s, transform 0.3s;
}

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

.main-image {
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail {
    height: 100px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.3s, transform 0.3s;
}

.thumbnail:hover {
    border: 2px solid #FF69B4;
    transform: scale(1.05);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #FF69B4;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    z-index: 1000;
    animation: slideIn 0.5s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.table {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.table thead th {
    background-color: #FFC1CC;
    border: none;
    color: #333;
    font-weight: 600;
}

.form-control:focus {
    border-color: #FF69B4;
    box-shadow: 0 0 0 0.2rem rgba(255, 105, 180, 0.25);
}

.cart-total {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FF69B4;
}

.quantity-input {
    width: 50px;
    margin: 0 8px;
}

.btn-complete {
    background-color: #28a745;
    color: white;
    margin: 8px;
    padding: 8px 16px;
}

.btn-complete:hover {
    background-color: #218838;
    transform: scale(1.05);
}

.featured-products {
    background-color: #fff;
    padding: 40px 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: #FFC1CC;
    padding: 15px 0;
    color: #333;
}

.footer h5 {
    color: #FF69B4;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.footer p, .footer li {
    font-size: 0.85rem;
}

.footer-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.footer-link:hover {
    color: #FF69B4;
    transform: translateX(5px);
}

.footer .bi {
    margin-left: 6px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .main-image {
        height: 300px;
    }

    .thumbnail {
        height: 80px;
    }

    .footer {
        padding: 10px 0;
    }

    .footer h5 {
        font-size: 1rem;
    }

    .footer p, .footer li {
        font-size: 0.8rem;
    }
}