/* FruitShop - Custom Styles */

body {
    background-color: #f8fdf8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
.navbar-nav .nav-link {
    transition: color 0.2s;
    font-weight: 500;
}

    .navbar-nav .nav-link:hover {
        color: #f9a825 !important;
    }

/* Product Cards */
.product-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 12px;
    overflow: hidden;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(45, 138, 78, 0.18) !important;
    }

/* Category Cards */
.category-card {
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 2px solid transparent;
}

    .category-card:hover {
        transform: translateY(-4px);
        border-color: #2d8a4e;
        box-shadow: 0 8px 20px rgba(45, 138, 78, 0.15) !important;
    }

/* Hero Section */
.hero-section {
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(45, 138, 78, 0.2);
}

/* Table */
.table thead th {
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 14px 12px;
    border: none;
}

.table tbody tr {
    transition: background 0.15s;
}

    .table tbody tr:hover {
        background-color: #f0fdf4;
    }

/* Buttons */
.btn-success {
    background: linear-gradient(135deg, #2d8a4e, #1a5c34);
    border: none;
}

    .btn-success:hover {
        background: linear-gradient(135deg, #1a5c34, #0f3d22);
    }

/* Footer */
footer {
    margin-top: 60px;
}

/* Form Cards */
.card {
    border-radius: 12px;
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
}

/* Badges */
.badge {
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 20px;
}
