/**
 * Services List Page Styles
 * Extracted from resources/views/services/list.blade.php
 * Pentru paginile: /servicii/* și /search
 */

/* ========================================
   PACKAGE BADGES
   ======================================== */

.package-badge {
    display: inline-block;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Bara laterală (ribbon-style) pentru efect premium */
.package-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -8px;
    height: 100%;
    width: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px 0 0 8px;
}

/* Glow subtil pentru efect premium */
.package-badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    opacity: 0.6;
    z-index: -1;
}

/* Culori pentru fiecare tip de pachet */
.package-badge.gold {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #333;
}

.package-badge.premium {
    background: linear-gradient(135deg, #8e44ad, #6d2b8c);
}

.package-badge.standard {
    background: linear-gradient(135deg, #3498db, #217dbb);
}

.package-badge.basic {
    background: linear-gradient(135deg, #7f8c8d, #5d6d7e);
    color: white;
}

/* Special Highlight pentru pachete premium */
.package-badge.gold::after {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.package-badge.premium::after {
    box-shadow: 0 0 15px rgba(142, 68, 173, 0.8);
}

.package-badge.standard::after {
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.8);
}

.package-badge.basic::after {
    box-shadow: 0 0 15px rgba(127, 140, 141, 0.8);
}

/* ========================================
   SERVICE CARD PHOTOS
   ======================================== */

.listing_furnizori .photo {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.listing_furnizori .photo .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.listing_furnizori .photo img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    display: block;
    transition: opacity 0.3s ease;
}

/* Smooth fade-in pentru lazy loaded images */
.listing_furnizori .photo img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.4s ease-in;
}

.listing_furnizori .photo img[loading="lazy"].loaded,
.listing_furnizori .photo img[loading="lazy"]:not([src=""]) {
    opacity: 1;
}

/* ========================================
   SERVICE CARDS
   ======================================== */

.listing_furnizori .item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.listing_furnizori .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.listing_furnizori .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* ========================================
   RATING & REVIEWS
   ======================================== */

.listing_furnizori .rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #666;
}

.listing_furnizori .stars {
    display: flex;
}

.listing_furnizori .star {
    width: 14px !important;
    height: 14px;
    background: url('/img/star-filled.svg') no-repeat center;
    background-size: contain;
}

.listing_furnizori .star.inactive {
    background: url('/img/star-empty.svg') no-repeat center;
}

.listing_furnizori .rating-score {
    display: flex;
    align-items: center;
    gap: 5px;
}

.listing_furnizori .score {
    background: #ffcc00;
    color: #333;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 5px;
    font-size: 12px;
}

.listing_furnizori .reviews {
    font-size: 11px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.05);
    padding: 5px 7px;
    border-radius: 5px;
}

.listing_furnizori .review-icon {
    width: 12px;
    height: auto;
    opacity: 0.6;
}

/* ========================================
   BUTTONS
   ======================================== */

.listing_furnizori .buttons a {
    display: inline-block;
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.listing_furnizori .cere_oferta {
    background: linear-gradient(135deg, #e63946, #b71c1c);
    color: white;
    padding: 8px 10px; 
    font-weight: bold;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.listing_furnizori .cere_oferta:hover {
    background: linear-gradient(135deg, #b71c1c, #8b0000);
    box-shadow: 0 6px 15px rgba(230, 57, 70, 0.5);
    transform: translateY(-2px);
}

.listing_furnizori .vezi_detalii {
    background: #f0f0f0;
    color: #333;
}

.listing_furnizori .vezi_detalii:hover {
    background: #ddd;
}

/* ========================================
   TITLE & RATING ROW
   ======================================== */

.listing_furnizori .title-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.listing_furnizori .title-rating .title {
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}

/* ========================================
   LOCATION
   ======================================== */

.listing_furnizori .location {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px !important;
    color: #444;
    font-weight: 600;
}

.listing_furnizori .location span {
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

.listing_furnizori .location-icon {
    width: 14px;
    height: 14px;
    filter: brightness(1) saturate(1.5) hue-rotate(-10deg);
}

/* ========================================
   DESCRIPTION
   ======================================== */

.listing_furnizori .description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
    text-align: justify;
    padding: 8px 0;
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   PACKAGE & LOCATION ROW
   ======================================== */

.listing_furnizori .package-location {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.listing_furnizori .package-container {
    flex-shrink: 0;
}

/* ========================================
   PRICE & BUTTONS ROW
   ======================================== */

.listing_furnizori .pret {
    font-size: 14px;
    font-weight: bold;
    color: #d32f2f;
    display: flex;
    align-items: center;
    gap: 6px;
}

.listing_furnizori .pret img {
    width: 18px;
    height: auto;
}

.listing_furnizori .pret-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.listing_furnizori .buttons {
    display: flex;
    gap: 10px;
}

.listing_furnizori .buttons a {
    padding: 6px 12px !important;
    font-size: 12px !important;
    border-radius: 6px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
}

.listing_furnizori .cere_oferta {
    background: linear-gradient(135deg, #e63946, #b71c1c);
    color: white;
    box-shadow: 0 2px 6px rgba(230, 57, 70, 0.3);
    max-width: 150px;
}

.listing_furnizori .cere_oferta:hover {
    background: linear-gradient(135deg, #b71c1c, #8b0000);
}

.listing_furnizori .vezi_detalii {
    background: #f0f0f0;
    color: #333;
}

.listing_furnizori .vezi_detalii:hover {
    background: #ddd;
}

/* ========================================
   TOP FURNIZORI (SIDEBAR)
   ======================================== */

.anunturi .section-title {
    font-size: 14px;
    font-weight: bold;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 5px;
    margin-bottom: 12px;
    display: inline-block;
}

.anunturi .section-title.top {
    border-bottom: 2px solid #ffb700;
    color: #b8860b;
}

.anunturi .titlu {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 2px solid #e0e0e0;
    letter-spacing: 0.5px;
}

.anunturi .top-furnizor {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 10px;
}

.anunturi .top-furnizor:hover {
    transform: scale(1.0);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

.anunturi .top-furnizor .photo {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.anunturi .top-furnizor .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Smooth fade-in pentru lazy loaded banner-e top furnizor */
.anunturi .top-furnizor .photo img[loading="lazy"] {
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.4s ease-in;
}

.anunturi .top-furnizor .photo img[loading="lazy"].loaded,
.anunturi .top-furnizor .photo img[loading="lazy"]:not([src=""]) {
    opacity: 1;
}

.anunturi .top-furnizor:hover .photo img {
    transform: scale(1.05);
}

.anunturi .package-container {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
}

.anunturi .top-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #333;
    font-size: 10px;
    font-weight: bold;
    padding: 5px 12px;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0px 2px 8px rgba(255, 215, 0, 0.6);
    letter-spacing: 1px;
}

/* ========================================
   SUGGESTED LISTING (TE-AR MAI PUTEA INTERESA)
   ======================================== */

.package-box {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 8px;
}

.suggested-listing {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.suggested-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.suggested-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.suggested-card .photo {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.suggested-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Smooth fade-in pentru lazy loaded images în sidebar */
.suggested-card .photo img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.4s ease-in;
}

.suggested-card .photo img[loading="lazy"].loaded,
.suggested-card .photo img[loading="lazy"]:not([src=""]) {
    opacity: 1;
}

.suggested-card .title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-top: 6px;
    margin-bottom: 4px;
}

.suggested-card .location {
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
}

.suggested-card .location img {
    width: 14px;
    height: 14px;
}

.suggested-card .pret_app {
    font-size: 12px;
    font-weight: bold;
    color: #e74c3c;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
}

.suggested-card .pret_app img {
    width: 26px;
    height: 17px;
    margin-right: 7px;
    margin-top: 2px;
}

.suggested-card .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 5px;
}

.suggested-card .stars .rating-badge {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    background: #ffcc00;
    color: #000000;
    padding: 3px 6px;
    border-radius: 4px;
    gap: 3px;
}

.suggested-card .stars .rating-badge img {
    width: 14px;
    height: 14px;
}

.suggested-card .reviews {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #555;
    gap: 5px;
}

.suggested-card .reviews img {
    width: 14px;
    height: 14px;
}

/* ========================================
   MODALS
   ======================================== */

.modal_offer,
.modal_auth {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal_offer .inner,
.modal_auth .inner {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal_offer .title,
.modal_auth .title {
    width: 100% !important;
    max-width: none !important;
    font-size: 24px;
    font-weight: bold;
    color: #e63946;
    text-align: center !important;
    margin-bottom: 20px;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

.modal_offer .intro,
.modal_auth .intro {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.auth-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
}

.register-btn {
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    color: white;
}

.register-btn:hover {
    background: linear-gradient(135deg, #10ac84, #0d9488);
    transform: translateY(-2px);
}

.login-btn {
    background: linear-gradient(135deg, #e63946, #b71c1c);
    color: white;
}

.login-btn:hover {
    background: linear-gradient(135deg, #b71c1c, #8b0000);
    transform: translateY(-2px);
}

.close-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

.close-btn:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: translateY(-2px);
}

.modal_offer .close,
.modal_auth .close {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    font-size: 24px;
    color: #666;
}

.modal_offer .close:hover,
.modal_auth .close:hover {
    color: #e63946;
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .listing_furnizori .description {
        max-height: 70px;
    }

    .listing_furnizori .title {
        white-space: wrap;
    }

    .listing_furnizori .title-rating {
        flex-direction: column;
        align-items: flex-start;
    }

    .listing_furnizori .rating-score {
        order: 2;
        flex-grow: 1;
        display: flex;
        justify-content: flex-end;
    }

    .listing_furnizori .package-location {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        width: 100%;
    }

    .listing_furnizori .pret-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .listing_furnizori .pret-buttons .buttons {
        display: flex;
        justify-content: space-between;
        gap: 5px;
    }

    .listing_furnizori .pret-buttons .buttons a {
        width: auto !important;
        max-width: 48% !important;
        padding: 0px 6px !important;
        font-size: 11px !important;
        height: auto !important;
    }

    .listing_furnizori .buttons a {
        flex: 1;
        max-width: 48%;
        padding: 6px 8px;
        font-size: 12px;
    }

    .listing_furnizori .cere_oferta {
        background: linear-gradient(135deg, #e63946, #b71c1c);
        color: white;
        box-shadow: 0 2px 6px rgba(230, 57, 70, 0.3);
        width: auto !important;
        max-width: 48%;
        padding: 4px 6px;
    }

    .listing_furnizori .vezi_detalii {
        background: #f0f0f0;
        color: #333;
    }

    .listing_furnizori .vezi_detalii:hover {
        background: #ddd;
    }

    .listing_furnizori .cere_oferta img,
    .listing_furnizori .vezi_detalii img {
        width: 12px;
        height: auto;
    }

    .modal_offer .inner,
    .modal_auth .inner {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .auth-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .auth-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* ========================================
   PAGINATION STYLES
   ======================================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
  width: 100%;
  gap: 8px;
}

/* Ascunde paginile numerotate pe mobil */
.pagination li {
  display: none;
  justify-content: center;
  align-items: center;
}

/* Pe desktop, afișează numerotarea */
@media all and (min-width: 1390px) {
  .pagination li {
    display: flex;
  }
}

/* Pe mobil, afișează doar butoanele prev/next și selectorul */
.pagination li.mobilee {
  display: flex;
}

/* Pe mobil, selectorul de pagină rămâne vizibil */
.pagination li.page-selector {
  display: none !important; /* ASCUNS COMPLET - nu mai folosim select */
}

/* Butoane circulare */
.pagination a,
.pagination div {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #f2f2f2;
  color: #444;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.pagination a:hover {
  background-color: #ddd;
  transform: scale(1.1);
}

.pagination a.selected {
  background-color: #dd2241;
  color: #fff;
}

.pagination img {
  width: 32px;
  height: 32px;
}

.pagination div {
  background-color: transparent;
  font-weight: 400;
}

/* Responsive - butoane mai mici pe telefon */
@media (max-width: 768px) {
  .pagination a,
  .pagination div {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .pagination img {
    width: 24px;
    height: 24px;
  }
  
  .pagination {
    gap: 6px;
    margin: 20px 0;
  }
}

/* ========================================
   FIX LOCATION (era inline în blade original)
   ======================================== */

.location {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px !important;
    color: #444;
    font-weight: 600;
}

.location span {
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

.location-icon {
    width: 14px;
    height: 14px;
    filter: brightness(1) saturate(1.5) hue-rotate(-10deg); /* Roșu elegant */
}

/* ============================================
   MOBILE ONLY - Design CLEAN (ca matrimonio)
   Implementat: 2026-02-06
   ============================================ */

@media (max-width: 768px) {
    .main.inside {
        margin-bottom: 2px !important;
    }
    /* =======================================
       1. ASCUNDE breadcrumb vechi
       ======================================= */
    .breadcrumb {
        display: none !important;
    }
    
    /* =======================================
       2. HERO - Background ALB CURAT
       ======================================= */
    
    .hero-wrapper {
        min-height: auto !important;
        display: block !important;
        /* Background DRAMATIC - negru cu fascicule roșii */
        background: linear-gradient(135deg, 
            #1a1a1a 0%, 
            #2d0a0f 25%, 
            #1a1a1a 50%, 
            #2d0a0f 75%, 
            #1a1a1a 100%) !important;
        background-size: 200% 200% !important;
        padding: 12px 0 12px 0 !important;
        /* Shadow de sus ȘI jos */
        box-shadow: inset 0 8px 12px -8px rgba(0, 0, 0, 0.3), 
                    inset 0 -8px 12px -8px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* ELIMINĂ overlay gradient întunecat */
    .hero-wrapper::before {
        display: none !important;
    }
    
    .hero-wrapper .containerr {
        display: block !important;
        padding-top: 15px !important; /* ELIMINĂ padding bottom imens */
        padding-bottom: 20px !important; /* ELIMINĂ padding bottom imens */
        margin-bottom: 0 !important; /* ELIMINĂ margin bottom imens */
    }
    
    .hero-wrapper .main_inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        padding-bottom: 0 !important; /* ELIMINĂ padding bottom imens */
        margin-bottom: 0 !important; /* ELIMINĂ margin bottom imens */
    }
    
    /* Breadcrumb - TEXT ALB pe negru */
    .hero-breadcrumb-mobile {
        display: block !important;
        width: 100% !important;
        order: 1;
        color: rgba(255, 255, 255, 0.7) !important; /* ALB transparent */
        font-size: 10px !important;
        text-align: left;
        padding: 0 !important;
        margin-bottom: 12px !important;
    }
    
    .hero-breadcrumb-mobile a {
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .hero-breadcrumb-mobile span {
        color: #ffffff !important; /* ALB */
        font-weight: 600;
    }
    
    /* Titlu H1 - ALB pe negru */
    .hero-title-mobile {
        display: block !important;
        width: 100% !important;
        order: 2;
        color: #ffffff !important; /* ALB */
        font-size: 24px !important;
        font-weight: 700;
        text-align: left;
        padding: 0 !important;
        margin: 0 0 12px 0 !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important; /* Shadow subtil */
        line-height: 1.2;
    }
    
    /* Divider - ROȘU strălucitor */
    .hero-divider-mobile {
        display: block !important;
        width: 30px !important;
        height: 2px;
        background: #dd2241 !important;
        margin: 0 0 15px 0 !important;
        order: 3;
        box-shadow: 0 0 8px rgba(221, 34, 65, 0.5) !important; /* Glow roșu */
    }
    
    /* Container butoane - fără padding lateral */
    .search-mobile-compact {
        display: block !important;
        width: 100% !important;
        order: 4;
        padding: 0 !important; /* FĂRĂ padding lateral */
    }
    
    /* =======================================
       3. BUTOANE SEARCH - LIPITE cu shadow alb
       ======================================= */
    
    .search-mobile-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 0 !important; /* LIPITE - fără gap */
        width: 100% !important;
        margin-bottom: 0 !important;
    }
    
    /* Butoane - CLEAN cu shadow ALB */
    .search-mobile-btn {
        flex: 1;
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: flex-start !important; /* Aliniat STÂNGA */
        gap: 8px;
        background: #ffffff !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 12px 12px !important; /* Padding uniform */
        color: #333 !important;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3) !important;
        min-height: auto !important;
        height: auto !important;
        position: relative;
    }
    
    /* Border între butoane - linie subțire */
    .search-mobile-btn:first-child {
        border-radius: 8px 0 0 8px !important; /* Rotunjit stânga */
        border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
    }
    
    .search-mobile-btn:last-child {
        border-radius: 0 8px 8px 0 !important; /* Rotunjit dreapta */
    }
    
    /* Elimină efecte fancy */
    .search-mobile-btn::before {
        display: none !important;
    }
    
    /* Active state */
    .search-mobile-btn:active {
        transform: scale(0.98);
        background: #f8f8f8 !important;
        box-shadow: 0 2px 15px rgba(255, 255, 255, 0.4) !important;
    }
    
    /* Icon - roșu */
    .search-mobile-btn i {
        font-size: 16px !important;
        color: #dd2241 !important;
        transition: none !important;
        flex-shrink: 0;
    }
    
    .search-mobile-btn:active i {
        transform: none !important;
    }
    
    /* Text - inline cu icon */
    .search-mobile-btn span {
        font-size: 12px !important;
        font-weight: 600;
        color: #333 !important;
        letter-spacing: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Ascunde butonul Submit */
    .search-mobile-submit {
        display: none !important;
    }
    
    /* =======================================
       4. NR REZULTATE - COMPACT
       ======================================= */
    
    .two_columns .right .results {
        display: block !important;
        width: 100% !important;
        background: #fff;
        padding: 8px 20px !important; /* Padding redus */
        margin: 0 0 12px 0 !important; /* Margin redus */
        border-bottom: 1px solid #e5e5e5;
        font-size: 10px !important; /* Mai mic */
        font-weight: 600;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: "Merriweather Sans", sans-serif;
    }
    
    /* Accent bar roșu */
    .two_columns .right .results::before {
        content: '';
        display: inline-block;
        width: 3px;
        height: 10px !important; /* Mai mic */
        background: #dd2241;
        border-radius: 2px;
        margin-right: 6px !important; /* Mai mic */
        vertical-align: middle;
    }
    
    /* =======================================
       5. LISTING - Spacing optimizat
       ======================================= */
    
    .listing_furnizori {
        display: block !important;
        width: 100% !important;
        margin-top: 0;
    }
    
    .anunturi.top-mobile-display {
        display: block !important;
        width: 100% !important;
        margin-bottom: 15px;
    }
    
    .containerr {
        padding: 0 20px;
    }
}

/* ============================================
   DESKTOP - 100% Neschimbat
   ============================================ */
@media (min-width: 769px) {
    .breadcrumb {
        display: block !important;
    }
    
    .two_columns .right .results {
        font-size: 14px;
        color: #595959;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
}
