/**
 * ============================================================
 * FILE: package.css
 * PROJECT: Rudra Holidays
 * ============================================================
 * Purpose:  Styles for the Packages page. Includes hero
 *           section, package cards grid, hero panel stats,
 *           CTA section, and footer strip.
 *
 * Used By:  html/package.html
 *
 * Depends On:
 *   theme.css       → dark mode overrides
 *   responsive.css  → media queries
 *
 * Contains:
 *   - CSS variables (:root)
 *   - Header & navigation
 *   - Packages hero section
 *   - Hero panel with stats (.hero-panel, .hero-panel-card)
 *   - Package cards grid (.package-card, .package-points)
 *   - Package footer (price box + enquire button)
 *   - CTA section
 *   - Footer strip
 * ============================================================
 */
:root {
    --primary-color: #b91c1c;
    --primary-hover: #991b1b;
    --primary-dark: #7f1d1d;
    --accent-color: #f59e0b;

    --bg-main: #faf7f0;
    --bg-card: #ffffff;
    --text-color: #1f2937;
    --text-muted: #6b7280;

    --border-color: rgba(127, 29, 29, 0.12);
    --shadow-sm: 0 6px 18px rgba(31, 41, 55, 0.06);
    --shadow-md: 0 14px 34px rgba(31, 41, 55, 0.10);
    --shadow-lg: 0 24px 60px rgba(31, 41, 55, 0.14);

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background:
        radial-gradient(circle at top left, rgba(185, 28, 28, 0.05), transparent 26%),
        linear-gradient(180deg, #fffdf8 0%, var(--bg-main) 100%);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}



a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
input {
    font: inherit;
}

.container {
    width: min(1400px, calc(100% - clamp(24px, 4vw, 32px)));
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 600;
    padding: 13px 22px;
    border-radius: 14px;
    transition: 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn i {
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    box-shadow: 0 10px 28px rgba(185, 28, 28, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(185, 28, 28, 0.24);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.76);
    color: var(--primary-dark);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: #fff;
    border-color: rgba(185, 28, 28, 0.18);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    padding: 16px 0;
    background: rgba(250, 247, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(127, 29, 29, 0.08);
    box-shadow: 0 8px 22px rgba(31, 41, 55, 0.05);
}

.header.scrolled {
    background: rgba(250, 247, 240, 0.96);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo img {
    height: 72px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-dark);
    font-size: 1.7rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.page-hero {
    position: relative;
    padding: 26px 0 44px;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.55;
    pointer-events: none;
}

.orb-1 {
    width: 340px;
    height: 340px;
    background: rgba(185, 28, 28, 0.10);
    top: -90px;
    right: -80px;
}

.orb-2 {
    width: 260px;
    height: 260px;
    background: rgba(245, 158, 11, 0.10);
    bottom: -100px;
    left: -90px;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 0.82rem;
    letter-spacing: 2.8px;
    font-weight: 800;
    text-transform: uppercase;
}

.subtitle::before,
.subtitle::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 999px;
}

.hero-copy h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin: 14px 0 16px;
    color: #1f2937;
    max-width: 760px;
}

.hero-text {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1.02rem;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
    max-width: 640px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(127, 29, 29, 0.10);
    border-radius: 20px;
    padding: 18px 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.stat-box strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.stat-box span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.hero-panel {
    display: grid;
    gap: 16px;
    background: linear-gradient(180deg, #fff 0%, #fffaf4 100%);
    border: 1px solid rgba(127, 29, 29, 0.10);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

.hero-panel-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 22px;
    background: rgba(250, 247, 240, 0.82);
    border: 1px solid rgba(127, 29, 29, 0.08);
}

.panel-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.12), rgba(185, 28, 28, 0.05));
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero-panel-card h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #111827;
}

.hero-panel-card p {
    color: var(--text-muted);
    line-height: 1.55;
}

.hero-panel-note {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.95), rgba(127, 29, 29, 0.98));
    color: #fff;
    box-shadow: 0 18px 30px rgba(127, 29, 29, 0.18);
}

.hero-panel-note p {
    line-height: 1.7;
}

.category-strip {
    padding: 0 0 18px;
}

.category-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(127, 29, 29, 0.10);
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.category-pill.active {
    background: rgba(185, 28, 28, 0.08);
    border-color: rgba(185, 28, 28, 0.16);
}

.packages-section,
.cta-section {
    padding: 26px 0 42px;
}

.process-section {
    padding: 100px 0 40px;
}

.section-head {
    margin-bottom: 28px;
}

.section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.08;
    margin: 14px 0 12px;
    color: #1f2937;
}

.section-head p:last-child {
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 760px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.package-card {
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #fffaf4 100%);
    border-radius: 26px;
    border: 1px solid rgba(127, 29, 29, 0.10);
    padding: 26px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    background:
        radial-gradient(circle at top right, rgba(185, 28, 28, 0.08), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fff8f1 100%);
    border-color: rgba(185, 28, 28, 0.18);
}

.package-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(185, 28, 28, 0.10);
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.package-card h3 {
    font-size: 1.2rem;
    color: #111827;
    margin-bottom: 8px;
    font-weight: 800;
}

.package-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 0.92rem;
}

.package-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.package-points {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.package-points span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-size: 0.94rem;
}

.package-points i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.package-footer {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.price-box small {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.price-box strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.process-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(127, 29, 29, 0.10);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.12), rgba(185, 28, 28, 0.05));
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.process-card h3 {
    color: #111827;
    font-size: 1.08rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.process-card p {
    color: var(--text-muted);
    line-height: 1.65;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(185, 28, 28, 0.12), transparent 35%),
        linear-gradient(180deg, #fff 0%, #fffaf4 100%);
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    margin: 10px 0;
    color: #111827;
}

.cta-box p:last-child {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 620px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer {
    margin-top: auto;
    background: linear-gradient(180deg, #7f1d1d 0%, #611313 100%);
    color: rgba(255, 255, 255, 0.92);
}

.footer-content {
    padding: 44px 0 28px;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr;
    gap: 28px;
}

.footer-logo img {
    height: 72px;
}

.footer-brand p {
    margin-top: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.80);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.82);
}

.footer-contact i {
    color: #fbbf24;
    font-size: 1.05rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
}

@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .package-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .nav-list {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .btn-nav {
        display: none;
    }

    .nav-list.open {
        display: flex;
        position: fixed;
        top: 96px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(127, 29, 29, 0.10);
        border-radius: 22px;
        padding: 12px;
        box-shadow: var(--shadow-lg);
        z-index: 250;
    }

    .nav-list.open li {
        width: 100%;
    }

    .nav-list.open a {
        display: block;
        padding: 14px;
        border-radius: 14px;
    }

    .nav-list.open a:hover,
    .nav-list.open a.active {
        background: rgba(185, 28, 28, 0.08);
    }

    .nav-list.open a::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(1400px, calc(100% - 20px));
    }

    .process-section {
        padding-top: 116px;
        padding-bottom: 20px;
    }
    .page-hero {
        padding-top: 26px;
    }

    .hero-actions,
    .cta-actions,
    .package-footer {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn,
    .cta-actions .btn,
    .package-footer .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .package-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .package-card,
    .cta-box {
        padding: 22px;
    }

    .footer-content {
        padding: 34px 0 22px;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding-top: 100px;
        padding-bottom: 26px;
    }
    .page-hero {
        padding-top: 26px;
        padding-bottom: 30px;
    }

    .package-card {
        padding: 18px;
    }

    .process-card {
        padding: 18px;
    }

    .cta-box {
        padding: 18px;
        border-radius: 22px;
    }

    .hero-panel {
        padding: 18px;
        border-radius: 22px;
    }

    .hero-panel-card {
        padding: 14px;
    }

    .stat-box {
        padding: 14px 12px;
    }

    .category-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .category-pill {
        flex-shrink: 0;
    }
}
/* =========================
   Ideas Inspirations (Destination Cards Style)
========================= */
.ideas-category-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.ideas-category-filters::-webkit-scrollbar {
    display: none;
}

.ideas-filter-pill {
    white-space: nowrap;
    padding: 10px 24px;
    background: #fff;
    border: 1px solid rgba(127, 29, 29, 0.15);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ideas-filter-pill:hover,
.ideas-filter-pill.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.2);
}

.ideas-inspiration-grid {
    width: 100%;
    position: relative;
    padding: 10px 0;
    touch-action: auto;
    -webkit-overflow-scrolling: touch;
}

.ideas-inspiration-track {
    display: flex;
    gap: 20px;
    will-change: transform;
    cursor: grab;
}

.ideas-inspiration-track:active {
    cursor: grabbing;
}

.ideas-inspiration-track.is-animating {
    transition: transform 0.5s ease-in-out;
}


.ideas-inspiration-card {
    flex: 0 0 260px !important;
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
    border-radius: 24px !important;
    padding: 0 !important;
    background: #fff;
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    overflow: hidden;
}

.ideas-inspiration-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.ideas-inspiration-card.hide {
    display: none;
}

.ideas-inspiration-image-container {
    width: 220px !important;
    height: 220px !important;
    margin: 20px auto 0 auto !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    position: relative;
}

.ideas-inspiration-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.14));
    pointer-events: none;
}

.ideas-inspiration-image-el {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
}

.ideas-inspiration-card h3 {
    margin-top: 14px !important;
    margin-bottom: 0 !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #111827;
    text-align: center;
    line-height: 1.15 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 15px;
    box-sizing: border-box;
}

.ideas-inspiration-card p {
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    font-size: 16px !important;
    color: #6b7280;
    text-align: center;
    line-height: 1.3 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 15px;
    box-sizing: border-box;
}

/* =========================
   Ideas Lightbox
========================= */
.ideas-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ideas-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.ideas-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 2;
}

.ideas-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ideas-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.ideas-lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: contain;
}

.ideas-lightbox-info {
    text-align: center;
    margin-top: 20px;
    color: #fff;
}

.ideas-lightbox-category {
    display: inline-block;
    background: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.ideas-lightbox-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.ideas-lightbox-info p {
    font-size: 1rem;
    color: #d1d5db;
}

.ideas-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.ideas-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ideas-lightbox-nav.prev { left: 24px; }
.ideas-lightbox-nav.next { right: 24px; }

@media (max-width: 768px) {
    .ideas-lightbox-nav {
        display: none; /* Rely on swipe for mobile */
    }
    .ideas-lightbox-content img {
        max-height: 60vh;
    }
}

.ideas-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid rgba(127, 29, 29, 0.15);
    color: var(--primary-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.ideas-nav-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.ideas-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ideas-nav-btn.prev { left: -22px; }
.ideas-nav-btn.next { right: -22px; }

@media (max-width: 768px) {
    .ideas-nav-btn { display: none; } /* Mobile uses native swipe */
}

/* Update grid to be a native scrolling row */
.ideas-inspiration-grid {
    overflow-x: auto;
    width: 100%;
    position: relative;
    padding: 10px 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.ideas-inspiration-grid::-webkit-scrollbar {
    display: none;
}

.ideas-inspiration-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.ideas-inspiration-card {
    scroll-snap-align: start;
}
