* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    border-bottom: 1px solid #000;
    padding: 20px 0;
    margin-bottom: 40px;
}

footer {
    background: #f5f5f5; 
    padding: 20px; 
    text-align: center; 
    color: #666; 
    font-size: 12px; 
    margin-top: 40px;
}

footer a {
    color: #7b5588;
}

h1, h2 {
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: #7b5588;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    line-height: 1.4;
}

.button:hover {
    background: #333;
}

.button.secondary {
    background: #fff;
    color: #7b5588;
    border: 2px solid #7b5588;
    padding: 8px 18px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    font-family: inherit;
    margin-bottom: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.card {
    border: 2px solid #7b5588;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 10px;
}

.card img {
    width: 100%;
    margin-bottom: 10px;
    display: block;
    height: auto;
    object-fit: cover;
}

.card-price {
    font-weight: bold;
    margin: 10px 0;
}

.reserved {
    opacity: 0.7;
    border: 2px solid #ff0000;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#app .header {
    padding: 0px; 
}

.hero {
    background-color: rgba(238, 237, 244, 1); 
    color: #000;;
    padding: 0px; 
    margin-bottom: 40px
}

.hero .button {
    color: #fff;
}

.hero a {
    color: #000;
}

.hero__content {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    color: #000; 
    font-size: 16px; 
    ine-height: 1.8;
}

.hero__left {
    text-align: left;
}

.hero__right {
    font-size: 15px;
    text-align: right;
}

.hero__right-phone {
    font-weight: 700;
    text-decoration: none;
}

.header__logo {
    text-align: center;
}

.header__logo img {
   max-height: 80px;
}

.wishlist__title {
    color: #7b5588;
    text-align: center;
    line-height: 1.2;
}

.wishlist__description {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    font-family: inherit;
}

.contact-button__toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #7b5588;
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.contact-button__toggle:hover {
    background: #7b5588;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.contact-button__info {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    animation: slideUp 0.3s ease;
    z-index: 1001;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-button__info p {
    margin: 0 0 12px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.contact-button__phone {
    display: block;
    margin-bottom: 0;
}

.contact-button__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1000;
}






@media (max-width: 768px) {
    
    .hero .container > div:last-child {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .hero__logo {
        margin-bottom: 20px;
    }
    
    .hero img {
        max-height: 60px;
    }
    
    .hero__left, .hero__right {
    text-align: center;
}
  
    .contact-button__toggle {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .contact-button__info {
        min-width: 250px;
    }

}