.search-empty-wrapper {
    padding: 60px 15px;
    font-family: inherit;
    color: #111;
}

.search-empty-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0 auto 50px auto;
    max-width: 850px;
    width: 100%;
}

.search-empty-header-row.no-image {
    justify-content: center;
}

.search-empty-header-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-empty-header-image img {
    max-width: 100%;
    height: auto;
    max-height: 270px;
    object-fit: contain;
}

.search-empty-header-text {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.search-empty-header-row.no-image .search-empty-header-text {
    align-items: center;
    text-align: center;
    max-width: 600px;
}

.empty-state-sad-face {
    margin-bottom: 15px;
}

.empty-state-sad-face svg {
    width: 32px;
    height: 32px;
    stroke: #000;
}

.search-empty-msg {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    line-height: 1.25;
    margin: 0 0 10px 0;
}

.search-empty-submsg {
    font-size: 14px;
    color: #555;
    margin: 0 0 20px 0;
}

.search-empty-input-group {
    display: flex;
    width: 100%;
    max-width: 500px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

.search-empty-input-group input {
    flex: 1;
    border: none !important;
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
    outline: none !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #000 !important;
}

.search-empty-input-group input:hover,
.search-empty-input-group input:focus {
    background: #fff !important;
    color: #000 !important;
}

.search-empty-input-group button {
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    padding: 0 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.search-empty-input-group button:hover,
.search-empty-input-group button:focus,
.search-empty-input-group button:active {
    background: #222 !important;
    color: #fff !important;
}

.search-empty-section-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #555;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: left;
}

.search-empty-categories {
    margin-bottom: 60px;
}

.search-empty-btn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.search-empty-cat-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background-color: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    text-decoration: none !important;
    color: #111 !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.btn-left-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-btn-icon {
    width: 22px;
    height: 22px;
    color: #111;
    stroke-width: 1.5;
}

.btn-text {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.category-btn-arrow {
    width: 18px;
    height: 18px;
    color: #a0a0a0;
    transition: transform 0.25s ease, color 0.25s ease;
}

.search-empty-cat-btn:hover {
    border-color: #111;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.search-empty-cat-btn:hover .category-btn-arrow {
    transform: translateX(4px);
    color: #111;
}

.search-empty-promo {
    margin-bottom: 60px;
}

.search-empty-carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.search-empty-carousel-track-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.search-empty-carousel-track-wrapper::-webkit-scrollbar {
    display: none;
}

.search-empty-cards-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(20% - 16px);
    gap: 20px;
    width: 100%;
}

.search-empty-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.search-empty-arrow:hover {
    background: #111;
    color: #fff;
    border-color: #111;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.search-empty-arrow.arrow-left {
    left: -22px;
}

.search-empty-arrow.arrow-right {
    right: -22px;
}

.search-empty-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #fcfcfc;
    border: 1px solid #efefef;
    aspect-ratio: 3.2 / 4;
    transition: box-shadow 0.35s ease, transform 0.3s ease;
}

.card-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.card-name {
    font-size: 13px;
    font-weight: 500;
    color: #111;
    display: block;
    text-align: center;
    letter-spacing: 0.2px;
}

.search-empty-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.search-empty-card:hover .card-img {
    transform: scale(1.03);
}

.search-empty-card:hover .card-footer {
    background: rgba(255, 255, 255, 0.95);
}

.search-empty-benefits-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #f5f5f5;
    padding: 20px 15px;
    border-radius: 4px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.search-empty-benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-width: 0;
}

.benefit-item-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.benefit-item-image img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.benefit-item-text {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: left;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
    max-width: 140px;
    flex: 1;
}

.benefit-item-image + .benefit-item-text {
    border-left: 1px solid #dcdcdc;
    padding-left: 15px;
}

@media (max-width: 991px) {
    .search-empty-btn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .search-empty-cards-grid {
        grid-auto-columns: calc(25% - 15px);
    }
}

@media (max-width: 767px) {
    .search-empty-wrapper {
        padding: 40px 10px;
    }
    .search-empty-header-row {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
    }
    .search-empty-header-text {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .search-empty-msg {
        font-size: 24px;
    }
    .search-empty-btn-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .search-empty-cat-btn {
        padding: 16px 20px;
    }
    .search-empty-cards-grid {
        grid-auto-columns: calc(33.333% - 10px);
        gap: 15px;
    }
    .search-empty-carousel-track-wrapper {
        scrollbar-width: thin;
        scrollbar-color: #d0d0d0 transparent;
        padding-bottom: 12px;
    }
    .search-empty-carousel-track-wrapper::-webkit-scrollbar {
        display: block;
        height: 4px;
    }
    .search-empty-carousel-track-wrapper::-webkit-scrollbar-track {
        background: #f5f5f5;
        border-radius: 10px;
    }
    .search-empty-carousel-track-wrapper::-webkit-scrollbar-thumb {
        background: #d0d0d0;
        border-radius: 10px;
    }
    .search-empty-arrow {
        display: none;
    }
    .search-empty-benefits-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        padding: 10px;
        margin-top: 40px;
    }
    .search-empty-benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        box-sizing: border-box;
    }
    .search-empty-benefit-item:nth-child(1) {
        border-right: 1px solid #e2e2e2;
        border-bottom: 1px solid #e2e2e2;
        padding: 15px 10px 20px 10px;
    }
    .search-empty-benefit-item:nth-child(2) {
        border-bottom: 1px solid #e2e2e2;
        padding: 15px 10px 20px 10px;
    }
    .search-empty-benefit-item:nth-child(3) {
        border-right: 1px solid #e2e2e2;
        padding: 20px 10px 15px 10px;
    }
    .search-empty-benefit-item:nth-child(4) {
        padding: 20px 10px 15px 10px;
    }
    .benefit-item-image {
        height: 35px;
    }
    .benefit-item-image img {
        height: 35px;
        max-width: 80px;
    }
    .benefit-item-text {
        text-align: center;
    }
    .benefit-item-image + .benefit-item-text {
        border-left: none;
        padding-left: 0;
    }
}

