* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    color: #2c2c2c;
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1vh;
    background-color: #fff;
    max-width: 180vh;
    margin-left: 12vh;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 3vh;
}

.logo img {
    width: 7vh;
    height: 7vh;
    margin-right: 2vh;
}

.logo h1 {
    font-size: 3.5vh;
    color: #2c2c2c;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 6vh;
}

nav ul li a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 1.5vh;
}

nav ul li a:hover {
    color: #EB9AD2;
}

.vector {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vector img {
    width: 130vh;
    max-width: 100%;
}

#aboutpage {
    position: relative;
    background-color: #FFE1F6;
    min-height: 50vh;
    max-width: 130vh;
    margin-left: 37.5vh;
}

.page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 5vh 0 5vh 11vh;
    min-height: 50vh;
}

.page h2 {
    font-size: 6vh;
    margin-bottom: 3vh;
    margin-top: 4vh;
}

.page p {
    font-size: 2.5vh;
    margin-bottom: 4vh;
}

.page button {
    padding: 1.5vh 10vh;
    font-size: 2vh;
    cursor: pointer;
    border: none;
    border-radius: 4vh;
    background-color: #fff;
    color: #2c2c2c;
    transition: background-color 0.3s;
    align-self: flex-start;
    margin-bottom: 6.5vh;
}

.page button:hover {
    background-color: #EB9AD2;
}

.background {
    position: absolute;
    right: 11vh;
    top: 50%;
    transform: translateY(-50%);
}

.background img {
    width: 70vh;
    height: 42vh;
}

.section-header {
    text-align: center;
    margin-bottom: 5vh;
}

.section-header h1 {
    font-size: 4vh;
    color: #2c2c2c;
    margin: 0;
    margin-top: -10vh;
    margin-bottom: 1.5vh;
}

.section-header h2 {
    font-size: 4vh;
    color: #EB9AD2;
    margin: -2vh 0 0 0;
}

#aboutus {
    max-width: 120vh;
    margin: 15vh auto;
    padding: 0 2vh;
}

.features-grid { 
    gap: 3vh;
    margin-top: 5vh;
    max-width: 130vh;
    margin-left: 5vh;
}

.feature-card {
    padding: 3vh;
    background-color: #fff;
    border: 0.3vh solid #d9d9d9;
    border-radius: 3vh;
}

.feature-card h3 {
    color: #2c2c2c;
    font-size: 2vh;
    margin: 0;
}

.feature-card h4 {
    color: #EB9AD2;
    font-size: 2vh;
    margin: 0.5vh 0 2vh 0;
}

.feature-card p {
    font-size: 1.5vh;
    line-height: 1.5;
    margin: 0;
}

.feature-image {
    padding: 2vh;
    margin-top: -27vh;
    margin-left: 38vh;
}

.feature-image img {
    width: 100%;
    max-width: 25vh;
    height: 25vh;
    border-radius: 1vh;
}

#catalog {
    max-width: 130vh;
    margin: 0 auto;
    padding: 0 2vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vh;
    margin: -3vh 0;
    width: 100%;
}

.product {
    text-align: center;
    padding: 2vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product img {
    width: 21vh;
    height: 24vh;
    object-fit: cover;
}

.product h3 {
    font-size: 2.4vh;
    margin: 1vh 0;
}

.product p {
    font-size: 2vh;
    margin: 0.5vh 0;
}

.add-to-cart {
    background-color: #EB9AD2;
    color: #2c2c2c;
    border: none;
    padding: 1.2vh 7vh;
    border-radius: 4vh;
    cursor: pointer;
    margin-top: 1vh;
    font-size: 1.5vh;
    
}

.add-to-cart:hover {
    background-color: #e589c5;
}

.cart {
    position: fixed;
    top: 2vh;
    right: 2vh;
    width: 20vh;
    background-color: #f9f9f9;
    padding: 2vh;
    border: 0.1vh solid #ddd;
}

#cart-items {
    list-style-type: none;
    padding: 0;
}

#cart-items li {
    margin-bottom: 1vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remove-btn {
    cursor: pointer;
    color: red;
}

.catalog-button {
    background-color: #EB9AD2;
    color: #2c2c2c;
    border: none;
    padding: 1.4vh 8.5vh;
    border-radius: 4vh;
    cursor: pointer;
    font-size: 2vh;
    margin-top: 5vh;
}

.catalog-button:hover {
    background-color: #e589c5;
}

#comment {
    max-width: 130vh;
    margin: 15vh auto 0;
    padding: 0 2vh;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vh;
    margin-top: 6vh;
}

.review {
    padding: 3vh;
    background-color: #f9f9f9;
    box-shadow: 0 0.2vh 0.4vh rgba(0, 0, 0, 0.2);
}

.review img {
    width: 5vh;
    height: 5vh;
    border-radius: 50%;
}

.review h3 {
    font-size: 2vh;
    margin: 1vh 0;
    display: inline-block;
    margin-left: 1vh;
}

.stars {
    color: #ffd700;
    margin-bottom: 2vh;
}

.review p {
    font-size: 1.4vh;
    line-height: 1.4;
}

.feedback-form {
    max-width: 130vh;
    margin: 15vh auto 0;
    padding: 0 1vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-container {
    background-color: #fff;
    padding: 3vh;
    box-shadow: 0 0 3vh rgba(216, 74, 193, 0.1);
    width: 81vh;
    border: 0.1vh solid #EB9AD2;
}

.form-container form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group {
    margin-bottom: 1.5vh;
    width: 100%;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 0.5vh;
    display: block;
}

.form-group input,
.form-group textarea {
    padding: 1vh;
    border: 0.1vh solid #ccc;
    border-radius: 0.5vh;
    width: 100%;
    box-sizing: border-box;
}

.form-container button {
    background-color: #EB9AD2;
    color: #2c2c2c;
    border: none;
    padding: 1vh 6vh;
    border-radius: 4vh;
    cursor: pointer;
    font-size: 1.6vh;
    align-self: center;
}

.form-container button:hover {
    background-color: #e589c5;
}

#contacts {
    max-width: 130vh;
    margin: 15vh auto 0;
    padding: 0 2vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.contact-form {
    padding: -2vh;
    width: 40vh;
    text-align: left;
    margin-top: 4vh;
    margin-left: -40vh;
}

.contact-form h3 {
    font-size: 2.4vh;
    margin-top: 1vh;
}

.contact-form p {
    margin-top: 1vh;
    font-size: 2vh;
}

.contact-form form {
    margin-top: 2vh;
    width: 100%;
}

.contact-form input {
    padding: 1.5vh;
    margin-top: 1vh;
    border: 0.1vh solid #ccc;
    border-radius: 0.5vh;
    font-size: 2vh;
    width: 100%;
    box-sizing: border-box;
}

.contact-form button {
    padding: 1vh 6vh;
    margin-top: 2vh;
    background-color: #EB9AD2;
    color: #2c2c2c;
    border: none;
    border-radius: 4vh;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #e589c5;
}

.contact-image {
    position: absolute;
    right: 20vh;
    top: 50%;
    transform: translateY(-50%);
}

.contact-image img {
    width: 45vh;
    height: 45vh;
}

.contact-info-section {
    max-width: 130vh;
    margin: 12vh auto 0;
    padding: 0 2vh;
    margin-top: 15vh;
}

.contact-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4vh;
    padding: 2vh;
}

.map-container {
    flex: 1;
    height: 40vh;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details {
    background-color: #EB9AD2;
    padding: 4vh;
    box-shadow: 0 0 0.1vh rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1vh;
    width: 30vh;
}

.contact-details h3 {
    font-size: 2.4vh;
}

.contact-details p {
    font-size: 2vh;
}

.social-icons {
    display: flex;
    gap: 1vh;
}

.social-icon {
    width: 4vh;
    height: 4vh;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

footer {
    background-color: #fff;
    padding: 2vh;
    text-align: center;
    width: 100%;
}

.footer-vector {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 3vh;
}

.footer-vector img {
    width: 130vh;
    max-width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 120vh;
    margin: 0 auto;
    padding: 2vh 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 2vh;
}

.footer-logo img {
    width: 7vh;
    height: 7vh;
}

.footer-logo span {
    font-size: 3.5vh;
    font-weight: bold;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.5vh;
}

.footer-center p {
    margin: 0;
    font-size: 1.4vh;
    line-height: 1.3;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1vh;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.3vh;
}

.footer-links p {
    margin: 0;
    font-size: 1.4vh;
    line-height: 1.2;
}

.footer-social {
    display: flex;
    gap: 1vh;
}

footer a,
footer p,
footer span,
footer div {
    text-decoration: none !important;
}

#florist{
    width: 60vh;
}

#supplies{
    width: 40vh;
    margin-left: 65vh;
    margin-top: -24.5vh;
    margin-bottom: 10vh;
}

#guarantee{
    width: 36vh;
    margin-top: -5vh;
}

#servise{
    width: 35vh;
    margin-left: 69vh;
    margin-top: -27vh;
}

.review {
    transition: all 0.5s ease;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

#contacts form {
    position: relative;
}

#contacts input:focus {
    outline: none;
    border-color: #EB9AD2 !important;
    box-shadow: 0 0 5px rgba(235, 154, 210, 0.5);
}

.sidebars {
    display: flex;
    height: 80vh;
    max-width: 100vh;
    margin-left: 49.5vh;
}

.sidebar {
    width: 21vh;
    background-color: #FFE1F6;
    padding: 3vh;
    box-shadow: 0 2px rgba(0, 0, 0, 0.1);
}

.sidebar h1 {
    margin-bottom: 2vh;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.8vh;
}

.sidebar li {
    margin-bottom: 1vh;
}

.sidebar a {
    display: block;
    padding: 0.1vh;
    color: #2c2c2c;
    text-decoration: none;
    transition: background-color 0.3s;
}

.sidebar a:hover {
    color: #EB9AD2;
}

.main-content {
    flex: 1;
    padding: 6vh;
    background-color: #ffffff;
    max-width: 130vh;
    height: 65vh;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.content {
    text-align: left;
    margin-top: 10vh;
    margin-left: 15vh;
}

.content h2 {
    margin-bottom: 1vh;
    margin-left: 50vh;
    font-size: 5vh;
}

.content p {
    margin-bottom: 2vh;
    margin-left: 50vh;
    font-size: 2vh;
}

.constructor-button {
    padding: 1.5vh 3vh;
    background-color: #EB9AD2;
    color: #2c2c2c;
    border: none;
    border-radius: 4vh;
    cursor: pointer;
    font-size: 1.6vh;
    margin-left: 50vh;
    text-align: center;
}

.flower-image img {
    margin-top: -45vh;
    margin-left: 10vh;
}

.flower-image img {
    max-width: 50%;
    height: auto;
}

.products {
    margin-left: 47vh;
    max-width: 130vh;
}

