.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* --- VARIABLES (Dark Mode Theme) --- */
:root {
    --bg-body: #0a0a0a; /* Deep Black */
    --bg-card: #141414; /* Slightly lighter black for cards */
    --bg-header: rgba(10, 10, 10, 0.95);

    --text-main: #ffffff;
    --text-muted: #a0a0a0;

    /* The "Kinky" Accent Color (Reddish/Pink/Orange) */
    --accent: #D92C4B;
    --accent-hover: #b01e38;

    --font-main: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --spacing-container: 1200px;
    --border-radius: 8px;
}

/* --- RESET --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
.main-header {
    background-color: var(--bg-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px; /* Adjust based on your logo */
}

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a:hover {
    color: var(--accent);
}

.btn-highlight {
    background-color: var(--accent);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700 !important;
}

.btn-highlight:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* --- CARDS & GRIDS (Used in Index/List Views) --- */
.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    text-align: center;
    margin: 60px 0 40px;
    color: var(--text-main);
}

.hotel-grid, .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.hotel-card, .product-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #222;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
}

.hotel-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.hotel-info {
    padding: 20px;
}

.hotel-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.hotel-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 10px;
    display: block;
}

/* --- FOOTER --- */
.main-footer {
    background-color: #000;
    padding: 60px 0 20px;
    border-top: 1px solid #222;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--text-main);
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.footer-col p, .footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 2;
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #111;
    padding-top: 20px;
    color: #555;
    font-size: 0.8rem;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    /* Add JS toggle later */
    .header-container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* --- FOOTER STYLES --- */

.main-footer {
    background-color: #050505; /* Slightly darker than body */
    border-top: 1px solid #222;
    padding: 80px 0 30px;
    margin-top: auto; /* Pushes footer to bottom if page is short */
    color: #cccccc;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Brand is wider */
    gap: 60px;
    margin-bottom: 50px;
}

/* Brand Column */
.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-desc {
    color: #888;
    line-height: 1.8;
    max-width: 350px;
}

/* Headings */
.footer-heading {
    color: #fff;
    font-family: var(--font-serif); /* Playfair Display */
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent); /* Red/Pink color */
    padding-left: 5px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #ffffff !important; /* Forces text to stay white */
    transform: translateY(-3px);
}

/* Legal Links */
.legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-links a {
    font-size: 0.85rem;
    color: #666;
}

.legal-links a:hover {
    color: #aaa;
}

/* Divider & Bottom */
.footer-divider {
    height: 1px;
    background-color: #222;
    margin-bottom: 30px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #555;
}

.footer-bottom a {
    color: #888;
    font-weight: 600;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 40px;
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto; /* Center text */
    }

    .social-icons {
        justify-content: center;
    }
}

/* --- HOTEL DETAIL PAGE STYLES --- */

/* 1. Hero Section */
.hotel-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(10, 10, 10, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 10px;
    font-family: var(--font-serif);
}

.hotel-type-badge {
    background-color: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.hotel-address {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-actions {
    text-align: right;
}

.price-tag {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.price-tag .label {
    font-size: 0.9rem;
    color: #ccc;
}

.price-tag .amount {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.btn-highlight.large {
    padding: 12px 40px;
    font-size: 1.1rem;
}

/* 2. Layout & Sections */
.page-container {
    padding-top: 40px;
    padding-bottom: 80px;
}

/* --- LAYOUT HOTELS LIST --- */
.hotel-list-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.hotel-list-layout .room-grid-display {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 900px) {
    .hotel-list-layout {
        grid-template-columns: 1fr;
    }

    .hotel-list-layout .hotel-sidebar {
        margin-bottom: 30px;
    }
}

.hotel-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Contenido principal izq, Sidebar der */
    gap: 50px;
}

@media (max-width: 768px) {
    .hotel-layout {
        grid-template-columns: 1fr;
    }
}

.section-heading {
    font-size: 1.8rem;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    color: white;
}

.description-text {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* 3. Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

.amenity-item {
    background: #1a1a1a;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: var(--accent);
    font-weight: bold;
}

/* 4. Rooms Grid (Kinky Style) */
.room-grid-display {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.room-card-kinky {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.room-card-kinky:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.room-image-link {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
}

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

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

.room-content {
    padding: 20px;
}

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

.room-header h3 {
    font-size: 1.2rem;
    margin: 0;
    color: white;
}

.room-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}

.room-guest-info {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
}

.btn-outline {
    display: block;
    text-align: center;
    border: 1px solid #555;
    padding: 10px;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background-color: white;
    color: black;
}

/* 5. Sidebar */
.sidebar-widget {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #333;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.map-placeholder {
    background-color: #333;
    height: 150px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    color: #aaa;
}

.btn-full-width {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--accent);
    color: white;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hotel-layout {
        grid-template-columns: 1fr; /* Stack sidebar below main content */
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions {
        text-align: left;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* --- AMENITIES & ICONS --- */

.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.amenity-item {
    background-color: var(--bg-card); /* Dark grey background */
    color: #e0e0e0;
    padding: 10px 18px;
    border-radius: 50px; /* Pill shape */
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #333;
    transition: 0.3s;
}

.amenity-item:hover {
    border-color: var(--accent);
    color: white;
}

.service-icon svg {
    width: 18px;
    height: 18px;
    fill: #d4af37; /* Gold/Beige color like the screenshot */
    display: block;
}

/* --- PAYMENT METHODS --- */

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #888;
}

.payment-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff; /* White icon */
    background: #333;
    padding: 5px;
    border-radius: 4px;
}

/* --- GALLERY GRID --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

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

.gallery-item:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Hover Overlay Effect */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    color: white;
    font-size: 2rem;
    font-weight: 300;
}

/* --- LIGHTBOX (Full Screen Zoom) --- */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-button:hover {
    color: var(--accent);
}

/* Zoom Animation */
@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

/* --- SIDEBAR CONTACT WIDGET --- */

.sidebar-widget {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 16px; /* Slightly more rounded */
    margin-bottom: 30px;
    border: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.widget-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.sidebar-address {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Action Buttons Container */
.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

/* Base Button Style */
.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
}

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

/* Call Button (Primary) */
.call-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60); /* WhatsApp/Call Green */
    color: white;
    justify-content: flex-start; /* Align left */
    padding: 10px 20px;
}

.call-btn:hover {
    background: linear-gradient(135deg, #27ae60, #219150);
}

.call-btn .btn-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.call-btn .btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-label {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
}

.btn-value {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Map Buttons (Secondary) */
.map-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.map-btn {
    background-color: #333;
    color: white;
    font-size: 0.9rem;
}

.map-btn:hover {
    background-color: #444;
}

.map-btn .btn-icon {
    margin-right: 8px;
}

/* Small Placeholder Map */
.map-placeholder-small {
    background-color: #222;
    height: 120px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border: 1px dashed #444;
    font-size: 0.9rem;
}

/* --- SIDEBAR CONTACT WIDGET --- */

.sidebar-widget {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 16px; /* Slightly more rounded */
    margin-bottom: 30px;
    border: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.widget-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.sidebar-address {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Action Buttons Container */
.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

/* Base Button Style */
.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
}

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

/* Call Button (Primary) */
.call-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60); /* WhatsApp/Call Green */
    color: white;
    justify-content: flex-start; /* Align left */
    padding: 10px 20px;
}

.call-btn:hover {
    background: linear-gradient(135deg, #27ae60, #219150);
}

.call-btn .btn-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.call-btn .btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-label {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
}

.btn-value {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Map Buttons (Secondary) */
.map-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.map-btn {
    background-color: #333;
    color: white;
    font-size: 0.9rem;
}

.map-btn:hover {
    background-color: #444;
}

.map-btn .btn-icon {
    margin-right: 8px;
}

/* Small Placeholder Map */
.map-placeholder-small {
    background-color: #222;
    height: 120px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border: 1px dashed #444;
    font-size: 0.9rem;
}

.call-btn .btn-icon-svg {
    width: 28px; /* Adjust size as needed */
    height: 28px;
    margin-right: 15px;
    fill: currentColor; /* This makes it inherit the white text color */
}

/* --- ROOM DETAIL SPECIFIC STYLES --- */

.rate-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rate-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #ccc;
    padding-bottom: 8px;
    border-bottom: 1px solid #2a2a2a;
}

.rate-row:last-child {
    border-bottom: none;
}

.rate-row.main-price {
    font-size: 1.2rem;
    color: white;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
}

.rate-row.main-price strong {
    color: var(--accent);
}

.rate-details .divider {
    height: 1px;
    background-color: #444;
    margin: 5px 0;
}

/* --- LIGHTBOX CONTROLS --- */

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 2001; /* Above the image */
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--accent); /* Highlight color on hover */
}

/* Ensure image animates smoothly */
.lightbox-content {
    transition: opacity 0.3s ease;
}

/* --- ZONES / FILTER PILLS --- */

.zones-section {
    margin-bottom: 60px;
    text-align: center;
}

.filter-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px; /* Space between buttons */
    margin-top: 30px;
}

.filter-pill {
    display: inline-block;
    background-color: var(--bg-card); /* Dark grey */
    color: #e0e0e0;
    padding: 12px 30px;
    border-radius: 50px; /* Fully rounded ends */
    text-decoration: none;
    border: 1px solid #444;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.filter-pill:hover {
    border-color: var(--accent); /* Red/Orange accent */
    color: white;
    background-color: #1a1a1a; /* Slightly lighter bg on hover */
    transform: translateY(-3px); /* Subtle lift effect */
    box-shadow: 0 4px 15px rgba(217, 44, 75, 0.2); /* Reddish glow matching accent */
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .filter-pills {
        gap: 10px;
    }

    .filter-pill {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* --- LIST PAGE HERO --- */
.page-hero {
    position: relative;
    height: 250px;
    background-color: #111;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
}

.hero-content-center {
    text-align: center;
    z-index: 2;
}

.hero-content-center h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-content-center p {
    color: #ccc;
    font-size: 1.1rem;
}

/* --- FILTERS SIDEBAR --- */
.filter-widget {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 600;
}

.filter-input, .filter-select {
    width: 100%;
    padding: 10px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px;
    color: white;
    font-size: 0.95rem;
}

.filter-input:focus, .filter-select:focus {
    border-color: var(--accent);
    outline: none;
}

.full-width {
    width: 100%;
    display: block;
    text-align: center;
}

.mt-10 {
    margin-top: 10px;
}

/* --- CARD BADGES --- */
.card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
}

.badge-type, .badge-zone {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
}

.badge-zone {
    background-color: var(--accent); /* Highlight Zone */
}

/* --- CARD CONTENT TWEAKS --- */
.price-stack {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.price-stack .label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

.hotel-location-preview {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.card-amenities-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
}

.mini-tag {
    font-size: 0.7rem;
    background-color: #333;
    color: #ccc;
    padding: 3px 8px;
    border-radius: 3px;
}

/* --- PAGINATION --- */
.pagination-wrapper {
    margin-top: 40px;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.page-link {
    background-color: #2a2a2a;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.page-link:hover {
    background-color: var(--accent);
}

.current-page {
    color: #888;
    font-size: 0.9rem;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    background: #1a1a1a;
    border-radius: 12px;
}

/* --- KINKY ACCORDION STYLES --- */
.accordion-container {
    max-width: 1000px;
    margin: 0 auto 50px auto;

    /* Make it a grid */
    display: grid;
    /* Create responsive columns (min 300px wide) */
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px; /* Space between boxes */

    /* !!! THIS IS THE FIX !!! */
    /* Prevents the neighbor from stretching when one opens */
    align-items: start;
}

.accordion-item {
    background-color: #1e1e1e; /* Dark background */
    border-radius: 8px;
    overflow: hidden;
    /* Remove margin-bottom since we use grid gap now */
    border: 1px solid #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.accordion-header {
    background-color: #333; /* Slightly lighter header */
    color: white;
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background-color: #444;
}

/* Arrow rotation */
.accordion-header .arrow {
    transition: transform 0.3s ease;
}

.accordion-header.active .arrow {
    transform: rotate(180deg);
}

.accordion-content {
    background-color: #121212; /* Darker inside */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.attraction-links {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.attraction-link {
    color: #ccc;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.2s;
    display: block;
}

.attraction-link:hover {
    color: var(--accent); /* Your orange color */
}

.payment-methods {
    display: flex;
    gap: 12px; /* Space between the cards */
    align-items: center;
    flex-wrap: wrap;
}

/* The dark rounded background box */
.payment-icon-card {
    width: 60px;       /* Fixed width */
    height: 40px;      /* Fixed height */
    background-color: #222222; /* Dark background */
    border-radius: 6px; /* Rounded corners */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;      /* Breathing room inside the box */
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Forces the images to stay inside the box */
.payment-icon-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* This is the magic rule that fixes the sizing */
}
