/* Hero Section */
.hero-section {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-section .btn {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Product Cards */
.card img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section */
.bg-light {
    border-top: 3px solid #007bff;
    border-bottom: 3px solid #007bff;
}

.fa-leaf, .fa-shipping-fast, .fa-heart {
    color: #6c757d;
}

.fa-leaf:hover { color: green; }
.fa-shipping-fast:hover { color: blue; }
.fa-heart:hover { color: red; }
/* Product Page */
.container img {
    max-height: 500px;
    object-fit: cover;
}

.container h1 {
    font-size: 2rem;
    font-weight: bold;
}

.container .btn-primary {
    padding: 10px 20px;
    font-size: 1rem;
}

.container .btn-outline-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
}
/* Cart Table */
.table td img {
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.table td form {
    display: inline-block;
}

.table td .form-control {
    display: inline-block;
    width: auto;
}

.btn-primary, .btn-danger {
    padding: 6px 12px;
    font-size: 0.9rem;
}
/* Product Cards */
.card img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: bold;
}

.card .btn {
    margin-top: 10px;
}

/* Pagination */
.pagination .page-link {
    color: #007bff;
    border: 1px solid #ddd;
}

.pagination .page-link:hover {
    background-color: #007bff;
    color: white;
}

.pagination .active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

/* Order Details Enhancements */
.card {
    border-radius: 10px;
    overflow: hidden;
}

.card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.card-body {
    padding: 15px;
}

.badge {
    padding: 0.5em 0.7em;
    font-size: 0.85rem;
}

.container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
}

.card .row.g-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.text-center {
    margin-top: 2rem;
}

h4.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
    margin-bottom: 1.5rem;
}
