/* ==========================================================================
   TOUR CARD COMPONENT - Design for Tours & Experiences Services
   ========================================================================== */

/* Card Container - Vertical Layout */
.tour-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Image Container */
.tour-card-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    overflow: hidden;
    position: relative;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.05);
}

.tour-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255, 255, 255, 0.7);
}

.tour-card-image-placeholder i {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.7);
}

/* Card Content */
.tour-card-content {
    padding: 14px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Title */
.tour-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 10px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Location */
.tour-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 12px;
}

.tour-card-location i {
    font-size: 13px;
    color: #10B981;
}

/* Description */
.tour-card-description {
    font-size: 13px;
    line-height: 1.5;
    color: #6B7280;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Details (Duration & Capacity) */
.tour-card-details {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5E7EB;
    flex-wrap: wrap;
}

.tour-card-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #4B5563;
}

.tour-card-detail-item i {
    font-size: 14px;
    color: #10B981;
}

/* Price Section */
.tour-card-price-section {
    margin-top: auto;
    margin-bottom: 12px;
}

.tour-card-price {
    font-size: 22px;
    font-weight: 700;
    color: #10B981;
    line-height: 1;
}

.tour-card-price-unit {
    font-size: 11px;
    color: #6B7280;
    margin-left: 4px;
    font-weight: 400;
}

/* Button */
.tour-card-button {
    width: 100%;
    padding: 12px;
    background: #10B981;
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.tour-card:hover .tour-card-button {
    background: #059669;
    transform: translateY(-1px);
}

.tour-card-button i {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .tour-card-image {
        height: 180px;
    }

    .tour-card-title {
        font-size: 16px;
    }

    /* Make tour details horizontal (side-by-side) for compact mobile layout */
    .tour-card-details {
        display: flex !important;
        flex-direction: row !important;
        /* Side-by-side instead of stacked */
        justify-content: flex-start;
        align-items: center;
        gap: 16px;
        /* Space between duration and group size */
        flex-wrap: wrap;
        /* Allow wrap on very small screens */
        padding: 12px 0;
        /* Vertical spacing */
    }

    .tour-card-detail-item {
        display: flex;
        align-items: center;
        gap: 6px;
        /* Space between icon and text */
        font-size: 13px;
        white-space: nowrap;
        /* Keep text on one line */
        line-height: 1.2;
    }

    .tour-card-detail-item i {
        font-size: 14px;
        color: #2563eb;
        /* Blue accent color */
        flex-shrink: 0;
        /* Prevent icon from shrinking */
    }

    .tour-card-detail-item span {
        font-size: 13px;
        font-weight: 500;
        color: #6B7280;
        /* Gray text */
    }

    .tour-card-price {
        font-size: 20px;
    }
}

/* ==========================================================================
   MOBILE SPACING FIX - TOUR CARDS
   Increase vertical spacing between cards on mobile
   ========================================================================== */

@media (max-width: 768px) {

    /* Tour Card - Mobile Spacing */
    .tour-card,
    a.tour-card,
    .home-category-section .tour-card,
    .tours-section .tour-card,
    .services-grid .tour-card {
        margin-bottom: 32px !important;
        /* Increased spacing */
    }
}

@media (max-width: 414px) {

    .tour-card,
    a.tour-card {
        margin-bottom: 32px !important;
        /* Keep 32px on large mobile */
    }
}

@media (max-width: 360px) {

    .tour-card,
    a.tour-card {
        margin-bottom: 32px !important;
        /* Keep 32px on small mobile */
    }
}

@media (max-width: 375px) {

    /* Extra small mobile - Tighter spacing for tour details */
    .tour-card-details {
        gap: 12px;
        /* Slightly tighter spacing */
    }

    .tour-card-detail-item {
        font-size: 12px;
        /* Slightly smaller text */
        gap: 5px;
    }

    .tour-card-detail-item i {
        font-size: 13px;
    }
}

@media (max-width: 320px) {

    .tour-card,
    a.tour-card {
        margin-bottom: 28px !important;
        /* Slight reduction for tiny screens */
    }
}

/* ==========================================================================
   MOBILE CARD FIX - PADDING
   ========================================================================== */

@media (max-width: 768px) {

    .tour-card,
    .wine-tasting-card,
    .service-card {
        margin: 0 12px 16px 12px;
    }
}