/* ============================================================================
   BANNER SLIDER - PREMIUM CAROUSEL WITH AUTO-PLAY
   FULLY RESPONSIVE - MOBILE FIRST APPROACH
   ============================================================================ */

/* =========================== BASE CONTAINER ============================= */

.banner-slider-wrapper {
    position: relative;
    z-index: 9;
    margin: 0 16px 8px;
    padding-bottom: 20px;       /* room for the hanging badge */
    border-radius: 16px;
    overflow: hidden;           /* fallback for older browsers */
    overflow-x: clip;           /* clips carousel slides left/right */
    overflow-y: visible;        /* lets the badge hang below the card */
}

.banner-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: slideUpBanner 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    height: 95px;
}

/* =========================== ANIMATIONS ============================= */

@keyframes slideUpBanner {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.15);
        filter: brightness(1.3);
    }
}

@keyframes checkmarkBounce {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) translateY(-4px);
        opacity: 0.95;
    }
}

@keyframes checkmarkAppear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =========================== CAROUSEL LAYOUT ============================= */

.banner-container {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    flex: 1;
    position: relative;
    border-radius: 20px;
}

.banner-carousel {
    display: flex;
    gap: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    border-radius: 20px;
}

.banner-carousel.auto-play {
    animation: none;
}

/* =========================== BANNER ITEM BASE ============================= */

.banner-item {
    flex-shrink: 0;
    width: 100%;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fff9f0 0%, #fff1dc 50%, #ffeacc 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 165, 116, 0.25);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.banner-item:hover {
    transform: scale(1.01);
}

/* =========================== BANNER BADGE ============================= */

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #1f2937;
    white-space: nowrap;
    z-index: 3;
    position: relative;
}

.banner-badge svg {
    flex-shrink: 0;
}

/* =========================== BANNER CONTENT ============================= */

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
    z-index: 2;
    position: relative;
    padding: 0 12px;
}

.banner-title {
    font-size: 16px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.banner-description {
    font-size: 11px;
    color: #4b5563;
    line-height: 1.3;
    margin: 0;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================== BUTTONS ============================= */

.banner-cta {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.95);
    color: #c4956f;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-top: 8px;
}

.banner-cta:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Glass Button Base */
.glass-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.glass-btn:hover::before {
    left: 100%;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2),
                0 6px 16px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.glass-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1),
                0 2px 6px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.glass-btn span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

/* Premium Button with Icon */
.premium-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 11px 18px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.25) 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 6px;
    position: relative;
    overflow: hidden;
}

.premium-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.premium-btn:hover::after {
    left: 100%;
}

.premium-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.35) 100%) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25) !important;
}

.premium-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.premium-btn:hover .btn-icon {
    transform: scale(1.15) rotate(-12deg);
}

/* =========================== REVIEW BANNER SPECIAL ============================= */

.review-banner {
    background: linear-gradient(135deg, #fff2ec 0%, #ffd8c4 55%, #ffc8ae 100%);
    border-color: rgba(255, 107, 53, 0.28);
    overflow: visible;          /* allow the hanging badge to show below */
}

/* ── Google Reviews hanging badge ── */
.google-hanging-badge {
    position: absolute;
    bottom: 50px;
    left: 74%;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    z-index: 20;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    padding: 4px 10px 4px 5px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    backdrop-filter: blur(20px) saturate(1.8);
    border: 1.5px solid rgba(255, 255, 255, 0.98);
    border-radius: 99px;
    box-shadow:
        0 3px 14px rgba(66, 133, 244, 0.22),
        0 1px 5px  rgba(0, 0, 0, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.25s ease, box-shadow 0.25s ease;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.google-hanging-badge:hover {
    -webkit-transform: translate(-50%, calc(50% - 2px));
    transform: translate(-50%, calc(50% - 2px));
    box-shadow:
        0 5px 20px rgba(66, 133, 244, 0.32),
        0 2px 8px  rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.ghb-g-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
}

.ghb-stars {
    font-size: 10px;
    color: #FBBC04;
    letter-spacing: 0.4px;
    line-height: 1;
}

.ghb-label {
    font-size: 9px;
    font-weight: 600;
    color: #3c4043;
    letter-spacing: 0.2px;
    line-height: 1;
}

/* very small screens */
@media (max-width: 360px) {
    .google-hanging-badge { gap: 4px; padding: 3px 8px 3px 4px; }
    .ghb-g-icon            { width: 17px; height: 17px; }
    .ghb-stars             { font-size: 9px; }
    .ghb-label             { font-size: 8px; }
}

/* =========================== WIFI BANNER SPECIAL ============================= */

.wifi-banner {
    background: linear-gradient(135deg, #e8f9fc 0%, #baedf8 55%, #96e4f5 100%);
    border-color: rgba(6, 182, 212, 0.28);
}

.wifi-banner .banner-badge {
    background: rgba(6, 182, 212, 0.15);
    color: #0891b2;
}

.wifi-banner .banner-badge svg {
    color: #0891b2;
}

.review-content {
    max-width: calc(100% - 110px);
    flex: 1;
}

.review-btn {
    padding: 11px 18px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%) !important;
    border: 2px solid rgba(255, 107, 53, 0.5) !important;
    color: #ffffff !important;
    margin-top: 8px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.28) !important;
    gap: 8px;
    border-radius: 10px !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.review-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.review-btn:hover::before {
    left: 100%;
}

.review-btn:hover {
    background: linear-gradient(135deg, #FF5A1F 0%, #FF7A32 100%) !important;
    border-color: rgba(255, 107, 53, 0.8) !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.35) !important;
}

.review-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.2) !important;
}

.review-btn .btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-btn:hover .btn-icon {
    transform: scale(1.2) rotate(-8deg);
}

/* =========================== BANNER VISUAL ============================= */

.banner-visual {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-left: auto;
    z-index: 1;
}

.google-badge-visual {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Google Review Button - Glass Style */
.google-review-btn {
    background: rgba(255, 255, 255, 0.55) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    padding: 14px 20px !important;
    font-size: 13px !important;
    gap: 10px;
    border-radius: 14px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) saturate(1.8);
    margin-top: 0 !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.google-review-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.google-review-btn:hover::before {
    left: 100%;
}

.google-review-btn:hover {
    background: rgba(255, 255, 255, 0.75) !important;
    border-color: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
    transform: translateY(-3px);
}

.google-review-btn:active {
    transform: translateY(-1px);
}

.google-badge-visual .btn-icon,
.google-review-btn .google-icon {
    width: 26px !important;
    height: 26px !important;
    transition: transform 0.3s ease;
}

.google-review-btn .arrow-icon {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.google-review-btn:hover .arrow-icon {
    transform: translateX(3px);
}

.google-review-btn:hover .google-icon {
    transform: scale(1.1);
}

/* ============================================================================
   TYPE-BASED PROMOTIONAL BANNER SLIDES
   ============================================================================ */

.banner-item.type-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 250, 252, 0.8) 100%);
}

.banner-item.restaurant-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 160, 122, 0.05) 100%);
    border-color: rgba(255, 107, 53, 0.2);
}

.banner-item.pizzeria-banner {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.08) 0%, rgba(255, 127, 127, 0.05) 100%);
    border-color: rgba(230, 57, 70, 0.2);
}

.banner-item.bar-banner {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.08) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-color: rgba(123, 44, 191, 0.2);
}

.banner-item.icecream-banner {
    background: linear-gradient(135deg, rgba(247, 140, 107, 0.08) 0%, rgba(251, 191, 175, 0.05) 100%);
    border-color: rgba(247, 140, 107, 0.2);
}

.type-banner-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 10px 14px !important;
    font-size: 12px !important;
    font-weight: 600;
    gap: 6px;
    border: none !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.type-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.type-banner-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.type-banner-btn:hover svg {
    transform: translateX(3px);
}

/* Menu Icon */
.menu-icon {
    width: 65px;
    height: 65px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 6px rgba(255, 107, 53, 0.12));
}

.banner-item.info:hover .menu-icon {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(255, 107, 53, 0.25));
}

/* Rating Icon - Star with Circle Background */
.rating-icon {
    width: 65px;
    height: 65px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 6px rgba(255, 107, 53, 0.12));
}

.banner-item.success:hover .rating-icon {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(255, 107, 53, 0.25));
}

/* =========================== SLIDER BUTTONS ============================= */

.banner-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: #1f2937;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    font-weight: bold;
}

.banner-slider-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.banner-slider-btn.prev {
    left: 10px;
}

.banner-slider-btn.next {
    right: 10px;
}

/* =========================== SLIDER CONTROLS ============================= */

.banner-slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 0 20px;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(31, 41, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.banner-dot.active {
    background: #FF6B35;
    width: 12px;
    height: 12px;
    border-color: #FF6B35;
}

.banner-dot:hover {
    background: rgba(31, 41, 55, 0.5);
}

/* ============================================================================
   RESPONSIVE DESIGN - TABLET (768px - 1024px)
   ============================================================================ */

@media (min-width: 768px) {
    .type-banner-wrapper {
        margin: 0 24px 28px;
    }

    .type-banner-item {
        padding: 16px 50px 16px 20px;
        gap: 14px;
        height: 105px;
    }

    .type-banner-title {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .type-banner-description {
        font-size: 12px;
    }

    .type-banner-link {
        padding: 10px 14px;
        font-size: 12px;
    }

    .type-banner-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .banner-slider-wrapper {
        margin: 0 24px 28px;
    }

    .banner-item {
        height: 100px;
        padding: 18px 26px;
    }

    .banner-content {
        gap: 5px;
        padding: 0 16px;
    }

    .banner-title {
        font-size: 17px;
        line-height: 1.2;
        -webkit-line-clamp: 2;
    }

    .banner-description {
        font-size: 12px;
        line-height: 1.3;
    }

    .menu-icon {
        width: 70px;
        height: 70px;
    }

    .rating-icon {
        width: 70px;
        height: 70px;
    }

    .banner-visual {
        width: 85px;
        height: 85px;
    }

    .review-btn {
        padding: 9px 16px !important;
        font-size: 12px !important;
    }

    .premium-btn {
        padding: 8px 14px !important;
        font-size: 11px !important;
    }
}

/* ============================================================================
   RESPONSIVE DESIGN - DESKTOP (1024px+)
   ============================================================================ */

@media (min-width: 1024px) {
    .type-banner-wrapper {
        margin: 0 28px 32px;
    }

    .type-banner-item {
        padding: 18px 55px 18px 24px;
        gap: 16px;
        height: 110px;
    }

    .type-banner-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .type-banner-description {
        font-size: 13px;
    }

    .type-banner-link {
        padding: 11px 16px;
        font-size: 13px;
    }

    .type-banner-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .banner-slider-wrapper {
        margin: 0 28px 32px;
    }

    .banner-item {
        height: 105px;
        padding: 20px 28px;
    }

    .banner-content {
        gap: 6px;
        padding: 0 18px;
    }

    .banner-title {
        font-size: 18px;
        font-weight: 800;
        line-height: 1.25;
        -webkit-line-clamp: 2;
    }

    .banner-description {
        font-size: 12px;
        line-height: 1.4;
        font-weight: 500;
    }

    .banner-badge {
        padding: 6px 14px;
        font-size: 12px;
    }

    .menu-icon {
        width: 72px;
        height: 72px;
    }

    .rating-icon {
        width: 72px;
        height: 72px;
    }

    .banner-visual {
        width: 85px;
        height: 85px;
        margin-right: 0;
    }

    .review-btn {
        padding: 11px 20px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
    }

    .premium-btn {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }

    .glass-btn {
        padding: 9px 18px;
        font-size: 13px;
    }

    .btn-icon {
        width: 18px;
        height: 18px;
    }

    .review-btn .btn-icon {
        width: 20px;
        height: 20px;
    }

    .google-review-btn {
        padding: 11px 13px !important;
    }

    .google-review-btn .google-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .google-review-btn .arrow-icon {
        width: 17px;
        height: 17px;
    }

    .type-banner-btn {
        padding: 10px 14px !important;
        font-size: 13px !important;
    }

    .banner-slider-btn {
        width: 44px;
        height: 44px;
        font-size: 26px;
    }

    .banner-slider-btn.prev {
        left: 16px;
    }

    .banner-slider-btn.next {
        right: 16px;
    }

    .banner-slider-controls {
        margin-top: 18px;
        padding: 0 32px;
        gap: 12px;
    }
}

/* ============================================================================
   RESPONSIVE DESIGN - MOBILE SMALL (320px - 480px)
   ============================================================================ */

@media (max-width: 480px) {
    .type-banner-item {
        padding: 12px 40px 12px 12px;
        gap: 10px;
        height: 95px;
    }

    .type-banner-title {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .type-banner-description {
        font-size: 10px;
    }

    .type-banner-link {
        padding: 8px 10px;
        font-size: 11px;
    }

    .type-banner-slider-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .type-banner-slider-btn.prev {
        left: 6px;
    }

    .type-banner-slider-btn.next {
        right: 6px;
    }
}
        margin: 0 12px 20px;
    }

    .banner-slider {
        height: 95px;
    }

    .banner-item {
        height: 95px;
        padding: 12px 14px;
        flex-direction: row;
    }

    .banner-content {
        gap: 3px;
        padding: 0 8px;
        flex: 1;
        min-width: 0;
    }

    .banner-badge {
        position: absolute;
        top: 6px;
        left: 6px;
        padding: 4px 8px;
        font-size: 9px;
        z-index: 4;
    }

    .banner-badge svg {
        width: 12px;
        height: 12px;
    }

    .banner-title {
        font-size: 13px;
        font-weight: 800;
        line-height: 1.2;
        margin-top: 14px;
        -webkit-line-clamp: 2;
    }

    .banner-description {
        font-size: 10px;
        line-height: 1.2;
    }

    .banner-visual {
        width: 68px;
        height: 68px;
        margin-left: 6px;
        margin-right: 0;
    }

    .menu-icon {
        width: 55px;
        height: 55px;
    }

    .rating-icon {
        width: 55px;
        height: 55px;
    }

    .review-content {
        max-width: 100%;
    }

    .review-btn {
        padding: 8px 12px !important;
        font-size: 11px !important;
        margin-top: 4px;
        gap: 6px;
    }

    .review-btn .btn-icon {
        width: 14px;
        height: 14px;
    }

    .google-review-btn {
        padding: 8px 10px !important;
    }

    .google-review-btn .google-icon {
        width: 14px !important;
        height: 14px !important;
    }

    .google-review-btn .arrow-icon {
        width: 13px;
        height: 13px;
    }

    .type-banner-btn {
        padding: 8px 10px !important;
        font-size: 11px !important;
    }

    .premium-btn {
        padding: 8px 12px !important;
        font-size: 11px !important;
        gap: 4px;
    }

    .btn-icon {
        width: 14px;
        height: 14px;
    }

    .glass-btn {
        padding: 6px 12px;
        font-size: 11px;
        gap: 4px;
    }

    .banner-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .banner-slider-btn.prev {
        left: 6px;
    }

    .banner-slider-btn.next {
        right: 6px;
    }

    .banner-slider-controls {
        margin-top: 12px;
        padding: 0 12px;
        gap: 8px;
    }

    .banner-dot {
        width: 8px;
        height: 8px;
    }

    .banner-dot.active {
        width: 10px;
        height: 10px;
    }
}

/* ============================================================================
   RESPONSIVE DESIGN - MOBILE MEDIUM (481px - 640px)
   ============================================================================ */

@media (min-width: 481px) and (max-width: 640px) {
    .banner-slider-wrapper {
        margin: 0 16px 24px;
    }

    .banner-item {
        height: 97px;
        padding: 14px 18px;
    }

    .banner-content {
        gap: 4px;
        padding: 0 10px;
    }

    .banner-badge {
        padding: 5px 11px;
        font-size: 10px;
    }

    .banner-title {
        font-size: 15px;
        line-height: 1.2;
        -webkit-line-clamp: 2;
    }

    .banner-description {
        font-size: 11px;
        line-height: 1.2;
    }

    .menu-icon {
        width: 60px;
        height: 60px;
    }

    .rating-icon {
        width: 60px;
        height: 60px;
    }

    .banner-visual {
        width: 72px;
        height: 72px;
    }

    .review-btn {
        padding: 9px 14px !important;
        font-size: 12px !important;
        margin-top: 5px;
    }

    .review-btn .btn-icon {
        width: 16px;
        height: 16px;
    }

    .google-review-btn {
        padding: 9px 11px !important;
    }

    .google-review-btn .google-icon {
        width: 15px !important;
        height: 15px !important;
    }

    .google-review-btn .arrow-icon {
        width: 14px;
        height: 14px;
    }

    .premium-btn {
        padding: 9px 14px !important;
        font-size: 12px !important;
    }

    .btn-icon {
        width: 15px;
        height: 15px;
    }

    .glass-btn {
        padding: 7px 14px;
        font-size: 12px;
        gap: 4px;
    }

    .banner-slider-btn {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .banner-slider-controls {
        margin-top: 14px;
        padding: 0 16px;
        gap: 9px;
    }
}

/* ============================================================================
   RESPONSIVE DESIGN - TABLET SMALL (641px - 768px)
   ============================================================================ */

@media (min-width: 641px) and (max-width: 767px) {
    .banner-slider-wrapper {
        margin: 0 20px 26px;
    }

    .banner-item {
        height: 100px;
        padding: 16px 22px;
    }

    .banner-content {
        gap: 5px;
        padding: 0 14px;
    }

    .banner-badge {
        padding: 5px 11px;
        font-size: 11px;
    }

    .banner-title {
        font-size: 16px;
        line-height: 1.2;
        -webkit-line-clamp: 2;
    }

    .banner-description {
        font-size: 11px;
        line-height: 1.3;
    }

    .menu-icon {
        width: 66px;
        height: 66px;
    }

    .rating-icon {
        width: 66px;
        height: 66px;
    }

    .banner-visual {
        width: 78px;
        height: 78px;
    }

    .review-btn {
        padding: 10px 16px !important;
        font-size: 12px !important;
    }

    .review-btn .btn-icon {
        width: 17px;
        height: 17px;
    }

    .google-review-btn {
        padding: 10px 12px !important;
    }

    .google-review-btn .google-icon {
        width: 16px !important;
        height: 16px !important;
    }

    .google-review-btn .arrow-icon {
        width: 15px;
        height: 15px;
    }

    .type-banner-btn {
        padding: 9px 12px !important;
        font-size: 12px !important;
    }

    .premium-btn {
        padding: 10px 16px !important;
        font-size: 12px !important;
    }

    .btn-icon {
        width: 16px;
        height: 16px;
    }

    .glass-btn {
        padding: 8px 16px;
        font-size: 12px;
        gap: 5px;
    }

    .banner-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .banner-slider-controls {
        margin-top: 15px;
        padding: 0 24px;
        gap: 9px;
    }
}
