/*
 * ShadiHall.pk — Frontend Stylesheet
 *
 * Design tokens (from prompt.txt):
 *   Primary:    #C8102E  (deep red)
 *   Secondary:  #FFD700  (gold)
 *   Background: #FAF7F4  (warm white)
 *   Heading font: Playfair Display
 *   Body font:    Poppins
 *
 * BEM-style namespaced classes: .shadihall-*
 * Mobile-first; breakpoints at 640 px and 1024 px.
 *
 * Table of Contents
 * -----------------
 * 1.  CSS Custom Properties
 * 2.  Base Reset / Typography
 * 3.  Buttons
 * 4.  Notices
 * 5.  Promo / Registration Banner
 * 6.  Hall Cards (grid + individual card)
 * 7.  Featured Badge
 * 8.  Browse Halls Layout (filters + results)
 * 9.  Filter Sidebar
 * 10. Dashboards (hall owner + client)
 * 11. Forms (listing form, profile, inquiry)
 * 12. Inquiry Table
 * 13. Boost Packages Page
 * 14. Payment Methods
 * 15. Bonus Status Widget
 * 16. WhatsApp Floating Button
 * 17. Empty States & Misc Utilities
 */

/* ==========================================================================
   1. CSS Custom Properties
   ========================================================================== */

:root {
	--sh-red:         #C8102E;
	--sh-red-dark:    #a00d24;
	--sh-red-light:   #f5e6e9;
	--sh-gold:        #FFD700;
	--sh-gold-dark:   #e6c200;
	--sh-bg:          #FAF7F4;
	--sh-bg-alt:      #f3ede8;
	--sh-white:       #ffffff;
	--sh-text:        #1a1a1a;
	--sh-text-muted:  #6b6b6b;
	--sh-border:      #e2d9d0;
	--sh-radius:      8px;
	--sh-radius-lg:   14px;
	--sh-shadow:      0 2px 12px rgba(0, 0, 0, 0.08);
	--sh-shadow-lg:   0 6px 28px rgba(0, 0, 0, 0.12);
	--sh-font-head:   'Playfair Display', Georgia, serif;
	--sh-font-body:   'Poppins', system-ui, sans-serif;
	--sh-transition:  0.2s ease;
}

/* ==========================================================================
   2. Base Reset / Typography
   ========================================================================== */

.shadihall-dashboard,
.shadihall-browse-wrap,
.shadihall-register-wrap,
.shadihall-login-wrap,
.shadihall-boost-packages,
.shadihall-bonus-status,
.shadihall-inquiry-form,
.shadihall-featured-halls-grid,
.shadihall-home {
	font-family: var(--sh-font-body);
	color: var(--sh-text);
	background: var(--sh-bg);
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

.shadihall-dashboard *,
.shadihall-browse-wrap *,
.shadihall-register-wrap *,
.shadihall-login-wrap *,
.shadihall-boost-packages *,
.shadihall-bonus-status *,
.shadihall-inquiry-form *,
.shadihall-featured-halls-grid *,
.shadihall-home * {
	box-sizing: border-box;
}

.shadihall-dashboard h1,
.shadihall-dashboard h2,
.shadihall-dashboard h3,
.shadihall-dashboard h4,
.shadihall-browse-wrap h1,
.shadihall-browse-wrap h2,
.shadihall-browse-wrap h3,
.shadihall-login-wrap h2,
.shadihall-register-wrap h2,
.shadihall-boost-packages h2,
.shadihall-boost-packages h3,
.shadihall-boost-packages h4 {
	font-family: var(--sh-font-head);
	color: var(--sh-text);
	margin-top: 0;
}

/* ==========================================================================
   3. Buttons
   ========================================================================== */

.shadihall-btn {
	display: inline-block;
	padding: 10px 22px;
	border: 2px solid transparent;
	border-radius: var(--sh-radius);
	font-family: var(--sh-font-body);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: background var(--sh-transition), color var(--sh-transition),
	            border-color var(--sh-transition), box-shadow var(--sh-transition);
	white-space: nowrap;
}

.shadihall-btn--primary {
	background: var(--sh-red);
	color: var(--sh-white);
	border-color: var(--sh-red);
}

.shadihall-btn--primary:hover,
.shadihall-btn--primary:focus {
	background: var(--sh-red-dark);
	border-color: var(--sh-red-dark);
	color: var(--sh-white);
	box-shadow: 0 4px 14px rgba(200, 16, 46, 0.3);
	text-decoration: none;
}

.shadihall-btn--secondary {
	background: transparent;
	color: var(--sh-red);
	border-color: var(--sh-red);
}

.shadihall-btn--secondary:hover,
.shadihall-btn--secondary:focus {
	background: var(--sh-red-light);
	color: var(--sh-red-dark);
	text-decoration: none;
}

.shadihall-btn--outline {
	background: transparent;
	color: var(--sh-text);
	border-color: var(--sh-border);
}

.shadihall-btn--outline:hover,
.shadihall-btn--outline:focus {
	border-color: var(--sh-red);
	color: var(--sh-red);
	text-decoration: none;
}

.shadihall-btn--sm {
	padding: 6px 14px;
	font-size: 0.8rem;
}

.shadihall-btn--lg,
.shadihall-btn--large {
	padding: 14px 32px;
	font-size: 1rem;
}

.shadihall-btn--full,
.shadihall-btn--block {
	display: block;
	width: 100%;
}

.shadihall-btn--whatsapp {
	background: #25D366;
	color: var(--sh-white);
	border-color: #25D366;
}

.shadihall-btn--whatsapp:hover,
.shadihall-btn--whatsapp:focus {
	background: #1ebe5c;
	border-color: #1ebe5c;
	color: var(--sh-white);
}

/* ==========================================================================
   4. Notices
   ========================================================================== */

.shadihall-notice {
	padding: 14px 18px;
	border-left: 4px solid var(--sh-border);
	border-radius: var(--sh-radius);
	background: var(--sh-bg-alt);
	margin-bottom: 20px;
	font-size: 0.9rem;
	line-height: 1.6;
}

.shadihall-notice--success {
	border-color: #2e7d32;
	background: #f0f9f0;
	color: #1b5e20;
}

.shadihall-notice--error {
	border-color: var(--sh-red);
	background: var(--sh-red-light);
	color: var(--sh-red-dark);
}

.shadihall-notice--info {
	border-color: #1565c0;
	background: #e8f0fe;
	color: #0d47a1;
}

.shadihall-notice--warning {
	border-color: #e65100;
	background: #fff3e0;
	color: #bf360c;
}

/* ==========================================================================
   5. Promo / Registration Banner
   ========================================================================== */

.shadihall-promo-banner {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 24px;
	background: linear-gradient(135deg, var(--sh-red) 0%, #9b0a21 100%);
	color: var(--sh-white);
	border-radius: var(--sh-radius-lg);
	margin-bottom: 28px;
}

.shadihall-promo-banner--register {
	margin-bottom: 32px;
}

.shadihall-promo-banner__icon {
	font-size: 2.4rem;
	flex-shrink: 0;
	line-height: 1;
}

.shadihall-promo-banner__text {
	flex: 1;
	min-width: 0;
}

.shadihall-promo-banner__text strong {
	display: block;
	font-family: var(--sh-font-head);
	font-size: 1.2rem;
	margin-bottom: 4px;
}

.shadihall-promo-banner__text p {
	margin: 0;
	font-size: 0.9rem;
	opacity: 0.9;
}

/* ==========================================================================
   6. Hall Cards — grid + individual card
   ========================================================================== */

.shadihall-cards-grid,
.shadihall-featured-halls-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.shadihall-hall-card {
	position: relative;
	background: var(--sh-white);
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius-lg);
	overflow: hidden;
	box-shadow: var(--sh-shadow);
	transition: box-shadow var(--sh-transition), transform var(--sh-transition);
	display: flex;
	flex-direction: column;
}

.shadihall-hall-card:hover {
	box-shadow: var(--sh-shadow-lg);
	transform: translateY(-3px);
}

/* Boosted / featured card gets a gold top border accent */
.shadihall-hall-card--boosted,
.shadihall-hall-card--featured {
	border-top: 3px solid var(--sh-gold);
}

.shadihall-card__image-link {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--sh-bg-alt);
}

.shadihall-card__cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.shadihall-hall-card:hover .shadihall-card__cover {
	transform: scale(1.04);
}

.shadihall-card__cover--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: var(--sh-bg-alt);
	color: var(--sh-text-muted);
	font-size: 2.5rem;
}

.shadihall-card__body {
	padding: 16px 18px 18px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.shadihall-card__title {
	font-family: var(--sh-font-head);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--sh-text);
	margin: 0;
	line-height: 1.3;
}

.shadihall-card__title a {
	color: inherit;
	text-decoration: none;
}

.shadihall-card__title a:hover {
	color: var(--sh-red);
}

.shadihall-card__city {
	font-size: 0.82rem;
	color: var(--sh-text-muted);
	display: flex;
	align-items: center;
	gap: 4px;
}

.shadihall-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.shadihall-card__meta-item {
	font-size: 0.8rem;
	color: var(--sh-text-muted);
	background: var(--sh-bg-alt);
	padding: 3px 10px;
	border-radius: 20px;
	border: 1px solid var(--sh-border);
}

.shadihall-card__price {
	font-weight: 700;
	color: var(--sh-red);
	font-size: 0.95rem;
	margin-top: auto;
}

.shadihall-card__cta {
	margin-top: 12px;
}

/* ==========================================================================
   7. Featured Badge
   ========================================================================== */

.shadihall-featured-badge,
.shadihall-badge,
.shadihall-badge--featured {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--sh-gold);
	color: #000;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 4px;
	z-index: 2;
	line-height: 1.4;
	box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

/* Inline (non-absolute) badge variant used in bonus status widget */
.shadihall-bonus-status .shadihall-badge,
.shadihall-bonus-status .shadihall-badge--featured {
	position: static;
	display: inline-block;
	vertical-align: middle;
	margin-right: 6px;
}

/* ==========================================================================
   8. Browse Halls Layout
   ========================================================================== */

.shadihall-browse-wrap {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	/* Vertical + horizontal padding handled by shared wrapper rule */
}

@media (min-width: 1024px) {
	.shadihall-browse-wrap {
		grid-template-columns: 260px 1fr;
		align-items: start;
	}
}

.shadihall-listing-results {
	min-width: 0;
}

.shadihall-result-count {
	font-size: 0.85rem;
	color: var(--sh-text-muted);
	margin-bottom: 16px;
}

.shadihall-no-results {
	text-align: center;
	padding: 48px 24px;
	color: var(--sh-text-muted);
	font-size: 1rem;
}

/* ==========================================================================
   9. Filter Sidebar
   ========================================================================== */

.shadihall-filters {
	background: var(--sh-white);
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius-lg);
	padding: 22px 20px;
	box-shadow: var(--sh-shadow);
}

.shadihall-filters__title {
	font-family: var(--sh-font-head);
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 18px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--sh-red);
	color: var(--sh-red);
}

.shadihall-filter-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.shadihall-filter-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.shadihall-filter-group label {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--sh-text);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.shadihall-filter-group select,
.shadihall-filter-group input[type="number"],
.shadihall-filter-group input[type="text"] {
	width: 100%;
	padding: 9px 12px;
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius);
	font-family: var(--sh-font-body);
	font-size: 0.875rem;
	color: var(--sh-text);
	background: var(--sh-bg);
	transition: border-color var(--sh-transition);
	-webkit-appearance: none;
	appearance: none;
}

.shadihall-filter-group select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b6b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 32px;
}

.shadihall-filter-group select:focus,
.shadihall-filter-group input:focus {
	outline: none;
	border-color: var(--sh-red);
	box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

.shadihall-filter-range {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.shadihall-facilities-grid {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.shadihall-checkbox-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.84rem;
	color: var(--sh-text);
	cursor: pointer;
}

.shadihall-checkbox-label input[type="checkbox"] {
	accent-color: var(--sh-red);
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	cursor: pointer;
}

/* ==========================================================================
   10. Dashboards — Hall Owner & Client
   ========================================================================== */

.shadihall-dashboard {
	/* Padding is handled by the shared wrapper rule above */
}

/* Tab navigation */
.shadihall-dashboard__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	border-bottom: 2px solid var(--sh-border);
	margin-bottom: 28px;
	padding-bottom: 0;
}

.shadihall-dashboard__tab {
	display: inline-block;
	padding: 10px 18px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--sh-text-muted);
	text-decoration: none;
	border: 1px solid transparent;
	border-bottom: none;
	border-radius: var(--sh-radius) var(--sh-radius) 0 0;
	margin-bottom: -2px;
	background: transparent;
	transition: color var(--sh-transition), background var(--sh-transition),
	            border-color var(--sh-transition);
}

.shadihall-dashboard__tab:hover {
	color: var(--sh-red);
	text-decoration: none;
}

.shadihall-dashboard__tab.is-active {
	color: var(--sh-red);
	background: var(--sh-white);
	border-color: var(--sh-border) var(--sh-border) var(--sh-white);
}

/* Tab content panels */
.shadihall-tab {
	display: none;
}

.shadihall-tab.is-active {
	display: block;
}

.shadihall-dashboard__content {
	background: var(--sh-white);
	border: 1px solid var(--sh-border);
	border-radius: 0 var(--sh-radius-lg) var(--sh-radius-lg) var(--sh-radius-lg);
	padding: 28px;
}

/* ==========================================================================
   11. Forms
   ========================================================================== */

.shadihall-field,
.shadihall-form-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 18px;
}

.shadihall-field label,
.shadihall-form-row label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--sh-text);
}

.shadihall-field input,
.shadihall-field select,
.shadihall-field textarea,
.shadihall-form-row input,
.shadihall-form-row select,
.shadihall-form-row textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius);
	font-family: var(--sh-font-body);
	font-size: 0.9rem;
	color: var(--sh-text);
	background: var(--sh-white);
	transition: border-color var(--sh-transition), box-shadow var(--sh-transition);
	-webkit-appearance: none;
	appearance: none;
}

.shadihall-field select,
.shadihall-form-row select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b6b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

.shadihall-field input:focus,
.shadihall-field select:focus,
.shadihall-field textarea:focus,
.shadihall-form-row input:focus,
.shadihall-form-row select:focus,
.shadihall-form-row textarea:focus {
	outline: none;
	border-color: var(--sh-red);
	box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

.shadihall-field textarea,
.shadihall-form-row textarea {
	resize: vertical;
	min-height: 110px;
}

.shadihall-field-note {
	font-size: 0.78rem;
	color: var(--sh-text-muted);
	margin-top: 2px;
}

.shadihall-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

@media (max-width: 640px) {
	.shadihall-field-row {
		grid-template-columns: 1fr;
	}
}

.shadihall-fieldset {
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius);
	padding: 18px 20px 8px;
	margin-bottom: 24px;
}

.shadihall-fieldset legend {
	font-weight: 700;
	font-size: 0.875rem;
	color: var(--sh-red);
	padding: 0 8px;
	font-family: var(--sh-font-head);
}

.shadihall-form-footer {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.shadihall-form-footer-links {
	font-size: 0.85rem;
	color: var(--sh-text-muted);
}

.shadihall-form-footer-links a {
	color: var(--sh-red);
	text-decoration: none;
}

.shadihall-form-footer-links a:hover {
	text-decoration: underline;
}

.shadihall-form-note {
	font-size: 0.82rem;
	color: var(--sh-text-muted);
	margin-top: 4px;
}

.shadihall-form-submit {
	margin-top: 24px;
}

/* Media uploader */
.shadihall-media-uploader {
	border: 2px dashed var(--sh-border);
	border-radius: var(--sh-radius);
	padding: 20px;
	text-align: center;
	cursor: pointer;
	transition: border-color var(--sh-transition), background var(--sh-transition);
	color: var(--sh-text-muted);
	font-size: 0.875rem;
}

.shadihall-media-uploader:hover {
	border-color: var(--sh-red);
	background: var(--sh-red-light);
}

.shadihall-photo-preview {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.shadihall-photo-preview img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: var(--sh-radius);
	border: 2px solid var(--sh-border);
}

/* Register / login wrappers */
.shadihall-register-wrap,
.shadihall-register-form-wrap,
.shadihall-login-wrap {
	max-width: 540px;
	margin: 0 auto;
	padding: 32px 28px;
	background: var(--sh-white);
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius-lg);
	box-shadow: var(--sh-shadow);
}

/* ==========================================================================
   12. Inquiry Table
   ========================================================================== */

.shadihall-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.shadihall-table th,
.shadihall-table td {
	padding: 11px 14px;
	text-align: left;
	border-bottom: 1px solid var(--sh-border);
	vertical-align: top;
}

.shadihall-table th {
	font-weight: 700;
	color: var(--sh-text);
	background: var(--sh-bg-alt);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.shadihall-table tbody tr:hover {
	background: var(--sh-bg);
}

.shadihall-table--inquiries .shadihall-inquiry-message-row td {
	color: var(--sh-text-muted);
	font-style: italic;
	padding-top: 4px;
}

.shadihall-inquiry-row td:first-child {
	font-weight: 600;
}

.shadihall-inquiry-message {
	max-width: 420px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Status badges within tables */
.shadihall-status {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.shadihall-status--new      { background: #e8f0fe; color: #1565c0; }
.shadihall-status--read     { background: var(--sh-bg-alt); color: var(--sh-text-muted); }
.shadihall-status--pending  { background: #fff3e0; color: #bf360c; }
.shadihall-status--approved { background: #f0f9f0; color: #2e7d32; }
.shadihall-status--rejected { background: var(--sh-red-light); color: var(--sh-red-dark); }

.shadihall-remove-saved {
	font-size: 0.78rem;
	color: var(--sh-red);
	text-decoration: none;
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
	font-family: inherit;
}

.shadihall-remove-saved:hover {
	text-decoration: underline;
}

/* ==========================================================================
   13. Boost Packages Page
   ========================================================================== */

.shadihall-packages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 20px;
	margin: 24px 0;
}

.shadihall-package-card {
	position: relative;
	background: var(--sh-white);
	border: 2px solid var(--sh-border);
	border-radius: var(--sh-radius-lg);
	padding: 24px 20px 20px;
	text-align: center;
	transition: border-color var(--sh-transition), box-shadow var(--sh-transition),
	            transform var(--sh-transition);
	cursor: pointer;
}

.shadihall-package-card:hover {
	border-color: var(--sh-red);
	box-shadow: var(--sh-shadow-lg);
	transform: translateY(-2px);
}

.shadihall-package-card--popular {
	border-color: var(--sh-gold);
	background: linear-gradient(180deg, #fffce8 0%, var(--sh-white) 100%);
}

.shadihall-package-card--popular:hover {
	border-color: var(--sh-gold-dark);
}

/* "Most Popular" ribbon badge */
.shadihall-package-badge {
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--sh-gold);
	color: #000;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: 0 0 8px 8px;
	white-space: nowrap;
}

.shadihall-package-title {
	font-family: var(--sh-font-head);
	font-size: 1rem;
	font-weight: 700;
	margin: 12px 0 4px;
	color: var(--sh-text);
}

.shadihall-package-duration {
	font-size: 0.8rem;
	color: var(--sh-text-muted);
	margin: 0 0 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.shadihall-package-price {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--sh-red);
	margin: 8px 0;
	font-family: var(--sh-font-head);
}

.shadihall-package-desc {
	font-size: 0.82rem;
	color: var(--sh-text-muted);
	margin: 0 0 16px;
	line-height: 1.5;
}

.shadihall-package-select {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--sh-red);
	cursor: pointer;
}

.shadihall-package-select input[type="radio"] {
	accent-color: var(--sh-red);
	width: 16px;
	height: 16px;
}

/* Payment method section */
.shadihall-payment-title {
	font-family: var(--sh-font-head);
	font-size: 1rem;
	font-weight: 700;
	margin: 28px 0 12px;
	color: var(--sh-text);
}

.shadihall-payment-methods {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.shadihall-payment-method {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 16px;
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius);
	cursor: pointer;
	font-size: 0.875rem;
	transition: border-color var(--sh-transition), background var(--sh-transition);
}

.shadihall-payment-method:hover {
	border-color: var(--sh-red);
	background: var(--sh-red-light);
}

.shadihall-payment-method input[type="radio"] {
	accent-color: var(--sh-red);
	margin-top: 2px;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

/* ==========================================================================
   14. Bonus Status Widget
   ========================================================================== */

.shadihall-bonus-status.shadihall-card {
	background: var(--sh-white);
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius-lg);
	padding: 24px;
	box-shadow: var(--sh-shadow);
}

.shadihall-card-title {
	font-family: var(--sh-font-head);
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 18px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--sh-border);
	color: var(--sh-text);
}

.shadihall-bonus {
	text-align: center;
	padding: 16px 0 8px;
}

.shadihall-bonus-icon {
	font-size: 2.6rem;
	line-height: 1;
	margin: 0 0 12px;
}

.shadihall-bonus p {
	margin: 0 0 10px;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--sh-text);
}

.shadihall-bonus--active {
	border-left: 4px solid #2e7d32;
	padding-left: 16px;
	text-align: left;
}

.shadihall-bonus--expired {
	border-left: 4px solid var(--sh-border);
	padding-left: 16px;
	text-align: left;
}

.shadihall-bonus-days-left {
	font-weight: 700;
	color: #2e7d32 !important;
	font-size: 1rem !important;
}

/* ==========================================================================
   15. WhatsApp Floating Button
   ========================================================================== */

.shadihall-whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: #25D366;
	color: var(--sh-white);
	border-radius: 50%;
	box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
	text-decoration: none;
	transition: background var(--sh-transition), transform var(--sh-transition),
	            box-shadow var(--sh-transition);
}

.shadihall-whatsapp-float:hover,
.shadihall-whatsapp-float:focus {
	background: #1ebe5c;
	transform: scale(1.08);
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.65);
	color: var(--sh-white);
}

.shadihall-whatsapp-float svg {
	display: block;
}

/* ==========================================================================
   16. Empty States & Misc Utilities
   ========================================================================== */

.shadihall-empty-state {
	text-align: center;
	padding: 48px 24px;
	color: var(--sh-text-muted);
}

.shadihall-empty-state p {
	font-size: 0.95rem;
	margin-bottom: 18px;
}

/* Responsive table wrapper */
@media (max-width: 640px) {
	.shadihall-table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

/* Responsive dashboard tabs */
@media (max-width: 640px) {
	.shadihall-dashboard__tab {
		font-size: 0.78rem;
		padding: 8px 12px;
	}
}

/* =========================================================
 * Google Drive Integration
 * ======================================================= */

/* Drive picker button (gallery/cover/video, all Drive-only now) */
.shadihall-gdrive-btn {
	background: #fff;
	border-color: #e5e7eb;
	color: #374151;
	font-size: 0.85rem;
	vertical-align: middle;
}
.shadihall-gdrive-btn:hover {
	border-color: #4285f4;
	color: #1a73e8;
}

.shadihall-drive-video-chosen {
	margin: 8px 0 0;
	font-size: 0.85rem;
	color: #1a73e8;
}

/* Drive badge shown on thumbnails picked from Drive */
.shadihall-drive-badge {
	position: absolute;
	bottom: 4px;
	left: 4px;
	background: rgba(66, 133, 244, 0.85);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 600;
	padding: 1px 5px;
	border-radius: 3px;
	letter-spacing: 0.04em;
	pointer-events: none;
}

.shadihall-photo-thumb--drive {
	position: relative;
}

.shadihall-drive-cover-wrap {
	position: relative;
	display: inline-block;
	margin-top: 10px;
}
.shadihall-drive-cover-wrap .shadihall-drive-badge {
	bottom: 8px;
	left: 8px;
}
.shadihall-drive-cover-wrap .shadihall-photo-thumb__remove--drive {
	position: static;
	display: block;
	margin-top: 6px;
	background: #fee2e2;
	border: 1px solid #fca5a5;
	color: #b91c1c;
	border-radius: 4px;
	padding: 3px 10px;
	font-size: 0.8rem;
	cursor: pointer;
}


/* =========================================================================
   SINGLE HALL PAGE
   ========================================================================= */

/* ==========================================================================
   Single Hall Page — Complete Redesign
   ========================================================================== */

.shadihall-single-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 0 80px;
	font-family: var(--sh-font-body);
	color: var(--sh-text);
}

/* ---- HERO ---- */
.shadihall-single__hero {
	position: relative;
	width: 100%;
	min-height: 420px;
	display: flex;
	align-items: flex-end;
	border-radius: 0 0 20px 20px;
	overflow: hidden;
	margin-bottom: 40px;
	background: #1a1a2e;
}

.shadihall-single__hero-img-wrap {
	position: absolute;
	inset: 0;
}

.shadihall-single__cover-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shadihall-single__hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10,10,20,0.85) 0%, rgba(10,10,20,0.3) 60%, transparent 100%);
}

/* Hero without a cover image: solid brand-colour background, no overlay needed */
.shadihall-single__hero--noimg {
	background: linear-gradient(135deg, var(--sh-red) 0%, var(--sh-red-dark) 100%);
	min-height: 260px;
}

.shadihall-single__hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 32px 32px 36px;
}

.shadihall-single__breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	color: rgba(255,255,255,0.7);
	margin-bottom: 12px;
}

.shadihall-single__breadcrumb a {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
}

.shadihall-single__breadcrumb a:hover { color: #fff; }
.shadihall-single__breadcrumb span { color: rgba(255,255,255,0.5); }

.shadihall-single__title {
	font-family: var(--sh-font-head);
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 16px;
	text-shadow: 0 2px 12px rgba(0,0,0,0.4);
	line-height: 1.2;
}

.shadihall-single__hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.shadihall-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: rgba(255,255,255,0.18);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255,255,255,0.25);
	color: #fff;
	padding: 5px 14px;
	border-radius: 100px;
	font-size: 0.82rem;
	font-weight: 500;
}

.shadihall-hero-badge .dashicons {
	font-size: 14px;
	width: 14px;
	height: 14px;
}

.shadihall-hero-badge--price {
	background: rgba(200,16,46,0.75);
	border-color: rgba(200,16,46,0.5);
	font-weight: 700;
}

.shadihall-single__hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

@media (max-width: 600px) {
	.shadihall-single__hero { min-height: 300px; }
	.shadihall-single__hero-content { padding: 20px 16px 24px; }
}

/* ---- BODY LAYOUT ---- */
.shadihall-single__body {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
	align-items: start;
	padding: 0 24px;
}

@media (max-width: 900px) {
	.shadihall-single__body {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.shadihall-single__body { padding: 0 16px; }
}

/* ---- SECTIONS ---- */
.shadihall-single__section {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #e5e7eb;
}

.shadihall-single__section--first {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.shadihall-single__section-title {
	font-family: var(--sh-font-head);
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0 0 20px;
	color: #1a1a2e;
	display: flex;
	align-items: center;
	gap: 10px;
}

.shadihall-gallery-count {
	font-family: var(--sh-font-body);
	font-size: 0.75rem;
	font-weight: 500;
	background: var(--sh-red-light);
	color: var(--sh-red);
	padding: 2px 10px;
	border-radius: 100px;
}

/* ---- GALLERY GRID ---- */
.shadihall-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto auto;
	gap: 8px;
}

/* First item spans 2 cols & 2 rows — featured */
.shadihall-gallery__item--featured {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.shadihall-gallery__item {
	display: block;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 4/3;
	cursor: pointer;
	border: none;
	padding: 0;
	margin: 0;
	background: #e5e7eb;
	position: relative;
	font: inherit;
	text-align: left;
	width: 100%;
}

.shadihall-gallery__item--featured {
	aspect-ratio: unset;
	height: 100%;
}

.shadihall-gallery__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
	display: block;
}

.shadihall-gallery__item:hover .shadihall-gallery__img,
.shadihall-gallery__item:focus .shadihall-gallery__img {
	transform: scale(1.06);
}

.shadihall-gallery__more-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.55);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	font-weight: 700;
	border-radius: 8px;
	pointer-events: none;
}

@media (max-width: 600px) {
	.shadihall-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
	.shadihall-gallery__item--featured {
		grid-column: 1 / 3;
	}
}

/* ---- LIGHTBOX ---- */
.shadihall-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
}

.shadihall-lightbox.is-open { display: flex; }
.shadihall-lightbox[hidden] { display: none !important; }

body.shadihall-lightbox-active { overflow: hidden; }

.shadihall-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.92);
	cursor: pointer;
}

.shadihall-lightbox__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 92vw;
	max-height: 92vh;
	width: 100%;
}

.shadihall-lightbox__stage {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	max-height: 70vh;
	width: 100%;
}

.shadihall-lightbox__img {
	max-width: 100%;
	max-height: 70vh;
	object-fit: contain;
	border-radius: 8px;
	display: block;
	transition: opacity 0.2s;
}

.shadihall-lightbox__loader {
	position: absolute;
	width: 40px;
	height: 40px;
	border: 3px solid rgba(255,255,255,0.2);
	border-top-color: #fff;
	border-radius: 50%;
	animation: sh-spin 0.8s linear infinite;
	display: none;
}

.shadihall-lightbox--loading .shadihall-lightbox__img { opacity: 0; }
.shadihall-lightbox--loading .shadihall-lightbox__loader { display: block; }

@keyframes sh-spin {
	to { transform: rotate(360deg); }
}

.shadihall-lightbox__close {
	position: absolute;
	top: -16px;
	right: 0;
	background: rgba(255,255,255,0.15);
	border: none;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
	z-index: 10;
}

.shadihall-lightbox__close:hover { background: rgba(255,255,255,0.3); }

.shadihall-lightbox__prev,
.shadihall-lightbox__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.15);
	border: none;
	color: #fff;
	font-size: 2.5rem;
	line-height: 1;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
	z-index: 10;
}

.shadihall-lightbox__prev { left: -60px; }
.shadihall-lightbox__next { right: -60px; }

.shadihall-lightbox__prev:hover,
.shadihall-lightbox__next:hover { background: rgba(255,255,255,0.3); }

@media (max-width: 700px) {
	.shadihall-lightbox__prev { left: 4px; }
	.shadihall-lightbox__next { right: 4px; }
}

.shadihall-lightbox__counter {
	color: rgba(255,255,255,0.7);
	font-size: 0.85rem;
	margin: 10px 0 6px;
}

/* Thumbnail strip */
.shadihall-lightbox__thumbs {
	display: flex;
	gap: 6px;
	overflow-x: auto;
	max-width: 92vw;
	padding: 4px 0 8px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.shadihall-lightbox__thumbs::-webkit-scrollbar { height: 4px; }
.shadihall-lightbox__thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 4px; }

.shadihall-lightbox__thumb {
	flex-shrink: 0;
	width: 60px;
	height: 45px;
	border-radius: 5px;
	overflow: hidden;
	border: 2px solid transparent;
	cursor: pointer;
	padding: 0;
	background: #333;
	transition: border-color 0.2s;
	opacity: 0.6;
}

.shadihall-lightbox__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shadihall-lightbox__thumb--active,
.shadihall-lightbox__thumb:hover {
	border-color: var(--sh-red);
	opacity: 1;
}

/* ---- VIDEO ---- */
.shadihall-single__video iframe {
	width: 100%;
	border-radius: 10px;
	aspect-ratio: 16/9;
	border: none;
}

/* ---- FACILITIES ---- */
.shadihall-facilities-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 10px;
}

.shadihall-facilities-list__item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	color: #374151;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 8px 12px;
}

.shadihall-facilities-list__item .dashicons {
	color: #16a34a;
	font-size: 18px;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

/* ---- LOCATION ---- */
.shadihall-location-block {
	display: flex;
	align-items: flex-start;
	gap: 6px;
}

.shadihall-location-block .dashicons {
	flex-shrink: 0;
	margin-top: 2px;
}

/* ---- ADDRESS ---- */
.shadihall-single__address {
	color: #4b5563;
	margin: 0 0 6px;
	line-height: 1.6;
	font-size: 0.95rem;
}

/* ---- CONTACT ---- */
.shadihall-contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.shadihall-contact-list__item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
	color: #374151;
}

.shadihall-contact-list__item .dashicons {
	color: var(--sh-red);
	font-size: 20px;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.shadihall-contact-list__item a {
	color: var(--sh-red);
	text-decoration: none;
}

.shadihall-contact-list__item a:hover { text-decoration: underline; }

/* ---- DESCRIPTION ---- */
.shadihall-single__description {
	font-size: 0.95rem;
	line-height: 1.75;
	color: #4b5563;
}

/* ---- SIDEBAR ---- */
.shadihall-single__sidebar {
	position: sticky;
	top: 80px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.shadihall-single__pricing-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.shadihall-single__pricing-title {
	font-family: var(--sh-font-head);
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 16px;
	padding-bottom: 14px;
	border-bottom: 2px solid #f3f4f6;
	color: #1a1a2e;
}

.shadihall-pricing-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 9px 0;
	border-bottom: 1px solid #f3f4f6;
	font-size: 0.9rem;
}

.shadihall-pricing-row:last-of-type { border-bottom: none; }

.shadihall-pricing-row--deposit {
	font-style: italic;
	color: #6b7280;
	font-size: 0.85rem;
}

.shadihall-pricing-row__value {
	font-weight: 700;
	color: var(--sh-red);
	font-size: 1rem;
}

.shadihall-pricing-na {
	color: #6b7280;
	font-style: italic;
	text-align: center;
	margin: 12px 0;
	font-size: 0.9rem;
}

.shadihall-btn--block {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 100%;
	margin-top: 12px;
}

/* Quick info card */
.shadihall-single__quick-info {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 18px 20px;
}

.shadihall-single__quick-info h4 {
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #9ca3af;
	margin: 0 0 12px;
}

.shadihall-qi-row {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.88rem;
	color: #374151;
	padding: 5px 0;
}

.shadihall-qi-row .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
	color: var(--sh-red);
}

.shadihall-qi-row a {
	color: var(--sh-red);
	text-decoration: none;
}

.shadihall-single__back-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #6b7280;
	font-size: 0.88rem;
	text-decoration: none;
	padding: 4px 0;
}

.shadihall-single__back-link:hover { color: var(--sh-red); }

.shadihall-btn--sm {
	font-size: 0.85rem;
	padding: 6px 14px;
}

/* ==========================================================================
   GeneratePress Theme — Remove double padding on plugin pages
   The plugin wrapper elements have padding: 0 so the theme's .inside-article
   padding is the only outer spacing. This prevents the double top/bottom
   gap visible in the Dashboard, Login, and all other plugin pages.
   ========================================================================== */

/* Strip GeneratePress article padding when a plugin page is inside */
.inside-article:has(.shadihall-dashboard),
.inside-article:has(.shadihall-login-wrap),
.inside-article:has(.shadihall-register-wrap),
.inside-article:has(.shadihall-register-form-wrap),
.inside-article:has(.shadihall-browse-wrap),
.inside-article:has(.shadihall-boost-packages),
.inside-article:has(.shadihall-bonus-status),
.inside-article:has(.shadihall-inquiry-form),
.inside-article:has(.shadihall-featured-halls-grid) {
	padding: 0 !important;
}

/* Also target .entry-content which GP wraps content in */
.entry-content:has(.shadihall-dashboard),
.entry-content:has(.shadihall-login-wrap),
.entry-content:has(.shadihall-register-wrap),
.entry-content:has(.shadihall-register-form-wrap),
.entry-content:has(.shadihall-browse-wrap),
.entry-content:has(.shadihall-boost-packages),
.entry-content:has(.shadihall-bonus-status),
.entry-content:has(.shadihall-inquiry-form),
.entry-content:has(.shadihall-featured-halls-grid) {
	margin: 0 !important;
}

/* Restore sensible inner spacing so content is not flush against edges */
.shadihall-dashboard,
.shadihall-browse-wrap,
.shadihall-boost-packages,
.shadihall-bonus-status,
.shadihall-inquiry-form,
.shadihall-featured-halls-grid {
	padding: 24px 20px;
}

.shadihall-login-wrap,
.shadihall-register-wrap,
.shadihall-register-form-wrap {
	margin-top: 24px !important;
	margin-bottom: 24px !important;
}

@media (min-width: 640px) {
	.shadihall-dashboard,
	.shadihall-browse-wrap,
	.shadihall-boost-packages,
	.shadihall-bonus-status,
	.shadihall-inquiry-form,
	.shadihall-featured-halls-grid {
		padding: 32px 28px;
	}
}

@media (min-width: 1024px) {
	.shadihall-dashboard,
	.shadihall-browse-wrap,
	.shadihall-boost-packages,
	.shadihall-bonus-status,
	.shadihall-inquiry-form,
	.shadihall-featured-halls-grid {
		padding: 36px 32px;
	}
}
/* =========================================================
 * Google Drive Connect Modal
 * ======================================================= */

.shadihall-gdrive-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shadihall-gdrive-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.shadihall-gdrive-modal__box {
	position: relative;
	background: #fff;
	border-radius: 12px;
	padding: 32px 28px 28px;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 20px 60px rgba(0,0,0,0.2);
	z-index: 1;
}

.shadihall-gdrive-modal__close {
	position: absolute;
	top: 12px;
	right: 14px;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #9ca3af;
	cursor: pointer;
	line-height: 1;
	padding: 0;
}
.shadihall-gdrive-modal__close:hover {
	color: #374151;
}
