.banner-banner {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #222;
}

.banner-slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(.4, 0, .2, 1);
    z-index: 1;
}

.banner-slide-inner.banner-next,
.banner-slide-inner.banner-prev {
    z-index: 2;
}

.banner-slide-inner.banner-next {
    transform: translateX(100%);
}

.banner-slide-inner.banner-prev {
    transform: translateX(-100%);
}

.banner-slide-inner.banner-active {
    z-index: 3;
    transform: translateX(0);
}

.banner-slide-inner.banner-anim-left {
    animation: banner-slideInLeft 0.6s forwards;
}

.banner-slide-inner.banner-anim-right {
    animation: banner-slideInRight 0.6s forwards;
}

@keyframes banner-slideInLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes banner-slideInRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.banner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 30px 0 30px;
    gap: 18px;
}

.banner-logo {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 6px;
    line-height: 1;
}

.banner-logo span {
    font-size: 18px;
    display: block;
    font-weight: 400;
    letter-spacing: 2px;
}

.banner-menu {
    display: flex;
    flex: 1;
    justify-content: space-between;
    font-size: 14px;
}

.banner-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: .4s;
}

.banner-menu a:hover::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: -4px;
    left: 0;
}

.banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 200px;
    max-width: 700px;
    position: relative;
    z-index: 10;
}

.banner-content h2 {
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 10px 0;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.banner-content .banner-detail-link {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 17px;
    margin-top: 16px;
    display: inline-block;
}

.banner-content .banner-detail-link:after {
    content: '›';
    margin-left: 6px;
    font-size: 18px;
}

.banner-socials {
    position: fixed;
    bottom: 82px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}

.banner-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.2s;
}

.banner-socials a:hover {
    background: #555;
}

.banner-call-btn {
    position: fixed;
    left: 24px;
    bottom: 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 32px;
    display: flex;
    align-items: center;
    padding: 8px 24px 8px 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 10;
}

.banner-call-btn:hover {
    color: var(--secondary-color);
}

.banner-call-btn .banner-icon {
    margin-right: 10px;
}

.banner-slide-dots {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.banner-slide-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    cursor: pointer;
    transition: transform 0.2s;
}

.banner-slide-dot.banner-active {
    background: #fff;
}

@media (max-width: 900px) {

    .banner-header {
        display: none;
    }

    .banner-content {
        padding-left: 24px;
        padding-right: 24px;
        max-width: 100%;
        margin-top: -20%;
    }
}

@media (max-width: 600px) {
    .banner-header {
        flex-direction: column;
        padding: 16px;
    }

    .banner-content {
        padding-left: 16px;
    }

    .banner-logo {
        font-size: 32px;
    }

    .banner-content h1 {
        font-size: 28px;
    }
}

.banner-banner button[aria-label] {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.banner-banner button[aria-label="Previous slide"] {
    left: 32px;
}

.banner-banner button[aria-label="Next slide"] {
    right: 32px;
}

.search-icon {
    cursor: pointer;
    font-size: 20px;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
}

.search-popup {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: #fff;
    width: 400px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.search-popup input {
    width: 100%;
    padding: 15px;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
}

.result-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 5px;
}

.result-item .info {
    flex: 1;
}

.info strong {
    display: block;
    font-size: 14px;
}

.info .price {
    color: #d4af37;
    font-weight: bold;
}

.no-results {
    padding: 15px;
    font-style: italic;
    text-align: center;
}

.header-row {
    padding: 10px 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    background: #f8f8f8;
}