/* General Styles */
body {
    font-family: 'Tahoma', sans-serif;
    line-height: 1.6;
}

.text-primary {
    color: #e91e63 !important;
}

.btn-primary {
    background-color: #e91e63;
    border-color: #e91e63;
}

.btn-primary:hover {
    background-color: #c2185b;
    border-color: #c2185b;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
}

/* Product Card */
.product-card {
    transition: transform 0.3s;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card img {
    height: 250px;
    object-fit: cover;
}

/* Category Card */
.category-card {
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-card img {
    height: 150px;
    object-fit: cover;
}

/* Feature Box */
.feature-box {
    padding: 20px;
}

/* Navbar */
.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
}

/* Footer */
footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #e91e63 !important;
}