/* =========================================================
   Front Single Accommodation
   ========================================================= */
@font-face {
	font-family: est;
	src: url(../../admin/css/fonts/est.woff2) format("woff2");
}  
.alonak-single , 
.alonak-single [type="button"],
.alonak-single td,
.alonak-single tr,
.alonak-single th,
.alonak-single li,
.alonak-single h1, 
.alonak-single h2,
.alonak-single h3,
.alonak-single h4,
.alonak-single h5,
.alonak-single h6,
.alonak-single p,
.alonak-single span,
.alonak-single label {
	font-family: est;
}
:root {
    --al-green:    #1b6775;
    --al-green-lt: #114b5f;
    --al-green-tr: #b2efe1;
    --al-orange:   #f59e0b;
    --al-red:      #ef4444;
    --al-text:     #1e293b;
    --al-muted:    #64748b;
    --al-border:   #e2e8f0;
    --al-bg:       #f8fafc;
    --al-white:    #ffffff;
    --al-radius:   12px;
    --al-shadow:   0 2px 8px rgba(0,0,0,.08);
    --al-shadow-lg:0 8px 30px rgba(0,0,0,.12);
}

.alonak-single {
	max-width: 100%;
    width: 1280px;
    margin: 0 auto;
    padding: 20px 16px 20px;
    direction: rtl;
    color: var(--al-text);
    overflow-x: visible;
    overflow-y: visible;
}
/* =========================================================
   TAXONOMIES
   ========================================================= */
.alonak-taxonomies {
    margin: 16px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alonak-taxonomy-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.alonak-taxonomy-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--al-muted);
    min-width: 70px;
}

.alonak-taxonomy-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.alonak-taxonomy-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--al-green);
    background: var(--al-green-lt);
    border: 1px solid #b7dfc9;
    text-decoration: none;
    transition: all 0.2s ease;
}

.alonak-taxonomy-tag:hover {
    background: var(--al-green);
    color: #fff;
    border-color: var(--al-green);
    text-decoration: none;
}

/* =========================================================
   COMMENTS
   ========================================================= */
.alonak-comments-section {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid var(--al-border);
}

.alonak-comments-count {
    font-size: 14px;
    font-weight: 400;
    color: var(--al-muted);
    margin-right: 8px;
}

.alonak-comments-wrapper {
    margin-top: 16px;
}

.alonak-comments-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.alonak-comment-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--al-border);
}

.alonak-comment-item:last-child {
    border-bottom: none;
}

.alonak-comment-item .children {
    list-style: none;
    padding: 0;
    margin-top: 16px;
    padding-right: 40px;
    border-right: 2px solid var(--al-border);
}

.alonak-comment-avatar {
    flex-shrink: 0;
}

.alonak-comment-avatar img {
    border-radius: 50%;
    border: 2px solid var(--al-border);
}

.alonak-comment-body {
    flex: 1;
    min-width: 0;
}

.alonak-comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.alonak-comment-author {
    font-weight: 700;
    color: var(--al-text);
    font-size: 15px;
}

.alonak-comment-author a {
    color: var(--al-green);
    text-decoration: none;
}

.alonak-comment-author a:hover {
    text-decoration: underline;
}

.alonak-comment-date {
    font-size: 12px;
    color: var(--al-muted);
}

.alonak-comment-content {
    font-size: 14px;
    line-height: 1.7;
    color: #374151;
}

.alonak-comment-content p {
    margin: 0 0 8px;
}

.alonak-comment-content p:last-child {
    margin-bottom: 0;
}

.alonak-comment-reply {
    margin-top: 8px;
}

.alonak-comment-reply a {
    font-size: 13px;
    color: var(--al-green);
    text-decoration: none;
    font-weight: 600;
}

.alonak-comment-reply a:hover {
    text-decoration: underline;
}

.alonak-no-comments,
.alonak-comments-closed {
    padding: 20px;
    text-align: center;
    color: var(--al-muted);
    background: var(--al-bg);
    border-radius: 10px;
    font-size: 14px;
}

.alonak-comments-navigation {
    text-align: center;
    margin: 16px 0;
}

.alonak-comments-navigation .page-numbers {
    display: inline-block;
    padding: 6px 14px;
    margin: 0 2px;
    border-radius: 6px;
    border: 1px solid var(--al-border);
    font-size: 13px;
    color: var(--al-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.alonak-comments-navigation .page-numbers.current {
    background: var(--al-green);
    color: #fff;
    border-color: var(--al-green);
}

.alonak-comments-navigation .page-numbers:hover:not(.current) {
    background: var(--al-green-lt);
    border-color: var(--al-green);
}

.alonak-comment-form-wrapper {
    margin-top: 24px;
    padding: 24px;
    background: var(--al-bg);
    border-radius: 12px;
    border: 1px solid var(--al-border);
}

.alonak-comment-form-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--al-text);
}

.alonak-comment-form-title i {
    margin-left: 8px;
    color: var(--al-green);
}

.alonak-comment-form .alonak-comment-field {
    margin-bottom: 16px;
}

.alonak-comment-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--al-text);
    margin-bottom: 4px;
}

.alonak-comment-form input[type="text"],
.alonak-comment-form input[type="email"],
.alonak-comment-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--al-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: #fff;
}

.alonak-comment-form input[type="text"]:focus,
.alonak-comment-form input[type="email"]:focus,
.alonak-comment-form textarea:focus {
    outline: none;
    border-color: var(--al-green);
    box-shadow: 0 0 0 3px rgba(30, 111, 80, 0.1);
}

.alonak-comment-form textarea {
    resize: vertical;
    min-height: 100px;
}

.alonak-comment-form .comment-notes,
.alonak-comment-form .logged-in-as {
    font-size: 13px;
    color: var(--al-muted);
    margin-bottom: 16px;
}

.alonak-comment-form .logged-in-as a {
    color: var(--al-green);
    text-decoration: none;
}

.alonak-comment-form .logged-in-as a:hover {
    text-decoration: underline;
}

.alonak-comment-submit {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.alonak-comment-submit-btn {
    background: var(--al-green);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.alonak-comment-submit-btn:hover {
    background: #155c40;
    transform: translateY(-1px);
}

.alonak-comment-submit-btn:active {
    transform: translateY(0);
}

.alonak-comment-form .comment-reply-title {
    display: none;
}

.alonak-comment-form .cancel-reply {
    display: inline-block;
    font-size: 13px;
    color: var(--al-red);
    text-decoration: none;
}

.alonak-comment-form .cancel-reply:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .alonak-comment-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .alonak-comment-item .children {
        padding-right: 20px;
    }
    
    .alonak-comment-form-wrapper {
        padding: 16px;
    }
    
    .alonak-comment-submit {
        flex-direction: column;
        align-items: stretch;
    }
    
    .alonak-comment-submit-btn {
        justify-content: center;
    }
    
    .alonak-taxonomy-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .alonak-taxonomy-label {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .alonak-comments-count {
        font-size: 12px;
    }
    
    .alonak-comment-meta {
        gap: 8px;
    }
    
    .alonak-comment-author {
        font-size: 14px;
    }
    
    .alonak-comment-content {
        font-size: 13px;
    }
    
    .alonak-comment-form input[type="text"],
    .alonak-comment-form input[type="email"],
    .alonak-comment-form textarea {
        font-size: 13px;
        padding: 8px 12px;
    }
}
.alonak-single svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

.alonak-spec__icon svg {
    font-size: 40px;
}

.alonak-amenity-tag svg {
    color: #22c55e;
}

.alonak-rule svg {
    font-size: 35px;
}
.alonak-section__title svg {
    width: 2em;
    height: 2em;
}
.alonak-conditions__icon_in svg {
    font-size: 20px;
}
.alonak-signal-status svg {
    width: 1.5em;
    height: 1.5em;
}
.alonak-amenity-tag svg {
    font-size: 24px;
    width: 1em;
    height: 1em;
}
.alonak-icon svg {
    font-size: 40px;
}
/* ═══════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════ */
.alonak-gallery {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    background: #f1f5f9;
}

.alonak-gallery__single,
.alonak-gallery__grid {
    height: 420px;
}

.alonak-gallery__single {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
}

.alonak-gallery__single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.alonak-gallery__single:hover img {
    transform: scale(1.02);
}

.alonak-gallery__single a {
    display: block;
    height: 100%;
    width: 100%;
}

.alonak-gallery__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
}

.alonak-gallery__grid-item--main {
    grid-row: span 2;
    grid-column: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.alonak-gallery__grid-item--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.alonak-gallery__grid-item--main:hover img {
    transform: scale(1.03);
}

.alonak-gallery__grid-thumbs {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    grid-column: 2;
    grid-row: span 2;
	margin-top: -8px;
}

.alonak-gallery__grid-thumb {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.alonak-gallery__grid-thumb a {
    display: block;
    height: 100%;
    width: 100%;
}

.alonak-gallery__grid-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.alonak-gallery__grid-thumb:hover img {
    transform: scale(1.05);
}

.alonak-gallery__grid[data-count="2"] {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr;
}

.alonak-gallery__grid[data-count="2"] .alonak-gallery__grid-item--main {
    grid-row: span 1;
}

.alonak-gallery__grid[data-count="2"] .alonak-gallery__grid-thumbs {
    grid-row: span 1;
    grid-template-rows: 1fr;
}

.alonak-gallery__grid[data-count="3"] {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.alonak-gallery__grid[data-count="3"] .alonak-gallery__grid-thumbs {
    grid-template-rows: 1fr 1fr;
}

.alonak-gallery__grid[data-count="4"] .alonak-gallery__grid-thumbs {
    grid-template-rows: 1fr 1fr;
}

.alonak-gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    backdrop-filter: blur(2px);
    pointer-events: none;
    z-index: 5;
}

.alonak-badge--absolute {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.alonak-badge-featured,
.alonak-badge-verified {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    color: white;
}

.alonak-badge-featured {
    background: linear-gradient(135deg, #f5af19, #f12711);
}

.alonak-badge-verified {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.alonak-badge-verified {
    position: absolute;
    top: 12px;
    right: 12px;
    left: auto;	
}

.alonak-badge-featured {
    position: absolute;
    top: 50px;
    right: 12px;
    left: auto;	
}

.alonak-gallery__placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #666;
}

.alonak-gallery__placeholder span {
    font-size: 4rem;
    opacity: 0.5;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
    .alonak-gallery__single,
    .alonak-gallery__grid {
        height: 350px;
    }
    .alonak-gallery__placeholder {
        height: 350px;
    }
    
    .alonak-gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: 2fr 1fr;
        height: auto;
        min-height: 350px;
    }
    
    .alonak-gallery__grid-item--main {
        grid-row: 1;
        grid-column: 1;
        height: 250px;
    }
    
    .alonak-gallery__grid-thumbs {
        grid-column: 1;
        grid-row: 2;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
        height: 100px;
    }
    
    .alonak-gallery__grid[data-count="2"] .alonak-gallery__grid-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .alonak-gallery__grid[data-count="3"] .alonak-gallery__grid-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .alonak-gallery__single,
    .alonak-gallery__grid {
        height: 300px;
    }
    .alonak-gallery__placeholder {
        height: 300px;
    }
    
    .alonak-gallery__grid-item--main {
        height: 200px;
    }
    
    .alonak-gallery__grid-thumbs {
        height: 80px;
    }
    
    .alonak-gallery__overlay span {
        font-size: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════
   Fancybox
═══════════════════════════════════════════════════════ */
.fancybox__container {
    --fancybox-bg: rgba(0, 0, 0, 0.92);
    direction: ltr;
}

.fancybox__slide {
    padding: 24px;
}

.fancybox__caption {
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
    padding: 16px;
    font-size: 14px;
    text-align: center;
    font-family: inherit;
}

/* ── Layout ──────────────────────────────────────────────── */
.alonak-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
    position: relative;
    min-height: 600px;
    padding-top: 20px;
}
.alonak-booking-col {
    align-self: stretch;
}
@media (max-width: 900px) {
    .alonak-layout {
        grid-template-columns: 1fr;
    }
    .alonak-booking-col {
        order: -1;
    }
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.alonak-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--al-muted);
    margin-bottom: 8px;
}

.alonak-breadcrumb a {
    color: var(--al-green);
    text-decoration: none;
}

.alonak-breadcrumb a:hover { text-decoration: underline; }

/* ── Title ───────────────────────────────────────────────── */
.alonak-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px;
    line-height: 1.3;
}

.alonak-location-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--al-muted);
    margin-bottom: 20px;
}

/* ── Specs bar ───────────────────────────────────────────── */
.alonak-specs-bar {
    display: flex;
    gap: 0;
    border: 1px solid var(--al-border);
    border-radius: var(--al-radius);
    overflow: hidden;
    margin-bottom: 28px;
}

.alonak-spec {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 12px;
    border-left: 1px solid var(--al-border);
    text-align: center;
}

.alonak-spec:last-child { border-left: none; }

.alonak-spec__val  { font-size: 15px; font-weight: 800; color: var(--al-text); }
.alonak-spec__lbl  { font-size: 11px; color: var(--al-muted); }

/* ── Sections ────────────────────────────────────────────── */
.alonak-section {
    padding-top: 24px;
    margin-bottom: 24px;
}

.alonak-section__title {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0px 16px;
    color: var(--al-text);
    border-bottom: 1px solid var(--al-border);
    padding: 0 0 5px 0;
}
.alonak-section__title i {
    margin-left: 8px;
    color: var(--al-text);
    font-size: 22px;
}
/* ── Description ─────────────────────────────────────────── */
.alonak-description {
    font-size: 15px;
    line-height: 1.9;
    color: #374151;
}

/* ── Amenities ───────────────────────────────────────────── */
.alonak-amenities-display {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.alonak-amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--al-green);
    border: 1px solid #b7dfc9;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
}
.map-section {
    border: 1px solid var(--al-border);
    padding: 15px;
    border-radius: 15px;
}
/* ── Rules ───────────────────────────────────────────────── */
.alonak-rules-grid {
    display: flex;
    gap: 5px;
    margin-bottom: 16px;
    flex-direction: column;
}

.alonak-rule {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--al-border);
    border-radius: 10px;
    padding: 12px 14px;
}
.alonak-spec__icon {
    font-size: 25px;
}
.alonak-conditions__icon {
    display: flex !important;
}

.alonak-rule strong {
    display: block;
    font-size: 16px;
    color: var(--al-muted);
    font-weight: 600;
    line-height: 30px;
}

.alonak-rule span {
    display: flex;
    font-size: 14px;
    align-items: center;
    gap: 5px;
}

.alonak-house-rules {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.8;
    color: #78350f;
}
/* Signal grid */
.alonak-signal-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.alonak-signal-item {
    display: flex;
    gap: 8px;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 100px;
	border: 1px solid var(--al-border);
}

.alonak-signal-op {
    font-weight: 600;
    color: #2c3e50;
}

/* Landscape tags */
.alonak-landscape-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.alonak-landscape-tag {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
	border: 1px solid var(--al-border);
}
.alonak-conditions__icon img.emoji {
    width: 50px !important;
    height: 50px !important;
    border: 1px solid var(--al-border) !important;
    padding: 5px !important;
    border-radius: 8px !important;
    color: var(--al-border) !important;
	filter: grayscale(100%);
}
/* Rules grid 2 columns */
.alonak-rules-grid--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Nearby places */
.alonak-nearby-places {
    background: var(--al-white);
    padding: 16px;
    border-radius: 12px;
    line-height: 1.8;
}
/* ── Map ─────────────────────────────────────────────────── */
.alonak-front-map {
    height: 260px;
    border-radius: var(--al-radius);
    overflow: hidden;
    border: 1px solid var(--al-border);
}

.alonak-address-text {
    font-size: 14px;
    color: var(--al-muted);
    margin-bottom: 10px;
}

/* ════════════════════════════════════════════════════════════
   BOOKING CARD
════════════════════════════════════════════════════════════ */
.alonak-booking-card {
    background: var(--al-white);
    border: 1px solid var(--al-border);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--al-shadow-lg);
    position: sticky;
    top: 80px;
    z-index: 10;
}


/* Price */
.alonak-booking-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 20px 0 5px 0;
}

.alonak-booking-price__amount {
    font-size: 28px;
    font-weight: 900;
    color: var(--al-text);
}

.alonak-booking-price__currency {
    font-size: 14px;
    color: var(--al-muted);
}

.alonak-booking-price__per {
    font-size: 13px;
    color: var(--al-muted);
}

.alonak-booking-price__note {
    font-size: 12px;
    color: var(--al-orange);
    font-weight: 600;
    margin-bottom: 14px;
}

/* Date range */
.alonak-date-range {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 6px;
    background: var(--al-bg);
    border: 1.5px solid var(--al-border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}

.alonak-date-field {
    padding: 10px 12px;
    cursor: pointer;
    transition: background .12s;
}

.alonak-date-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--al-muted);
    margin-bottom: 2px;
    cursor: pointer;
}

.alonak-date-input {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--al-text);
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    direction: rtl;
}

.alonak-date-input:focus { outline: none; }
.alonak-date-input::placeholder { color: #9ca3af; font-weight: 400; }

.alonak-date-divider {
    color: var(--al-muted);
    font-size: 16px;
    text-align: center;
}

/* Front calendar */
.alonak-front-cal {
    background: #fff;
    border: 1px solid var(--al-border);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 14px;
}

.alonak-front-cal__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    background: var(--al-green);
    border-radius: 8px;
    padding: 7px 10px;
    color: #fff;
}

.alonak-front-cal__nav span {
    font-size: 13px;
    font-weight: 700;
}

.alonak-front-cal__nav button {
    background: #fff;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    max-width: 30px !important;
    min-width: 30px !important;
    max-height: 30px !important;
    min-height: 30px !important;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#alonak-fc-next {
    padding: 0 1px 0 0px;
}
#alonak-fc-prev {
    padding: 0 0 0 2px;
}
.alonak-front-cal__wdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 3px;
}

.alonak-front-cal__wdays span {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    aspect-ratio: 1.1;
    background: var(--al-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff !important;
    max-width: 38px;
}

.alonak-front-cal__wdays span.fri { color: #dc2626; }

.alonak-front-cal__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

/* Cells */
.alonak-fc-cell {
    aspect-ratio: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background .1s;
    border: 1.5px solid transparent;
    color: var(--al-text);
    font-weight: 500;
    user-select: none;
	max-width: 38px;
}

.alonak-fc-cell:hover:not(.blocked):not(.past):not(.empty) {
    background: var(--al-green-lt);
    border-color: var(--al-green);
    color: var(--al-white);
}

.alonak-fc-cell.empty   { cursor: default; }
.alonak-fc-cell.past    { color: #d1d5db; cursor: not-allowed; }

.alonak-fc-cell.blocked {
    background: #fee2e2;
    color: #f87171;
    cursor: not-allowed;
    text-decoration: line-through;
}

.alonak-fc-cell.today {
    border-color: var(--al-green);
    font-weight: 800;
    color: var(--al-green);
}

.alonak-fc-cell.checkin {
    background: var(--al-green);
    color: #fff;
    border-color: var(--al-green);
    border-radius: 0 6px 6px 0;
}

.alonak-fc-cell.checkout {
    background: var(--al-green);
    color: #fff;
    border-color: var(--al-green);
	border-radius: 6px 0 0 6px;
}

.alonak-fc-cell.in-range {
    background: var(--al-green-tr);
    border-color: transparent;
}

.alonak-front-cal__legend {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    font-size: 11px;
    color: var(--al-muted);
}

.alonak-front-cal__legend span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.leg {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    display: inline-block;
}

.leg--blocked  { background: #fee2e2; border: 1px solid #f87171; }
.leg--pending  { background: #fef4cc; border: 1px solid #f6a823; }
.leg--selected { background: var(--al-green); }

/* ── Blocked by weekday ──────────────────────────────────── */
.alonak-fc-cell.blocked-weekday {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
    cursor: not-allowed;
    opacity: 0.8;
}

/* ⭐ Booked (pending) ──────────────────────────── */
.alonak-fc-cell.booked {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
    cursor: not-allowed;
    opacity: 0.9;
}

.alonak-fc-cell.booked:hover {
    background: #fef3c7;
    transform: none;
}

/* Guests counter */
.alonak-guests-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--al-bg);
    border: 1px solid var(--al-border);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
}

.alonak-guests-row label {
    font-size: 14px;
    font-weight: 600;
    color: var(--al-text);
}

.alonak-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.alonak-counter__btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1.5px solid var(--al-border);
    background: var(--al-green);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .1s;
    opacity: 0.8;
    color: #fff;
}

.alonak-counter__btn:hover {
    background: var(--al-green);
	opacity: 1;
}

#alonak-guest-count {
    font-size: 16px;
    font-weight: 800;
    min-width: 24px;
    text-align: center;
}

/* Price breakdown */
.alonak-price-breakdown {
    background: var(--al-bg);
    border: 1px solid var(--al-border);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 14px;
}

.alonak-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--al-muted);
    padding: 4px 0;
}

.alonak-price-row--total {
    border-top: 1px solid var(--al-border);
    margin-top: 6px;
    padding-top: 10px;
    font-size: 15px;
    font-weight: 800;
    color: var(--al-text);
}

/* Book button */
.alonak-book-btn {
    width: 100%;
    background: var(--al-green);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: background .15s, transform .1s;
    font-family: inherit;
}

.alonak-book-btn:hover:not(:disabled) {
    background: var(--al-green-lt);
    transform: translateY(-1px);
}

.alonak-book-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
}

.alonak-booking-note {
    text-align: center;
    font-size: 12px;
    color: var(--al-muted);
    margin-top: 10px;
    margin-bottom: 0;
}

.alonak-booking-card {
	background: var(--al-white);
	border: 1px solid var(--al-border);
	border-radius: 16px;
	padding: 22px;
	box-shadow: var(--al-shadow-lg);
	position: sticky;
	top: 80px; 
	z-index: 10;
}

.alonak-front-cal--multi .alonak-front-cal__nav span {
	font-size: 14px;
}

.alonak-front-cal__multi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 14px;
}

.alonak-fc-month-block {
	background: #fff;
	border: 1px solid var(--al-border);
	border-radius: 10px;
	padding: 12px;
}

.alonak-fc-month-title {
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--al-text);
	margin-bottom: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--al-border);
}

@media (max-width: 768px) {
	.alonak-front-cal__multi-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
	
	.alonak-fc-month-block:nth-child(2),
	.alonak-fc-month-block:nth-child(3) {
		display: none !important;
	}
	
	.alonak-fc-month-block {
		padding: 8px;
	}
}

.alonak-bottom-booking-wrapper {
	max-width: 1280px;
	margin: 0 auto ;
	padding: 0 16px;
}

.alonak-booking-card--bottom {
    margin: 30px 0;
}

.alonak-booking-card--bottom::before,
.alonak-booking-card::before {
	content: 'همین حالا رزرو کنید';
	position: absolute;
	top: -20px;
	right: 24px;
	background: var(--al-green);
	color: #fff;
	padding: 6px 18px;
	border-radius: 20px;
	font-size: 16px;
	font-weight: 700;
}

/* ریسپانسیو برای فرم پایینی */
@media (max-width: 480px) {
	.alonak-bottom-booking-wrapper {
		margin: 20px auto 0;
		padding: 0 12px;
	}
	.alonak-booking-card--bottom {
		padding: 16px;
	}
}
/* =========================================================
   RESPONSIVE FIXES FOR MOBILE (max-width: 480px)
   ========================================================= */
@media (max-width: 480px) {
    .alonak-single {
        padding: 12px 12px 40px;
        overflow-x: hidden;
    }

    .alonak-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .alonak-booking-col {
        order: -1;
    }

    .alonak-booking-card {
        position: relative;
        top: 0;
        padding: 16px;
    }

    .alonak-gallery__single,
    .alonak-gallery__grid {
        height: 250px;
    }

    .alonak-gallery__placeholder {
        height: 250px;
    }

    .alonak-title {
        font-size: 20px;
    }

    .alonak-specs-bar {
        flex-wrap: wrap;
    }

    .alonak-spec {
        flex-basis: 33.33%;
        border-bottom: 1px solid var(--al-border);
    }

    .alonak-spec:nth-child(3n) {
        border-left: none;
    }

    .alonak-spec:nth-last-child(-n+3) {
        border-bottom: none;
    }

    .alonak-spec__val {
        font-size: 13px;
    }

    .alonak-spec__lbl {
        font-size: 10px;
    }

    .alonak-section__title {
        font-size: 16px;
    }

    .alonak-section__title i {
        font-size: 18px;
    }

    .alonak-rules-grid--2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .alonak-rule {
        padding: 10px 12px;
    }

    .alonak-rule strong {
        font-size: 14px;
    }

    .alonak-conditions__icon,
    .alonak-spec__icon {
        padding: 8px;
        font-size: 14px !important;
    }

    .alonak-amenity-tag {
        font-size: 11px;
        padding: 4px 10px;
    }

    .alonak-date-range {
        gap: 4px;
    }

    .alonak-date-field {
        padding: 6px 8px;
    }

    .alonak-date-field label {
        font-size: 10px;
    }

    .alonak-date-input {
        font-size: 12px;
    }

    .alonak-front-cal {
        padding: 8px;
        overflow-x: auto;
    }

    .alonak-fc-cell {
        font-size: 10px;
    }

    .alonak-booking-price__amount {
        font-size: 24px;
    }

    .alonak-guests-row {
        padding: 8px 10px;
    }

    .alonak-counter__btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .alonak-book-btn {
        padding: 12px;
        font-size: 14px;
    }

    .alonak-front-map {
        height: 200px;
    }

    .alonak-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .alonak-breadcrumb {
        font-size: 11px;
    }

    .alonak-location-line {
        font-size: 12px;
    }

    .alonak-signal-item {
        padding: 6px 12px;
        font-size: 12px;
    }

    .alonak-landscape-tag {
        padding: 6px 12px;
        font-size: 11px;
    }

    .alonak-house-rules {
        padding: 10px 12px;
        font-size: 12px;
    }

    .alonak-booking-note {
        font-size: 11px;
    }
}
/* ========== Rating Stars ========== */
.alonak-stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	font-size: 14px;
	line-height: 1;
	direction: ltr;
}
.alonak-star {
	color: #d1d5db;
}
.alonak-star--full {
	color: #f59e0b;
}
.alonak-star--half {
	color: #f59e0b;
	opacity: 0.7;
}
.alonak-star--empty {
	color: #e5e7eb;
}
.alonak-stars__value {
	margin-right: 6px;
	margin-left: 4px;
	font-weight: 600;
	font-size: 13px;
	color: #374151;
	direction: rtl;
}
.alonak-stars__count {
	font-size: 12px;
	color: #6b7280;
	direction: rtl;
}
.alonak-title-rating {
	margin: 6px 0 4px;
}
.alonak-grid-card__rating,
.alonak-carousel-card__rating {
	margin: 4px 0 6px;
	font-size: 13px;
}
.alonak-comment-rating {
	margin-right: 8px;
}

/* Rating input (form) */
.alonak-rating-field {
	margin-bottom: 16px;
}
.alonak-rating-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 14px;
	color: #374151;
}
.alonak-rating-input {
	display: inline-flex;
	flex-direction: row-reverse;
	gap: 2px;
	direction: ltr;
}
.alonak-rating-input input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}
.alonak-rating-input label {
	cursor: pointer;
	line-height: 1;
	padding: 2px;
}
.alonak-rating-input .alonak-rating-star {
	display: inline-block;
	font-size: 32px;
	color: #d1d5db;
	transition: color 0.15s ease, transform 0.15s ease;
	line-height: 1;
}
.alonak-rating-input label:hover .alonak-rating-star,
.alonak-rating-input label:hover ~ label .alonak-rating-star,
.alonak-rating-input input:checked ~ label .alonak-rating-star {
	color: #f59e0b;
}
.alonak-rating-input label:hover .alonak-rating-star {
	transform: scale(1.1);
}
.alonak-comment-restricted {
	padding: 16px;
	background: #fef3c7;
	border-radius: 8px;
	color: #92400e;
	font-size: 14px;
}
