.hero-wrapper-744bc575 {
    display: flex;
    flex-wrap: wrap;
    background-color: #FAF8F2;
    padding: 40px;
    gap: 40px;
    font-family: 'Inter', sans-serif;
    color: #2F3B36;
}

.hero-left-col {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right-col {
    flex: 1.2;
    min-width: 300px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

/* Typography & Content */
.top-rating {
    display: inline-flex;
    align-items: center;
    border: 1px solid #E2DCC8;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    margin-bottom: 30px;
    width: fit-content;
}
.top-rating .stars {
    color: #B59341;
    margin-right: 8px;
    letter-spacing: 2px;
}

.textSwiper-744bc575 {
    width: 100%;
}

.text-slide-content .subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #B59341;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.text-slide-content .subtitle .line {
    width: 30px;
    height: 1px;
    background-color: #B59341;
    margin-right: 12px;
}

.text-slide-content .title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #1F4539;
    margin: 0 0 20px 0;
}
.text-slide-content .title .highlight {
    color: #B59341;
}

.text-slide-content .desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    max-width: 480px;
    margin-bottom: 30px;
}

/* Buttons */
.action-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.action-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.action-buttons .btn-primary {
    background-color: #B59341;
    color: #fff;
    border: 1px solid #B59341;
}
.action-buttons .btn-primary:hover {
    background-color: #9c7f37;
}
.action-buttons .btn-outline {
    background-color: transparent;
    color: #1F4539;
    border: 1px solid #1F4539;
}

/* Pills */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.feature-pills .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid #E2DCC8;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}
.feature-pills .pill svg { color: #1F4539; }

/* Stats */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 24px 0;
    border-top: 1px solid #E2DCC8;
    border-bottom: 1px solid #E2DCC8;
    margin-bottom: 30px;
}
.stat-item .stat-val {
    font-size: 28px;
    font-weight: 800;
    color: #1F4539;
    display: flex;
    align-items: baseline;
}
.stat-item .stat-val span {
    font-size: 14px;
    color: #B59341;
    margin-left: 4px;
}
.stat-item .stat-label {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}

/* Navigation */
.slider-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.nav-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}
.swiper-button-prev-custom, .swiper-button-next-custom {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
}
.swiper-pagination-custom {
    display: flex;
    gap: 6px;
}
.swiper-pagination-custom .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
}
.swiper-pagination-custom .swiper-pagination-bullet-active {
    background: #1F4539;
    width: 20px;
    border-radius: 4px;
}
.progress-bar-container {
    flex: 1;
    height: 2px;
    background: #E2DCC8;
    position: relative;
    border-radius: 2px;
    min-width: 100px;
}
.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #B59341;
    transition: width 0.3s ease;
}
.fraction-pagination {
    font-size: 12px;
    font-weight: 600;
    color: #B59341;
}

/* Image Column */
.imgSwiper-744bc575 {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 24px;
}
.imgSwiper-744bc575 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlays */
.overlay-price {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.overlay-price .price-val { font-size: 24px; font-weight: 800; color: #B59341; }
.overlay-price .price-label { font-size: 10px; font-weight: 700; color: #777; margin-bottom: 8px; }
.overlay-price .price-indicator { font-size: 10px; font-weight: 500; display: flex; align-items: center; gap: 4px; }
.overlay-price .dot { width: 6px; height: 6px; background: #B59341; border-radius: 50%; }

.overlay-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.overlay-timer {
    position: absolute;
    bottom: 90px;
    right: 20px;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
}
.timer-val { font-size: 24px; font-weight: 800; color: #1F4539; }
.timer-label { font-size: 10px; color: #777; margin-bottom: 6px; }
.timer-sub { font-size: 10px; color: #B59341; display: flex; align-items: center; gap: 4px; font-weight: 600; }

.overlay-banner {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #FAF8F2;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}
.banner-icon { width: 40px; height: 40px; background: #1F4539; color: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; min-width: 40px; }
.banner-text { flex: 1; }
.banner-text .b-title { font-weight: 700; font-size: 14px; color: #1F4539; }
.banner-text .b-sub { font-size: 11px; color: #777; }
.banner-phone { font-weight: 700; font-size: 14px; color: #B59341; display: flex; align-items: center; gap: 6px; }

/* Responsive Adjustments */
@media(max-width: 1024px) {
    .hero-wrapper-744bc575 { padding: 30px; gap: 30px; }
    .text-slide-content .title { font-size: 36px; }
    .imgSwiper-744bc575 { min-height: 500px; }
    .stats-row { gap: 20px; }
}

@media(max-width: 768px) {
    .hero-wrapper-744bc575 { 
        flex-direction: column; 
        padding: 20px; 
    }
    .hero-left-col { order: 2; }
    .hero-right-col { order: 1; }
    
    .text-slide-content .title { font-size: 32px; }
    .text-slide-content .desc { font-size: 15px; }
    .imgSwiper-744bc575 { min-height: 400px; }
    
    .overlay-banner { flex-direction: column; text-align: center; padding: 12px; }
    .banner-icon { margin: 0 auto; }
    
    .stats-row { justify-content: space-between; }
    .stat-item .stat-val { font-size: 24px; }
}

@media(max-width: 480px) {
    .text-slide-content .title { font-size: 28px; }
    .action-buttons .btn { width: 100%; }
    .stats-row { flex-direction: column; align-items: center; text-align: center; }
    .imgSwiper-744bc575 { min-height: 350px; }
    .overlay-price .price-val { font-size: 20px; }
    .timer-val { font-size: 20px; }
}