/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.breezan-navbar {
	background: var(--breezan-header-bg);
	border-bottom: 1px solid var(--breezan-border);
	position: sticky;
	top: 0;
	z-index: 50;
}
.breezan-navbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
}
.breezan-navbar__logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}
.breezan-navbar__logo-text {
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	color: var(--breezan-text);
	font-weight: 700;
}
.breezan-navbar__logo-sub {
	display: block;
	font-size: 0.625rem;
	color: var(--breezan-text-muted);
	letter-spacing: 0.05em;
	margin-top: -0.25rem;
}
.breezan-navbar__links {
	display: none;
	align-items: center;
	gap: 2rem;
}
@media (min-width: 768px) { .breezan-navbar__links { display: flex; } }
.breezan-navbar__link {
	font-size: 0.875rem;
	color: var(--breezan-text-light);
	transition: color var(--breezan-transition);
	padding-bottom: 0.25rem;
}
.breezan-navbar__link:hover,
.breezan-navbar__link.is-active {
	color: var(--breezan-primary);
}
.breezan-navbar__link.is-active {
	border-bottom: 2px solid var(--breezan-primary);
}
.breezan-navbar__icons {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
@media (min-width: 640px) { .breezan-navbar__icons { gap: 1rem; } }
.breezan-navbar__icon {
	color: var(--breezan-text-light);
	transition: color var(--breezan-transition);
	position: relative;
	display: flex;
	align-items: center;
}
.breezan-navbar__icon:hover { color: var(--breezan-primary); }
.breezan-navbar__badge {
	position: absolute;
	top: -0.5rem;
	inset-inline-end: -0.5rem;
	background: var(--breezan-primary);
	color: #fff;
	font-size: 0.625rem;
	border-radius: 50%;
	width: 1rem;
	height: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.breezan-navbar__badge--wish { background: #f87171; }

/* Mobile menu toggle */
.breezan-navbar__hamburger {
	display: flex;
	color: var(--breezan-text-light);
}
@media (min-width: 768px) { .breezan-navbar__hamburger { display: none; } }
.breezan-navbar__hamburger:hover { color: var(--breezan-primary); }

/* Mobile menu */
.breezan-mobile-menu {
	display: none;
	padding-bottom: 1rem;
	border-top: 1px solid var(--breezan-border);
	padding-top: 1rem;
}
.breezan-mobile-menu.is-open { display: block; }
@media (min-width: 768px) { .breezan-mobile-menu { display: none !important; } }
.breezan-mobile-menu__link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 0.5rem;
	font-size: 0.875rem;
	color: var(--breezan-text-light);
	border-radius: var(--breezan-radius-sm);
	transition: all var(--breezan-transition);
}
.breezan-mobile-menu__link:hover,
.breezan-mobile-menu__link.is-active {
	color: var(--breezan-primary);
	background: var(--breezan-primary-light);
}

/* Desktop-only icons */
.breezan-navbar__icon--desktop { display: none; }
@media (min-width: 640px) { .breezan-navbar__icon--desktop { display: flex; } }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.breezan-footer {
	background: var(--breezan-footer-bg);
	color: #fff;
	padding-block: 3rem 1.5rem;
}
@media (min-width: 768px) {
	.breezan-footer {
		padding-block: 4rem 1.5rem;
	}
}
.breezan-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
}
@media (min-width: 640px) { .breezan-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .breezan-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.breezan-footer__brand-name { font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.breezan-footer__brand-desc { color: #9ca3af; font-size: 0.875rem; line-height: 1.8; margin-bottom: 1rem; }
.breezan-footer__social { display: flex; gap: 0.75rem; }
.breezan-footer__social a {
	color: #9ca3af;
	transition: color var(--breezan-transition);
}
.breezan-footer__social a:hover { color: var(--breezan-primary); }
.breezan-footer__heading {
	font-size: 0.875rem;
	margin-bottom: 1rem;
	color: #fff;
	font-weight: 600;
}
.breezan-footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.breezan-footer__link-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.breezan-footer__link {
	color: #9ca3af;
	font-size: 0.875rem;
	transition: color var(--breezan-transition);
}
.breezan-footer__link:hover { color: var(--breezan-primary); }
.breezan-footer__newsletter-desc { color: #9ca3af; font-size: 0.875rem; margin-bottom: 1rem; }
.breezan-footer__newsletter-wrap { min-height: 4.25rem; }
.breezan-footer__newsletter-form { display: flex; }
.breezan-footer__newsletter-msg {
	font-size: 0.75rem;
	margin-top: 0.5rem;
	min-height: 1.25rem;
}
.breezan-footer__newsletter-msg--error { color: #f87171; }
.breezan-footer__newsletter-msg--success { color: #4ade80; }
.breezan-footer__newsletter-input {
	background: #1f2937;
	border: 1px solid #374151;
	color: #fff;
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
	border-radius: 0 var(--breezan-radius-sm) var(--breezan-radius-sm) 0;
	flex: 1;
	outline: none;
	transition: border-color var(--breezan-transition);
}
.breezan-footer__newsletter-input::placeholder { color: #6b7280; }
.breezan-footer__newsletter-input:focus { border-color: var(--breezan-primary); }
.breezan-footer__newsletter-btn {
	background: var(--breezan-primary);
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: var(--breezan-radius-sm) 0 0 var(--breezan-radius-sm);
	font-size: 0.875rem;
	transition: background var(--breezan-transition);
}
.breezan-footer__newsletter-btn:hover { background: var(--breezan-primary-hover); }
.breezan-footer__bottom {
	border-top: 1px solid rgba(31, 41, 55, 0.85);
	padding-top: 1.5rem;
	text-align: center;
}
.breezan-footer__copyright { color: #6b7280; font-size: 0.875rem; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.breezan-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	border-radius: var(--breezan-radius-sm);
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0.625rem 1.25rem;
	transition: all var(--breezan-transition);
	line-height: 1;
	white-space: nowrap;
}
.breezan-btn--primary {
	background: var(--breezan-primary);
	color: #fff;
}
.breezan-btn--primary:hover {
	background: var(--breezan-primary-hover);
	box-shadow: 0 4px 12px rgba(204,153,102,0.3);
}
.breezan-btn--outline {
	border: 1px solid #e5e7eb;
	color: #9ca3af;
	background: transparent;
}
.breezan-btn--outline:hover {
	border-color: var(--breezan-primary);
	color: var(--breezan-primary);
}
.breezan-btn--sm { padding: 0.5rem 0.625rem; font-size: 0.75rem; }
.breezan-btn--lg { padding: 0.875rem 2rem; font-size: 1rem; }
.breezan-btn--block { width: 100%; }

/* ═══════════════════════════════════════════════
   PRODUCT CARD
═══════════════════════════════════════════════ */
.breezan-product-card {
	transition: transform 0.3s, box-shadow 0.3s;
	height: 100%;
	border-radius: var(--breezan-radius);
	overflow: hidden;
}
.breezan-product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--breezan-shadow-lg);
}
.breezan-product-card__link {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border-radius: var(--breezan-radius);
	border: 1px solid var(--breezan-border);
	box-shadow: var(--breezan-shadow);
	overflow: hidden;
	transition: box-shadow 0.3s, border-color 0.3s;
}
.breezan-product-card__title-link {
	text-decoration: none;
	color: inherit;
}
.breezan-product-card:hover .breezan-product-card__link {
	box-shadow: var(--breezan-shadow-lg);
	border-color: var(--breezan-primary);
}
.breezan-product-card__image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--breezan-bg-soft);
	padding: 1rem;
	aspect-ratio: 1;
	overflow: hidden;
	text-decoration: none;
}
.breezan-product-card__image img {
	width: 80%;
	height: 80%;
	object-fit: contain;
	transition: transform 0.5s;
}
.breezan-product-card:hover .breezan-product-card__image img {
	transform: scale(1.05);
}
.breezan-product-card__badge {
	position: absolute;
	top: 0.75rem;
	inset-inline-start: 0.75rem;
	background: #ef4444;
	color: #fff;
	font-size: 0.625rem;
	padding: 0.25rem 0.5rem;
	border-radius: var(--breezan-radius-sm);
	font-weight: 600;
}
.breezan-product-card__fav {
	position: absolute;
	top: 0.75rem;
	inset-inline-end: 0.75rem;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.8);
	color: #9ca3af;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	transition: all 0.2s;
	opacity: 0;
	z-index: 5;
}
.breezan-product-card:hover .breezan-product-card__fav,
.breezan-product-card__fav.is-active { opacity: 1; }
.breezan-product-card__fav:hover { color: #f87171; background: #fef2f2; }
.breezan-product-card__fav.is-active { color: #f87171; background: #fef2f2; opacity: 1; }
.breezan-product-card__info {
	padding: 0.875rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
}
.breezan-product-card__title {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--breezan-text);
	margin-bottom: 0.25rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.breezan-product-card__cat {
	font-size: 0.6875rem;
	color: var(--breezan-text-muted);
	margin-bottom: 0.5rem;
}
.breezan-product-card__rating {
	display: flex;
	align-items: center;
	gap: 0.125rem;
	margin-bottom: 0.75rem;
}
.breezan-product-card__reviews {
	font-size: 0.625rem;
	color: var(--breezan-text-muted);
	margin-inline-start: 0.25rem;
}
.breezan-product-card__footer {
	margin-top: auto;
	padding-top: 0.625rem;
	border-top: 1px solid var(--breezan-border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}
.breezan-product-card__btns { display: flex; gap: 0.25rem; }
.breezan-btn--gold {
	background: linear-gradient(135deg, #d4a574, #c96);
	color: #fff;
	border: none;
}
.breezan-btn--gold:hover {
	background: linear-gradient(135deg, #c99561, #b85);
	box-shadow: 0 2px 8px rgba(204, 153, 102, 0.3);
}

/* Hide WooCommerce "View Cart" link */
a.added_to_cart { display: none !important; }
.breezan-product-card__prices {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.breezan-product-card__price {
	color: var(--breezan-primary);
	font-size: 0.875rem;
	font-weight: 600;
}
.breezan-product-card__price-old {
	color: var(--breezan-text-muted);
	font-size: 0.6875rem;
	text-decoration: line-through;
}
.breezan-product-card__price-wrap {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	flex-wrap: wrap;
}

/* Products grid */
.breezan-products-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
@media (min-width: 640px) { .breezan-products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .breezan-products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

/* ═══════════════════════════════════════════════
   FORM ELEMENTS
═══════════════════════════════════════════════ */
.breezan-input {
	width: 100%;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	outline: none;
	transition: border-color var(--breezan-transition);
	background: #fff;
}
.breezan-input:focus { border-color: var(--breezan-primary); }
.breezan-input::placeholder { color: #d1d5db; }

/* ═══════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════ */
.breezan-breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	color: var(--breezan-text-muted);
	padding: 1rem 0;
}
.breezan-breadcrumb a { color: var(--breezan-text-light); transition: color var(--breezan-transition); }
.breezan-breadcrumb a:hover { color: var(--breezan-primary); }
.breezan-breadcrumb__sep { color: #d1d5db; }
.breezan-breadcrumb__current { color: var(--breezan-text); font-weight: 500; }

/* ═══════════════════════════════════════════════
   SEARCH OVERLAY
═══════════════════════════════════════════════ */
.breezan-search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	z-index: 100;
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding-top: 5rem;
}
.breezan-search-overlay.is-open { display: flex; }
.breezan-search-overlay__panel {
	background: #fff;
	border-radius: var(--breezan-radius-lg);
	width: 90%;
	max-width: 600px;
	padding: 1.5rem;
	box-shadow: var(--breezan-shadow-lg);
	animation: breezan-slideDown 0.3s ease;
}
@keyframes breezan-slideDown {
	from { opacity: 0; transform: translateY(-1rem); }
	to { opacity: 1; transform: translateY(0); }
}
.breezan-search-overlay__input {
	width: 100%;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	outline: none;
}
.breezan-search-overlay__input:focus { border-color: var(--breezan-primary); }
.breezan-search-overlay__results {
	margin-top: 1rem;
	max-height: 400px;
	overflow-y: auto;
}
.breezan-search-overlay__item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	border-radius: var(--breezan-radius-sm);
	transition: background var(--breezan-transition);
}
.breezan-search-overlay__item:hover { background: var(--breezan-bg-soft); }
.breezan-search-overlay__item img {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
	border-radius: var(--breezan-radius-sm);
	background: var(--breezan-bg-soft);
}
.breezan-search-overlay__item-name { font-size: 0.875rem; color: var(--breezan-text); }
.breezan-search-overlay__item-price { font-size: 0.75rem; color: var(--breezan-primary); }
.breezan-search-overlay__empty { text-align: center; color: var(--breezan-text-muted); padding: 2rem; font-size: 0.875rem; }

/* ═══════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════ */
.breezan-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}
.breezan-pagination a,
.breezan-pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--breezan-radius-sm);
	font-size: 0.875rem;
	transition: all var(--breezan-transition);
	border: 1px solid var(--breezan-border);
}
.breezan-pagination a:hover { border-color: var(--breezan-primary); color: var(--breezan-primary); }
.breezan-pagination .current {
	background: var(--breezan-primary);
	color: #fff;
	border-color: var(--breezan-primary);
}

/* ═══════════════════════════════════════════════
   CARDS / MISC
═══════════════════════════════════════════════ */
.breezan-card {
	background: #fff;
	border-radius: var(--breezan-radius);
	border: 1px solid var(--breezan-border);
	overflow: hidden;
}
.breezan-card__header {
	padding: 1.25rem;
	border-bottom: 1px solid var(--breezan-border);
}
.breezan-card__body { padding: 1.25rem; }

.breezan-empty {
	text-align: center;
	padding: 4rem 1rem;
}
.breezan-empty__icon { font-size: 3rem; margin-bottom: 1rem; color: var(--breezan-text-muted); }
.breezan-empty__text { color: var(--breezan-text-light); font-size: 0.875rem; margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════
   Toast Notifications
   ═══════════════════════════════════════ */
.breezan-toast-wrap {
	position: fixed;
	top: 1rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10000;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	pointer-events: none;
	width: 100%;
	max-width: 24rem;
	padding: 0 1rem;
}
.breezan-toast {
	pointer-events: auto;
	display: flex;
	align-items: center;
	gap: 0.625rem;
	background: #fff;
	border: 1px solid #f3f4f6;
	border-radius: 0.75rem;
	padding: 0.75rem 1rem;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	font-size: 0.8125rem;
	color: var(--breezan-text, #1f2937);
	width: 100%;
	animation: breezan-toast-in 0.3s ease;
}
.breezan-toast.is-hiding { animation: breezan-toast-out 0.25s ease forwards; }

.breezan-toast--success { border-color: #d1fae5; }
.breezan-toast--success .breezan-toast__icon { color: #22c55e; }
.breezan-toast--error { border-color: #fee2e2; }
.breezan-toast--error .breezan-toast__icon { color: #ef4444; }
.breezan-toast--info { border-color: #dbeafe; }
.breezan-toast--info .breezan-toast__icon { color: #3b82f6; }

.breezan-toast__icon { flex-shrink: 0; }
.breezan-toast__msg { flex: 1; line-height: 1.5; }

@keyframes breezan-toast-in {
	from { opacity: 0; transform: translateY(-1rem); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes breezan-toast-out {
	from { opacity: 1; transform: translateY(0); }
	to { opacity: 0; transform: translateY(-0.5rem); }
}

/* Floating contact (dashboard: تواصل معنا) */
.breezan-float-actions {
	position: fixed;
	z-index: 9998;
	left: 1rem;
	bottom: 1rem;
	display: flex;
	flex-direction: column-reverse;
	gap: 0.625rem;
	pointer-events: none;
}
.breezan-float-actions__btn {
	pointer-events: auto;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.breezan-float-actions__btn:hover {
	transform: scale(1.06);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}
.breezan-float-actions__btn--wa {
	background: #25d366;
}
.breezan-float-actions__btn--call {
	background: var(--breezan-primary, #cc9966);
}
@media (min-width: 768px) {
	.breezan-float-actions {
		left: 1.5rem;
		bottom: 1.5rem;
	}
}
