* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter-Regular", sans-serif, Tahoma, Arial;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    background-color: #;
    color: #333;
}

.sunnow-logo {
    margin-left: 60px;
}

.sunnow-logo img {
    max-width: 210px;
    max-height: 60px;
    width: auto;
    height: auto;
}

.sunnow-nav-links {
    display: flex;
    list-style: none;
    margin-right: 60px;
}

.sunnow-nav-links li {
    margin-left: 30px;
    color: #999;
    font-size: 1.1em;
}

.sunnow-nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 1.1em;
}

.sunnow-nav-links a:hover {
    color: #111111;
}

.sunnow-shop-btn {
    background-color: #111111;
    color: white;
    padding: 15px 25px;
    font-size: 1.1em;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    margin-left: 30px;
    display: inline-block;
    align-self: center;
}

.sunnow-shop-btn:hover {
    filter: brightness(0.9);
}

.sunnow-hero {
    position: relative;
    background: url('/img/sunnow-bg.jpg') no-repeat center center/cover;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.sunnow-hero .sunnow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.sunnow-hero-text {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.sunnow-hero h1 {
    font-size: 2.9em;
    margin-bottom: 10px;
}

.sunnow-hero p {
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 40px;
}

.sunnow-hero .btn, .sunnow-text-about .btn {
    background-color: #111111;
    padding: 15px 30px;
    font-size: 1.2em;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.btn:hover {
    filter: brightness(0.9);
}

.sunnow-advantages {
    display: flex;
    justify-content: space-around;
    padding: 70px 300px;
    background-color: #11111125;
    text-align: center;
}

.sunnow-advantage {
    flex: 1;
    max-width: 300px;
}

.sunnow-advantage .emoji {
    font-size: 50px;
}

.sunnow-advantage div {
    font-size: 1.2em;
    font-weight: bold;
}

.sunnow-advantage p {
    margin-top: 5px;
    color: #555;
}

.sunnow-products {
    text-align: center;
    padding: 40px 20px;
}

.sunnow-products h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.sunnow-products h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.sunnow-products p {
    font-size: 1.2em;
    color: #555;
    max-width: 900px;
    margin: 0 auto 50px;
}

.sunnow-text-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    display: block;
    background-color: #f1f1f1;
}

.sunnow-text-about h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.sunnow-text-about p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
}

.cta {
    background-color: #11111165;
}

.sunnow-product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.sunnow-product {
    text-align: left;
    padding-left: 10px;
    margin-bottom: 20px;
}

.sunnow-product-image {
    width: 100%;
    max-width: 300px;
    height: 260px;
    overflow: hidden;
    display: block;
    margin: 0 auto;
    position: relative;
}

.sunnow-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.sunnow-product-image:hover img {
    filter: brightness(0.9);
}

.sunnow-product a {
    color: #333;
    text-decoration: none;
    font-size: 1.1em;
}

.sunnow-product a:hover {
    color: #111111;
}


.sunnow-reviews {
    text-align: center;
    padding: 40px 20px;
}

.sunnow-reviews h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.sunnow-review {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #f1f1f1;
    padding: 20px;
    margin: 20px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.sunnow-review-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.sunnow-review-name {
    font-size: 1.2em;
    font-weight: bold;
}

.sunnow-review-text {
    text-align: left;
}

.sunnow-review-text p {
    font-size: 1em;
    color: #555;
}



.breadcrumbs {
    font-size: 0.9em;
    margin-bottom: 10px;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    letter-spacing: -0.4px;
}

.breadcrumbs a {
    text-decoration: none;
    color: #333333;
    word-break: break-word;
    white-space: normal;
    letter-spacing: -0.4px;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    word-break: break-word;
    white-space: normal;
    max-width: 100%;
}

.breadcrumbs li + li:before {
    content: ">";
    margin: 0 5px;
    color: #999;
}




footer {
    background-color: #f1f1f1;
    color: #000;
    padding: 40px 0;
    margin-top: 40px;
}

.sunnow-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.sunnow-footer-block {
    flex: 1;
    padding-right: 90px;
}

.sunnow-footer-heading {
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: bold;
}

.sunnow-footer-block p {
    margin: 5px 0;
    color: #555;
}

.sunnow-footer-block a {
    display: block;
    width: fit-content;
    color: #000;
    text-decoration: none;
    margin-bottom: 5px;
}

.sunnow-footer-block a:hover {
    color: #111111;
}

.sunnow-footer-disclaimer {
    text-align: left;
    padding-top: 20px;
    font-size: 0.9em;
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
}

.sunnow-footer-disclaimer::before {
    content: "";
    display: block;
    height: 1px;
    background-color: #ccc;
    margin-bottom: 20px;
    width: 100%;
}

.sunnow-footer-disclaimer p {
    margin: 0;
}

::-moz-selection {
    background-color: #111111 !important;
}

::selection {
    background-color: #111111 !important;
}


.sunnow-product-page {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 30px auto;
    padding: 40px 20px;
}

.sunnow-product-images {
    width: 40%;
}

.sunnow-main-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-color: #f8f8f8;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sunnow-main-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sunnow-thumbnail-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.sunnow-thumbnail-images img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.sunnow-product-details {
    width: 60%;
    padding-left: 60px;
}

.sunnow-product-details h1 {
    font-size: 2.1em;
    margin-bottom: 20px;
}

.sunnow-shop-button {
    display: inline-block;
    background-color: #4db75a;
    color: white;
    padding: 15px 60px;
    font-size: 1.2em;
    text-decoration: none;
    margin-bottom: 20px;
    border-radius: 5px;
}

.sunnow-shop-button:hover {
	background-color: #37a344;
}

.sunnow-product-details p {
    font-size: 1.1em;
    color: #333;
    margin-top: 20px;
}



.feedback-section {
    padding: 40px 20px;
}

.feedback-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.feedback-container h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.feedback-container p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feedback-form label {
    font-size: 1em;
    color: #333;
    margin-bottom: 5px;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.feedback-form button {
    align-self: flex-start;
    background-color: #111111;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.feedback-form button:hover {
    filter: brightness(0.9);
}



.sunnow-text-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.sunnow-text-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.6;
    color: #555;
}

.sunnow-text-container h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #333;
}

.sunnow-text-container p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.sunnow-text-container ul {
    margin: 0 0 20px 20px;
    padding: 0;
    list-style-type: disc;
}

.sunnow-text-container ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}





@media (min-width: 768px) {
    .sunnow-nav-links {
        justify-content: flex-end;
    }

    .sunnow-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sunnow-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .sunnow-footer-content {
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .sunnow-shop-btn {
        margin-left: 0;
    }

    .sunnow-hero {
        min-height: 100vh;
    }

    .sunnow-hero-text {
        padding: 20px;
    }

    .sunnow-product {
        text-align: center;
    }

    .sunnow-advantages {
        flex-direction: column;
        padding: 40px 20px;
    }

    .sunnow-advantage {
        margin-bottom: 20px;
        max-width: 100%;
    }

    header {
        flex-direction: column;
        align-items: center;
    }

    .sunnow-logo {
        margin-left: 0;
    }

    .sunnow-nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        text-align: center;
        width: 100%;
    }

    .sunnow-nav-links li {
        margin-left: 0;
        margin-bottom: 5px;
    }

    .sunnow-nav-links a {
        font-size: 1em;
    }

    .sunnow-hero h1 {
        font-size: 2.1em;
    }

    .sunnow-hero p {
        font-size: 1.1em;
    }


    .sunnow-review {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sunnow-review-img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .sunnow-review-name {
        margin-bottom: 10px;
        display: block;
        text-align: center;
    }

    .sunnow-review-text p {
        font-size: 1em;
    }


    .sunnow-footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sunnow-footer-block {
        padding: 10px 0;
        margin-bottom: 20px;
    }

    .sunnow-footer-block p {
        margin: 5px 10px;
    }

    .sunnow-footer-disclaimer {
        text-align: center;
        padding-top: 10px;
        font-size: 0.85em;
        margin: 5px 10px;
    }



    .sunnow-product-page {
        flex-direction: column;
        align-items: center;
    }

    .sunnow-product-images {
        width: 100%;
        margin-bottom: 20px;
    }

    .sunnow-thumbnail-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        justify-content: center;
    }

    .sunnow-thumbnail-images img {
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
    }

    .sunnow-product-details {
        width: 100%;
        text-align: center;
        padding-left: 0;
    }


    .breadcrumbs {
        font-size: 0.9em;
        text-align: center;
        margin-bottom: 15px;
    }

    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .breadcrumbs li {
        white-space: normal;
        display: flex;
        align-items: center;
        text-align: center;
        max-width: 100%;
        word-break: break-word;
    }

    .breadcrumbs li + li:before {
        content: ">";
        margin: 0 5px;
        color: #999;
    }

    .breadcrumbs a {
        text-decoration: none;
        color: #6b5997;
        word-break: break-word;
        white-space: normal;
    }
}
