/* Special Interest / Accommodation Detail Styles */

.special-interest-intro {
    padding: 4rem 0 8rem;
    background-color: var(--white);
}

.back-to-explorer {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 14px;
    color: #666;
    margin-bottom: 3rem;
    transition: color 0.3s ease;
}

.back-to-explorer:hover {
    color: var(--mountain-dusk);
}

.intro-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.intro-title-box h1 {
    font-weight: 400;
    font-size: clamp(32px, 4vw, 56px);
    color: var(--mountain-dusk);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    line-height: 1.1;
}

.intro-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #666;
    font-size: 15px;
}

.intro-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wishlist-btn {
    border: 1px solid #e5e7eb;
    background: transparent;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #dc2626;
    /* Red for heart */
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background-color: #fef2f2;
    border-color: #fecaca;
}

.wishlist-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
}

.interest-description {
    max-width: 800px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 5rem;
    font-weight: 300;
}

.you-may-like-section {
    padding-top: 5rem;
    border-top: 1px solid #eee;
}

.you-may-like-title {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3rem;
}

.related-interest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.interest-card {
    position: relative;
}

.interest-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.interest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.interest-card:hover .interest-card-img img {
    transform: scale(1.05);
}

.heart-icon-overlay {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.heart-icon-overlay:hover {
    background: rgba(255, 255, 255, 0.4);
}

.interest-card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.interest-card-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--mountain-dusk);
}

.interest-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
}

.interest-rating svg {
    width: 12px;
    height: 12px;
    fill: var(--mountain-dusk);
}

.interest-card-meta {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.interest-card-desc {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .related-interest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .related-interest-grid {
        grid-template-columns: 1fr;
    }

    .intro-header-flex {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- Collection Page Header Redesign --- */
.collection-header {
    margin-bottom: 7rem;
}

.collection-header .eyebrow {
    font-size: 12px;
    letter-spacing: 0.25em;
    font-weight: 500;
    color: var(--dzong-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
}

.collection-header .eyebrow::before,
.collection-header .eyebrow::after {
    content: '';
    width: 20px;
    height: 1px;
    background-color: var(--dzong-gold);
    opacity: 0.4;
}

.collection-header .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--h2-size);
    color: var(--mountain-dusk);
    text-align: center;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.collection-header .section-title em {
    font-style: italic;
    font-weight: 400;
}

.collection-header .header-accent {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--dzong-gold), transparent);
    margin: 0 auto 2.5rem;
}

.collection-header .section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    opacity: 0.9;
}

/* --- Interest List Grid (Special Interest Hub Page) --- */
.interest-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Location label above desc */
.interest-card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: #888;
    margin-top: 0.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.interest-card-location svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    stroke: var(--dzong-gold);
    opacity: 0.85;
}

@media (max-width: 991px) {
    .interest-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .interest-list-grid {
        grid-template-columns: 1fr;
    }
}