*{
    font-family: 'Century Gothic', sans-serif;
}
main > .container {
    padding: 70px 15px 20px;
}
body{
    background: url("../media/bg.jpg") 100% no-repeat fixed;
    background-size: cover;
}
.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

.my-form{
    background: rgba(255, 255, 255, 0.91);
    width: 700px;
    padding: 25px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.my-btn {
    width: 100%;
    background: #ceffa6;
    color: #2e4a23;
    border: none !important;
    font-weight: bold;
    border-radius: 5px;
    transition: all .3s;
}
.my-btn:hover{
    background: rgba(255, 255, 255, 0);
    color:#2e2e2e;
    border: none !important;
    transition: all .3s;
}
.my-btn-2 {
    width: 100%;
    background: rgba(255, 255, 255, 0.69);
    color: #2e2e2e;
    border-radius: 5px;
    transition: all .3s;
}
.my-btn:hover{
    background: rgba(255, 255, 255, 0);
    color:#2e2e2e;
    border: 1px solid #2e2e2e;
    transition: all .3s;
}
.my-card{
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.card-body{
    padding: 20px 20px 5px;
}



.product-page {
    animation: fadeIn 0.5s ease-in;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(4px);
    padding: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.quantity-selector input:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.allergens-list .badge {
    font-size: 0.9rem;
    cursor: help;
    transition: transform 0.2s;
}

.allergens-list .badge:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .product-title {
        font-size: 1.5rem;
    }

    .current-price {
        font-size: 1.8rem;
    }

    .fast-actions {
        flex-direction: column;
    }

    .fast-actions .btn {
        margin-bottom: 10px;
    }
}

h1{
    color: white;
}
.my-form-1 form{
    padding: 15px;
    border-radius: 10px;
    background: white;
}


.hero-section {
    background: linear-gradient(135deg, #3c3c3c 0%, rgba(44, 44, 44, 0.87) 100%);
    color: white;
    padding: 80px 40px;
    backdrop-filter: blur(4px);
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.3s;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-card img {
    height: 200px;
    object-fit: cover;
}

.category-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

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

.banner-card {
    background-size: cover;
    background-position: center;
    padding: 50px;
    border-radius: 10px;
    color: white;
    text-align: center;
    transition: transform 0.3s;
}

.banner-card:hover {
    transform: scale(1.02);
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.quick-link {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.quick-link:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}

h2{
    color: white;
}

.col-md-6 p {
    color: white;
}