/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
    /* Premium Color Palette - Emerald Refresh */
    --primary: #17AE7D;
    --primary-dark: #128a63;
    --primary-light: #f0fdf4;
    --primary-glass: rgba(23, 174, 125, 0.15);

    --accent: #f59e0b;
    /* Gold/Amber */

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-invert: #ffffff;

    --bg-body: #f8fafc;
    --bg-surface: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.9);

    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Premium Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 15px rgba(16, 185, 129, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --header-height: 70px;
    --nav-height: 70px;
    /* Mobile Bottom Nav Height */
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.5;
    padding-bottom: calc(var(--nav-height) + 20px);
    /* Space for bottom nav */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    /* Keep headings clean sans-serif as requested, or switch to Playfair for luxury */
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* --- UTILITIES --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

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

.py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
}

.mt-8 {
    margin-top: 32px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-12 {
    margin-bottom: 48px;
}

.text-muted {
    color: var(--text-muted);
}

.text-yellow-400 {
    color: #fac031;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background: var(--text-main);
    /* Modern Dark Button */
    color: white;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
    background: black;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--border);
    background: white;
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
}

/* --- HEADER --- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--text-main);
}

.brand-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .brand-logo {
        height: 40px;
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.trust-badge img {
    height: 20px;
    width: auto;
}

.trust-badge i {
    font-size: 16px;
}

.trust-text div:first-child {
    font-size: 10px;
    font-weight: 700;
    color: #10b981;
}

.trust-text div:last-child {
    font-size: 9px;
    color: #94a3b8;
}

.search-bar {
    position: relative;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.search-icon {
    color: var(--primary);
    font-size: 16px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-main);
}

.search-filters {
    display: flex;
    gap: 12px;
    color: var(--text-muted);
    font-size: 16px;
}

/* --- NEW HERO SECTION (PREMIUM BANNER) --- */
.hero-section {
    padding: 10px 0 20px 0;
}

.hero-card {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
}

.hero-content {
    flex: 1;
    max-width: 65%;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffd700;
    /* Gold Icon */
}

.hero-badge i {
    color: inherit;
}

.hero-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    line-height: 1.05;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 12px;
    line-height: 1.5;
    color: #e2e8f0;
    margin-bottom: 20px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-cta-btn {
    background: white;
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero-side-images {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.hero-side-item {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-side-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* --- MOST LOVED (FULL CARD) --- */
.loved-card {
    min-width: 280px;
    max-width: 300px;
    height: 420px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: var(--shadow-sm);
    margin-right: 8px;
}

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

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

.loved-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.badge-rating {
    background: #1e293b;
    color: white;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.badge-premium {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.loved-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 20px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    color: white;
}

.loved-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 4px;
    line-height: 1.1;
}

.loved-loc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.loved-price {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.old-price {
    font-size: 14px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
}

.new-price {
    font-size: 22px;
    font-weight: 700;
    color: #4ade80;
    /* Brighter Green */
    line-height: 1;
}


/* --- LOCATIONS GRID (MODERN) --- */
.locations-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 16px;
    scrollbar-width: none;
    margin: 0 -20px;
    /* Bleed to edge */
    padding: 0 20px 20px 20px;
    /* Restore padding */
}

.locations-grid::-webkit-scrollbar {
    display: none;
}

/* Circular Location Design based on user request "change icons ... size" */
.loc-card {
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.loc-card.active .loc-img-circle {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
    transform: scale(1.05);
}

.loc-img-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.loc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loc-name-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
}

/* --- IMMERSIVE CARDS (HORIZONTAL SCROLL) --- */
.h-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 4px 24px 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.h-scroll::-webkit-scrollbar {
    display: none;
}

.immersive-card {
    min-width: 260px;
    height: 320px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: var(--shadow-md);
}

.immersive-img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.immersive-card:hover .immersive-img {
    transform: scale(1.1);
}

.immersive-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    color: white;
}

.immersive-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-main);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.immersive-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.immersive-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-light);
}

/* --- LIST GRID (VERTICAL) --- */
.grid-listings {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .grid-listings {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.grid-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.g-img-wrap {
    position: relative;
    height: 200px;
}

.card-rating-abs {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: white;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.g-content {
    padding: 16px;
}

.g-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.g-title {
    font-size: 18px;
    font-weight: 700;
}

.g-loc {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.g-features {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    background: var(--bg-body);
    padding: 8px;
    border-radius: var(--radius-sm);
}

.g-feat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.g-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
}

.price-tag {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
}

.price-tag span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.btn-view-sm {
    padding: 8px 16px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.2s;
}

.btn-view-sm:hover {
    background: var(--primary);
    color: white;
}

/* --- VIDEO SLIDER --- */
.video-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
    margin: 0 -20px;
    padding: 0 20px 20px;
}

.video-slider::-webkit-scrollbar {
    display: none;
}

.video-card {
    min-width: 280px;
    height: 160px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.play-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.play-btn:hover {
    background: white;
    color: var(--primary);
}

/* --- FAQ --- */
.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    padding: 16px;
}

.faq-question {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    font-size: 14px;
    color: var(--text-muted);
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    margin-top: 12px;
    max-height: 200px;
}

/* --- FOOTER --- */
.footer {
    background: #111827;
    color: #94a3b8;
    padding: 40px 0 80px;
}

.footer h2 {
    color: white;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 800;
}

.footer ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* --- MOBILE BOTTOM NAV --- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom, 10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    gap: 4px;
    font-size: 10px;
    width: 20%;
    padding: 4px;
    border-radius: 8px;
    transition: 0.2s;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 2px;
    transition: 0.2s;
}

/* Active State */
.nav-item.active {
    color: var(--primary);
}

.nav-item.active i {
    transform: translateY(-2px);
}

/* --- DESKTOP TWEAKS --- */
@media (min-width: 980px) {
    .bottom-nav {
        display: none;
    }

    body {
        padding-bottom: 0;
    }

    .hero {
        margin-top: 24px;
    }

    /* Revert Circular Locations to Cards on Desktop if wanted, or keep consistent */
    .loc-card {
        min-width: 120px;
    }

    .loc-img-circle {
        width: 100px;
        height: 100px;
    }
}

/* =========================================
   PREMIUM DESKTOP STYLES (Farmbyrajpara)
   ========================================= */

/* Visibility Control */
.desktop-view {
    display: none;
}

@media (min-width: 980px) {
    .mobile-view {
        display: none !important;
    }

    .desktop-view {
        display: block !important;
    }
}

/* Global Desktop Font */
@media (min-width: 980px) {
    body {
        font-family: 'Outfit', sans-serif;
        background-color: #fff;
    }
}

/* Desktop Header */
.d-header {
    background: white;
    padding: 14px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #ebebeb;
}

.d-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.d-logo-area {
    display: flex;
    align-items: center;
    gap: 24px;
}

.d-logo-area .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-weight: 800;
    font-size: 24px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.d-logo-area .logo span {
    color: var(--primary);
}

.d-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 20px;
    border-left: 1px solid #e2e8f0;
}

.d-trust-badge i {
    font-size: 20px;
    color: #f59e0b;
}

.d-trust-text div:first-child {
    font-size: 10px;
    font-weight: 700;
    color: #f59e0b;
    line-height: 1.2;
}

.d-trust-text div:last-child {
    font-size: 10px;
    color: #64748b;
    line-height: 1.2;
    font-weight: 600;
}

/* Header Search Bar */
.d-search-bar-header {
    flex: 1;
    max-width: 420px;
    margin: 0 40px;
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 99px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
}

.d-search-bar-header i {
    color: #94a3b8;
}

.d-search-bar-header input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: #222222;
}

/* Nav */
.d-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.d-nav a {
    text-decoration: none;
    color: #222222;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 20px;
    transition: background 0.1s;
}

.d-nav a:hover {
    background: #f7f7f7;
}

/* Desktop List Your Farm Button */
.d-list-farm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 20px;
    transition: all 0.2s;
}

.d-list-farm-btn:hover {
    background: #dc8a04;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(220, 138, 4, 0.2);
}

.d-list-farm-btn i {
    font-size: 14px;
}

.btn-d-login {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.btn-d-login:hover {
    background: var(--primary-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.d-hero {
    position: relative;
    text-align: center;
    padding: 80px 0 40px 0;
    background: #fafafa;
}

.d-hero-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.d-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.d-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.6) 50%, #ffffff 100%);
}

.d-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.d-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #222222;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.d-hero-sub {
    font-size: 18px;
    color: #717171;
    margin-bottom: 60px;
    font-weight: 400;
}

/* --- ULTRA PREMIUM SEARCH WIDGET (AIRBNB STYLE) --- */
.d-search-widget {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border-radius: 40px;
    /* Perfectly round pill */
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    /* Deep, soft luxury shadow */
    border: 1px solid #dddddd;
    margin: 0 auto;
    width: 100%;
    max-width: 920px;
    height: 68px;
    /* Exact modern height */
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 10;
}

.d-sw-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    border-radius: 40px;
    padding: 0 32px;
    position: relative;
    cursor: pointer;
    background: transparent;
    transition: background 0.2s ease;
}

.d-sw-section:hover {
    background: #ebebeb;
    /* Airbnb hover color */
}

/* Hide adjacent dividers on hover for a clean pill look */
.d-sw-section:hover+.d-sw-divider,
.d-sw-divider:has(+ .d-sw-section:hover) {
    opacity: 0;
}

.location-section {
    flex: 1.3;
    padding-left: 32px;
}

.date-section {
    flex: 1;
}

.guest-section {
    flex: 1.2;
    padding-right: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.guest-text-wrap {
    display: flex;
    flex-direction: column;
}

.search-btn-section {
    padding-right: 8px;
    margin-left: auto;
}

.d-sw-label {
    font-size: 12px;
    line-height: 14px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 2px;
    cursor: pointer;
    letter-spacing: 0.04em;
}

.d-sw-input,
.d-sw-select-modern {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-size: 14px;
    color: #222222;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    /* Pointer to feel like a button */
    padding: 0 !important;
    margin: 0 !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    appearance: none;
    box-shadow: none !important;
    line-height: 18px !important;
}

.d-sw-input::placeholder {
    color: #717171;
    font-weight: 400;
    opacity: 1;
    /* Fix for firefox fading placeholders */
}

.d-sw-select-modern option {
    font-weight: 500;
    color: #222222;
}

input[type="date"].d-sw-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    /* Hide calendar icon to keep it clean */
    cursor: pointer;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
}

.d-sw-divider {
    width: 1px;
    height: 32px;
    background: #dddddd;
    margin: 0;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.d-search-btn-large {
    background: #10b981;
    color: white;
    border: none;
    border-radius: 50px;
    height: 48px;
    width: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.d-search-btn-large:hover {
    background: #059669;
    transform: scale(1.05);
}

.d-search-btn-large:active {
    transform: scale(0.96);
}

/* Green Date Boxes (Premium AirBnb Design) */
.d-date-box {
    background-color: #f0fdf4 !important;
    /* Emerald 50 */
    border: 1px solid #bbf7d0 !important;
    /* Emerald 200 */
    border-radius: 12px !important;
    padding: 4px 14px !important;
    height: auto !important;
    min-height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.d-date-box:hover {
    background-color: #dcfce7 !important;
    /* Emerald 100 */
}

.d-date-label {
    color: #6b7280 !important;
    font-weight: 500 !important;
    font-size: 10px !important;
    line-height: 12px !important;
    margin-bottom: 2px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.d-date-val {
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #1f2937 !important;
    line-height: 16px !important;
}

/* Circular Guest Buttons */
.btn-circular {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    border: 1px solid #e5e7eb !important;
    background: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    color: #374151 !important;
    cursor: pointer !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}

.btn-circular:hover {
    border-color: #9ca3af !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
    color: #111827 !important;
}

.guest-number-bold {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    min-width: 16px;
    text-align: center;
}

/* Premium Custom Location Dropdown */
.premium-loc-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 380px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    padding: 12px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
    pointer-events: none;
    border: 1px solid #ebebeb;
    max-height: 320px;
    overflow-y: auto;
}

/* Beautiful Hidden Scroll Slider for Locations */
.premium-loc-dropdown::-webkit-scrollbar {
    width: 6px;
}

.premium-loc-dropdown::-webkit-scrollbar-track {
    background: transparent;
    margin: 10px 0;
}

.premium-loc-dropdown::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.premium-loc-dropdown::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.premium-loc-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.p-loc-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    gap: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
    color: #222222;
    font-weight: 500;
}

.p-loc-item:hover {
    background: #f7f7f7;
}

.p-loc-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    font-size: 16px;
    flex-shrink: 0;
}

.p-loc-item.p-loc-active {
    background: #f0fdf4;
}

.p-loc-item.p-loc-active .p-loc-icon-wrapper {
    background: #10b981;
    color: white;
}

.p-loc-item.p-loc-active span {
    font-weight: 700;
    color: #065f46;
}



/* Browse Location Tags */
.d-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #222222;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.d-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.d-tag {
    background: white;
    border: 1px solid #dddddd;
    padding: 12px 28px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
    color: #222222;
    cursor: pointer;
    transition: all 0.2s;
}

.d-tag:hover {
    border-color: #222222;
}

.d-tag.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Desktop Grid Listings */
.d-grid-listings {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 24px;
}

.d-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.d-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.d-card-img-wrap {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.d-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.d-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #222222;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.d-card-offer {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #fef3c7;
    color: #b45309;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 99px;
}

.d-card-body {
    padding: 16px;
}

.d-card-title {
    font-size: 17px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.d-card-loc {
    font-size: 15px;
    color: #717171;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.d-card-meta {
    font-size: 14px;
    color: #717171;
    margin-bottom: 8px;
    display: flex;
    gap: 12px;
}

.d-card-rating {
    font-size: 14px;
    font-weight: 400;
    color: #222222;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.d-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.d-old-price {
    text-decoration: line-through;
    color: #717171;
    font-size: 14px;
}

.d-new-price {
    font-weight: 600;
    color: #222222;
    font-size: 17px;
}

/* Destinations */
.d-grid-dest {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.d-dest-card {
    height: 280px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

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

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

.d-dest-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-weight: 600;
    font-size: 22px;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.d-dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 40%);
}

/* Video Grid */
.d-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.d-video-card {
    height: 280px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.d-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.d-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.d-video-overlay h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* FAQ */
.d-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.d-faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
}

.d-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #222222;
    line-height: 1.5;
    padding: 8px 0;
}

.d-faq-question i {
    color: #717171;
    transition: transform 0.3s;
}

.d-faq-answer {
    margin-top: 16px;
    font-size: 15px;
    color: #717171;
    display: none;
    line-height: 1.6;
}

/* CTA Section */
.d-cta-section {
    background: var(--primary);
    padding: 40px 40px;
    margin-top: 40px;
}

.d-cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.d-cta-content {
    color: white;
}

.d-cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    line-height: 1.3;
}

.d-cta-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
    opacity: 0.9;
    line-height: 1.5;
}

.d-cta-btn {
    background: white;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}

.d-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.d-cta-features {
    display: flex;
    gap: 32px;
    margin-top: 28px;
}

.d-cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.d-cta-feature i {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.d-cta-feature strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.d-cta-feature span {
    display: block;
    font-size: 13px;
    opacity: 0.85;
}

.d-cta-benefits {
    background: rgba(255, 255, 255, 0.12);
    padding: 32px;
    border-radius: 12px;
    color: white;
}

.d-cta-benefits h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.d-cta-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.d-cta-benefits li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.d-cta-benefits li i {
    color: white;
    font-size: 14px;
}

.d-cta-link {
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
}

/* Footer */
.d-footer {
    background: #0f172a;
    color: white;
    padding: 80px 40px 40px;
}

.d-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(6, 1fr);
    gap: 48px 60px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.d-footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px;
}

.d-footer-logo a {
    display: block !important;
    text-align: center !important;
}

.d-footer-logo img {
    display: block !important;
    margin: 0 auto !important;
}

.d-footer-logo span {
    color: var(--primary);
}

.d-footer-desc {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 320px;
}

.d-footer-social {
    display: flex;
    gap: 12px;
}

.d-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.2s;
}

.d-footer-social a:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Fix for YouTube icon */
.d-footer-social .fa-brands:nth-child(4) {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

/* Fix for X Twitter icon */
.d-footer-social .fa-x-twitter {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

.d-footer-social .fa-x-twitter:before {
    content: "\e61b";
}

.d-footer-col h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    letter-spacing: 0.3px;
}

.d-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.d-footer-col li {
    margin-bottom: 14px;
}

.d-footer-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    line-height: 1.6;
}

.d-footer-col a:hover {
    color: var(--primary);
}

.d-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

.d-footer-contact i {
    color: var(--primary);
    margin-top: 2px;
}

.d-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.d-footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.d-footer-links {
    display: flex;
    gap: 24px;
}

.d-footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
}

.d-footer-links a:hover {
    color: var(--primary);
}

/* --- New Premium Desktop Features --- */

/* Load More Button */
.d-load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.d-btn-load-more {
    background: #222222;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #222222;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.d-btn-load-more:hover {
    background: white;
    color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Destination Hover Animation */
.d-dest-card {
    position: relative;
    overflow: hidden;
}

.d-dest-hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    border-radius: 30px;
    color: #222222;
    font-weight: 600;
    font-size: 15px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.d-dest-card:hover .d-dest-hover-text {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.d-dest-card:hover img {
    transform: scale(1.05);
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

/* --- Mobile Upgrades --- */

/* Mobile Hero Slider */
.mobile-hero-slider {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
}

.m-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.m-hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.m-hero-slide .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m-hero-slide .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px 24px;
}

.m-hero-slide .hero-content {
    color: white;
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
}

.m-hero-slide .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.m-hero-slide .hero-title-large {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 12px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.m-hero-slide .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.5;
}

.m-hero-slide .hero-cta-btn {
    background: white;
    color: #222;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Enhanced Mobile Listings */
.h-scroll {
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    scroll-padding: 20px;
}

.loved-card {
    min-width: 300px;
    margin-right: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.loved-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.loved-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
}

.badge-rating {
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-premium {
    background: #222;
    color: #ffd700;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.loved-content {
    padding: 20px;
}

.loved-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #222;
}

.loved-loc {
    color: #717171;
    font-size: 14px;
    margin-bottom: 12px;
}

.loved-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: flex-start;
}

.new-price {
    font-size: 18px;
    font-weight: 800;
    color: #222;
}



/* === PREMIUM MOBILE BANNER SLIDER === */
@media (max-width: 768px) {
    .premium-mobile-slider {
        position: relative;
        height: 480px;
        overflow: hidden;
        margin: 0 16px 24px;
        border-radius: 24px;
    }

    .premium-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.2s ease-in-out;
        z-index: 1;
    }

    .premium-slide.active {
        opacity: 1;
        z-index: 2;
    }

    .premium-slide-bg {
        position: absolute;
        inset: 0;
        overflow: hidden;
    }

    .premium-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .premium-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.3) 40%,
                rgba(0, 0, 0, 0.85) 100%);
        display: flex;
        align-items: flex-end;
        padding: 24px;
    }

    .premium-content {
        width: 100%;
        color: white;
    }

    .premium-location {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(8px);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 12px;
        color: white;
    }

    .premium-location i {
        color: #1DBF73;
    }

    .premium-title {
        font-size: 32px;
        font-weight: 800;
        line-height: 1.1;
        margin: 0 0 8px;
        color: white;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .premium-desc {
        font-size: 15px;
        line-height: 1.4;
        margin: 0 0 16px;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 400;
    }

    .premium-thumbnails {
        display: flex;
        gap: 10px;
        margin-bottom: 16px;
    }

    .premium-thumb {
        width: 70px;
        height: 70px;
        border-radius: 12px;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .premium-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .premium-book-btn {
        background: #1DBF73;
        color: white;
        border: none;
        padding: 14px 0;
        border-radius: 12px;
        font-weight: 700;
        font-size: 16px;
        width: 100%;
        cursor: pointer;
        box-shadow: 0 4px 16px rgba(29, 191, 115, 0.4);
        transition: all 0.3s ease;
    }

    .premium-book-btn:active {
        transform: scale(0.98);
    }
}

/* === PREMIUM MOBILE BANNER SLIDER (UPDATED) === */
@media (max-width: 768px) {
    .premium-mobile-slider {
        position: relative;
        height: 400px;
        /* Reference card looks a bit shorter/wider aspect */
        overflow: hidden;
        margin: 0 16px 24px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .premium-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.2s ease-in-out;
        z-index: 1;
    }

    .premium-slide.active {
        opacity: 1;
        z-index: 2;
    }

    .premium-slide-bg {
        position: absolute;
        inset: 0;
    }

    .premium-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .premium-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
        display: flex;
        padding: 24px 20px;
        align-items: center;
        /* Center Vertically? Or bottom? Ref image has content spread */
    }

    .premium-content-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .premium-text-area {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Center content vertically */
        padding-right: 15px;
        align-items: flex-start;
    }

    .premium-location {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        font-weight: 600;
        color: white;
        margin-bottom: 8px;
    }

    .premium-location i {
        color: #ef4444;
        /* Red pin */
    }

    .premium-title {
        font-family: 'Playfair Display', serif;
        /* Serif font like image */
        font-size: 32px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 8px;
        color: white;
    }

    .premium-desc {
        color: #4ade80;
        /* Bright Green text */
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
        text-transform: lowercase;
        /* match image style */
    }

    .premium-book-btn {
        background: white;
        color: #2e7d32;
        /* Dark Green text */
        border: none;
        padding: 10px 24px;
        border-radius: 50px;
        /* Pill shape */
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .premium-thumbnails {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 110px;
        justify-content: center;
    }

    .premium-thumb {
        width: 100%;
        height: 75px;
        border-radius: 4px;
        /* Slightly rounded or sharp? Ref looks sharp/minimal border */
        overflow: hidden;
        border: 2px solid white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .premium-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* === SIMPLE MOBILE BANNER (Image Only - Slide Effect) === */
@media (max-width: 768px) {
    .simple-mobile-slider {
        position: relative;
        height: 240px;
        overflow: hidden;
        margin: 0 8px 24px 8px;
        /* Reduced margin to increase width while keeping edge separation */
        border-radius: 16px;
        /* Perfect modern 4-corner curve */
        box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15);
        /* Ultra premium soft shadow */
        background: #f8fafc;
    }

    .simple-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
        transform: translateX(100%);
        display: block;
        border-radius: 16px;
        /* Ensure slides clip neatly into the container's corners */
        overflow: hidden;
    }

    .simple-slide.active {
        transform: translateX(0);
        z-index: 2;
    }

    .simple-slide.exit {
        transform: translateX(-50%);
        opacity: 0;
        z-index: 1;
    }

    /* Gradient overlay for text reading and premium clear background look */
    .simple-slide::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
        z-index: 1;
        pointer-events: none;
    }

    .simple-banner-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* === Navigation Dots === */
@media (max-width: 768px) {
    .simple-dots {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 3;
    }

    .dot {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        width: 24px;
        background: #1DBF73;
        border-radius: 4px;
        /* Pill shape for active dot */
    }
}

/* === Navigation Dots (Below Image) === */
@media (max-width: 768px) {
    .simple-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 12px;
        margin-bottom: 24px;
        /* No absolute positioning */
    }

    .dot {
        width: 8px;
        height: 8px;
        background: #e2e8f0;
        /* Light Gray for inactive */
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        width: 24px;
        background: #1DBF73;
        /* Green for active */
        border-radius: 4px;
    }
}

/* CORRECTING DOTS POSITION (Force Override) */
@media (max-width: 768px) {
    .simple-dots {
        position: static !important;
        /* Override absolute */
        transform: none !important;
        margin-top: 12px;
        margin-bottom: 24px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

/* === PREMIUM LISTINGS SLIDER (Airbnb Pro Style) === */
@media (max-width: 768px) {
    .premium-listings-slider {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 4px 16px 30px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .premium-listings-slider::-webkit-scrollbar {
        display: none;
    }

    .premium-listing-card {
        flex: 0 0 95%;
        height: 380px !important;
        scroll-snap-align: center;
        border-radius: 16px;
        overflow: hidden;
        position: relative;
        background: #000;
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1);
        display: block;
        text-decoration: none;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }

    .premium-listing-card:active {
        transform: scale(0.97);
    }

    .plc-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.95;
    }

    .plc-badges-top {
        position: absolute;
        top: 14px;
        left: 14px;
        right: 14px;
        z-index: 10;
        display: flex;
        justify-content: space-between;
    }

    .plc-premium-badge {
        background: rgba(255, 255, 255, 0.95);
        color: #111827;
        padding: 5px 12px;
        border-radius: 6px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .plc-like-btn {
        color: white;
        font-size: 24px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    }

    .plc-content-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, transparent 40%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.9) 100%);
        padding: 20px 16px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        color: white;
        z-index: 5;
    }

    .plc-title-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 2px;
    }

    .plc-title {
        font-family: inherit;
        font-size: 22px;
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
        color: #ffffff;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        padding-right: 8px;
    }

    .plc-rating {
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 4px;
        flex-shrink: 0;
    }

    .plc-rating i {
        color: #fbbf24;
        font-size: 12px;
    }

    .plc-location {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.85);
        margin: 0 0 16px;
        font-weight: 400;
    }

    .plc-footer {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: 4px;
    }

    .plc-price {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .plc-old-price {
        font-size: 12px;
        text-decoration: line-through;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 2px;
        font-weight: 500;
    }

    .plc-new-price-wrapper {
        display: flex;
        align-items: baseline;
        gap: 4px;
    }

    .plc-new-price {
        font-size: 18px;
        font-weight: 700;
        color: #ffffff;
    }

    .plc-unit {
        font-size: 14px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.8);
    }

    .plc-view-btn {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #ffffff;
        padding: 8px 14px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.2s;
        display: flex;
        align-items: center;
    }

    .premium-listing-card:active .plc-view-btn {
        background: rgba(255, 255, 255, 0.3);
    }
}

/* === PREMIUM DESTINATION DROPDOWN === */
.premium-filter-container {
    padding: 0 16px;
    margin-bottom: 24px;
}

.pf-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 8px;
}

.pf-select-wrapper {
    position: relative;
    width: 100%;
}

.premium-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: #f3f4f6;
    /* Light gray bg */
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 40px 14px 44px;
    /* Space for L/R icons */
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.2s ease;
}

.premium-select:focus {
    outline: none;
    background: white;
    border-color: #1DBF73;
    box-shadow: 0 0 0 3px rgba(29, 191, 115, 0.1);
}

.pf-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #1DBF73;
    /* Green icon */
    pointer-events: none;
    font-size: 16px;
}

.pf-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
    font-size: 14px;
}

/* === PREMIUM LISTING UPGRADES === */
.price-tag {
    font-size: 20px;
    font-weight: 800;
    color: #1f2937;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-tag span {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

/* Premium Amenities Chips */
.g-features {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.g-feat-item {
    background: #f3f4f6;
    color: #4b5563;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.g-feat-item i {
    color: #1DBF73;
    /* Green icon accent */
}

/* Load More Button - Clean Style */
.btn-load-more-clean {
    background: white;
    border: 1px solid #e5e7eb;
    color: #1f2937;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-load-more-clean:hover {
    border-color: #1DBF73;
    color: #1DBF73;
    box-shadow: 0 4px 12px rgba(29, 191, 115, 0.1);
}

/* === VIDEO TOURS SLIDER (Match Premium Listing Size) === */
@media (max-width: 768px) {
    .video-slider {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding: 0 16px 24px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .video-slider::-webkit-scrollbar {
        display: none;
    }

    .video-card {
        flex: 0 0 92%;
        /* Full width cards */
        height: 380px;
        /* Matching Most Loved height */
        scroll-snap-align: center;
        border-radius: 24px;
        /* Rounded corners */
        overflow: hidden;
        position: relative;
        background: black;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        margin-right: 0;
        width: auto !important;
        /* Override potential width set elsewhere */
    }

    .video-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .play-btn {
        width: 72px !important;
        height: 72px !important;
        background: rgba(255, 255, 255, 0.25) !important;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        color: white;
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }
}

/* Typewriter Animation Cursor */
.typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: #10b981;
    margin-left: 5px;
    vertical-align: bottom;
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.blink-infinite {
    animation: blink-caret 0.75s step-end infinite;
}


/* Color Utility for Farmbyrajpara text */
.text-green-500 {
    color: #1DBF73 !important;
    /* Premium brand green */
}



/* --- PROFILE PAGE STYLES --- */
.profile-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 24px;
    padding-bottom: 100px;
}

.profile-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    position: relative;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    color: #10b981;
    font-size: 14px;
    border: 2px solid white;
}

.edit-profile-btn {
    margin-left: auto;
    color: #10b981;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    background: #ecfdf5;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.2s;
}

.transaction-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.tc-value {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.tc-badge {
    width: 56px;
    height: 56px;
    background: #ecfdf5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 24px;
}

.menu-list {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 32px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: #0f172a;
}

.menu-item:hover {
    background: #f8fafc;
}

.menu-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 12px;
    margin-right: 18px;
    color: #64748b;
    font-size: 18px;
    transition: all 0.2s;
}

.menu-item:hover .menu-icon {
    background: #ecfdf5;
    color: #10b981;
}

.logout-item:hover .menu-icon {
    background: #fee2e2;
    color: #ef4444;
}

.partner-banner {
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 24px;
    padding: 32px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
}

.partner-btn {
    background: white;
    color: #059669;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.partner-btn:hover {
    transform: translateY(-2px);
}


/* === PREMIUM VERTICAL CARD (User Request: Full Image + Content) === */
.airbnb-card {
    display: flex;
    flex-direction: column;
    /* Vertical Stack */
    background: white;
    border-radius: 20px;
    /* Softer curves */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: auto;
    /* Allow content to dictate height, or fix it */
    min-height: 380px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 0;
}

.airbnb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Full Width Image Image */
.ac-img-container {
    width: 100%;
    height: 240px;
    /* Generous height for premium feel */
    position: relative;
    background: #e5e7eb;
}

.ac-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.airbnb-card:hover .ac-img-container img {
    transform: scale(1.05);
}

/* Badge */
.ac-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: #10b981;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Heart Icon */
.ac-heart {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #94a3b8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.2s;
}

.ac-heart:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: scale(1.1);
}

/* Content Area - White Background */
.ac-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
}

/* Title & Header */
.ac-header-row {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ac-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ac-location-row {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

/* Amenities Tags */
.ac-features-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.ac-feature-tag {
    background: #f1f5f9;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    color: #475569;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ac-feature-tag i {
    color: #10b981;
}

/* Divider */
.ac-divider {
    height: 1px;
    background: #f1f5f9;
    margin-top: auto;
    margin-bottom: 12px;
}

/* Footer: Price & View Btn */
.ac-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 4px;
}

.ac-price-row {
    display: flex;
    flex-direction: column;
}

.ac-price {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.ac-price-unit {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.ac-btn-view {
    padding: 8px 16px;
    background: #10b981;
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    transition: background 0.2s;
}

.ac-btn-view:hover {
    background: #059669;
}

@media (min-width: 768px) {
    .ac-img-container {
        height: 220px;
    }
}

/* Global Header Search Autocomplete */
.search-autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
    border: 1px solid #ebebeb;
    overflow: hidden;
}

.search-autocomplete-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.autocomplete-item {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #1f2937;
    transition: background 0.1s;
    font-weight: 500;
}

.autocomplete-item:hover {
    background: #f3f4f6;
}

.autocomplete-item span {
    flex: 1;
}

/* WISHLIST ANIMATION */
@keyframes heartPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

.heart-anim {
    animation: heartPulse 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.text-red-500 {
    color: #ef4444 !important;
}

/* ==================== FARMS LISTING PAGE STYLES ==================== */

/* Desktop Page Hero */
.d-page-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.d-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    opacity: 1;
}

.d-page-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: heroTexture 20s linear infinite;
}

@keyframes heroTexture {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-50px, -50px) rotate(360deg);
    }
}

.d-page-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.d-page-title {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }
}

.d-page-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Filter Bar */
.d-filter-bar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.d-filter-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #059669, #10b981);
    background-size: 200% 100%;
    animation: filterBarShimmer 3s ease-in-out infinite;
}

@keyframes filterBarShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.d-filter-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 24px;
    align-items: end;
}

.d-filter-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.d-filter-group select,
.d-filter-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
}

.d-filter-group select:focus,
.d-filter-group input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.d-filter-group select:hover,
.d-filter-group input:hover {
    border-color: #d1d5db;
}

.d-filter-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: fit-content;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.d-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.d-filter-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.d-filter-btn:hover::before {
    left: 100%;
}

.d-filter-btn:active {
    transform: translateY(-1px);
}

/* Results Header */
.d-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.d-results-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.d-results-count {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.d-clear-filters {
    color: #10b981;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.d-clear-filters:hover {
    color: #059669;
}

.d-sort-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.d-sort-dropdown label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.d-sort-dropdown select {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

/* Farms Grid */
.d-farms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

/* Farm Card */
.d-farm-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.d-farm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669, #10b981);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.d-farm-card:hover::before {
    opacity: 1;
}

.d-farm-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.d-farm-card-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.d-farm-card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.d-farm-card:hover .d-farm-card-img-wrap::after {
    opacity: 1;
}

.d-farm-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.d-farm-card:hover .d-farm-card-img-wrap img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1);
}

.d-farm-badge {
    position: absolute;
    top: 16px;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }
}

.d-farm-badge.featured {
    left: 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.d-farm-badge.discount {
    right: 16px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.d-farm-wishlist {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.d-farm-wishlist:hover {
    transform: scale(1.15) rotate(5deg);
    background: #fef2f2;
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.3);
    border-color: #fef2f2;
}

.d-farm-wishlist i {
    font-size: 18px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.d-farm-wishlist:hover i {
    color: #ef4444;
    transform: scale(1.2);
}

.d-farm-wishlist.active i {
    color: #ef4444;
    animation: heartBeat 1s ease-in-out;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(1.1);
    }

    75% {
        transform: scale(1.2);
    }
}

.d-farm-card-body {
    padding: 28px;
    background: linear-gradient(135deg, #ffffff, #fafbfc);
}

.d-farm-type {
    display: inline-block;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #16a34a;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid #bbf7d0;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

.d-farm-title {
    font-size: 22px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.d-farm-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 500;
}

.d-farm-location i {
    color: #10b981;
    font-size: 14px;
    animation: locationPulse 2s ease-in-out infinite;
}

@keyframes locationPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.d-farm-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.d-farm-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
    font-weight: 500;
    transition: all 0.2s ease;
}

.d-farm-spec:hover {
    color: #10b981;
    transform: translateY(-2px);
}

.d-farm-spec i {
    color: #10b981;
    font-size: 16px;
    transition: all 0.2s ease;
}

.d-farm-spec:hover i {
    transform: scale(1.2);
}

.d-farm-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 11px;
    color: #374151;
}

.d-farm-amenities span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 11px;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
}

.d-farm-amenities span:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.d-farm-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.d-rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #1f2937;
    font-size: 16px;
}

.d-rating-stars i {
    color: #f59e0b;
    font-size: 16px;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
    animation: starGlow 3s ease-in-out infinite;
}

@keyframes starGlow {

    0%,
    100% {
        filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
    }

    50% {
        filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.6));
    }
}

.d-reviews-count {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.d-farm-price {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}

.d-original-price {
    color: #9ca3af;
    font-size: 16px;
    text-decoration: line-through;
    font-weight: 500;
}

.d-current-price {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    background: linear-gradient(135deg, #1f2937, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.d-price-unit {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin-left: 4px;
}

.d-farm-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-align: center;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.d-farm-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.d-farm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.d-farm-btn:hover::before {
    left: 100%;
}

.d-farm-btn:active {
    transform: translateY(-1px);
}

/* No Results */
.d-no-results {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.d-no-results i {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.d-no-results h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.d-no-results p {
    color: #6b7280;
    margin-bottom: 24px;
}

.d-btn-primary {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.d-btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Pagination */
.d-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
}

.d-pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.d-pagination-btn:hover {
    border-color: #10b981;
    color: #10b981;
}

.d-pagination-btn.active {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

/* ==================== MOBILE FARMS LISTING ==================== */

/* Mobile Filter Tabs */
.mobile-filter-tabs {
    display: flex;
    gap: 8px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.filter-tab {
    flex-shrink: 0;
    padding: 8px 16px;
    background: #f3f4f6;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-tab.active {
    background: #10b981;
    color: white;
}

.filter-tab:hover:not(.active) {
    background: #e5e7eb;
}

/* Mobile Results Header */
.mobile-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.results-count {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.sort-btn-mobile {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sort-btn-mobile:hover {
    border-color: #10b981;
    color: #10b981;
}

/* Mobile Farms Grid */
.mobile-farms-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Mobile Farm Card */
.mobile-farm-card {
    display: block;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-farm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mobile-farm-img-container {
    position: relative;
    height: 200px;
}

.mobile-farm-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-farm-badge {
    position: absolute;
    top: 8px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.mobile-farm-badge.featured {
    left: 8px;
    background: #10b981;
    color: white;
}

.mobile-farm-badge.discount {
    right: 8px;
    background: #ef4444;
    color: white;
}

.mobile-farm-wishlist {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 2;
}

.mobile-farm-wishlist i {
    font-size: 14px;
    color: #6b7280;
}

.mobile-farm-content {
    padding: 16px;
}

.mobile-farm-type {
    display: inline-block;
    background: #f0fdf4;
    color: #16a34a;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.mobile-farm-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
    line-height: 1.3;
}

.mobile-farm-location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 10px;
}

.mobile-farm-location i {
    color: #10b981;
    font-size: 10px;
}

.mobile-farm-specs {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #4b5563;
}

.mobile-farm-specs span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mobile-farm-specs i {
    color: #10b981;
    font-size: 10px;
}

.mobile-farm-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.mobile-original-price {
    color: #9ca3af;
    font-size: 12px;
    text-decoration: line-through;
}

.mobile-current-price {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

/* Mobile No Results */
.mobile-no-results {
    text-align: center;
    padding: 60px 20px;
}

.mobile-no-results i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.mobile-no-results h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.mobile-no-results p {
    color: #6b7280;
    font-size: 14px;
}

/* Mobile Load More */
.btn-load-more-mobile {
    background: white;
    color: #10b981;
    border: 2px solid #10b981;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more-mobile:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .d-filter-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .d-page-title {
        font-size: 32px;
    }

    .d-page-subtitle {
        font-size: 16px;
    }

    .d-farms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .d-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}