.comparation-table {
    width: 100%;
    margin: 20px 0;
    overflow-x: auto;
}

.comparation-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Minimální šířka tabulky */
}

.comparation-table th,
.comparation-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.comparation-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.comparation-table tr.group td {
    background-color: #f8f8f8;
    font-weight: bold;
    padding-top: 20px;
}

.comparation-table tr:hover {
    background-color: #f9f9f9;
}

/* Responzivní styly pro mobily */
@media screen and (max-width: 768px) {
    .comparation-table {
        margin: 10px -15px; /* Negativní margin pro full-width scroll na mobilech */
        padding: 0 15px;
    }
    
    .comparation-table table {
        font-size: 14px;
    }

    .comparation-table th,
    .comparation-table td {
        padding: 8px;
    }
    
    /* První sloupec fixní */
    .comparation-table th:first-child,
    .comparation-table td:first-child {
        position: sticky;
        left: 0;
        background-color: #fff;
        z-index: 1;
        border-right: 1px solid #e0e0e0;
    }
    
    .comparation-table tr.group td:first-child {
        background-color: #f8f8f8;
    }
    
    /* Stíny pro indikaci scrollování */
    .comparation-table::before,
    .comparation-table::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 5px;
        pointer-events: none;
    }
    
    .comparation-table::before {
        left: 0;
        background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0));
    }
    
    .comparation-table::after {
        right: 0;
        background: linear-gradient(to left, rgba(0,0,0,0.1), rgba(0,0,0,0));
    }
}

/* Pro velmi malé displeje */
@media screen and (max-width: 375px) {
    .comparation-table table {
        font-size: 13px;
    }
    
    .comparation-table th,
    .comparation-table td {
        padding: 6px;
    }
}


@import "https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap";
.box1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box1 .item {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #0000001a;
    background: #fff;
}

.box1 .item h2 {
    text-align: left;
    margin-bottom: 20px;
}

.box1 .item-content {
    display: flex;
    align-items: center;
}

.box1 .item img {
    width: 40%;
    border-radius: 10px;
    margin-right: 20px;
}

.box1 .item:nth-child(even) .item-content {
    flex-direction: row-reverse;
}

.box1 .item:nth-child(even) img {
    margin-right: 0;
    margin-left: 20px;
}

.box1 .item .text {
    flex: 1;
    text-align: left;
}

 .box1 .item .video-container {
    width: 50%;
    border-radius: 10px;
    margin-right: 20px;
    padding-bottom: 28%;
   
}

.box1 .item:nth-child(even) img, .box1 .item:nth-child(even) .video-container {
    margin-right: 0;
    margin-left: 20px;
}


.rs-nav-item ul {
    list-style-type: none;
    padding-left: 0;
}

.rs-nav-item ul li:before {
    content: none;
}


.video-title {
    text-align: center;
    margin-bottom: 20px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 10px #0000004d;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.rw-install-section {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    max-width: 890px;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px #0000001a;
}

.rw-install-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 30px;
    background: linear-gradient(to right,#4caf50,#00a651);
    color: #fff;
    text-align: left;
}

.rw-install-main-title {
    font-size: 32px;
    margin: 0;
    line-height: 1.2;
    color: #fff;
}

.rw-install-main-title strong {
    font-weight: 590;
}

.rw-install-main-title span {
    font-weight: 300;
}

.rw-install-main-subtitle {
    font-weight: 300;
    font-size: 20px;
    color: #fff;
    margin-top: 5px;
}

.rw-install-logo img {
    max-height: 90px;
    width: auto;
    display: block;
}

.rw-install-content {
    display: flex;
    padding: 20px;
    gap: 20px;
}

.rw-install-product {
    flex: 1.2;
    position: relative;
}

.rw-install-product__image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.rw-install-product__image img {
    width: 100%;
    height: auto;
}

.rw-install-product__overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: stretch;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px #0003;
}

.rw-install-product__overlay-left {
    background-color: #ff4d4d;
    color: #fff;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rw-install-product__overlay-sleva {
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
    text-transform: uppercase;
}

.rw-install-product__overlay-dnes {
    font-size: 16px;
    line-height: 1;
}

.rw-install-product__overlay-right {
    background-color: #c00;
    color: #fff;
    font-weight: 700;
    font-size: 26px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rw-install-product__button {
    margin-top: 10px;
    padding: 15px 20px;
    background: #00a651;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 580;
    cursor: pointer;
    width: 60%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: background-color .3s ease;
}

.rw-install-product__button:hover {
    background-color: #000;
}

.rw-install-features {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}

.rw-install-feature {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.rw-install-feature__icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}

.rw-install-feature__title {
    font-size: 16px;
    font-weight: 600;
    color: #00a651;
    margin-bottom: 4px;
}

.rw-install-feature__title a {
    color: #4386fc;
    text-decoration: underline;
    transition: color .3s ease, text-decoration .3s ease;
}

.rw-install-feature__title a:hover {
    color: #4386fc;
    text-decoration: none;
}

.rw-install-feature__text {
    font-size: 14px;
    color: #666;
}

.yuka-product, .yuka-mosaic, .robo-mower-specs {
    max-width: 1240px;
    margin: 0 auto;
    box-sizing: border-box;
}

.rw-install-section {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px #0000001a;
}

.rw-install-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 11px 30px;
    background: linear-gradient(to right,#4caf50,#00a651);
    color: #fff;
}

.rw-install-main-title strong {
    font-weight: 550;
}

.rw-install-product__button {
    margin-top: 10px;
    padding: 15px 20px;
    background: #00a651;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    width: 60%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: background-color .3s ease;
}

.rw-install-feature__title a {
    color: #00a651;
    text-decoration: underline;
    transition: color .3s ease, text-decoration .3s ease;
}

.rw-install-feature__title a:hover {
    color: #000;
    text-decoration: none;
}

.robo-mower-specs {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px #0000000d;
}

.robo-mower-specs .robo-mower-row {
    display: flex;
    flex-wrap: wrap;
}

.robo-mower-specs .robo-mower-column {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.robo-mower-specs .robo-mower-column:first-child {
    border-right: 1px solid #eaeaea;
}

.robo-mower-specs h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
}

.robo-mower-specs ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.robo-mower-specs .tech-specs li {
    margin-bottom: 5px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    padding: 5px;
}

.robo-mower-specs .tech-specs li:nth-child(even) {
    background-color: #f5f5f5;
}

.robo-mower-specs .tech-specs strong {
    font-weight: 600;
    min-width: 200px;
    margin-right: 10px;
    color: #333;
}

.robo-mower-specs .b-package__list {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
}

.robo-mower-specs .b-package__item {
    width: calc(33.33% - 20px);
    margin: 10px;
    text-align: center;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.robo-mower-specs .b-package__image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
    border: 1px dashed #ccc;
    border-radius: 4px;
    padding: 5px;
}

.robo-mower-specs .b-package__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.robo-mower-specs .b-package__text {
    width: 90px;
    text-align: center;
}

.robo-mower-specs .b-package__item a {
    color: #333;
    text-decoration: none;
}

.robo-mower-specs .b-package__item a:hover {
    text-decoration: underline;
}

.yuka-mosaic {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    grid-auto-rows: minmax(160px,auto);
    gap: 20px;
    padding: 20px 0;
}

.yuka-mosaic .mosaic-item {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 2%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.yuka-mosaic .mosaic-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yuka-mosaic .mosaic-item h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    margin: 0;
    padding: 10px;
    background-color: #00000080;
    width: 100%;
    font-weight: 550;
}

.yuka-mosaic #seceni-sbirani {
    grid-column: 1 / 7;
    grid-row: span 2;
}

.yuka-mosaic #automaticke-vysypavani {
    grid-column: 7 / 13;
    grid-row: span 2;
}

.yuka-mosaic #bez-obvodoveho-dratu {
    grid-column: 7 / 10;
    grid-row: 3 / 4;
}

.yuka-mosaic #hlasove-ovladani {
    grid-column: 10 / 13;
    grid-row: 3 / 4;
}

.yuka-mosaic #sprava-oblasti {
    grid-column: 7 / 13;
    grid-row: 4 / 5;
}

.yuka-mosaic #tisk-na-travnik {
    grid-column: 1 / 7;
    grid-row: 5 / 7;
}

.yuka-mosaic #vyhybani-prekazkam {
    grid-column: 7 / 13;
    grid-row: 5 / 7;
}

.yuka-mosaic #novy-box {
    grid-column: 1 / 7;
    grid-row: 3 / 5;
}

.yuka-product .box1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.yuka-product .box1 .item {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #0000001a;
    background: #fff;
    box-sizing: border-box;
}

.yuka-product .box1 .item h2 {
    text-align: left;
    margin-bottom: 20px;
}

.yuka-product .box1 .item-content {
    display: flex;
    align-items: center;
}

.yuka-product .box1 .item:nth-child(even) .item-content {
    flex-direction: row-reverse;
}

.yuka-product .box1 .item img {
   
    border-radius: 10px;
    margin-right: 20px;
}

.yuka-product .box1 .item:nth-child(even) img {
    margin-right: 0;
    margin-left: 20px;
}

.yuka-product .box1 .item .text {
    width: 100%;
    text-align: left;
}



.yuka-product .box1 .item.full-width img {
    width: 100%;
    margin-bottom: 20px;
}

.clickable-image:hover {
    transform: scale(1.02);
}

.yuka-product .yuka-security {
    margin-bottom: 40px;
}

.yuka-product .yuka-security h2 {
    text-align: center;
    margin-bottom: 20px;
}

.yuka-product .yuka-security-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.yuka-product .yuka-security-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
}

.yuka-product .yuka-security-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.yuka-product .yuka-security-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,#000000b3 0%,#0000 100%);
    height: 50%;
    transition: height .3s ease;
}

.yuka-product .yuka-security-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    color: #fff;
    z-index: 1;
    transition: bottom .3s ease;
}

.yuka-product .yuka-security-text h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.yuka-product .yuka-security-text p {
    font-size: 12px;
    margin: 0;
}

.yuka-product .yuka-security-item:hover .yuka-security-overlay {
    height: 70%;
}

.yuka-product .yuka-security-item:hover .yuka-security-text {
    bottom: 20px;
}

.yuka-product .box1 .item.full-width.dark-bg {
    color: #fff;
}

.yuka-product .box1 .item.full-width.dark-bg h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.yuka-product .box1 .item.full-width.dark-bg .yuka-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
    gap: 5px;
}

.yuka-product .box1 .item.full-width.dark-bg .yuka-feature-box {
    background-color: #ffffff1a;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
    background-color: #000;
}

.yuka-product .box1 .item.full-width.dark-bg .yuka-feature-box .feature-image {
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 5px;
}

.yuka-product .box1 .item.full-width.dark-bg .yuka-feature-box h3 {
    color: #fff;
    margin-bottom: 10px;
}

.yuka-product .box1 .item.full-width.dark-bg .yuka-feature-box p {
    color: #ccc;
    font-size: 14px;
}

.yuka-product .yuka-security-image img, .yuka-product .box1 .item.full-width.dark-bg .yuka-feature-box .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 10px #0000004d;
}


.yuka-product, .robo-mower-specs {
    max-width: 1200px;
    margin: 0 auto 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    color: #333;
}

.yuka-product .section-title {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.yuka-product .box1 .item-group {
    width: 100%;
    margin-bottom: 50px;
}










.yuka-product .box1 .item p {
    font-size: 14px;
    line-height: 1.5;
}

.yuka-product .box1 .item.full-width {
    width: 100%;
}

.yuka-product .box1 .item.full-width .item-content {
    flex-direction: column;
}

.yuka-product .box1 .item.full-width img {
    width: 100%;
    margin-top: 20px;
    order: 3;
}

.yuka-product .box1 .item.full-width .text {
    width: 100%;
    text-align: center;
   
}



.robo-mower-specs {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px #0000000d;
}

.robo-mower-specs .tech-specs li {
    margin-bottom: 10px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    padding: 5px;
}

.robo-mower-specs .b-package__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.robo-mower-specs .b-package__item {
    width: calc(33.33% - 14px);
    text-align: center;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.robo-mower-specs .b-package__image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
}

.robo-mower-specs .b-package__text {
    text-align: center;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.left-section, .right-section {
    width: 48%;
}

.section-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.gallery-preview {
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.gallery-preview img {
    width: 100%;
    height: auto;
    transition: transform .3s ease;
}

.video-wrapper {
    background-color: #f7f7f7;
    box-shadow: 0 0 20px #0003;
    margin-bottom: 20px;
    overflow: hidden;
}

.lawn-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0afa;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.lawn-modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-color: #191919e6;
    border-bottom: 1px solid #ffffff1a;
    position: relative;
}

.lawn-modal-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform .3s ease;
}

.lawn-modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    position: relative;
}

.lawn-modal-image-container {
    width: 55%;
    height: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lawn-modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px #0000004d;
    transition: transform .3s cubic-bezier(0.25,0.1,0.25,1);
}

.lawn-close, .lawn-prev, .lawn-next {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all .3s ease;
    background: #323232b3;
    border: none;
    width: 45px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.lawn-close:hover, .lawn-prev:hover, .lawn-next:hover {
    background: #505050e6;
}

.lawn-close {
    position: absolute;
    top: 20px;
    right: 40px;
}

.lawn-prev, .lawn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.lawn-prev {
    left: 40px;
}

.lawn-next {
    right: 40px;
}

.lawn-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    background-color: #323232b3;
    padding: 8px 16px;
    border-radius: 20px;
}

.gallery-preview:hover img, .lawn-modal-logo:hover {
    transform: scale(1.05);
}

.lawn-modal.active {
    display: flex;
    animation: fadeIn .3s ease-out;
}

.lawn-image-title {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    background-color: #323232b3;
    padding: 10px 20px;
    border-radius: 25px;
    max-width: 80%;
    text-align: center;
    margin-bottom: 20px;
}

.clickable-image {
    cursor: pointer;
    transition: transform .3s ease;
}



.more-photos-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #000000b3;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color .3s ease;
}

.more-photos-btn:hover {
    background-color: #000000e6;
}

.express-install {
    max-width: 500px;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px #00000014;
    font-family: 'Roboto', sans-serif;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.express-content {
    display: flex;
    align-items: stretch;
    padding: 0;
}

.express-icon-wrapper {
    width: 80px;
    background: linear-gradient(135deg,#4caf50,#45a049);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.express-icon {
    width: 55px;
    height: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.express-text {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.express-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
    line-height: 1.2;
}

.express-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #4caf50;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
}

.express-subtitle::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #4caf50;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 2px #4caf5033;
}

.express-note {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.rv-installation-options {
    font-family: 'Arial', sans-serif !important;
    background: #fff !important;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px #0000001a;
    padding-top: 8px;
}

form div {
    margin-bottom: -2px;
}

.rv-installation-options__title {
    font-size: 15px;
    color: #333 !important;
    margin: 0;
    padding: 15px 12px;
    background: #f8f9fa !important;
    border-bottom: 1px solid #e0e0e0;
}

.rv-installation-option {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
    height: 50px;
}

.rv-installation-option:last-child {
    border-bottom: none;
}

.rv-installation-option:hover {
    background-color: #f8f9fa !important;
}

.rv-installation-option__image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin-right: 15px;
}

.rv-installation-option__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    display: block;
}

.rv-installation-option__content {
    flex-grow: 1;
    padding-right: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rv-installation-option__title {
    font-size: 14px;
    color: #333 !important;
    margin: 0;
    font-weight: 500;
}

.rv-installation-option__price {
    font-size: 12px;
    color: #28a745 !important;
    font-weight: 700;
    margin-top: -8px;
}

.rv-installation-option__button {
    height: 30px;
    background-color: #5fbb2e !important;
    color: #fff !important;
    border: none;
    padding: 0 8px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color .2s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-sizing: border-box;
    margin-right: 10px;
}

.rv-installation-option__button:hover {
    background-color: #0056b3 !important;
}



.lawnbot-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    padding-top: 40px;
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    padding-top: 40px;
}

.lawnbot-divider {
    border: none;
    border-top: 2px dashed #e0e0e0;
    margin: 30px 0;
    width: 100%;
}

.lawnbot-container {
    max-width: 1240px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0 auto 25px;
    background-color: #fff;
    box-shadow: 0 10px 30px #0000001a;
    border-radius: 12px;
    overflow: hidden;
}

.lawnbot-header {
    background-color: #34495e;
    color: #fff;
    text-align: center;
    padding: 2rem 1.5rem;
    margin-bottom: 3rem;
}

.lawnbot-title {
    font-size: 2rem;
    margin: 0 0 1rem;
    font-weight: 700;
    letter-spacing: -.5px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.lawnbot-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: #4caf50;
    margin: 10px auto 0;
    border-radius: 2px;
}

.lawnbot-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lawnbot-section-title {
    color: #2c3e50;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

.lawnbot-section-title::after {
    content: '';
    display: block;
    width: 140px;
    height: 4px;
    background-color: #4caf50;
    margin: 10px auto 0;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.lawnbot-container p {
    font-size: 18px;
    margin-bottom: 15px;
}

.lawnbot-feature-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-column {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
}

.lawnbot-feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.lawnbot-feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    color: #00945e;
}

.lawnbot-feature-item {
    flex: 1 1 calc(50% - 0.75rem);
    background-color: #f1f3f5;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all .3s ease;
    box-shadow: 0 4px 6px #0000000d;
}

.lawnbot-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px #0000001a;
    border-color: #4caf50;
}

.lawnbot-feature-text {
    color: #34495e;
    font-weight: 500;
}

.lawnbot-image, .lawnbot-feature-image img, .lawnbot-step-image img, .lawnbot-faq-image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px #0000001a;
    transition: transform .3s ease;
}

.lawnbot-image:hover, .lawnbot-feature-image img:hover, .lawnbot-step-image img:hover {
    transform: scale(1.05);
}

.lawnbot-faq-image-container {
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lawnbot-step-list {
    flex: 1;
    max-width: 50%;
    flex: 1;
    margin-right: 20px;
}

.lawnbot-step-list li {
    counter-increment: step-counter;
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    text-align: left;
}

.lawnbot-step-list li::before {
    content: counter(step-counter);
    background-color: #4caf50;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: -2px;
}

.lawnbot-warning-box, .lawnbot-highlight-box {
    background-color: #fff9c4;
    border: 2px solid #fbc02d;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 20px 0;
    box-shadow: 0 4px 6px #0000000d;
    font-size: 18px;
}

.lawnbot-warning-box li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #333;
    padding-bottom: 5px;
    padding-top: 10px;
}

.lawnbot-warning-box li::before {
    content: "i";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #fbc02d;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
}

.lawnbot-highlight-box {
    text-align: center;
    font-weight: 590;
    font-size: 18px;
}

.lawnbot-faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s ease;
}

.lawnbot-faq-item:hover {
    box-shadow: 0 4px 6px #0000001a;
}

.lawnbot-faq-question {
    cursor: pointer;
    background-color: #f1f3f5;
    padding: 15px;
    margin: 0;
    transition: background-color .3s;
    font-weight: 600;
    color: #2c3e50;
    font-size: 20px;
}

.lawnbot-faq-question:hover {
    background-color: #e9ecef;
}

.lawnbot-faq-answer {
    display: none;
    padding: 15px;
    background-color: #fff;
    margin: 0;
    font-size: 18px;
}

.lawnbot-mosaic-container {
    max-width: 1240px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.lawnbot-mosaic-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.lawnbot-mosaic {
    display: flex;
    transition: transform .5s cubic-bezier(0.25,0.1,0.25,1);
    width: 300%;
}



.mosaic-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 2px solid #f0f0e0;
}

.mosaic-item-text {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-grow: 1;
}

.mosaic-item h3 {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
}

.mosaic-nav-btn {
    background-color: #fffc;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color .3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.mosaic-nav-btn:hover {
    background-color: #ffff;
}

.mosaic-nav-btn svg {
    fill: #4caf50;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.mosaic-nav {
    margin-top: 20px;
}

.mosaic-progress {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.mosaic-progress-bar {
    width: 0;
    height: 100%;
    background-color: #4caf50;
    transition: width .5s cubic-bezier(0.25,0.1,0.25,1);
}

.lawnbot-video-container {
    position: relative;
    height: 645px;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px #0000001a;
}

.lawnbot-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.lawnbot-expert-comment {
    background-color: #e8f5e9;
    border-left: 5px solid #4caf50;
    padding: 50px;
    margin: 40px 0;
    display: flex;
    align-items: flex-start;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 4px #0000000d;
    font-size: 18px;
    text-align: left;
    margin-top: 60px;
}

.lawnbot-expert-image {
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 2px 4px #0000001a;
}

.lawnbot-feature-list ul, .lawnbot-warning-box ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.lawnbot-expert-image {
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 2px 4px #0000001a;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.lawnbot-expert-content {
    flex: 1;
}

.lawnbot-image-item {
    width: 32%;
    margin-bottom: 2%;
    text-align: center;
    transition: transform .3s ease;
}

.lawnbot-image-item:hover {
    transform: translateY(-5px);
}

.lawnbot-image-caption {
    margin-top: 10px;
    font-size: 16px;
    color: #666;
}

.lawnbot-step-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 40px;
    padding-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.lawnbot-step-image {
    flex: 1;
    max-width: 50%;
}

.lawnbot-step-image img {
    height: auto !important;
    object-fit: cover;
}

.detail-bookmark ul {
    margin-left: 0 !important;
    list-style: none !important;
}

.faq-box {
    background-color: #f5f5f5;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 4px #0000001a;
    transition: box-shadow .3s ease;
    cursor: pointer;
}

.faq-box:hover {
    box-shadow: 0 4px 8px #0000001a;
}

.faq-question-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question {
    margin: 0;
    flex-grow: 1;
    padding-left: 20px;
    font-size: 20px;
}

.faq-answer {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px #0000001a;
    margin-top: 10px;
    display: none;
    font-size: 18px;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 700;
    color: #666;
    transition: transform .3s;
    margin-right: 20px;
}

.faq-box.active .faq-toggle {
    transform: rotate(180deg);
}

.modular-reviews .reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.modular-reviews .review {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px #00000026;
    transition: all .3s ease;
    cursor: pointer;
    overflow: hidden;
    text-align: left;
}

.modular-reviews .review.expanded {
    grid-column: span 3;
}

.modular-reviews .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.modular-reviews .review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.modular-reviews .review-name {
    font-weight: 700;
    margin: 0;
    font-size: 18px;
}

.modular-reviews .review-rating {
    color: #ffd700;
    font-size: 1.2em;
    margin-top: 5px;
}

.modular-reviews .review-content {
    line-height: 1.6;
    max-height: 4.8em;
    overflow: hidden;
    transition: max-height .3s ease;
    font-size: 16px;
}

.modular-reviews .review.expanded .review-content {
    max-height: none;
}

.modular-reviews .review-plus, .modular-reviews .review-minus {
    margin-top: 10px;
    display: none;
    font-size: 16px;
}

.modular-reviews .review.expanded .review-plus, .modular-reviews .review.expanded .review-minus {
    display: block;
}

.modular-reviews .review-plus h4, .modular-reviews .review-minus h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.modular-reviews .review-plus ul, .modular-reviews .review-minus ul {
    margin: 0;
    padding-left: 20px;
}

.modular-reviews .expand-button {
    background-color: #00945e;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color .3s ease;
    font-size: 16px;
    font-family: 'Roboto', Arial, sans-serif;
}

.modular-reviews .expand-button:hover {
    background-color: #0056b3;
}

.rs-container {
    max-width: 1240px;
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0 auto 25px;
    background-color: #fff;
    box-shadow: 0 10px 30px #0000001a;
    border-radius: 12px;
    overflow: hidden;
}

.rs-nav {
    padding: 2rem 1.5rem;
    padding-top: 40px;
}

.rs-nav-title {
    color: #2c3e50;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.rs-nav-title::after {
    content: '';
    display: block;
    width: 140px;
    height: 4px;
    background-color: #4caf50;
    margin: 3px auto 0;
    border-radius: 2px;
}

.rs-nav-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.rs-nav-list {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0 .5rem;
}

.rs-nav-item:before {
    content: none;
}

.rs-nav-item {
    flex: 0 1 calc(33.333% - 1rem);
    max-width: 200px;
    min-width: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all .3s ease;
    overflow: hidden;
    box-shadow: 0 4px 6px #0000000d;
    padding: 1rem;
    box-sizing: border-box;
}

.rs-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px #0000001a;
    border-color: #4caf50;
}

.rs-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    height: 100%;
}

.rs-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    transition: all .3s ease;
}

.rs-nav-item:hover .rs-icon {
    transform: scale(1.15) rotate(5deg);
}

.rs-nav-link span {
    font-size: 1rem;
    font-weight: 600;
    transition: color .3s ease;
}

.rs-nav-item:hover .rs-nav-link span {
    color: #4caf50;
}

.rs-nav-item > * {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lawnbot-feature-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
    padding-left: 90px;
    padding-top: 30px;
}

.lawnbot-feature-list > div {
    width: 100%;
}

.lawnbot-feature-list ul {
    list-style-type: none;
    padding-left: 0;
}

.lawnbot-feature-list li span {
    position: absolute;
    left: 0;
    top: 30%;
    transform: translateY(-50%);
    color: #00945e;
}

.modular-reviews {
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
    padding: 20px;
}

.modular-reviews .review {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px #00000026;
    transition: all .3s ease;
    cursor: pointer;
    overflow: hidden;
}

.modular-reviews .review-name {
    font-weight: 700;
    margin: 0;
}

.modular-reviews .review-content {
    line-height: 1.6;
    max-height: 4.8em;
    overflow: hidden;
    transition: max-height .3s ease;
}

.modular-reviews .review-plus, .modular-reviews .review-minus {
    margin-top: 10px;
    display: none;
}

.modular-reviews .review-plus h4, .modular-reviews .review-minus h4 {
    margin-bottom: 5px;
}

.modular-reviews .expand-button {
    background-color: #00945e;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color .3s ease;
}

.faq-question {
    margin: 0;
    flex-grow: 1;
    padding-left: 20px;
}

.faq-answer {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px #0000001a;
    margin-top: 10px;
    display: none;
}

#faq-box-1 .faq-answer {
    display: block;
}

.lawn-modal-logo:hover {
    transform: scale(1.05);
}



.lawn-image-title {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    background-color: #323232b3;
    padding: 10px 20px;
    border-radius: 25px;
    max-width: 80%;
    text-align: center;
}

.lawnbot-mosaic-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.mosaic-item {
    flex: 0 0 calc(33.33% - 16px);
    margin: 0 8px;
    text-align: center;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mosaic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px #0000001a;
}

.mosaic-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 2px solid #f0f0f0;
}

.mosaic-item-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
}

.mosaic-item h3 {
    padding: 15px;
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.mosaic-nav-btn {
    background-color: #fffc;
    border: none;
    width: 40px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color .3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.mosaic-progress {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 15px;
}

.mosaic-progress-bar {
    width: 0;
    height: 100%;
    background-color: #4caf50;
    transition: transform .5s cubic-bezier(0.25,0.1,0.25,1), width .5s cubic-bezier(0.25,0.1,0.25,1);
}

.lawnbot-expert-image {
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 2px 4px #0000001a;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 2px 4px #0000001a;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

form div {
    margin-bottom: -2px !important;
}

.rv-installation-option__title {
    font-size: 14px;
    color: #333 !important;
    margin: 0;
    font-weight: 590;
}

.mammotion-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mammotion-feature {
    flex: 1 0 calc(45% - 20px);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #0000001a;
    background: #fff;
    text-align: center;
}

.mammotion-feature img {
    width: 100%;
    border-radius: 10px;
}



.video-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.video-column {
    flex: 1;
    min-width: 300px;
}

.video-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px #0000001a;
    transition: box-shadow .3s ease;
}

.video-card:hover {
    box-shadow: 0 8px 20px #00000026;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}



.productContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.productContainer > div {
    width: 24%;
    margin-bottom: 20px;
    display: flex;
}



.custom-content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 5px #0000001a;
}


.rv-installation-options {
    font-family: 'Arial', sans-serif !important;
    background: #fff !important;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px #0000001a;
    margin-top: 15px;
}

@media screen and (max-width: 768px) {
    .box1 .item-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .box1 .item img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .box1 .item:nth-child(even) .item-content {
        flex-direction: column;
    }

    .box1 .item:nth-child(even) img {
        margin-left: 0;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .box1 .item-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .box1 .item .video-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        height: 100%;
        padding-bottom: inherit;
    }

    .box1 .item:nth-child(even) .item-content {
        flex-direction: column;
    }

    .box1 .item:nth-child(even) img, .box1 .item:nth-child(even) .video-container {
        margin-left: 0;
        margin-bottom: 20px;
    }
   
    .box1 .item h2 {
        text-align: center;
        margin-bottom: 20px;
   }
}

@media screen and (max-width: 600px) {
    .item {
        flex: 1 0 calc(100% - 40px);
    }

    .box1 .item h2 {
        text-align: center;
        margin-bottom: 20px;
   }

    .box1 .item .video-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        height: 100%;
        padding-bottom: inherit;
    }

}

@media (max-width: 767px) {
    .video-container {
        padding-bottom: 75%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .video-container {
        padding-bottom: 62.5%;
    }
}

@media screen and (max-width: 768px) {
    .rw-install-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }

    .rw-install-main-title {
        font-size: 28px;
    }

    .rw-install-main-subtitle {
        font-size: 18px;
    }

    .rw-install-logo {
        display: none;
    }

    .rw-install-content {
        flex-direction: column;
    }

    .rw-install-features {
        grid-template-columns: 1fr;
    }

    .rw-install-product__button {
        width: calc(100% - 30px);
        font-size: 16px;
        padding: 12px 15px;
        margin: 10px auto;
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .rw-install-main-title {
        font-size: 24px;
    }

    .rw-install-main-subtitle {
        font-size: 16px;
    }

    .rw-install-product__button {
        font-size: 14px;
        padding: 10px 12px;
    }
}

@media screen and (max-width: 768px) {
    .rw-install-section {
        display: flex;
        flex-direction: column;
    }

    .rw-install-product {
        order: -1;
    }

    .rw-install-header {
        order: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .rw-install-logo {
        margin-top: 10px;
    }

    .robo-mower-specs .robo-mower-column {
        flex: 100%;
        border-right: none;
    }

    .robo-mower-specs .robo-mower-column:first-child {
        border-bottom: 1px solid #eaeaea;
    }

    .robo-mower-specs .b-package__item {
        width: calc(50% - 20px);
    }

    .yuka-mosaic .mosaic-item {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        height: auto !important;
    }

    .yuka-product .box1 .item img, .yuka-product .box1 .item:nth-child(even) img {
        width: 100%;
        margin: 0 0 20px;
        order: -1;
    }

    .yuka-product .yuka-security-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .yuka-product .yuka-security-item {
        height: 200px;
    }

    .rw-install-content, .yuka-product .box1 .item-content, .yuka-product .box1 .item:nth-child(even) .item-content {
        flex-direction: column;
    }

    .rw-install-features, .yuka-mosaic, .yuka-product .box1 .item.full-width .yuka-features-grid, .yuka-product .box1 .item.full-width.dark-bg .yuka-features-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .yuka-product .yuka-security-grid {
        grid-template-columns: 1fr;
    }

    .robo-mower-specs .b-package__item {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .video-container {
        padding-bottom: 75%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .video-container {
        padding-bottom: 62.5%;
    }
}

@media screen and (max-width: 1024px) {
    .yuka-product .box1 .item:not(.full-width) {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 768px) {
    .yuka-product .box1 .item:not(.full-width), .robo-mower-specs .robo-mower-column, .robo-mower-specs .b-package__item {
        width: 100%;
    }

    .yuka-product .section-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .robo-mower-specs .b-package__item {
        width: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .lawn-modal-image-container {
        width: 90%;
        height: 90%;
    }

    .lawn-prev, .lawn-next {
        width: 40px;
        height: 40px;
    }

    .lawn-prev {
        left: 20px;
    }

    .lawn-next {
        right: 20px;
    }
}

@media (max-width: 767px) {
    .content-wrapper {
        flex-direction: column;
    }

    .left-section, .right-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .lawn-modal-header {
        padding: 15px 0;
    }

    .lawn-modal-logo {
        height: 40px;
    }

    .lawn-close {
        top: 15px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .lawn-counter, .lawn-image-title {
        font-size: 14px;
        padding: 6px 12px;
    }

    .lawn-image-title {
        bottom: 60px;
    }

    .video-container {
        padding-bottom: 75%;
    }

    .more-photos-btn {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .express-content {
        flex-direction: column;
    }

    .express-icon-wrapper {
        width: 100%;
        padding: 15px 0;
    }

    .express-text {
        text-align: center;
    }

    .express-subtitle {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .lawnbot-mosaic {
        width: 200%;
    }

    .mosaic-item {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .lawnbot-mosaic {
        width: 100%;
    }

    .mosaic-item {
        flex: 0 0 calc(100% - 20px);
        height: 260px;
    }

    .mosaic-item img {
        height: 180px;
    }

    .mosaic-item h3 {
        font-size: 14px;
 
    }

    .mosaic-nav-btn {
        width: 30px;
        height: 30px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }
}

@media (max-width: 900px) {
    .lawnbot-container {
        font-size: 15px;
    }

    .lawnbot-container p, .lawnbot-container ul, .lawnbot-container ol, .lawnbot-feature-list, .lawnbot-step-list, .lawnbot-warning-box, .lawnbot-highlight-box, .lawnbot-faq-answer, .lawnbot-expert-comment {
        font-size: 16px;
    }

    .faq-question, .lawnbot-faq-question {
        font-size: 18px;
    }

    .modular-reviews .review.expanded {
        grid-column: span 2;
    }

    .lawnbot-step-section {
        flex-direction: column;
    }

    .lawnbot-video-container {
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
    }

    .modular-reviews .reviews-container, .lawnbot-feature-list, .lawnbot-image-gallery {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 600px) {
    .lawnbot-container {
        font-size: 14px;
    }

    .lawnbot-container p, .lawnbot-container ul, .lawnbot-container ol, .lawnbot-feature-list, .lawnbot-step-list, .lawnbot-warning-box, .lawnbot-highlight-box, .lawnbot-faq-answer, .lawnbot-expert-comment {
        font-size: 15px;
    }

    .faq-question, .lawnbot-faq-question {
        font-size: 17px;
    }

    .modular-reviews .review.expanded {
        grid-column: span 1;
    }

    .modular-reviews .reviews-container, .lawnbot-feature-list, .lawnbot-image-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rs-nav-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .mosaic-item img {
    
        max-height: 400px;
    }

    .mosaic-nav-btn {
        width: 30px;
        height: 35px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .lawnbot-section {
        padding: .8rem;
    }

    .lawnbot-feature-item {
        flex: 1 1 100%;
    }

    .lawnbot-step-list, .lawnbot-step-image {
        max-width: 100%;
    }

    .lawnbot-step-image {
        margin-top: 1rem;
    }

    .lawnbot-step-list li {
        padding-left: 30px;
    }

    .lawnbot-step-list li::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .lawnbot-expert-comment {
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 14px;
    }

    .lawnbot-expert-image {
        display: none;
    }

    .lawnbot-expert-content {
        width: 100%;
    }

    .lawnbot-feature-list, .lawnbot-step-section {
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    .lawnbot-expert-comment {
        font-size: 16px;
    }

    .lawnbot-expert-image {
        width: 80px;
        height: 80px;
    }

    .mosaic-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .rs-nav-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .lawnbot-feature-list {
        padding-left: 0;
    }

    .lawnbot-feature-list > div {
        width: 100%;
    }

    .rs-nav-list {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 900px) {
    .modular-reviews .reviews-container {
        grid-template-columns: repeat(2,1fr);
    }

    .modular-reviews .review.expanded {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .modular-reviews .reviews-container {
        grid-template-columns: 1fr;
    }

    .modular-reviews .review.expanded {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .lawn-modal-header {
        padding: 15px 0;
    }

    .lawn-modal-logo {
        height: 40px;
    }

    .lawn-close {
        top: 15px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .lawn-counter, .lawn-image-title {
        font-size: 14px;
        padding: 6px 12px;
    }

    .lawn-image-title {
        bottom: 60px;
    }
}

@media (max-width: 768px) {
    .rs-nav-item {
        flex: 0 0 calc(50% - 1rem);
    }

 

    .mosaic-item img {
    
        max-height: 400px;
    }

    .mosaic-nav-btn {
        width: 30px;
        height: 35px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .lawnbot-section {
        padding: .8rem;
    }

    .lawnbot-feature-item {
        flex: 1 1 100%;
    }

    .lawnbot-step-list, .lawnbot-step-image {
        max-width: 100%;
    }

    .lawnbot-step-image {
        margin-top: 1rem;
    }

    .lawnbot-step-list li {
        padding-left: 30px;
    }

    .lawnbot-step-list li::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .lawnbot-expert-comment {
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 14px;
    }

    .lawnbot-expert-image {
        display: none;
    }

    .lawnbot-expert-content {
        width: 100%;
    }

    .lawnbot-feature-list, .lawnbot-step-section {
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    .lawnbot-expert-comment {
        font-size: 16px;
    }

    .lawnbot-expert-image {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .rv-installation-options {
        max-width: 100%;
        box-sizing: border-box;
    }

    .rv-installation-option {
        flex-wrap: wrap;
        height: auto;
        padding: 15px;
    }

    .rv-installation-option__image {
        margin-bottom: 10px;
    }

    .rv-installation-option__content {
        width: calc(100% - 65px);
        padding-right: 0;
        margin-bottom: 10px;
    }

    .rv-installation-option__title {
        white-space: normal;
    }

    .rv-installation-option__price {
        margin-top: 4px;
    }

    .rv-installation-option__button {
        width: 100%;
        margin-right: 0;
        margin-top: 10px;
    }
}

@media screen and (max-width: 600px) {
    .mammotion-feature {
        flex: 1 0 calc(100% - 40px);
    }
}

@media (max-width: 767px) {
    .video-column {
        max-width: 100%;
    }

    .showcase-title {
        font-size: 2em;
    }
}

@media (max-width: 1200px) {
    .productContainer > div {
        width: 32%;
    }
}

@media (max-width: 900px) {
    .productContainer > div {
        width: 49%;
    }
}

@media (max-width: 600px) {
    .productContainer > div {
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .flex-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .express-content {
        flex-direction: column;
    }

    .express-icon-wrapper {
        width: 100%;
        padding: 15px 0;
    }

    .express-text {
        text-align: center;
    }

    .express-subtitle {
        justify-content: center;
    }

    .rv-installation-option {
        flex-wrap: wrap;
        height: auto;
        padding: 15px;
    }

    .rv-installation-option__image {
        margin-bottom: 10px;
    }

    .rv-installation-option__content {
        width: calc(100% - 65px);
        padding-right: 0;
        margin-bottom: 10px;
    }

    .rv-installation-option__price {
        margin-top: 4px;
    }

    .rv-installation-option__button {
        width: 100%;
        margin-right: 0;
        margin-top: 10px;
    }

    .express-install, .rv-installation-options {
        max-width: 100%;
    }
}

.rw-art-tip {
    --primary-color: #5fbb2e;
    --primary-light: #6fce3e;
    --text-color: #333;
    --bg-color: #ffffff;
    --card-bg: #f8f9fa;
    --border-color: #e0e0e0;
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 1rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.rw-art-tip__header {
    background-color: var(--bg-color);
    padding: 1rem 1.5rem;
    position: relative;
    border-bottom: 2px solid var(--primary-color);
    text-align: center;
}

.rw-art-tip__header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rw-art-tip__label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    background-color: rgba(95, 187, 46, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

.rw-art-tip__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    position: relative;
}

.rw-art-tip__title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.rw-art-tip__content {
    display: flex;
    flex-direction: column;
    background-color: var(--card-bg);
}

.rw-art-tip__image {
    width: calc(100% - 3rem);
    overflow: hidden;
    border-radius: 12px;
    margin: 1.5rem 1.5rem 0;
}

.rw-art-tip__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.rw-art-tip__image:hover img {
    transform: scale(1.05);
}

.rw-art-tip__text {
    padding: 1.5rem 1.5rem 2rem;
}

.rw-art-tip__article-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    text-align: left;
}

.rw-art-tip__article-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.rw-art-tip__article-title a:hover {
    color: var(--primary-color);
}

.rw-art-tip__description {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin: 0 0 1rem 0;
    text-align: left;
}

.rw-art-tip__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.rw-art-tip__show-article {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.rw-art-tip__show-article:hover {
    background-color: var(--primary-light);
    color: white;
}

.rw-art-tip__tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    margin-right: 0.75rem;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.rw-art-tip__tag:hover {
    background-color: var(--primary-color);
    color: white;
}

.rw-art-tip__date {
    color: #888;
    margin-left: auto;
}

@media (min-width: 768px) {
    .rw-art-tip__content {
        flex-direction: row;
        align-items: center;
    }

    .rw-art-tip__image {
        flex: 0 0 300px;
        margin: 1.5rem;
    }

    .rw-art-tip__text {
        flex: 1;
        padding: 1.5rem 2rem 2rem 1rem;
    }
}

@media (max-width: 767px) {
    .rw-art-tip {
        margin: 1rem;
    }

    .rw-art-tip__content {
        flex-direction: column;
    }

    .rw-art-tip__image {
        width: calc(100% - 2rem);
        margin: 1rem 1rem 0;
    }

    .rw-art-tip__text {
        padding: 1rem;
    }

    .rw-art-tip__meta {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .rw-art-tip__show-article {
        margin-bottom: 0.75rem;
        width: auto;
        text-align: left;
    }

    .rw-art-tip__tag {
        margin-bottom: 0.5rem;
    }
}