
Остров Мак
Необитаемый остров
Описание
Остров Мак
Необитаемый остров
взрослый
детский
.tisland-style-card {
background: white;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
overflow: hidden;
transition: all 0.3s ease;
margin: 10px;
max-width: 350px;
border: 1px solid #e2e8f0;
}
.tisland-style-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.card-header {
padding: 20px;
background: linear-gradient(135deg, #17BEBB, #2E8B94);
color: white;
text-align: center;
}
.category-badge {
background: rgba(255,255,255,0.2);
padding: 4px 12px;
border-radius: 12px;
font-size: 11px;
font-weight: 600;
display: inline-block;
margin-bottom: 10px;
}
.tour-title {
font-size: 18px;
font-weight: 700;
margin: 8px 0;
line-height: 1.3;
}
.tour-description {
font-size: 13px;
opacity: 0.9;
margin: 0;
}
.card-pricing {
padding: 16px 20px;
background: #f8fafc;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #e2e8f0;
}
.price-block {
text-align: center;
}
.adult-price, .child-price {
display: block;
font-size: 18px;
font-weight: 700;
color: #F4A261;
line-height: 1;
}
.child-price {
font-size: 15px;
}
.price-label {
font-size: 11px;
color: #64748b;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.card-features {
padding: 16px 20px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
}
.feature-item {
font-size: 12px;
color: #475569;
display: flex;
align-items: center;
gap: 6px;
}
.card-actions {
padding: 16px 20px;
display: flex;
gap: 10px;
border-top: 1px solid #e2e8f0;
}
.whatsapp-btn {
background: #25d366;
color: white;
padding: 10px 16px;
border-radius: 8px;
text-decoration: none;
font-size: 12px;
font-weight: 600;
flex: 1;
text-align: center;
transition: all 0.2s ease;
}
.whatsapp-btn:hover {
background: #1da851;
color: white;
}
.book-btn {
background: #FF6F1E;
color: white;
border: none;
padding: 10px 16px;
border-radius: 8px;
font-size: 12px;
font-weight: 600;
flex: 1;
cursor: pointer;
transition: all 0.2s ease;
}
.book-btn:hover {
background: #e55a0f;
}
@media (max-width: 768px) {
.tisland-style-card {
max-width: 100%;
margin: 10px 0;
}
.card-pricing {
flex-direction: column;
gap: 8px;
}
.card-features {
grid-template-columns: 1fr;
}
}