.tour-package-card {
    border: 1px solid #D9EEF3;
    border-radius: 16px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.tour-package-card .tour-title {
    font-size: 14px;
    font-weight: 600;
    color: #132D2F;
    margin: 0 0 16px 0;
}

.tour-package-card .section-divider {
    border-top: 1px solid #F2F3F3;
    padding-top: 12px;
    margin-bottom: 12px;
}

.tour-package-card .info-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 12px;
}

.tour-package-card .detail-row {
    margin-bottom: 12px;
}

.tour-package-card .detail-value {
    color: #64748b;
}

.tour-package-card .js-details-container {
    position: relative;
}

.tour-package-card .js-details-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-package-card .js-details-container.expanded .js-details-content {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
}

.tour-package-card .read-more-btn {
    background: none;
    border: none;
    color: var(--color-secondary);
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-package-card .read-more-btn:hover {
    text-decoration: underline;
}

.tour-package-card .read-more-btn svg {
    transition: transform 0.2s ease;
}

.tour-package-card .read-more-btn.expanded svg {
    transform: rotate(180deg);
}

.tour-package-card .pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.tour-package-card .pricing-label {
    font-weight: 700;
    font-size: 13px;
    color: #1e293b;
    text-transform: uppercase;
}

.tour-package-card .age-range {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 400;
}

.tour-package-card .price-value {
    font-size: 16px;
    color: #889596;
    font-weight: 400;
}

.tour-package-card .currency-symbol {
    color: var(--color-primary); 
    font-weight: 700;
    margin-left: 2px;
}

.tour-package-card .select-btn {
    width: 100%;
    background-color: var(--color-secondary); 
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}

.tour-package-card .select-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.packages-section.tour-packages-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}