
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Custom Properties */
:root {
    --primary-color: #ccff66;
    --secondary-color: #5c8c5a;
    --accent-color: #ccff66;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.9) 0%, rgba(23, 162, 184, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-stats .stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.download-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.rating-section {
    animation: fadeInUp 1s ease 0.6s both;
}

/* Phone Mockup */
.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.3s both;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    /* background: #1a1a1a; */
    border-radius: 15px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 60px 20px 20px;
    height: 100%;
    color: white;
}

.app-header h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.app-header p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.restaurant-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.restaurant-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.restaurant-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
}

.restaurant-card .emoji {
    font-size: 2rem;
}

.restaurant-card .name {
    font-weight: 600;
    margin-bottom: 2px;
}

.restaurant-card .distance {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: -15%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 30%;
    left: -15%;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 10%;
    right: -10%;
    animation-delay: 1.5s;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Category Cards */
.category-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 250px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.category-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.category-overlay h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-overlay p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.category-count {
    color: var(--accent-color);
    font-weight: 500;
}

/* Vendor Cards */
.vendor-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.vendor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vendor-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.vendor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.vendor-card:hover .vendor-image img {
    transform: scale(1.1);
}

.vendor-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
}

.vendor-info {
    padding: 1.5rem;
}

.vendor-info h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.vendor-cuisine {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.vendor-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating {
    font-weight: 600;
    color: var(--dark-color);
}

.reviews {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.vendor-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.detail i {
    color: var(--primary-color);
}

/* Map Section */
.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 500px;
}

#map {
    width: 100%;
    height: 100%;
}

/* Buttons */
.btn {
    border-radius: 10px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea080 100%);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* Footer */
.footer-custom {
    background: linear-gradient(to left, var(--secondary-color) 0%, var(--dark-color) 100%);
    position: relative;
    overflow: hidden;
}

.footer-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(204, 255, 102, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.footer-brand {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: var(--primary-color) !important;
    font-weight: 600;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #e8e8e8;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px) scale(1.1);
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item i {
    width: 20px;
    flex-shrink: 0;
}

.newsletter-input {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px 0 0 10px;
    color: white;
    padding: 12px 15px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
    color: white;
}

.newsletter-btn {
    border-radius: 0 10px 10px 0;
    background: var(--primary-color);
    border: none;
    color: var(--dark-color);
    padding: 12px 20px;
    font-weight: 600;
}

.newsletter-btn:hover {
    background: #b8ff4d;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 3rem 0 2rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .vendor-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .download-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .floating-icon {
        display: none;
    }
}

/* Loading Animation */
/*.loading {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}*/
.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-left: 8px;
}



@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Products Page Styles */
.products-header {
    background: linear-gradient(135deg, rgba(92, 140, 90, 0.1) 0%, rgba(204, 255, 102, 0.1) 100%);
}

.products-stats .stat-item {
    display: inline-block;
    text-align: center;
    margin: 0 10px;
}

.products-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.products-stats .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    opacity: 0.8;
}

/* Filters Section */
.filters-section {
    border-bottom: 1px solid #eee;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 5px;
    display: block;
}

.filter-select {
    min-width: 150px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
}

.filter-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(204, 255, 102, 0.25);
}

.search-container .input-group-text {
    background: white;
    border: 1px solid #ddd;
}

.search-container .form-control {
    border: 1px solid #ddd;
    font-size: 1rem;
    padding: 0.75rem;
}

.search-container .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(204, 255, 102, 0.25);
}

.results-count {
    font-weight: 500;
    color: var(--secondary-color);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
}

.product-badges .badge {
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
    display: block;
    width: fit-content;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.25rem;
}

.vendor-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-description {
    font-size: 0.85rem;
    line-height: 1.4;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.rating {
    font-size: 0.9rem;
}

.reviews {
    font-size: 0.8rem;
}

.product-details .detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.product-details .detail i {
    color: var(--primary-color);
    width: 12px;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.unit {
    font-size: 0.8rem;
}

.stock-status .badge {
    font-size: 0.7rem;
}

/* Responsive adjustments for products */
@media (max-width: 768px) {
    .filter-pills {
        flex-direction: column;
        gap: 1rem !important;
    }

    .filter-group {
        width: 100%;
    }

    .filter-select {
        min-width: 100%;
    }

    .sort-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .product-image {
        height: 180px;
    }

    .products-stats {
        text-align: center !important;
        margin-top: 1rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Product Detail Page Styles */
.product-detail-hero {
    background: linear-gradient(135deg, rgba(92, 140, 90, 0.05) 0%, rgba(204, 255, 102, 0.05) 100%);
}

.product-gallery {
    position: relative;
}

.main-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.main-product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.main-image-container:hover .image-overlay {
    opacity: 1;
}

.thumbnail-images .thumbnail-image {
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumbnail-images .thumbnail-image:hover,
.thumbnail-images .thumbnail-image.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.product-detail-info {
    padding-left: 2rem;
}

.vendor-badge .badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

.rating-container {
    display: flex;
    align-items: center;
}

.rating-text {
    color: var(--secondary-color);
    font-weight: 500;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-unit {
    font-size: 1rem;
    color: var(--secondary-color);
    opacity: 0.7;
}

.product-badges .badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--secondary-color);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(204, 255, 102, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.detail-label {
    font-weight: 500;
    color: var(--dark-color);
}

.detail-value {
    font-weight: 600;
    color: var(--secondary-color);
}

.vendor-card-mini {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(204, 255, 102, 0.2);
}

.vendor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.vendor-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.vendor-business {
    color: var(--primary-color);
    font-weight: 500;
}

.vendor-location {
    font-size: 0.9rem;
}

.quantity-selector .input-group {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e9ecef;
}

.quantity-selector .btn {
    border: none;
    background: var(--light-color);
    color: var(--dark-color);
    font-weight: 600;
}

.quantity-selector .btn:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

.quantity-selector .form-control {
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.quantity-selector .form-control:focus {
    box-shadow: none;
    border-color: transparent;
}

.action-buttons .btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
}

.contact-seller .btn {
    background: rgba(92, 140, 90, 0.1);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.contact-seller .btn:hover {
    background: var(--secondary-color);
    color: white;
}

/* Product Location Map */
.product-location {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.map-popup {
    padding: 0.5rem;
    min-width: 200px;
}

.map-popup h6 {
    color: var(--dark-color);
    font-weight: 600;
}

/* Related and Recommended Products */
.related-products .product-card,
.recommended-products .product-card {
    transition: var(--transition);
    border: 1px solid rgba(204, 255, 102, 0.2);
}

.related-products .product-card:hover,
.recommended-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Toast Notifications */
.toast-notification .alert {
    min-width: 300px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsiveness for Product Detail */
@media (max-width: 768px) {
    .product-detail-info {
        padding-left: 0;
        margin-top: 2rem;
    }

    .product-title {
        font-size: 2rem;
    }

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

    .main-product-image {
        height: 300px;
    }

    .thumbnail-images .thumbnail-image {
        height: 60px;
    }

    .action-buttons .d-md-flex {
        flex-direction: column !important;
    }

    .action-buttons .btn {
        margin-bottom: 1rem;
    }

    .vendor-card-mini {
        padding: 1rem;
    }

    .vendor-avatar {
        width: 50px;
        height: 50px;
    }
}
