/**
 * Trip2Where Homepage Styles — v9.0
 *
 * Sections:
 * 1. Scoped Variables
 * 2. Common (section, carousel, buttons)
 * 3. Hero (full-bleed, search bar, trust badges)
 * 4. Inspiration Carousel
 * 5. Categories (horizontal scroll)
 * 6. Destinations (carousel)
 * 7. AI Banner (navy + glass timeline)
 * 8. Community Carousel
 * 9. Responsive (1024px / 768px)
 */

/* ========================================
   1. SCOPED VARIABLES
   ======================================== */

/* Prevent 100vw full-bleed scrollbar overflow on homepage */
html:has(.t2w-home) {
    overflow-x: hidden;
}

.t2w-home {
    --gold: #FFB700;
    --gold-light: #FFC933;
    --gold-dark: #E5A400;
    --gold-rgb: 255, 183, 0;
    --navy: #1E3A5F;
    --navy-light: #2A4A73;
    --hp-text-primary: #1F2937;
    --hp-text-secondary: #4B5563;
    --hp-text-muted: #6B7280;
    --hp-text-light: #9CA3AF;
    --hp-bg-warm: #F8F6F0;
    --hp-bg-cream: #FFFBEB;
    --hp-border-light: #E5E7EB;
    --hp-border-medium: #D1D5DB;
    --hp-white: #FFFFFF;
    --hp-shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --hp-shadow-card-hover: 0 8px 25px rgba(0,0,0,0.1);
    --hp-shadow-gold: 0 4px 15px rgba(255,183,0,0.3);
    --hp-radius-sm: 8px;
    --hp-radius-md: 12px;
    --hp-radius-lg: 16px;
    --hp-radius-xl: 24px;
    --hp-radius-full: 9999px;
    background: var(--hp-white);
}

/* ========================================
   2. COMMON
   ======================================== */

/* Section container */
.t2w-hp-section {
    padding: 0 clamp(20px, 4vw, 48px);
    max-width: 1280px;
    margin: 0 auto;
}

.t2w-hp-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
}

.t2w-hp-section__title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--hp-text-primary);
    letter-spacing: -0.02em;
    margin: 0;
}

.t2w-hp-section__subtitle {
    font-size: 14px;
    color: var(--hp-text-muted);
    margin: 4px 0 0;
}

.t2w-hp-section__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
    transition: color 0.15s;
}

.t2w-hp-section__link:hover { color: var(--gold); text-decoration: none; }
.t2w-hp-section__link .material-symbols-outlined { font-size: 18px; }

/* Carousel wrapper */
.t2w-carousel-wrapper {
    position: relative;
}

.t2w-carousel-wrapper:hover .t2w-carousel-arrow {
    opacity: 1;
}

.t2w-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 clamp(20px, 4vw, 48px) 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.t2w-carousel-track::-webkit-scrollbar { display: none; }

.t2w-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--hp-border-light);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    color: var(--hp-text-secondary);
    padding: 0;
}

.t2w-carousel-arrow:hover {
    background: var(--hp-white);
    transform: translateY(-50%) scale(1.1);
}

.t2w-carousel-arrow:disabled {
    opacity: 0 !important;
    pointer-events: none;
}

.t2w-carousel-arrow--prev { left: 4px; }
.t2w-carousel-arrow--next { right: 4px; }

.t2w-carousel-arrow .material-symbols-outlined { font-size: 20px; }

/* Carousel dots */
.t2w-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.t2w-carousel-dots .t2w-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    min-height: 6px;
    border-radius: 50%;
    background: var(--hp-border-medium);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
}

.t2w-carousel-dots .t2w-dot.active {
    background: var(--gold);
    width: 18px;
    min-width: 18px;
    border-radius: 3px;
}

/* Chips */
.t2w-chip-row {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.t2w-chip-row::-webkit-scrollbar { display: none; }

.t2w-chip {
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    padding: 8px 16px;
    border-radius: var(--hp-radius-full);
    border: 1px solid var(--hp-border-light);
    background: var(--hp-white);
    color: var(--hp-text-secondary);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}

.t2w-chip:hover { border-color: var(--gold); color: var(--gold-dark); }

.t2w-chip.active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
    box-shadow: 0 2px 8px rgba(var(--gold-rgb), 0.3);
}

/* Buttons */
.t2w-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: var(--hp-radius-full);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(var(--gold-rgb), 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.t2w-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--hp-shadow-gold);
    color: white;
    text-decoration: none;
}

.t2w-btn-gold .material-symbols-outlined { font-size: 18px; }

/* Focus styles */
.t2w-btn-gold:focus-visible,
.t2w-chip:focus-visible,
.t2w-dest-card:focus-visible,
.t2w-comm-card:focus-visible,
.t2w-insp-card:focus-visible,
.t2w-cat-item:focus-visible,
.t2w-hp-section__link:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ========================================
   3. HERO (Full-bleed)
   ======================================== */

/* Break out of .container to achieve full-bleed */
.t2w-hero-v9,
.t2w-ai-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.t2w-hero-v9 {
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    overflow: hidden;
}

.t2w-hero-v9__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.t2w-hero-v9__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t2w-hero-v9__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
}

.t2w-hero-v9__gold-tint {
    position: absolute;
    inset: 0;
    background: rgba(255, 183, 0, 0.1);
    mix-blend-mode: overlay;
}

.t2w-hero-v9__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.t2w-hero-v9__title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
    margin: 0 0 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.t2w-hero-v9__subtitle {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin: 0 0 32px;
}

/* CTA Button */
.t2w-hero-v9__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--hp-text-primary);
    border: none;
    border-radius: var(--hp-radius-full);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15), 0 4px 15px rgba(var(--gold-rgb), 0.3);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
}

.t2w-hero-v9__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2), var(--hp-shadow-gold);
    background: var(--gold-light);
    color: var(--hp-text-primary);
    text-decoration: none;
}

.t2w-hero-v9__cta .material-symbols-outlined {
    font-size: 20px;
}

/* Trust Badges */
.t2w-hero-v9__badges {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.t2w-hero-v9__badges::-webkit-scrollbar { display: none; }

.t2w-hero-v9__badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--hp-radius-full);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    font-weight: 500;
    color: white;
}

.t2w-hero-v9__badge .material-symbols-outlined {
    font-size: 16px;
    color: var(--gold);
    font-variation-settings: 'FILL' 1;
}

/* ========================================
   4. INSPIRATION CAROUSEL
   ======================================== */

.t2w-inspiration {
    padding: 48px 0 32px;
}

.t2w-inspiration .t2w-hp-section__subtitle {
    margin-top: 4px;
    margin-bottom: 0;
}

.t2w-insp-card {
    position: relative;
    flex-shrink: 0;
    width: 260px;
    height: 320px;
    border-radius: var(--hp-radius-lg);
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: white;
}

.t2w-insp-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.t2w-insp-card:hover .t2w-insp-card__img {
    transform: scale(1.1);
}

.t2w-insp-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.t2w-insp-card__placeholder .material-symbols-outlined { font-size: 48px; opacity: 0.5; color: white; }

.t2w-insp-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
}

.t2w-insp-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    z-index: 1;
}

.t2w-insp-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.t2w-insp-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 10px;
    border-radius: var(--hp-radius-full);
    font-size: 10px;
    font-weight: 700;
    color: white;
}

.t2w-insp-card__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.t2w-insp-card__zone {
    font-size: 13px;
    opacity: 0.8;
    margin: 4px 0 0;
}

/* ========================================
   5. CATEGORIES (horizontal scroll)
   ======================================== */

.t2w-categories-section {
    background: var(--hp-white);
    padding: 40px 0;
}

.t2w-cat-scroll {
    display: flex;
    justify-content: center;
    gap: 24px;
    overflow-x: auto;
    padding: 0 clamp(20px, 4vw, 48px) 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.t2w-cat-scroll::-webkit-scrollbar { display: none; }

.t2w-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    text-decoration: none;
    color: var(--hp-text-secondary);
    transition: transform 0.2s;
}

.t2w-cat-item:hover {
    transform: translateY(-4px);
    text-decoration: none;
    color: var(--hp-text-primary);
}

.t2w-cat-item--soon { opacity: 0.5; }
.t2w-cat-item--soon:hover { opacity: 0.7; }

.t2w-cat-item__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.t2w-cat-item:hover .t2w-cat-item__icon {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.t2w-cat-item__icon .material-symbols-outlined { font-size: 28px; }

.t2w-cat-item__label {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

/* ========================================
   6. DESTINATIONS (fixed-height grid)
   ======================================== */

.t2w-dest-section {
    padding: 48px 0;
}

.t2w-dest-section .t2w-hp-section__subtitle {
    margin-top: 4px;
    margin-bottom: 0;
}

.t2w-dest-card {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 280px;
    height: 320px;
    background: var(--hp-white);
    border-radius: var(--hp-radius-md);
    overflow: hidden;
    box-shadow: var(--hp-shadow-card);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.t2w-dest-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-card-hover);
    text-decoration: none;
    color: inherit;
}

.t2w-dest-card__img {
    position: relative;
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #94a3b8, #64748b);
}

.t2w-dest-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.t2w-dest-card:hover .t2w-dest-card__img img { transform: scale(1.1); }

.t2w-dest-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hp-text-light);
}

.t2w-dest-card__placeholder .material-symbols-outlined { font-size: 48px; }

.t2w-dest-card__rating-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    border-radius: var(--hp-radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--hp-text-primary);
}

.t2w-dest-card__rating-badge .material-symbols-outlined {
    font-size: 13px;
    color: var(--gold);
    font-variation-settings: 'FILL' 1;
}

.t2w-dest-card__cat-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: var(--hp-radius-full);
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    font-size: 10px;
    font-weight: 600;
    color: white;
}

.t2w-dest-card__body {
    padding: 10px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.t2w-dest-card__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--hp-text-primary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.t2w-dest-card__name-en {
    font-size: 11px;
    color: var(--hp-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.t2w-dest-card__meta {
    font-size: 11px;
    color: var(--hp-text-light);
    margin-top: 2px;
}

.t2w-dest-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: auto;
    padding-top: 4px;
}

.t2w-dest-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 6px;
    border-radius: var(--hp-radius-full);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.t2w-dest-badge .material-symbols-outlined {
    font-size: 11px;
}

.t2w-dest-badge--ticket {
    background: #FFF7ED;
    color: #C2410C;
}

.t2w-dest-badge--gem {
    background: #F0FDF4;
    color: #15803D;
}

/* ========================================
   7. AI BANNER (navy + glass timeline)
   ======================================== */

.t2w-ai-banner {
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.t2w-ai-banner__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px clamp(20px, 4vw, 48px);
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

/* Decorative blobs */
.t2w-ai-banner__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.t2w-ai-banner__blob--1 {
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: #3B82F6;
}

.t2w-ai-banner__blob--2 {
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: #8B5CF6;
}

.t2w-ai-banner__text {
    flex: 1;
}

.t2w-ai-banner__title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    color: white;
    line-height: 1.25;
    margin: 0 0 16px;
}

.t2w-ai-banner__highlight { color: var(--gold); }

.t2w-ai-banner__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0 0 24px;
}

.t2w-ai-banner__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.t2w-ai-banner__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: white;
}

.t2w-ai-banner__check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.t2w-ai-banner__check .material-symbols-outlined {
    font-size: 14px;
    color: var(--hp-text-primary);
}

.t2w-ai-banner__cta {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--hp-text-primary);
    border-radius: var(--hp-radius-full);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(var(--gold-rgb), 0.2);
    transition: background 0.2s, color 0.2s;
}

.t2w-ai-banner__cta:hover {
    background: white;
    color: var(--hp-text-primary);
    text-decoration: none;
}

/* Glass Timeline Mockup */
.t2w-ai-banner__mockup {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.t2w-ai-glass-card {
    width: 100%;
    max-width: 380px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--hp-radius-lg);
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.t2w-ai-glass__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 16px;
}

.t2w-ai-glass__day {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.t2w-ai-glass__date {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin: 2px 0 0;
}

.t2w-ai-glass__tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    background: rgba(var(--gold-rgb), 0.2);
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    padding: 2px 8px;
    border-radius: var(--hp-radius-full);
}

/* Timeline */
.t2w-ai-glass__timeline {
    position: relative;
}

.t2w-ai-glass__item {
    position: relative;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 0;
}

.t2w-ai-glass__dot {
    position: absolute;
    left: -6px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
}

.t2w-ai-glass__item--active .t2w-ai-glass__dot {
    background: var(--gold);
}

.t2w-ai-glass__card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--hp-radius-sm);
    padding: 10px;
}

.t2w-ai-glass__time {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 2px;
}

.t2w-ai-glass__item:not(.t2w-ai-glass__item--active) .t2w-ai-glass__time {
    color: rgba(255,255,255,0.6);
}

.t2w-ai-glass__name {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.t2w-ai-glass__duration {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    margin: 2px 0 0;
}

.t2w-ai-glass__transport {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0 8px 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}

.t2w-ai-glass__transport .material-symbols-outlined { font-size: 12px; }

/* ========================================
   8. COMMUNITY CAROUSEL (Photo Review Cards)
   ======================================== */

.t2w-comm-section {
    padding: 48px 0;
    background: var(--hp-white);
}

.t2w-comm-card {
    flex-shrink: 0;
    width: 300px;
    height: 360px;
    background: var(--hp-white);
    border: 1px solid var(--hp-border-light);
    border-radius: var(--hp-radius-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.t2w-comm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-card-hover);
}

/* Card image */
.t2w-comm-card__img {
    height: 160px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.t2w-comm-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card body */
.t2w-comm-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Author row */
.t2w-comm-card__author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.t2w-comm-card__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--hp-bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.t2w-comm-card__avatar .material-symbols-outlined {
    font-size: 18px;
    color: var(--hp-text-light);
}

.t2w-comm-card__author-info {
    display: flex;
    flex-direction: column;
}

.t2w-comm-card__author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--hp-text-primary);
}

.t2w-comm-card__date {
    font-size: 10px;
    color: var(--hp-text-light);
}

/* Review text */
.t2w-comm-card__text {
    font-size: 14px;
    color: var(--hp-text-secondary);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Hashtag tags */
.t2w-comm-card__tags {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.t2w-comm-card__tag {
    font-size: 10px;
    color: var(--hp-text-muted);
    background: #F3F4F6;
    padding: 2px 8px;
    border-radius: var(--hp-radius-full);
}

/* ========================================
   9. RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    /* Hero */
    .t2w-hero-v9 { min-height: 320px; }

    /* Destinations */
    .t2w-dest-card { width: 260px; height: 310px; }

    /* AI Banner */
    .t2w-ai-banner__inner { flex-direction: column; text-align: center; }
    .t2w-ai-banner__features { align-items: center; }
    .t2w-ai-banner__mockup { display: none; }

    /* Inspiration cards */
    .t2w-insp-card { width: 220px; height: 280px; }
}

@media (max-width: 768px) {
    /* -- HERO -- */
    .t2w-hero-v9 { min-height: 280px; padding: 32px 16px; }
    .t2w-hero-v9__subtitle { margin-bottom: 24px; }
    .t2w-hero-v9__cta { padding: 12px 28px; font-size: 15px; }

    /* -- SECTIONS -- */
    .t2w-hp-section { padding: 0 16px; }
    .t2w-hp-section__header { margin-bottom: 16px; }
    .t2w-hp-section__title { font-size: 18px; }
    .t2w-hp-section__subtitle { font-size: 12px; }
    .t2w-hp-section__link { font-size: 12px; }

    /* -- CAROUSEL -- */
    .t2w-carousel-track { gap: 12px; padding: 0 16px 8px; }
    .t2w-carousel-arrow { opacity: 0.8; }

    /* -- INSPIRATION -- */
    .t2w-inspiration { padding: 32px 0 20px; }
    .t2w-insp-card { width: 200px; height: 260px; }
    .t2w-insp-card__title { font-size: 15px; }
    .t2w-insp-card__content { padding: 14px; }

    /* -- CATEGORIES -- */
    .t2w-categories-section { padding: 28px 0; }
    .t2w-cat-scroll { gap: 16px; justify-content: flex-start; }
    .t2w-cat-item__icon { width: 52px; height: 52px; }
    .t2w-cat-item__icon .material-symbols-outlined { font-size: 24px; }
    .t2w-cat-item__label { font-size: 11px; }

    /* -- DESTINATIONS -- */
    .t2w-dest-section { padding: 28px 0; }
    .t2w-dest-card { width: 220px; height: 290px; }
    .t2w-dest-card__img { height: 150px; }
    .t2w-dest-card__body { padding: 8px 10px; }
    .t2w-dest-card__title { font-size: 13px; }
    .t2w-dest-card__name-en { font-size: 10px; }
    .t2w-dest-card__meta { font-size: 10px; }
    .t2w-dest-badge { font-size: 9px; padding: 1px 5px; }
    .t2w-chip { font-size: 12px; padding: 6px 14px; }

    /* -- AI BANNER -- */
    .t2w-ai-banner__inner { padding: 40px 16px; gap: 24px; }
    .t2w-ai-banner__title { font-size: 22px; }
    .t2w-ai-banner__desc { font-size: 14px; }
    .t2w-ai-banner__cta { width: 100%; justify-content: center; font-size: 15px; }

    /* -- COMMUNITY -- */
    .t2w-comm-section { padding: 28px 0; }
    .t2w-comm-card { width: 260px; height: 340px; }
    .t2w-comm-card__img { height: 130px; }
    .t2w-comm-card__body { padding: 12px; }
    .t2w-comm-card__text { font-size: 13px; -webkit-line-clamp: 2; }
}

@media (max-width: 480px) {
    .t2w-hero-v9__cta { padding: 10px 24px; font-size: 14px; }
    .t2w-hero-v9__badge { font-size: 11px; padding: 4px 10px; }
    .t2w-dest-card__badges { gap: 3px; }
}
