:root {
    --pink-primary: #d63384;
    --pink-light: #ffe3ec;
    --pink-dark: #b02a6f;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
}

.text-pink {
    color: var(--pink-primary) !important;
}

.btn-pink {
    background-color: var(--pink-primary);
    color: white;
    border: none;
    font-weight: 500;
    transition: 0.2s;
}

.btn-pink:hover {
    background-color: var(--pink-dark);
    color: white;
    transform: translateY(-1px);
}

.hero-section {
    background: linear-gradient(135deg, var(--pink-light), #fff5f8);
}

.category-card img,
.category-placeholder {
    height: 150px;
    object-fit: cover;
    width: 100%;
}

.category-placeholder {
    background-color: #f8f9fa;
}

.category-card, .product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 10px;
    overflow: hidden;
}

.category-card:hover, .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08) !important;
}

.product-img {
    height: 220px;
    object-fit: cover;
}

/* Navbar active link */
.nav-link.active {
    position: relative;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--pink-primary);
}

/* Form focus state */
.form-control:focus, .form-select:focus {
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 0.2rem rgba(214, 51, 132, 0.15);
}

/* Buttons general */
.btn {
    border-radius: 6px;
}

/* Cards general */
.card {
    border-radius: 10px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.9rem;
}

/* Table (orders page) */
.table thead {
    background-color: #f8f9fa;
}

/* Footer links */
footer a {
    color: #ccc;
    text-decoration: none;
}
footer a:hover {
    color: var(--pink-light);
}

/* Empty states */
.bi-emoji-frown, .bi-cart-x, .bi-bag-x {
    opacity: 0.4;
}