﻿.order-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(to bottom right, #a3d5ff, #f6c0ff);
    font-family: 'Poppins', sans-serif;
}

.order-card {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    width: 350px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}

.brand-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.order-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.order-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.order-btn {
    display: block;
    background: #fff;
    color: #333;
    padding: 12px 0;
    margin: 10px 0;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.25s ease;
}

    .order-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    }

.zomato {
    background: #ff5a5f;
    color: #fff;
}

.swiggy {
    background: #fc8019;
    color: #fff;
}

.instagram {
    background: #e4405f;
    color: #fff;
}

.facebook {
    background: #1877f2;
    color: #fff;
}

.whatsapp {
    background: #25D366;
    color: #fff;
}

.store-list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.store-item {
    
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8faff, #f1f7ff);
    border: 1px solid #e0ebff;
    border-radius: 14px;
    padding: 14px 18px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

    .store-item:hover {
        background: linear-gradient(135deg, #e0eeff, #ffffff);
        transform: translateY(-3px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    }

.store-name {
    font-size: 14px;
    color: #222;
    display: block;
    font-weight: bold;
}

.store-action {
    font-size: 14px;
    font-weight: 600;
    color: #007bff;
    opacity: 0.9;
    transition: all 0.2s ease;
}

.store-item:hover .store-action {
    color: #0056b3;
    transform: translateX(3px);
    opacity: 1;
}

    .store-list.show {
        opacity: 1;
        transform: translateY(0);
    }

.hidden {
    display: none;
}


  

/* ---- Added Back Button ---- */
.back-btn {
    position: absolute;
    left: 20px;
    top: 15px;
    background: #f1f1f1;
    color: #333;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

    .back-btn:hover {
        background: #ddd;
    }
