/* Maldives Honeymoon Planner - Luxury Theme */
:root {
    --mh-ocean: #0a1628;
    --mh-ocean-mid: #0d2847;
    --mh-ocean-light: #1a4a6e;
    --mh-teal: #40e0d0;
    --mh-teal-light: #7fffd4;
    --mh-sand: #f5e6d3;
    --mh-sand-light: #faf6f1;
    --mh-gold: #c9a227;
    --mh-gold-light: #e8d48b;
    --mh-burgundy: #722f37;
    --mh-gray: #6b7280;
    --mh-border: #e8e0d5;
}

.maldives-honeymoon-widget {
    font-family: 'Poppins', -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    color: #1a1a2e;
}

.maldives-honeymoon-widget * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

/* Hero */
.mh-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--mh-ocean), var(--mh-ocean-mid), var(--mh-ocean-light));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 1.25rem;
    position: relative;
    overflow: hidden;
}

.mh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23ffffff' stroke-width='0.5' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.mh-hero-content {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.mh-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(232,212,139,0.2));
    color: var(--mh-gold-light);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(201,162,39,0.3);
    font-weight: 500;
}

.mh-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 600;
}

.mh-hero h1 span {
    background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.mh-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.mh-hero-btns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Buttons */
.mh-btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    font-family: inherit;
    width: 100%;
    min-height: 48px;
}

.mh-btn-primary {
    background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-light));
    color: var(--mh-ocean);
    box-shadow: 0 4px 20px rgba(201,162,39,0.4);
}

.mh-btn-primary:hover {
    box-shadow: 0 6px 30px rgba(201,162,39,0.5);
    transform: translateY(-2px);
}

.mh-btn-primary:active { transform: translateY(0); }

.mh-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.mh-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.mh-btn-burgundy {
    background: linear-gradient(135deg, var(--mh-burgundy), #8b3a42);
    color: #fff;
    box-shadow: 0 6px 20px rgba(114,47,55,0.3);
}

.mh-btn-burgundy:hover {
    box-shadow: 0 8px 28px rgba(114,47,55,0.4);
    transform: translateY(-2px);
}

.mh-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Stats */
.mh-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: #fff;
}

.mh-stat { text-align: center; }

.mh-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--mh-ocean);
    font-weight: 600;
}

.mh-stat-label {
    font-size: 0.65rem;
    color: var(--mh-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.1rem;
}

/* Section */
.mh-section {
    padding: 2.5rem 1.25rem;
    background: linear-gradient(180deg, var(--mh-sand-light), var(--mh-sand));
}

.mh-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mh-section-badge {
    color: var(--mh-gold);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.mh-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--mh-ocean);
}

/* Flow Cards */
.mh-flow-cards {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-width: 500px;
    margin: 0 auto;
}

.mh-flow-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.mh-flow-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-color: var(--mh-gold);
}

.mh-flow-card:active {
    transform: translateY(-2px) scale(0.98);
}

.mh-flow-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--mh-ocean);
    margin-bottom: 0.35rem;
}

.mh-flow-card p {
    color: var(--mh-gray);
    font-size: 0.85rem;
}

/* Selector Section */
.mh-selector {
    background: #fff;
    display: none;
    min-height: 100vh;
    padding-bottom: 100px;
}

.mh-selector.active { display: block; }

.mh-selector-wrap {
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem;
}

/* Progress */
.mh-progress {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 1.5rem;
}

.mh-progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0d6c8;
    transition: all 0.3s;
}

.mh-progress-dot.active {
    background: var(--mh-gold);
    width: 24px;
    border-radius: 4px;
}

.mh-progress-dot.done { background: var(--mh-teal); }

.mh-step-counter {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    color: var(--mh-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Slides */
.mh-slides { min-height: 380px; }

.mh-slide {
    display: none;
    animation: mhFadeIn 0.4s;
}

.mh-slide.active { display: block; }

@keyframes mhFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.mh-slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--mh-ocean);
    text-align: center;
    margin-bottom: 0.4rem;
}

.mh-slide-desc {
    text-align: center;
    color: var(--mh-gray);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

/* Options */
.mh-options {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.mh-options.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
}

.mh-option {
    background: #fff;
    border: 2px solid var(--mh-border);
    border-radius: 14px;
    padding: 1rem 0.85rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.mh-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mh-gold), var(--mh-gold-light));
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.mh-option:hover {
    border-color: #d0c8bd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.mh-option:active {
    transform: translateY(0) scale(0.98);
}

.mh-option.selected {
    border-color: var(--mh-gold);
    background: linear-gradient(135deg, rgba(201,162,39,0.06), rgba(232,212,139,0.06));
    box-shadow: 0 4px 20px rgba(201,162,39,0.15);
}

.mh-option.selected::before { transform: scaleX(1); }

.mh-option.selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-light));
    color: #fff;
    border-radius: 50%;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.mh-option h4 {
    font-size: 0.9rem;
    color: var(--mh-ocean);
    margin-bottom: 0.15rem;
    font-weight: 600;
}

.mh-option p {
    font-size: 0.75rem;
    color: var(--mh-gray);
}

/* Duration Cards */
.mh-duration-cards {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.mh-duration-card {
    background: #fff;
    border: 2px solid var(--mh-border);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    min-height: 44px;
}

.mh-duration-card:hover {
    border-color: #d0c8bd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.mh-duration-card:active {
    transform: translateY(0) scale(0.98);
}

.mh-duration-card.selected {
    border-color: var(--mh-gold);
    background: linear-gradient(135deg, rgba(201,162,39,0.06), rgba(232,212,139,0.06));
    box-shadow: 0 4px 20px rgba(201,162,39,0.15);
}

.mh-duration-card.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-light));
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.mh-duration-card.popular { border-color: #f0e6d3; }

.mh-duration-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-light));
    color: var(--mh-ocean);
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.mh-duration-nights {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--mh-ocean);
    margin-bottom: 0.15rem;
}

.mh-duration-desc {
    font-size: 0.8rem;
    color: var(--mh-gray);
    padding-right: 35px;
}

/* Budget Cards */
.mh-budgets {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.mh-budget {
    background: #fff;
    border: 2px solid var(--mh-border);
    border-radius: 14px;
    padding: 1.15rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    min-height: 44px;
}

.mh-budget:hover {
    border-color: #d0c8bd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.mh-budget:active {
    transform: translateY(0) scale(0.98);
}

.mh-budget.selected {
    border-color: var(--mh-gold);
    background: linear-gradient(135deg, rgba(201,162,39,0.06), rgba(232,212,139,0.06));
    box-shadow: 0 4px 20px rgba(201,162,39,0.15);
}

.mh-budget.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-light));
    color: #fff;
    border-radius: 50%;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.mh-budget-amt {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--mh-ocean);
}

.mh-budget-label {
    font-size: 0.7rem;
    color: var(--mh-gray);
    text-transform: uppercase;
    margin-top: 0.2rem;
}

/* Meal Dots */
.mh-meal-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    border: 2px solid;
}

.mh-meal-dot.veg { background: #22c55e; border-color: #16a34a; }
.mh-meal-dot.nonveg { background: #dc2626; border-color: #b91c1c; }
.mh-meal-dot.jain { background: #f59e0b; border-color: #d97706; }

/* Nav Buttons */
.mh-nav-btns {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    gap: 0.7rem;
    padding: 1rem 1.25rem;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 100;
}

.mh-nav-btns.show { display: flex; }

.mh-nav-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 28px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-family: inherit;
    min-height: 48px;
}

.mh-nav-back {
    background: var(--mh-sand-light);
    color: var(--mh-gray);
    border: 2px solid var(--mh-border);
}

.mh-nav-back:hover {
    background: #fff;
    border-color: #d0c8bd;
}

.mh-nav-next {
    background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-light));
    color: var(--mh-ocean);
    box-shadow: 0 4px 15px rgba(201,162,39,0.3);
}

.mh-nav-next:hover {
    box-shadow: 0 6px 20px rgba(201,162,39,0.4);
    transform: translateY(-1px);
}

.mh-nav-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Loading Screen */
.mh-loading {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--mh-ocean), var(--mh-ocean-mid));
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
}

.mh-loading.active { display: flex; }

.mh-loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201,162,39,0.3);
    border-top-color: var(--mh-gold);
    border-radius: 50%;
    animation: mhSpin 1s linear infinite;
    margin-bottom: 1.5rem;
}

@keyframes mhSpin { to { transform: rotate(360deg); } }

.mh-loading-text {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.mh-loading-subtext {
    color: var(--mh-gold-light);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Package Reveal */
.mh-package-reveal {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, var(--mh-sand-light), var(--mh-sand));
    z-index: 999;
    overflow-y: auto;
}

.mh-package-reveal.active { display: block; }

.mh-package-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 2rem;
}

.mh-package-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-light));
    color: var(--mh-ocean);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    letter-spacing: 0.5px;
}

.mh-package-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--mh-ocean);
    margin-bottom: 1.25rem;
    text-align: center;
}

.mh-package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 1.25rem;
}

.mh-package-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--mh-ocean);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
}

.mh-package-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.9), transparent 60%);
}

.mh-package-img-placeholder {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.mh-package-resort-name {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    z-index: 2;
}

.mh-package-body { padding: 1.25rem; }

.mh-package-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.mh-summary-item {
    background: var(--mh-sand-light);
    padding: 0.85rem 0.75rem;
    border-radius: 10px;
    text-align: center;
}

.mh-summary-label {
    font-size: 0.6rem;
    color: var(--mh-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mh-summary-value {
    font-weight: 600;
    color: var(--mh-ocean);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

.mh-price-section {
    background: linear-gradient(135deg, var(--mh-ocean), var(--mh-ocean-mid));
    padding: 1.25rem;
    border-radius: 14px;
    text-align: center;
}

.mh-price-label {
    color: var(--mh-gold-light);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.mh-price-masked {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.mh-price-blur {
    filter: blur(8px);
    user-select: none;
}

.mh-price-note {
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    margin-top: 0.4rem;
}

/* Form */
.mh-unwrap-section {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.mh-unwrap-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--mh-ocean);
    margin-bottom: 0.4rem;
}

.mh-unwrap-subtitle {
    color: var(--mh-gray);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.mh-form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.mh-form-label {
    display: block;
    font-size: 0.8rem;
    color: var(--mh-ocean);
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.mh-form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--mh-border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #fafafa;
    transition: all 0.2s;
}

.mh-form-input:focus {
    outline: none;
    border-color: var(--mh-gold);
    background: #fff;
}

.mh-privacy-note {
    text-align: center;
    font-size: 0.7rem;
    color: var(--mh-gray);
    margin-top: 1.25rem;
}

/* Success Screen */
.mh-success {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--mh-ocean), var(--mh-ocean-mid));
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    z-index: 1000;
}

.mh-success.active { display: flex; }

.mh-success-content { max-width: 380px; }

.mh-success-check {
    width: 70px;
    height: 70px;
    border: 3px solid var(--mh-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    color: var(--mh-gold);
    background: rgba(201,162,39,0.1);
}

.mh-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.65rem;
}

.mh-success-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mh-success-price {
    background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(232,212,139,0.1));
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.mh-success-price-label {
    color: var(--mh-gold-light);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mh-success-price-amt {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-top: 0.4rem;
}

.mh-success-price-per {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    margin-top: 0.2rem;
}

/* Bundles Section */
.mh-bundles {
    background: #fff;
    padding: 2.5rem 1.25rem;
    display: none;
}

.mh-bundles.active { display: block; }

.mh-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.mh-filters::-webkit-scrollbar { display: none; }

.mh-filter-btn {
    padding: 10px 16px;
    border-radius: 22px;
    border: 2px solid var(--mh-border);
    background: #fff;
    color: var(--mh-gray);
    font-size: 0.8rem;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-weight: 500;
    min-height: 44px;
}

.mh-filter-btn:hover {
    border-color: #d0c8bd;
    background: #fafafa;
}

.mh-filter-btn.active {
    border-color: var(--mh-gold);
    background: linear-gradient(135deg, rgba(201,162,39,0.1), rgba(232,212,139,0.1));
    color: var(--mh-ocean);
    font-weight: 600;
}

/* Bundle Cards */
.mh-bundles-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mh-bundle-card {
    background: var(--mh-sand-light);
    border-radius: 16px;
    overflow: hidden;
}

.mh-bundle-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--mh-ocean);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mh-bundle-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(10,22,40,0.9), transparent);
}

.mh-bundle-img-placeholder {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.mh-bundle-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.mh-bundle-badge {
    background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-light));
    color: var(--mh-ocean);
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.mh-bundle-badge.adults {
    background: linear-gradient(135deg, var(--mh-burgundy), #8b3a42);
    color: #fff;
}

.mh-bundle-body { padding: 1.15rem; }

.mh-bundle-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--mh-ocean);
    margin-bottom: 0.2rem;
}

.mh-bundle-atoll {
    font-size: 0.8rem;
    color: var(--mh-gray);
    margin-bottom: 0.6rem;
}

.mh-bundle-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.mh-bundle-tag {
    background: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--mh-ocean);
}

.mh-bundle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.85rem;
    border-top: 1px solid var(--mh-border);
}

.mh-bundle-price-label { font-size: 0.65rem; color: var(--mh-gray); }
.mh-bundle-price-amt { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--mh-ocean); }
.mh-bundle-price-per { font-size: 0.6rem; color: var(--mh-gray); }

.mh-btn-sm {
    padding: 12px 18px;
    font-size: 0.8rem;
    width: auto;
    min-height: 44px;
}

/* Desktop */
@media (min-width: 768px) {
    .mh-hero h1 { font-size: 3rem; }
    .mh-hero { padding: 2rem 1.5rem; }
    .mh-hero-btns { flex-direction: row; justify-content: center; }
    .mh-btn { width: auto; min-width: 220px; padding: 16px 32px; font-size: 0.95rem; }
    .mh-flow-cards { flex-direction: row; max-width: 700px; }
    .mh-flow-card { flex: 1; padding: 2rem 1.5rem; }
    .mh-flow-card h3 { font-size: 1.3rem; }
    .mh-stat-num { font-size: 1.75rem; }
    .mh-section { padding: 3.5rem 1.5rem; }
    .mh-section-title { font-size: 1.75rem; }
    .mh-slide-title { font-size: 1.6rem; }
    .mh-budgets { flex-direction: row; justify-content: center; }
    .mh-budget { min-width: 150px; flex: 1; max-width: 180px; }
    .mh-nav-btns { position: relative; box-shadow: none; max-width: 500px; margin: 2rem auto 0; padding: 0; }
    .mh-nav-btns.show { display: flex; }
    .mh-bundles-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
    .mh-package-img { height: 240px; }
    .mh-bundle-img { height: 200px; }
}

@media (min-width: 1024px) {
    .mh-bundles-grid { grid-template-columns: repeat(3, 1fr); }
}
