.deals-offers-container {
    width: 100%;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.deals-search-bar {
    margin-bottom: 30px;
    text-align: center;
}

.deals-search-bar form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #F7941D, #FFB347);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.deals-search-bar .search-field {
    position: relative;
    display: flex;
    align-items: center;
}

.deals-search-bar input[type="text"],
.deals-search-bar input[type="number"],
.deals-search-bar select {
    padding: 12px 40px 12px 15px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    width: 200px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.deals-search-bar input[type="number"] {
    width: 150px;
}

.deals-search-bar select {
    width: 200px;
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23383736" d="M6 9L2 5h8z"/></svg>') no-repeat right 10px center;
}

.deals-search-bar input:focus,
.deals-search-bar select:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(247, 148, 29, 0.5);
}

.deals-search-bar .search-icon {
    position: absolute;
    right: 10px;
    color: #383736;
    font-size: 18px;
}

.deals-search-bar button {
    padding: 12px 25px;
    background: linear-gradient(45deg, #383736, #555);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.deals-search-bar button:hover {
    background: linear-gradient(45deg, #F7941D, #FFB347);
    transform: translateY(-2px);
}

.deals-offers-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: #F7941D #f1f1f1;
}

.deals-offers-scroll::-webkit-scrollbar {
    height: 8px;
}

.deals-offers-scroll::-webkit-scrollbar-thumb {
    background-color: #F7941D;
    border-radius: 4px;
}

.deals-offers-scroll .loading {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #383736;
    padding: 20px;
}

.deals-offers-scroll .loading i {
    margin-right: 10px;
    font-size: 18px;
    color: #F7941D;
}

.deals-offers-scroll .error {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #FF4D4D;
    padding: 20px;
}

/* Redesigned Deal Card */
.deal-card {
    position: relative;
    flex: 0 0 320px;
    background: linear-gradient(180deg, #fff, #f9f9f9);
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.deal-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid #F7941D;
}

.deal-card-content {
    padding: 20px;
    position: relative;
}

.deal-card h2 {
    font-family: 'Abril Fatface', serif;
    color: #383736;
    font-size: 22px;
    margin: 0 0 10px;
    text-align: left;
}

.deal-card .location {
    font-family: 'Playfair Display', serif;
    color: #555;
    font-size: 14px;
    margin: 0 0 10px;
    text-align: left;
}

.deal-card .description {
    font-family: 'Playfair Display', serif;
    color: #383736;
    font-size: 16px;
    margin: 0 0 30px; /* Increased to 30px for more space before Call Now button */
    text-align: left;
    line-height: 1.5;
}

.deal-card .contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: linear-gradient(45deg, #28A745, #34C759);
    color: #fff;
    border-radius: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.deal-card .contact-button:hover {
    background: linear-gradient(45deg, #218838, #2ECC71);
    transform: scale(1.05);
}

.deal-card .contact-button i {
    margin-right: 8px;
    font-size: 16px;
}

.deal-card .deal-label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.deal-label-hot-deals {
    background: linear-gradient(45deg, #FF4D4D, #FF6B6B);
}

.deal-label-popular-deals {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
}

.deal-label-happy-deals {
    background: linear-gradient(45deg, #2196F3, #42A5F5);
}

.deal-label-black-sunday {
    background: linear-gradient(45deg, #333, #555);
}

.deal-card .price-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 8px 12px;
    border-radius: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}