.edk-restaurant-grid,
.restaurant-cards-container {
    gap: 2rem;
    margin-bottom: 5rem;
}

.restaurant-cards-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .restaurant-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .restaurant-cards-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.restaurant-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.restaurant-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db;
}

.restaurant-map {
    height: 200px;
    width: 100%;
    position: relative;
}

.restaurant-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.restaurant-details {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    transition: background-color 0.3s ease;
}

.restaurant-card:hover .restaurant-details {
    background: #fff7ed;
}

.restaurant-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
    position: relative;
    padding-bottom: 1rem;
}

.restaurant-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, #ea580c 0%, #dc2626 100%);
    transition: width 0.3s ease;
}

.restaurant-card:hover .restaurant-name::after {
    width: 120px;
}

.restaurant-info {
    flex: 1;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.restaurant-card:hover .info-item {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 20px;
    height: 20px;
    color: #ea580c;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
}

.info-content {
    flex: 1;
}

.info-label {
    font-weight: 700;
    color: #111827;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.4;
    white-space: normal;
}

.restaurant-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.action-btn {
    flex: 1;
    padding: 0.625rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-btn i {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    font-weight: 300;
}

.action-btn span {
    display: inline-block;
}

.fab, .fas {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
}

.fab {
    font-weight: 400;
}

.fas {
    font-weight: 900;
}

.action-btn-facebook {
    background: #ffffff;
    color: #111827;
    border: 2px solid #111827;
}

.action-btn-facebook:hover {
    background: #111827;
    color: #ffffff;
}

.action-btn-menu {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.action-btn-menu:hover {
    background: #e80004;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 0, 4, 0.4);
}

.edk-load-more-btn {
    padding: 1rem 3rem;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.edk-load-more-btn:hover {
    background: linear-gradient(135deg, #c2410c 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.edk-load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}