@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
box-sizing: border-box;
}

.wb-cg-access {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
/* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
color: #1e293b;
/* min-height: 100vh; */
padding: 24px 16px;
display: flex;
align-items: center;
justify-content: center;
}

.wb-cg-card {
background: #ffffff;
border-radius: 24px;
max-width: 900px;
width: 100%;
padding: 0;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.1);
overflow: hidden;
}

.wb-cg-card.gallery-open {
	max-width: 1200px;
	width: 100%;
	transition: max-width 0.3s ease;
}

.wb-cg-header {
background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
padding: 16px 24px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 16px;
}

.wb-cg-header-top {
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
}

@media (min-width: 769px) {
	.wb-cg-header {
		flex-wrap: nowrap;
	}
	
	.wb-cg-header-top {
		flex: 0 0 auto;
	}
	
	.wb-cg-countdown {
		flex: 1;
		width: auto;
	}
}

.wb-cg-access-box,
.wb-cg-gallery-box {
padding: 32px;
}

.wb-cg-access-box {
text-align: center;
max-width: 480px;
margin: 0 auto;
}

.wb-cg-access-box.hidden {
display: none;
}

.wb-cg-gallery-box {
display: none;
}

.wb-cg-gallery-box.visible {
display: block;
}

.wb-cg-access-box h2 {
margin: 0 0 8px;
font-size: 32px;
font-weight: 800;
color: #1e293b;
line-height: 1.2;
}

.wb-cg-access-box p {
margin: 0 0 24px;
color: #64748b;
font-size: 16px;
line-height: 1.5;
}

.wb-gallery-header {
margin-bottom: 24px;
}

.wb-event-info-card {
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
	border-radius: 20px;
	padding: 24px;
	border: 2px solid #e2e8f0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.wb-event-info-card.collapsed .wb-event-details {
	display: none;
}

.wb-event-info-card.collapsed .wb-event-toggle ion-icon {
	transform: rotate(180deg);
}

.wb-event-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* gap: 16px; */
	/* margin-bottom: 10px; */
	/* padding-bottom: 16px; */
	/* border-bottom: 2px solid #e2e8f0; */
	flex-wrap: wrap;
}

.wb-event-info-card:not(.collapsed) .wb-event-header {
	padding-bottom: 10px;
	border-bottom: 2px solid #e2e8f0;
	margin-bottom: 10px;
}

.wb-event-header-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

.wb-event-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border: 2px solid #e2e8f0;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background-color: #917251;
    color: #fff;
    text-decoration: none;
}

.wb-event-toggle:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
}

.wb-event-toggle ion-icon {
	font-size: 20px;
	color: #64748b;
	transition: transform 0.3s ease;
}

.wb-event-title {
	margin: 0;
	font-size: 28px;
	font-weight: 800;
	color: #1e293b;
	flex: 1;
}

.wb-event-badge {
	display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #ebe0d4;
    color: #917251;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid #d9c6b2;
    letter-spacing: 0.5px;
}

.wb-event-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}

.wb-event-detail-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	transition: all 0.2s ease;
}

.wb-event-detail-item:hover {
	border-color: #cbd5e1;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wb-event-detail-item > ion-icon {
	font-size: 22px;
	color: #a88968;
	margin-top: 2px;
	flex-shrink: 0;
}

.wb-detail-label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #64748b;
	margin-bottom: 4px;
}

.wb-detail-value {
	font-size: 14px;
	font-weight: 500;
	color: #1e293b;
	line-height: 1.4;
}

.wb-access-code {
	font-family: 'Courier New', monospace;
	font-weight: 700;
	letter-spacing: 2px;
	color: #a88968;
	font-size: 16px;
}

.wb-event-tags {
	grid-column: 1 / -1;
}

.wb-tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.wb-tag {
	display: inline-block;
    padding: 4px 12px;
    background: #a88968;
    color: #ffffff;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #a88968;
}

.wb-event-notes {
	grid-column: 1 / -1;
}

.wb-event-notes .wb-detail-value {
	white-space: pre-wrap;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.wb-event-details {
		grid-template-columns: 1fr;
	}
	
	.wb-event-title {
		font-size: 22px;
	}
	
	.wb-event-info-card {
		padding: 20px;
	}
	.wb-cg-access {
		padding: 0;
	}
		
}

.wb-gallery-title {
margin: 0 0 8px;
font-size: 28px;
font-weight: 800;
color: #1e293b;
}

.wb-gallery-location {
margin: 0;
color: #64748b;
font-size: 15px;
}

.wb-cg-input {
width: 100%;
padding: 16px 20px;
border-radius: 12px;
border: 2px solid #f0e9e2;
background: #fcfaf8;
color: #1e293b;
font-size: 16px;
font-family: inherit;
transition: all 0.3s ease;
outline: none;
}

.wb-cg-input:focus {
border-color: #a88968;
background: #ffffff;
box-shadow: 0 0 0 3px rgba(168, 137, 104, 0.1);
}

.wb-cg-button {
margin-top: 16px;
width: 100%;
padding: 16px 24px;
border: none;
border-radius: 12px;
background: #a88968;
color: #fff;
font-weight: 700;
font-size: 16px;
font-family: inherit;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(182, 139, 76, 0.4);
}

.wb-cg-button:hover:not(:disabled) {
transform: translateY(-2px);
box-shadow: 0 15px 40px rgba(180, 131, 76, 0.5);
background: #927658;
}

.wb-cg-button:active:not(:disabled) {
transform: translateY(0);
}

.wb-cg-button:disabled {
opacity: 0.6;
cursor: not-allowed;
}

.wb-countdown {
display: flex;
align-items: center;
gap: 12px;
flex: 1;
flex-wrap: nowrap;
}

.wb-cg-countdown {
display: flex;
align-items: center;
gap: 12px;
width: 100%;
justify-content: flex-end;
}

.wb-countdown-logo {
height: 40px !important;
width: auto;
object-fit: contain;
flex-shrink: 0;
}

.wb-countdown-label {
color: #ffffff;
font-weight: 600;
font-size: 14px;
white-space: nowrap;
}

.wb-countdown-timer {
display: flex;
gap: 8px;
flex-wrap: wrap;
align-items: center;
}

.wb-countdown-item {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
padding: 6px 12px;
border-radius: 8px;
display: flex;
align-items: center;
gap: 6px;
font-size: 14px;
font-weight: 600;
color: #ffffff;
border: 1px solid rgba(255, 255, 255, 0.2);
}

.wb-countdown-item span {
font-size: 12px;
text-transform: capitalize;
opacity: 0.9;
}

.wb-cg-header p {
	display: none;
}

.wb-cg-actions-container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

/* Remove any stray br and p tags that WordPress might add */
.wb-cg-actions-container br,
.wb-cg-actions-row br,
.wb-filter-btn br {
	display: none;
}

.wb-cg-actions-container > p,
.wb-cg-actions-row > p {
	display: none;
}

.wb-cg-actions-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	flex: 1;
}

.wb-cg-search-container {
	min-width: 280px;
}

.wb-cg-filters {
display: flex;
gap: 12px;
flex-wrap: wrap;
}

.wb-filter-btn {
display: inline-flex;
align-items: center;
gap: 8px;
background: #f8fafc;
padding: 12px 20px;
border-radius: 12px;
font-size: 14px;
font-weight: 600;
color: #64748b;
border: 2px solid #e2e8f0;
cursor: pointer;
transition: all 0.3s ease;
font-family: inherit;
justify-content: center;
}

.wb-filter-btn:hover {
background: #ffffff;
border-color: #cbd5e1;
color: #475569;
}

.wb-filter-btn.active {
background: linear-gradient(135deg, #a88968 0%, #8b6f47 100%);
border-color: #a88968;
color: #ffffff;
}

.wb-filter-btn ion-icon {
font-size: 18px;
}

.wb-cg-downloads {
	display: contents;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}



.wb-download-btn {
display: inline-flex;
align-items: center;
gap: 8px;
background: #ffffff;
padding: 12px 20px;
border-radius: 12px;
font-size: 14px;
font-weight: 600;
color: #475569;
border: 2px solid #e2e8f0;
cursor: pointer;
transition: all 0.3s ease;
font-family: inherit;
text-decoration: none;
justify-content: center;
}

.wb-download-btn:hover {
background: #f8fafc;
border-color: #a88968;
color: #a88968;
}

.wb-download-btn ion-icon {
font-size: 18px;
}

.wb-action-btn {
display: inline-flex;
align-items: center;
justify-content: center;
background: rgb(255 255 255 / 55%);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
width: 40px;
height: 40px;
border-radius: 50%;
font-size: 12px;
color: #2d2d2d;
border: none;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
text-decoration: none;
padding: 0;
}

.wb-action-btn:hover {
background: #ffffff;
transform: scale(1.1);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
color: black;
}

.wb-action-btn.liked {
color: #ef4444;
background: #fee2e2;
}

.wb-action-btn ion-icon {
font-size: 20px;
}

.wb-cg-gallery {
margin-top: 24px;
column-count: 3;
column-gap: 16px;
}

@media (max-width: 768px) {
	.wb-cg-actions-container {
		flex-direction: column;
		gap: 12px;
	}
	
	.wb-cg-actions-row {
		grid-template-columns: 1fr;
		width: 100%;
	}
	
	.wb-cg-search-container {
		min-width: 100%;
		order: -1;
	}
	
	.wb-cg-header {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		flex-wrap: wrap;
	}
	
	.wb-cg-header-top {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		flex: 1 0 100%;
	}
	
	.wb-cg-countdown {
		display: flex;
		width: 100%;
		flex: 1 0 100%;
		justify-content: flex-end;
	}
	
	.wb-countdown-timer {
		width: 100%;
	}

	.wb-cg-gallery {
		column-count: 2;
		column-gap: 12px;
	}
}

@media (max-width: 480px) {
.wb-cg-gallery {
column-count: 1;
}
}

.wb-cg-img {
position: relative;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
cursor: pointer;
background: #f8fafc;
break-inside: avoid;
margin-bottom: 16px;
display: inline-block;
width: 100%;
	opacity: 0;
	animation: fadeInUp 0.4s ease forwards;
	line-height: 0;
}

.wb-cg-img img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.wb-cg-img:hover img {
transform: scale(1.08);
}

.wb-cg-actions {
position: absolute;
right: 12px;
bottom: 12px;
display: flex;
gap: 8px;
opacity: 0;
transition: opacity 0.3s ease;
z-index: 2;
}

.wb-cg-img:hover .wb-cg-actions {
opacity: 1;
}

.wb-cg-stats {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	gap: 8px;
	background: rgba(0, 0, 0, 0.50);
	color: #fff;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 12px;
	align-items: center;
	opacity: 1;
	transition: opacity 0.2s ease;
	z-index: 2;
}

.wb-cg-stats span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.wb-cg-stats ion-icon {
	font-size: 14px;
}

.wb-search {
	display: flex;
	gap: 12px;
	width: 100%;
}

.wb-search input {
	flex: 1;
	width: 100%;
	padding: 12px 16px;
	border-radius: 12px;
	border: 2px solid #e2e8f0;
	background: #f8fafc;
	font-size: 14px;
	font-family: inherit;
	outline: none;
	transition: all 0.3s ease;
}

.wb-search input:focus {
	border-color: #a88968;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(168, 137, 104, 0.1);
}

.wb-meta-bar {
	margin: 8px 0 14px;
	color: #64748b;
	font-size: 13px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.wb-meta-bar span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.wb-lightbox {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
z-index: 9999;
animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

.wb-lightbox-content {
position: relative;
display: flex;
align-items: center;
justify-content: center;
}

.wb-lightbox img {
max-width: 90%;
max-height: 90vh;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
animation: zoomIn 0.3s ease;
}

.wb-lightbox-watermark {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
user-select: none;
z-index: 10;
animation: none !important;
background: transparent;
border: none;
box-shadow: none !important;
}

/* Adjust watermark size based on screen size */
@media (max-width: 768px) {
.wb-lightbox-watermark {
/* Size will be set dynamically via inline styles */
}
}

@keyframes zoomIn {
from {
transform: scale(0.9);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}

.wb-modal {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
z-index: 10000;
animation: fadeIn 0.3s ease;
}

.wb-modal .card {
background: #ffffff;
padding: 32px;
border-radius: 20px;
max-width: 480px;
width: 100%;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
animation: slideUp 0.3s ease;
}

.wb-comment-card {
	max-width: 520px;
}

.wb-comment-list {
	max-height: 260px;
	overflow: auto;
	display: grid;
	gap: 10px;
	margin-bottom: 14px;
}

.wb-comment {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 10px 12px;
	background: #f8fafc;
}

.wb-comment.empty {
	text-align: center;
	color: #94a3b8;
}

.wb-comment-meta {
	font-size: 12px;
	color: #94a3b8;
	margin-bottom: 4px;
}

.wb-comment-body {
	color: #0f172a;
	font-size: 14px;
	white-space: pre-wrap;
}

.wb-comment-form label {
	display: block;
	margin-bottom: 8px;
	color: #0f172a;
	font-weight: 600;
}

.wb-comment-form input,
.wb-comment-form textarea {
	width: 100%;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	font-family: inherit;
}

.wb-comment-form textarea {
	min-height: 100px;
}

@keyframes slideUp {
from {
transform: translateY(20px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

.wb-modal .card h4 {
margin: 0 0 8px;
font-size: 22px;
font-weight: 700;
color: #1e293b;
}

.wb-modal .card p {
margin: 0 0 20px;
color: #64748b;
font-size: 14px;
line-height: 1.5;
}

.wb-share-consent {
margin: 8px 0 4px 0;
font-size: 13px;
color: #64748b;
line-height: 1.5;
}

.wb-modal .card label {
display: block;
margin-bottom: 16px;
font-size: 14px;
font-weight: 600;
color: #475569;
}

.wb-modal .card select {
width: 100%;
padding: 10px 14px;
border-radius: 8px;
border: 2px solid #e2e8f0;
background: #f8fafc;
font-family: inherit;
font-size: 14px;
margin-top: 8px;
outline: none;
transition: all 0.3s ease;
}

.wb-modal .card select:focus {
border-color: #a88968;
background: #ffffff;
}

.wb-modal .card input[type="checkbox"] {
width: 18px;
height: 18px;
cursor: pointer;
}

.wb-modal-actions {
display: flex;
gap: 12px;
justify-content: flex-end;
margin-top: 24px;
}

.wb-modal-btn {
padding: 10px 20px;
border-radius: 10px;
font-size: 14px;
font-weight: 600;
font-family: inherit;
cursor: pointer;
transition: all 0.3s ease;
}

.wb-modal-btn.cancel {
background: #f8fafc;
border: 2px solid #e2e8f0;
color: #64748b;
}

.wb-modal-btn.cancel:hover {
background: #ffffff;
border-color: #cbd5e1;
}

.wb-modal-btn.primary {
background: linear-gradient(135deg, #a88968 0%, #8b6f47 100%);
border: none;
color: #ffffff;
}

.wb-modal-btn.primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(168, 137, 104, 0.4);
}

.wb-share-result {
margin-top: 16px;
padding: 12px;
background: #f0fdf4;
border: 2px solid #bbf7d0;
border-radius: 10px;
}

.wb-share-link {
display: grid;
grid-template-columns: 1fr auto;
gap: 10px;
align-items: center;
}

.wb-share-result input {
width: 100%;
padding: 10px;
border: 1px solid #86efac;
border-radius: 8px;
background: #ffffff;
font-size: 13px;
font-family: monospace;
}

.wb-share-copy {
border: 1px solid #86efac;
background: #ffffff;
border-radius: 8px;
width: 40px;
height: 40px;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s ease;
color: #166534;
padding: 0;
}

.wb-share-copy:hover {
transform: translateY(-1px);
box-shadow: 0 6px 12px rgba(22, 101, 52, 0.18);
background: #5c8253;
}

.wb-banner {
	display: block;
	text-align: center;
	padding: 16px;
	margin: 0 0 20px 0;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	min-height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.wb-banner strong {
	display: inline-block;
	font-size: 16px;
	color: #1e293b;
	font-weight: 700;
}

.wb-cg-lang {
display: flex;
gap: 6px;
background: rgba(255, 255, 255, 0.1);
padding: 4px;
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.2);
}

.wb-cg-lang button {
border: none;
background: transparent;
padding: 8px 14px;
border-radius: 8px;
cursor: pointer;
color: rgba(255, 255, 255, 0.7);
font-size: 13px;
font-weight: 600;
font-family: inherit;
transition: all 0.3s ease;
}

.wb-cg-lang button:hover {
color: #ffffff;
background: rgba(255, 255, 255, 0.15);
}

.wb-cg-lang button.active {
background: rgba(255, 255, 255, 0.25);
color: #ffffff;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Toasts */
.wb-toast-container {
position: fixed;
top: 35px;
right: 16px;
display: flex;
flex-direction: column;
gap: 8px;
z-index: 10000;
}

.wb-toast {
display: flex;
align-items: center;
gap: 8px;
background: #0f172a;
color: #f8fafc;
border-radius: 10px;
padding: 10px 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.25);
min-width: 220px;
border: 1px solid rgba(255,255,255,0.08);
}

.wb-toast.hide {
opacity: 0;
transform: translateY(-4px);
transition: opacity 0.2s ease, transform 0.2s ease;
}

.wb-toast ion-icon {
font-size: 18px;
}

.wb-toast-success {
border-color: #22c55e;
}

.wb-toast-success ion-icon {
color: #22c55e;
}

.wb-toast-error {
border-color: #ef4444;
}

.wb-toast-error ion-icon {
color: #ef4444;
}

.wb-toast-info ion-icon {
color: #38bdf8;
}

@media (max-width: 640px) {
.wb-cg-header {
padding: 12px 16px;
}

.wb-countdown {
gap: 8px;
}

.wb-countdown-logo {
height: 22px;
}

.wb-countdown-label {
font-size: 12px;
}

.wb-cg-access-box,
.wb-cg-gallery-box {
padding: 24px 20px;
}

.wb-cg-access-box h2 {
font-size: 26px;
}

.wb-filter-btn,
.wb-download-btn {
flex: 1;
justify-content: center;
}
}
/* ========================================
   Loading States & Shimmer Effects
   ======================================== */
.wb-loading-spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
	vertical-align: middle;
	margin-right: 8px;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.wb-status-loading,
.wb-status-success,
.wb-status-error {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	animation: fadeInSlide 0.3s ease;
}

.wb-status-loading {
	background: linear-gradient(135deg, #a88968 0%, #8b6f47 100%);
	color: #ffffff;
}

.wb-status-success {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
}

.wb-status-error {
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	color: #ffffff;
}

.wb-status-success ion-icon,
.wb-status-error ion-icon {
	font-size: 20px;
}

@keyframes fadeInSlide {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Shimmer skeleton for gallery images */
.wb-cg-img-shimmer {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: #f1f5f9;
	animation: fadeIn 0.3s ease;
}

.wb-shimmer-image {
	width: 100%;
	padding-bottom: 100%;
	background: linear-gradient(
		90deg,
		#f1f5f9 0%,
		#e2e8f0 50%,
		#f1f5f9 100%
	);
	background-size: 200% 100%;
	animation: shimmer 1.5s ease-in-out infinite;
}

.wb-shimmer-actions {
	display: flex;
	gap: 8px;
	padding: 12px;
	justify-content: center;
}

.wb-shimmer-button {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: linear-gradient(
		90deg,
		#e2e8f0 0%,
		#cbd5e1 50%,
		#e2e8f0 100%
	);
	background-size: 200% 100%;
	animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Improve button loading state */
.wb-cg-button:disabled {
	opacity: 0.8;
	cursor: wait;
}

.wb-cg-button ion-icon {
	font-size: 20px;
	vertical-align: middle;
	margin-right: 4px;
}

/* Load More Button */
.wb-load-more-container {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	padding: 32px 0;
	margin-top: 24px;
}

.wb-load-more-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: linear-gradient(135deg, #a88968 0%, #8b6f47 100%);
	color: #ffffff;
	padding: 16px 32px;
	border-radius: 16px;
	font-size: 16px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(168, 137, 104, 0.3);
	font-family: inherit;
}

.wb-load-more-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(168, 137, 104, 0.4);
}

.wb-load-more-btn:active {
	transform: translateY(0);
}

.wb-load-more-btn ion-icon {
	font-size: 24px;
}

.wb-load-more-count {
	opacity: 0.9;
	font-size: 14px;
	font-weight: 500;
}
