/* Стилі для блоку кондиціонерів */
.products-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eee;
}

.product-image img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.stock-status {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #4CAF50;
}

.stock-status .stock-icon {
    margin-right: 5px;
}

.product-features {
    margin-bottom: 15px;
}

.product-feature {
    margin-bottom: 5px;
}

.feature-label {
    font-weight: bold;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 15px;
}

.product-actions {
    text-align: center;
    margin-top: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0055aa;
}

/* Стилі для кнопки розкриття */
#toggleButton {
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
}

#toggleButton div {
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

#toggleButton span {
    font-size: 24px;
    display: inline-block;
}

.tabs-menu {
    text-align: center;
    margin-bottom: 20px;
}

.tabs-menu a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    background: #eee;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.tabs-menu a.active,
.tabs-menu a:hover {
    background: #0066cc;
    color: #fff;
}

/* Стилі для випадаючого списку брендів */
.tabs-menu select.tab-select {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    background: #eee;
    color: #333;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background 0.3s, color 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.tabs-menu select.tab-select:focus {
    outline: none;
}

/* Якщо потрібна кастомна стрілка */
.tabs-menu .select-wrapper {
    display: inline-block;
    position: relative;
}

.tabs-menu .select-wrapper:after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #333;
    transition: color 0.3s;
}

.tabs-menu select.tab-select:focus {
    outline: none;
    background: #eee;
    color: #333;
}

.tabs-menu select.tab-select option {
    background-color: #fff !important;
    color: #333 !important;
}

.tabs-menu select.tab-select option:checked {
    background-color: #0066cc !important;
    color: #fff !important;
}

.tabs-menu select.tab-select.chosen {
    background: #0066cc;
    color: #fff;
}
.tabs-menu select.tab-select.chosen:hover {
    background: #0055aa;
    color: #fff;
}

.service-block {
    cursor: pointer;
}

.floating-phone {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00aaff; /* колір фону, можете змінити */
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    z-index: 1000;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Додатково: ефект при наведенні */
.floating-phone:hover {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .desktop-phone { display: none; }
}
@media (min-width: 769px) {
    .mobile-phone { display: none; }
}