/*
 * 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 {
	font-family: var(--sh-font-body);
	color: var(--sh-text);
	background: var(--sh-bg);
	box-sizing: border-box;
}

.shadihall-dashboard *,
.shadihall-browse-wrap *,
.shadihall-register-wrap *,
.shadihall-login-wrap *,
.shadihall-boost-packages *,
.shadihall-bonus-status *,
.shadihall-inquiry-form *,
.shadihall-featured-halls-grid * {
	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;
	padding: 24px 0;
}

@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: 20px 0;
}

/* 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 sits inline next to the WP uploader button */
.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;
}

/* 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;
}
