/**
 * BigBite Core Styles
 */

/* Import Heebo font for Hebrew */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800&display=swap');

/* ===== USE CSS VARIABLES ===== */
.bb-popup,
.bb-products-widget {
	--primary: var(--bb-primary, #c00000);
	--secondary: var(--bb-secondary, #d4a853);
	--bg-dark: var(--bb-bg-dark, #0a0a0a);
	--bg-light: var(--bb-bg-light, #1a1a1a);
	--text-light: var(--bb-text-light, #ffffff);
	--button: var(--bb-button, #c00000);
	--button-hover: var(--bb-button-hover, #a00000);
}

/* ===== POPUP BASE ===== */
.bb-popup {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Legal popups should appear ABOVE cart popup */
#bb-terms-popup,
#bb-privacy-popup,
#bb-accessibility-popup {
	z-index: 999999;
}

.bb-popup-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

.bb-popup-content {
	position: relative;
	background: var(--bg-light);
	color: var(--text-light);
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 30px;
	direction: rtl;
	text-align: right;
}

/* Force RTL in all forms */
.bb-popup form,
.bb-popup input,
.bb-popup select,
.bb-popup textarea,
.bb-popup .bb-form,
.bb-popup .bb-field {
	direction: rtl;
	text-align: right;
}

/* Except phone/email inputs which should be LTR */
.bb-popup input[type="email"],
.bb-popup input[type="tel"],
.bb-popup input[dir="ltr"] {
	direction: ltr;
	text-align: left;
}

.bb-popup-close {
	position: absolute;
	top: 15px;
	left: 15px;
	background: none;
	border: none;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.bb-popup-close:hover {
	opacity: 1;
}

/* ===== AUTH POPUP ===== */
.bb-auth-tabs {
	display: flex;
	justify-content: center;
	gap: 0;
	margin-bottom: 25px;
}

.bb-auth-tab {
	padding: 10px 30px;
	background: #333;
	border: none;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.2s;
}

.bb-auth-tab:first-child {
	border-radius: 0 4px 4px 0;
}

.bb-auth-tab:last-child {
	border-radius: 4px 0 0 4px;
}

.bb-auth-tab.active {
	background: #c00000 !important;
}

/* Force all buttons to be red, not pink */
.bb-btn-primary,
.bb-popup .bb-btn-primary,
.bb-auth-popup .bb-btn-primary,
.bb-cart-popup .bb-btn-primary,
#bb-auth-popup .bb-btn-primary,
#bb-cart-popup .bb-btn-primary {
	background: #c00000 !important;
	background-color: #c00000 !important;
}

.bb-btn-primary:hover,
.bb-popup .bb-btn-primary:hover {
	background: #a00000 !important;
	background-color: #a00000 !important;
}

.bb-auth-form h3 {
	text-align: center;
	margin: 0 0 10px;
	font-size: 20px;
}

.bb-form-subtitle {
	text-align: center;
	color: #888;
	font-size: 13px;
	margin-bottom: 20px;
}

/* ===== FORM FIELDS ===== */
.bb-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bb-field-row {
	display: flex;
	gap: 10px;
}

.bb-field-row .bb-field {
	flex: 1;
}

.bb-field input,
.bb-field select,
.bb-field textarea {
	width: 100%;
	padding: 12px 15px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	color: #333;
}

.bb-field input:focus,
.bb-field select:focus {
	outline: none;
	border-color: #c00000;
}

.bb-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bb-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	cursor: pointer;
}

.bb-checkbox input {
	width: auto;
}

.bb-forgot-link {
	color: #888;
	font-size: 13px;
	text-decoration: none;
}

.bb-forgot-link:hover {
	color: #fff;
}

/* ===== BUTTONS ===== */
.bb-btn {
	padding: 12px 25px;
	font-size: 15px;
	font-weight: 600;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s;
	text-align: center;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.bb-btn-primary {
	background: var(--button, #c00000);
	color: #fff;
}

.bb-btn-primary:hover {
	background: var(--button-hover, #a00000);
}

.bb-btn-outline {
	background: transparent;
	border: 1px solid #555;
	color: #fff;
}

.bb-btn-outline:hover {
	border-color: #c00000;
	color: #c00000;
}

.bb-btn-full {
	width: 100%;
}

.bb-btn-google {
	background: #fff;
	color: #333;
}

.bb-btn-google img {
	width: 18px;
	height: 18px;
}

.bb-auth-divider {
	text-align: center;
	color: #666;
	margin: 15px 0;
	position: relative;
}

.bb-auth-divider::before,
.bb-auth-divider::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 40%;
	height: 1px;
	background: #333;
}

.bb-auth-divider::before {
	right: 0;
}

.bb-auth-divider::after {
	left: 0;
}

.bb-auth-switch {
	text-align: center;
	margin-top: 20px;
	color: #888;
	font-size: 13px;
}

.bb-auth-switch a {
	color: #c00000;
	text-decoration: none;
}

/* ===== ABOUT POPUP ===== */
.bb-about-content {
	max-width: 700px;
	text-align: center;
}

.bb-about-signature {
	max-height: 80px;
	margin-bottom: 20px;
}

.bb-about-subtitle {
	color: #888;
	font-size: 14px;
	margin-bottom: 10px;
}

.bb-about-title {
	color: #d4a853;
	font-size: 28px;
	margin-bottom: 20px;
}

.bb-about-text {
	text-align: right;
	line-height: 1.8;
	margin-bottom: 25px;
}

.bb-about-tagline {
	font-size: 16px;
	margin-bottom: 25px;
}

.bb-about-tagline strong {
	color: #d4a853;
	font-size: 22px;
	display: block;
	margin-top: 5px;
}

.bb-about-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	border-top: 1px solid #333;
	padding-top: 20px;
}

.bb-contact-link,
.bb-social-link {
	color: #fff;
	text-decoration: none;
}

.bb-address {
	color: #888;
	font-size: 13px;
}

/* ===== CART POPUP ===== */
.bb-cart-content {
	max-width: 600px;
}

.bb-cart-title {
	margin: 0 0 20px;
	font-size: 22px;
	text-align: center;
}

.bb-clear-cart-wrap {
	text-align: right;
	margin: 10px 0 15px;
}

.bb-clear-cart-btn {
	background: #c00000 !important;
	border: none !important;
	color: #fff !important;
	padding: 8px 15px;
	border-radius: 5px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.bb-clear-cart-btn:hover {
	background: #a00000 !important;
	color: #fff !important;
}

.bb-clear-cart-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.bb-cart-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.bb-cart-table th {
	text-align: right;
	padding: 10px 5px;
	border-bottom: 1px solid #333;
	font-size: 12px;
	color: #888;
}

.bb-cart-table td {
	padding: 12px 5px;
	border-bottom: 1px solid #222;
	vertical-align: middle;
}

.bb-cart-product {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bb-cart-product-thumb img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 4px;
}

.bb-cart-product-name {
	font-size: 14px;
}

.bb-cart-meta {
	font-size: 11px;
	color: #888;
	margin-top: 3px;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.bb-cart-meta span {
	display: inline-block;
}

.bb-cart-meta .bb-bundle-badge {
	background: rgba(76, 175, 80, 0.2);
	color: #4caf50;
	padding: 2px 6px;
	border-radius: 4px;
	font-weight: 600;
}

.bb-cart-meta .bb-cart-notes {
	width: 100%;
	font-style: italic;
	color: #aaa;
}

.bb-qty-input {
	width: 50px;
	padding: 5px;
	text-align: center;
	background: #222;
	border: 1px solid #444;
	color: #fff;
}

.bb-remove-item {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
	opacity: 0.6;
}

.bb-remove-item:hover {
	opacity: 1;
}

.bb-cart-empty {
	text-align: center;
	padding: 40px;
	color: #888;
}

/* Cart Options */
.bb-cart-options {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 20px;
}

.bb-option-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bb-delivery-cost {
	color: #888;
	font-size: 13px;
}

.bb-coupon-row {
	display: flex;
	gap: 10px;
}

.bb-coupon-row input {
	flex: 1;
	padding: 10px;
	background: #222;
	border: 1px solid #444;
	color: #fff;
}

.bb-delivery-time label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
}

.bb-delivery-time select {
	width: 100%;
	padding: 10px;
	background: #222;
	border: 1px solid #444;
	color: #fff;
}

.bb-order-notes label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
}

.bb-order-notes textarea {
	width: 100%;
	padding: 10px;
	background: #222;
	border: 1px solid #444;
	color: #fff;
	resize: vertical;
}

.bb-terms-row {
	font-size: 12px;
	color: #888;
}

.bb-terms-link {
	color: #c00000;
}

.bb-min-order-notice {
	background: rgba(192, 0, 0, 0.1);
	border: 1px solid #c00000;
	padding: 12px;
	text-align: center;
	font-size: 13px;
	color: #c00000;
	margin-bottom: 15px;
}

.bb-cart-totals {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
}

.bb-cart-actions {
	display: flex;
	gap: 10px;
}

.bb-cart-actions .bb-btn {
	flex: 1;
}

/* ===== SEARCH ===== */
.bb-search-results-container {
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	background: #1a1a1a;
	z-index: 9999;
	max-height: 60vh;
	overflow-y: auto;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bb-search-results-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.bb-search-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #333;
}

.bb-search-title {
	color: #fff;
	font-size: 16px;
}

.bb-search-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
}

.bb-search-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 15px;
}

.bb-search-product {
	background: #222;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
}

.bb-search-product:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.bb-search-product-link {
	text-decoration: none;
	color: #fff;
}

.bb-search-product-image img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.bb-search-product-info {
	padding: 10px;
}

.bb-search-product-title {
	font-size: 13px;
	margin: 0 0 5px;
}

.bb-search-product-price {
	color: #c00000;
	font-weight: 700;
	font-size: 14px;
}

.bb-no-results {
	text-align: center;
	color: #888;
	padding: 30px;
}

/* ===== HEADER ACTIONS (Social + Cart in row) ===== */
.bb-header-actions {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	font-family: 'Heebo', 'Segoe UI', 'Arial', sans-serif;
}

.bb-header-buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.bb-social-buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
}

/* Social buttons in header - Hide them completely (use footer instead) */
.bb-header-actions .bb-social-buttons {
	display: none !important;
}

/* ===== HEADER BUTTONS - REDESIGNED ===== */
.bb-header-btn {
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	border-radius: 25px !important;
	color: #fff !important;
	cursor: pointer;
	padding: 10px 18px;
	font-size: 15px;
	font-weight: 500;
	font-family: 'Heebo', 'Segoe UI', 'Arial', sans-serif;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	transition: all 0.3s ease;
	text-decoration: none;
	letter-spacing: 0.3px;
}

.bb-header-btn:hover {
	background: rgba(192, 0, 0, 0.9) !important;
	border-color: #c00000 !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(192, 0, 0, 0.35);
}

/* Make SVG icons white on hover */
.bb-header-btn:hover .bb-btn-icon svg {
	fill: #fff !important;
}

.bb-header-btn:hover .bb-cart-count {
	background: #fff;
	color: #c00000;
}

.bb-header-btn .bb-btn-icon {
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.bb-header-btn .bb-btn-icon svg {
	width: 20px;
	height: 20px;
	opacity: 0.9;
}

.bb-header-btn .bb-btn-icon img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

/* Cart button special styling */
.bb-cart-btn {
	background: linear-gradient(135deg, rgba(192, 0, 0, 0.2), rgba(192, 0, 0, 0.1)) !important;
	border-color: rgba(192, 0, 0, 0.4) !important;
	color: #fff !important;
}

.bb-cart-btn:hover {
	background: linear-gradient(135deg, #c00000, #a00000) !important;
}

/* Force ALL text and icons in cart button to be white on hover */
.bb-cart-btn:hover,
.bb-cart-btn:hover * {
	color: #fff !important;
}

.bb-cart-btn:hover .bb-btn-icon svg {
	fill: #fff !important;
}

/* Override any red color on cart button hover */
.bb-cart-btn:hover .bb-cart-count {
	background: #fff !important;
	color: #c00000 !important;
}

.bb-cart-count {
	background: #c00000;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	min-width: 22px;
	height: 22px;
	padding: 0 7px;
	border-radius: 11px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 2px;
	box-shadow: 0 2px 8px rgba(192, 0, 0, 0.4);
}

/* User dropdown menu */
.bb-user-menu {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.bb-user-menu:hover {
	background: rgba(192, 0, 0, 0.15);
	border-color: rgba(192, 0, 0, 0.4);
}

.bb-user-name {
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	font-family: 'Heebo', 'Segoe UI', 'Arial', sans-serif;
}

.bb-user-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 180px;
	background: linear-gradient(180deg, #1f1f1f, #151515);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 10px 0;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, visibility 0.2s;
}

.bb-user-menu:hover .bb-user-dropdown {
	display: block;
	opacity: 1;
	visibility: visible;
}

.bb-user-dropdown a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	color: #e0e0e0;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Heebo', 'Segoe UI', 'Arial', sans-serif;
	transition: all 0.2s ease;
}

.bb-user-dropdown a:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	padding-right: 22px;
}

.bb-user-dropdown .bb-logout-link {
	color: #ef4444;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 8px;
	padding-top: 15px;
}

.bb-user-dropdown .bb-logout-link:hover {
	background: rgba(239, 68, 68, 0.1);
}

/* ===== SEARCH INPUT ===== */
.bb-search-input-wrap {
	position: relative;
}

.bb-search-input {
	padding: 8px 15px;
	background: #222;
	border: 1px solid #444;
	color: #fff;
	border-radius: 20px;
	font-size: 14px;
	width: 200px;
}

.bb-search-input:focus {
	outline: none;
	border-color: #c00000;
}

/* ===== LEGAL PAGES ===== */
.bb-legal-content {
	max-width: 700px;
}

.bb-legal-content h2 {
	margin: 0 0 20px;
	text-align: center;
	color: var(--secondary, #d4a853);
}

.bb-legal-text {
	line-height: 1.8;
	font-size: 14px;
	max-height: 60vh;
	overflow-y: auto;
	padding-left: 10px;
}

.bb-legal-text h3,
.bb-legal-text h4 {
	color: var(--secondary, #d4a853);
	margin-top: 25px;
}

.bb-legal-text p {
	margin-bottom: 15px;
}

.bb-legal-text ul,
.bb-legal-text ol {
	padding-right: 25px;
	margin-bottom: 15px;
}

.bb-legal-text li {
	margin-bottom: 8px;
}

/* ===== PRODUCT POPUP ===== */
.bb-product-popup-content {
	max-width: 700px;
	padding: 0;
	overflow: hidden;
}

.bb-product-popup-wrap {
	display: flex;
	flex-direction: row;
	direction: rtl;
}

.bb-popup-image {
	width: 50%;
	flex-shrink: 0;
}

.bb-popup-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bb-popup-details {
	width: 50%;
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.bb-popup-title {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	color: #fff;
}

.bb-popup-price {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary, #c00000);
}

.bb-price-unit {
	font-size: 14px;
	color: #888;
	font-weight: 400;
}

.bb-popup-description {
	color: #aaa;
	font-size: 14px;
	line-height: 1.6;
}

.bb-popup-bundles {
	background: rgba(192, 0, 0, 0.1);
	border: 1px solid var(--primary, #c00000);
	border-radius: 6px;
	padding: 12px;
}

.bb-popup-bundles h4 {
	margin: 0 0 10px;
	font-size: 14px;
	color: var(--primary, #c00000);
}

.bb-bundle-option {
	display: flex;
	justify-content: space-between;
	padding: 5px 0;
	font-size: 13px;
}

.bb-bundle-price {
	color: var(--primary, #c00000);
	font-weight: 600;
}

.bb-popup-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bb-option-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.bb-option-group label {
	font-size: 13px;
	color: #888;
}

.bb-option-group select {
	padding: 10px 12px;
	background: #222;
	border: 1px solid #444;
	border-radius: 4px;
	color: #fff;
	font-size: 14px;
}

.bb-option-group select:focus {
	outline: none;
	border-color: var(--primary, #c00000);
}

.bb-popup-quantity {
	display: flex;
	align-items: center;
	gap: 15px;
}

.bb-popup-quantity label {
	font-size: 13px;
	color: #888;
}

.bb-qty-controls {
	display: flex;
	align-items: center;
	gap: 0;
	border: 1px solid #444;
	border-radius: 4px;
	overflow: hidden;
}

.bb-qty-minus,
.bb-qty-plus {
	width: 36px;
	height: 36px;
	background: #333;
	border: none;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	transition: background 0.2s;
}

.bb-qty-minus:hover,
.bb-qty-plus:hover {
	background: var(--primary, #c00000);
}

.bb-popup-qty-input {
	width: 50px;
	height: 36px;
	text-align: center;
	background: #222;
	border: none;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	-moz-appearance: textfield;
}

.bb-popup-qty-input::-webkit-outer-spin-button,
.bb-popup-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.bb-popup-total-price {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary, #c00000);
	margin-right: auto;
}

.bb-popup-notes-wrap {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.bb-popup-notes-wrap label {
	font-size: 13px;
	color: #888;
}

.bb-popup-notes {
	padding: 10px;
	background: #222;
	border: 1px solid #444;
	border-radius: 4px;
	color: #fff;
	font-size: 14px;
	resize: vertical;
	min-height: 60px;
}

.bb-popup-notes:focus {
	outline: none;
	border-color: var(--primary, #c00000);
}

.bb-popup-add-to-cart {
	margin-top: auto;
	font-size: 16px;
	padding: 14px 20px;
}

.bb-popup-loading,
.bb-popup-error {
	padding: 60px 40px;
	text-align: center;
	color: #888;
	font-size: 16px;
}

.bb-popup-error {
	color: var(--primary, #c00000);
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
	/* Base popup - full screen mobile */
	.bb-popup-content {
		padding: 15px;
		max-width: 100%;
		width: 100%;
		height: 100%;
		max-height: 100%;
		border-radius: 0;
		padding-top: 50px;
	}
	
	/* CLOSE BUTTON - Very visible! */
	.bb-popup-close {
		position: fixed !important;
		top: 10px !important;
		left: 10px !important;
		right: auto !important;
		width: 40px !important;
		height: 40px !important;
		background: #c00000 !important;
		border-radius: 50% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		font-size: 24px !important;
		color: #fff !important;
		z-index: 100001 !important;
		opacity: 1 !important;
		box-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
	}
	
	.bb-popup-close:hover {
		background: #a00000 !important;
	}
	
	.bb-field-row {
		flex-direction: column;
		gap: 12px;
	}
	
	.bb-cart-actions {
		flex-direction: column;
	}
	
	.bb-search-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}
	
	.bb-legal-text {
		max-height: 70vh;
	}
	
	/* ===== CART POPUP MOBILE ===== */
	.bb-cart-content {
		padding: 10px !important;
		padding-top: 55px !important;
	}
	
	.bb-cart-title {
		font-size: 18px !important;
		margin-bottom: 10px !important;
		text-align: center;
	}
	
	/* Cart table - simplified for mobile */
	.bb-cart-table {
		font-size: 12px;
		display: block;
	}
	
	.bb-cart-table thead {
		display: none; /* Hide header on mobile */
	}
	
	.bb-cart-table tbody {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	
	.bb-cart-table tr {
		display: flex;
		flex-wrap: wrap;
		background: #222;
		border-radius: 10px;
		padding: 10px;
		position: relative;
	}
	
	.bb-cart-table td {
		border: none !important;
		padding: 3px !important;
	}
	
	/* Product info - full width */
	.bb-cart-table td.bb-cart-product {
		width: 100%;
		order: 1;
		flex-direction: row;
		gap: 10px;
		padding-left: 35px !important; /* Room for delete button */
	}
	
	.bb-cart-product-thumb img {
		width: 45px !important;
		height: 45px !important;
		border-radius: 6px;
	}
	
	.bb-cart-product-name {
		font-size: 14px !important;
		font-weight: 600;
	}
	
	.bb-cart-meta {
		font-size: 10px !important;
		margin-top: 5px;
	}
	
	/* Quantity, price, subtotal - row */
	.bb-cart-table td.bb-cart-qty,
	.bb-cart-table td.bb-cart-price,
	.bb-cart-table td.bb-cart-subtotal {
		order: 2;
		flex: 1;
		text-align: center;
	}
	
	.bb-cart-table td.bb-cart-qty::before {
		content: 'כמות: ';
		font-size: 10px;
		color: #888;
	}
	
	.bb-cart-table td.bb-cart-price {
		display: none; /* Hide unit price on mobile */
	}
	
	.bb-cart-table td.bb-cart-subtotal::before {
		content: 'סה"כ: ';
		font-size: 10px;
		color: #888;
	}
	
	.bb-qty-input {
		width: 40px !important;
		padding: 3px !important;
		font-size: 14px;
	}
	
	/* Delete button - top right of card */
	.bb-cart-table td.bb-cart-remove {
		position: absolute !important;
		top: 10px;
		left: 10px;
		order: 0;
	}
	
	.bb-remove-item {
		background: rgba(192, 0, 0, 0.8) !important;
		border-radius: 50% !important;
		width: 28px !important;
		height: 28px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		font-size: 14px !important;
	}
	
	/* Cart options - compact */
	.bb-cart-options {
		gap: 10px !important;
	}
	
	.bb-option-row {
		flex-direction: column;
		gap: 5px;
	}
	
	.bb-coupon-row {
		flex-direction: column;
	}
	
	.bb-coupon-row input,
	.bb-coupon-row button {
		width: 100%;
	}
	
	.bb-delivery-time label,
	.bb-order-notes label {
		font-size: 13px !important;
	}
	
	.bb-delivery-time select,
	.bb-order-notes textarea {
		font-size: 14px !important;
		padding: 10px !important;
	}
	
	/* Clear cart button */
	.bb-clear-cart-wrap {
		text-align: center;
		margin: 10px 0 !important;
	}
	
	.bb-clear-cart-btn {
		padding: 10px 20px !important;
		font-size: 14px !important;
	}
	
	/* Totals */
	.bb-cart-totals {
		font-size: 16px !important;
		padding: 12px;
		background: #222;
		border-radius: 10px;
	}
	
	/* Cart actions - fixed bottom */
	.bb-cart-actions {
		position: sticky;
		bottom: 0;
		background: #1a1a1a;
		padding: 10px 0;
		margin: 0 -10px -10px;
		padding: 15px 10px;
		gap: 8px;
	}
	
	.bb-cart-actions .bb-btn {
		padding: 14px !important;
		font-size: 15px !important;
	}
	
	/* Min order notice */
	.bb-min-order-notice {
		font-size: 12px !important;
		padding: 10px !important;
	}
	
	/* Product popup mobile */
	.bb-product-popup-content {
		max-width: 100%;
		height: 100%;
		max-height: 100%;
	}
	
	.bb-product-popup-wrap {
		flex-direction: column;
		height: 100%;
		overflow-y: auto;
	}
	
	.bb-popup-image {
		width: 100%;
		height: 200px;
		flex-shrink: 0;
	}
	
	.bb-popup-details {
		width: 100%;
		padding: 15px;
		gap: 12px;
	}
	
	.bb-popup-title {
		font-size: 18px;
	}
	
	.bb-popup-price {
		font-size: 20px;
	}
	
	.bb-popup-quantity {
		flex-wrap: wrap;
	}
	
	.bb-popup-total-price {
		width: 100%;
		text-align: center;
		margin-top: 10px;
	}
	
	/* Header actions mobile */
	.bb-header-actions {
		gap: 8px;
	}
	
	.bb-social-buttons {
		gap: 8px;
	}
	
	.bb-social-buttons .bb-social-link {
		width: 32px;
		height: 32px;
	}
	
	.bb-social-buttons .bb-social-link svg {
		width: 18px;
		height: 18px;
	}
	
	.bb-header-buttons {
		gap: 6px;
	}
	
	.bb-header-btn {
		padding: 8px 12px;
		font-size: 13px;
		gap: 6px;
		border-radius: 20px !important;
	}
	
	.bb-header-btn .bb-btn-icon {
		width: 18px;
		height: 18px;
	}
	
	.bb-header-btn .bb-btn-icon svg {
		width: 16px;
		height: 16px;
	}
	
	.bb-cart-count {
		font-size: 10px;
		min-width: 18px;
		height: 18px;
		padding: 0 5px;
	}
	
	.bb-user-menu {
		padding: 8px 12px;
		gap: 6px;
	}
	
	.bb-user-name {
		font-size: 13px;
	}
	
	/* ===== CHECKOUT POPUP MOBILE ===== */
	#bb-checkout-popup .bb-popup-content {
		padding: 0 !important;
		padding-top: 0 !important;
	}
	
	.bb-checkout-header {
		position: sticky;
		top: 0;
		z-index: 10;
		padding: 15px !important;
	}
	
	.bb-checkout-header h2 {
		font-size: 18px !important;
	}
	
	.bb-checkout-form {
		padding: 15px !important;
	}
	
	.bb-checkout-section {
		margin-bottom: 15px !important;
		padding-bottom: 15px !important;
	}
	
	.bb-checkout-section h3 {
		font-size: 14px !important;
		margin-bottom: 10px !important;
	}
	
	/* Delivery options - 2 columns */
	.bb-delivery-options,
	.bb-payment-methods {
		gap: 8px !important;
	}
	
	.bb-option-box {
		padding: 12px 8px !important;
		border-radius: 10px !important;
	}
	
	.bb-option-icon {
		font-size: 20px !important;
	}
	
	.bb-option-title {
		font-size: 12px !important;
	}
	
	/* Form fields */
	.bb-checkout-form .bb-field input,
	.bb-checkout-form .bb-field textarea {
		padding: 12px !important;
		font-size: 16px !important; /* Prevent iOS zoom */
	}
	
	.bb-checkout-form .bb-field label {
		font-size: 13px !important;
	}
	
	/* Order summary */
	.bb-order-summary {
		padding: 12px !important;
		margin: 15px 0 !important;
	}
	
	.bb-summary-row {
		font-size: 13px !important;
		padding: 6px 0 !important;
	}
	
	.bb-summary-row.bb-summary-total {
		font-size: 16px !important;
	}
	
	.bb-summary-row.bb-summary-total span:last-child {
		font-size: 18px !important;
	}
	
	/* Submit button - large and sticky */
	.bb-checkout-submit {
		padding: 16px !important;
		font-size: 16px !important;
		border-radius: 12px !important;
	}
}

/* ========================================
   GLOBAL COLOR OVERRIDE - NO PINK!
   ======================================== */

/* Override ALL pink/magenta colors to red */
.bb-popup *,
.bb-auth-popup *,
.bb-cart-popup *,
.bb-about-popup *,
.bb-product-popup * {
	--primary: #c00000 !important;
	--secondary: #d4a853 !important;
	--button: #c00000 !important;
	--button-hover: #a00000 !important;
}

/* All buttons MUST be red */
button[type="submit"],
.bb-popup button[type="submit"],
.bb-btn,
.bb-btn-primary,
.bb-popup .bb-btn,
.bb-popup .bb-btn-primary,
input[type="submit"],
.button,
.woocommerce-button {
	background: #c00000 !important;
	background-color: #c00000 !important;
	border-color: #c00000 !important;
	color: #fff !important;
}

button[type="submit"]:hover,
.bb-btn:hover,
.bb-btn-primary:hover {
	background: #a00000 !important;
	background-color: #a00000 !important;
	border-color: #a00000 !important;
}

/* Active tabs red */
.bb-auth-tab.active,
.bb-tab.active,
[data-tab].active {
	background: #c00000 !important;
	background-color: #c00000 !important;
}

/* Links red */
.bb-popup a,
.bb-auth-switch a,
.bb-forgot-link {
	color: #c00000 !important;
}

.bb-popup a:hover {
	color: #ff3333 !important;
}

/* Cart popup specific fixes */
.bb-cart-popup .bb-btn,
#bb-cart-popup .bb-btn,
.bb-cart-popup button,
#bb-checkout-btn,
#bb-apply-coupon {
	background: #c00000 !important;
	border-color: #c00000 !important;
}

/* Outline buttons */
.bb-btn-outline {
	background: transparent !important;
	border: 1px solid #555 !important;
	color: #fff !important;
}

.bb-btn-outline:hover {
	border-color: #c00000 !important;
	color: #c00000 !important;
	background: transparent !important;
}

/* Cart count badge */
.bb-cart-count {
	background: #c00000 !important;
}

/* Form focus states */
.bb-field input:focus,
.bb-field select:focus,
.bb-field textarea:focus {
	border-color: #c00000 !important;
	outline: none !important;
}

/* Min order notice */
.bb-min-order-notice {
	background: rgba(192, 0, 0, 0.1) !important;
	border-color: #c00000 !important;
	color: #c00000 !important;
}

/* Terms link */
.bb-terms-link {
	color: #c00000 !important;
}

/* Price colors */
.bb-price,
.bb-product-price,
.bb-popup-price,
.bb-deal-price,
.bb-popup-total-price {
	color: #c00000 !important;
}

/* Icon colors in header */
.bb-header-btn svg,
.bb-social-link svg {
	color: #c00000 !important;
	fill: currentColor !important;
}

/* ===== DELIVERY ADDRESS CHECK ===== */
.bb-delivery-address {
	background: #222;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 15px;
}

.bb-delivery-address label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 10px;
}

.bb-address-autocomplete-wrap {
	margin-bottom: 10px;
}

.bb-address-autocomplete {
	width: 100%;
	padding: 12px;
	background: #333;
	border: 1px solid #444;
	border-radius: 6px;
	color: #fff;
	font-size: 14px;
	direction: rtl;
}

.bb-address-autocomplete:focus {
	outline: none;
	border-color: #c00000;
}

/* Google Places Autocomplete dropdown styling */
.pac-container {
	background: #1a1a1a !important;
	border: 1px solid #444 !important;
	border-radius: 8px !important;
	font-family: 'Open Sans Hebrew', 'Open Sans', sans-serif !important;
	z-index: 1000000 !important;
}

.pac-item {
	padding: 10px 15px !important;
	color: #fff !important;
	background: #1a1a1a !important;
	border-bottom: 1px solid #333 !important;
	cursor: pointer !important;
	direction: rtl !important;
}

.pac-item:hover,
.pac-item-selected {
	background: #333 !important;
}

.pac-item-query {
	color: #fff !important;
	font-size: 14px !important;
}

.pac-matched {
	color: #c00000 !important;
	font-weight: 700 !important;
}

.pac-icon {
	display: none !important;
}

/* Legacy support for 2-field version */
.bb-address-row {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.bb-address-row input {
	flex: 1;
	padding: 10px;
	background: #333;
	border: 1px solid #444;
	border-radius: 6px;
	color: #fff;
	font-size: 14px;
}

.bb-address-row input:focus {
	outline: none;
	border-color: #c00000;
}

.bb-check-address {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
}

.bb-address-result {
	padding: 12px;
	border-radius: 6px;
	font-size: 14px;
	text-align: center;
}

.bb-address-result.success {
	background: rgba(76, 175, 80, 0.2);
	border: 1px solid #4caf50;
	color: #4caf50;
}

.bb-address-result.error {
	background: rgba(244, 67, 54, 0.2);
	border: 1px solid #f44336;
	color: #f44336;
}

.bb-address-result .bb-delivery-fee {
	font-weight: 700;
	color: #fff;
	margin-top: 5px;
}

/* Hide delivery address section when pickup selected */
.bb-pickup-selected .bb-delivery-address {
	display: none;
}

/* Disable checkout if address not validated */
.bb-checkout-btn.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* ========================================
   CUSTOM CHECKOUT POPUP
   ======================================== */

#bb-checkout-popup .bb-popup-wrapper {
    max-width: 500px;
    width: 95%;
}

#bb-checkout-popup .bb-popup-content {
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
    border-radius: 20px;
}

.bb-checkout-header {
    background: linear-gradient(135deg, #c00000, #8b0000);
    color: #fff;
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.bb-checkout-header h2 {
    margin: 0;
    font-size: 22px;
}

.bb-checkout-form {
    padding: 20px;
}

.bb-checkout-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.bb-checkout-section:last-of-type {
    border-bottom: none;
}

.bb-checkout-section h3 {
    font-size: 16px;
    margin: 0 0 15px 0;
    color: #fff;
}

/* Delivery Options */
.bb-delivery-options,
.bb-payment-methods {
    display: flex;
    gap: 10px;
}

.bb-delivery-option,
.bb-payment-option {
    flex: 1;
    cursor: pointer;
}

.bb-delivery-option input,
.bb-payment-option input {
    display: none;
}

.bb-option-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 12px;
    transition: all 0.2s;
}

.bb-delivery-option input:checked + .bb-option-box,
.bb-payment-option input:checked + .bb-option-box {
    border-color: #c00000;
    background: rgba(192, 0, 0, 0.15);
}

.bb-option-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.bb-option-title {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

/* Pickup Info */
.bb-pickup-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #2a2a2a;
    border-radius: 10px;
    color: #fff;
}

.bb-pickup-icon {
    font-size: 20px;
}

/* Order Summary */
.bb-order-summary {
    background: #2a2a2a;
    padding: 15px !important;
    border-radius: 12px;
    margin: 20px 0;
    border: none !important;
}

.bb-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #ccc;
}

.bb-summary-row.bb-summary-total {
    border-top: 2px solid #444;
    margin-top: 10px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.bb-summary-row.bb-summary-total span:last-child {
    color: #c00000;
    font-size: 22px;
}

/* Terms */
.bb-terms-section {
    border: none !important;
    padding-bottom: 0 !important;
}

.bb-terms-section .bb-checkbox {
    font-size: 13px;
    color: #aaa;
}

.bb-terms-section .bb-terms-link {
    color: #c00000;
    text-decoration: underline;
}

/* Submit Button */
.bb-checkout-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #c00000, #8b0000);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.bb-checkout-submit:hover {
    background: linear-gradient(135deg, #d00000, #a00000);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(192, 0, 0, 0.4);
}

.bb-checkout-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Address Status */
.bb-address-status {
    margin-top: 8px;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 8px;
}

.bb-address-status.valid {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #4caf50;
}

.bb-address-status.invalid {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
}

/* Success Message */
.bb-checkout-success {
    text-align: center;
    padding: 60px 30px;
}

.bb-success-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.bb-checkout-success h2 {
    color: #4caf50;
    margin-bottom: 15px;
}

.bb-checkout-success p {
    color: #ccc;
    margin: 10px 0;
}

.bb-success-btn {
    margin-top: 30px;
    padding: 15px 40px;
    background: #c00000;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* Checkout field row */
.bb-field-row {
    display: flex;
    gap: 10px;
}

.bb-field-half {
    flex: 1;
}

/* ========================================
   NEW AUTH POPUP
   ======================================== */

#bb-auth-popup .bb-popup-wrapper {
    max-width: 400px;
    width: 95%;
}

#bb-auth-popup .bb-popup-content {
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
}

.bb-auth-tabs {
    display: flex;
    background: #1a1a1a;
}

.bb-auth-tab {
    flex: 1;
    padding: 16px;
    border: none;
    background: transparent;
    color: #888;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.bb-auth-tab.active {
    background: linear-gradient(135deg, #c00000, #8b0000);
    color: white;
}

.bb-auth-form {
    padding: 25px;
}

.bb-auth-header {
    text-align: center;
    margin-bottom: 25px;
}

.bb-auth-header h2 {
    font-size: 24px;
    margin: 0 0 8px 0;
    color: #fff;
}

.bb-auth-header p {
    margin: 0;
    color: #888;
    font-size: 14px;
}

.bb-simple-form .bb-field {
    margin-bottom: 18px;
}

.bb-simple-form .bb-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #ccc;
    font-weight: 500;
}

.bb-simple-form .bb-field input[type="text"],
.bb-simple-form .bb-field input[type="email"],
.bb-simple-form .bb-field input[type="tel"],
.bb-simple-form .bb-field input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.2s;
    font-family: inherit;
}

.bb-simple-form .bb-field input:focus {
    outline: none;
    border-color: #c00000;
}

.bb-checkbox-field label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.bb-checkbox-field input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #c00000;
}

.bb-auth-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #c00000, #8b0000);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.bb-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(192, 0, 0, 0.4);
}

.bb-auth-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.bb-auth-switch {
    text-align: center;
    margin-top: 20px;
    color: #888;
    font-size: 14px;
}

.bb-auth-switch a {
    color: #c00000;
    text-decoration: none;
    font-weight: 600;
}

.bb-auth-switch a:hover {
    text-decoration: underline;
}

/* ========================================
   SITE FOOTER
   ======================================== */

.bb-site-footer {
	background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
	color: #fff;
	padding: 60px 20px 20px;
	font-family: 'Heebo', 'Segoe UI', Arial, sans-serif;
	direction: rtl;
	margin-top: 40px;
	border-top: 3px solid #c00000;
}

.bb-footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr);
	gap: 40px;
}

.bb-footer-section {
	display: flex;
	flex-direction: column;
}

.bb-footer-section h4 {
	color: #c00000;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(192, 0, 0, 0.3);
}

/* About Section */
.bb-footer-about {
	grid-column: span 1;
}

.bb-footer-logo {
	max-width: 150px;
	height: auto;
	margin-bottom: 15px;
}

.bb-footer-tagline {
	font-size: 16px;
	font-weight: 600;
	color: #c00000;
	margin-bottom: 10px;
}

.bb-footer-desc {
	font-size: 14px;
	color: #aaa;
	line-height: 1.7;
}

/* Links */
.bb-footer-links ul,
.bb-footer-legal ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bb-footer-links li,
.bb-footer-legal li {
	margin-bottom: 12px;
}

.bb-footer-links a,
.bb-footer-legal a {
	color: #ccc;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
	padding-right: 15px;
}

.bb-footer-links a::before,
.bb-footer-legal a::before {
	content: '←';
	position: absolute;
	right: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bb-footer-links a:hover,
.bb-footer-legal a:hover {
	color: #c00000;
	padding-right: 20px;
}

.bb-footer-links a:hover::before,
.bb-footer-legal a:hover::before {
	opacity: 1;
}

/* Social Icons */
.bb-footer-social-icons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.bb-social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	transition: all 0.3s ease;
}

.bb-social-icon svg {
	width: 22px;
	height: 22px;
}

.bb-social-icon.bb-whatsapp:hover {
	background: #25D366;
	transform: translateY(-3px);
	box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.bb-social-icon.bb-facebook:hover {
	background: #1877F2;
	transform: translateY(-3px);
	box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

.bb-social-icon.bb-instagram:hover {
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
	transform: translateY(-3px);
	box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}

.bb-social-icon.bb-waze:hover {
	background: #33CCFF;
	transform: translateY(-3px);
	box-shadow: 0 5px 20px rgba(51, 204, 255, 0.4);
}

/* Footer Bottom */
.bb-footer-bottom {
	max-width: 1200px;
	margin: 40px auto 0;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.bb-footer-bottom p {
	font-size: 13px;
	color: #666;
	margin: 0;
}

/* Responsive Footer */
@media (max-width: 1000px) {
	.bb-footer-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.bb-footer-about {
		grid-column: span 2;
		text-align: center;
		align-items: center;
	}
	
	.bb-footer-contact {
		grid-column: span 2;
		text-align: center;
	}
}

@media (max-width: 600px) {
	.bb-site-footer {
		padding: 40px 15px 15px;
	}
	
	.bb-footer-container {
		grid-template-columns: 1fr;
		gap: 25px;
		text-align: center;
	}
	
	.bb-footer-about {
		grid-column: span 1;
	}
	
	.bb-footer-section {
		align-items: center;
	}
	
	.bb-footer-links a::before,
	.bb-footer-legal a::before {
		display: none;
	}
	
	.bb-footer-links a,
	.bb-footer-legal a {
		padding-right: 0;
	}
	
	.bb-footer-links a:hover,
	.bb-footer-legal a:hover {
		padding-right: 0;
	}
	
	.bb-footer-social-icons {
		justify-content: center;
	}
}

/* Footer Contact Section */
.bb-footer-contact ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bb-contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	color: #ccc;
	font-size: 14px;
}

.bb-contact-item svg {
	color: #c00000;
	flex-shrink: 0;
}

.bb-contact-item a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.bb-contact-item a:hover {
	color: #c00000;
}

@media (max-width: 600px) {
	.bb-contact-item {
		justify-content: center;
	}
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */

.bb-floating-whatsapp {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 9998;
	display: flex;
	align-items: center;
	gap: 8px;
	background: #25D366;
	color: #ffffff !important;
	padding: 8px 14px;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 3px 15px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
	font-family: 'Heebo', 'Segoe UI', Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
}

.bb-floating-whatsapp .bb-wa-text {
	color: #ffffff !important;
}

.bb-floating-whatsapp:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.bb-wa-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bb-wa-icon svg {
	width: 20px;
	height: 20px;
	fill: #ffffff;
}

.bb-wa-text {
	white-space: nowrap;
}

/* Mobile: show only icon */
@media (max-width: 600px) {
	.bb-floating-whatsapp {
		bottom: 85px; /* Above cart bar */
		left: 15px;
		padding: 14px;
		border-radius: 50%;
	}
	
	.bb-wa-text {
		display: none;
	}
	
	.bb-wa-icon svg {
		width: 28px;
		height: 28px;
	}
}

/* ========================================
   ACCESSIBILITY TOOLBAR - SMALL & LEFT SIDE
   ======================================== */

/* WP Accessibility Toolbar - Move to LEFT, make SMALL */
#wpa-toolbar,
.pojo-a11y-toolbar-toggle,
.pojo-a11y-toolbar,
[class*="accessibility"] .toolbar,
.a11y-toolbar {
	position: fixed !important;
	top: 50% !important;
	left: 0 !important;
	right: auto !important;
	transform: translateY(-50%) !important;
	z-index: 9990 !important; /* Below cart popup */
}

#wpa-toolbar {
	display: flex !important;
	flex-direction: column !important;
	gap: 2px !important;
	padding: 5px 3px !important;
	background: rgba(0, 0, 0, 0.75) !important;
	border-radius: 0 6px 6px 0 !important;
	box-shadow: 2px 0 10px rgba(0,0,0,0.2) !important;
}

#wpa-toolbar li {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

#wpa-toolbar button,
#wpa-toolbar a {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 32px !important;
	height: 32px !important;
	background: transparent !important;
	border: none !important;
	color: #fff !important;
	cursor: pointer !important;
	border-radius: 4px !important;
	transition: background 0.2s ease !important;
	font-size: 14px !important;
}

#wpa-toolbar button:hover,
#wpa-toolbar a:hover {
	background: rgba(192, 0, 0, 0.8) !important;
}

#wpa-toolbar button:focus,
#wpa-toolbar a:focus {
	outline: 2px solid #c00000 !important;
	outline-offset: 1px !important;
}

/* Hide toolbar labels, show only icons */
#wpa-toolbar .wpa-toggle-label,
#wpa-toolbar .wpa-text,
#wpa-toolbar span:not(.dashicons):not([class*="icon"]) {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* Pojo Accessibility Plugin - also fix */
.pojo-a11y-toolbar-toggle {
	left: 0 !important;
	right: auto !important;
	width: 32px !important;
	height: 32px !important;
	border-radius: 0 6px 6px 0 !important;
}

.pojo-a11y-toolbar {
	left: 0 !important;
	right: auto !important;
}

/* One Click Accessibility - fix position */
.oca-accessibility-toggle,
.oca-toggle-btn {
	left: 0 !important;
	right: auto !important;
	width: 35px !important;
	height: 35px !important;
}

/* Mobile positioning - smaller and left */
@media (max-width: 600px) {
	#wpa-toolbar,
	.pojo-a11y-toolbar-toggle,
	.a11y-toolbar {
		top: auto !important;
		bottom: 100px !important; /* Above WhatsApp button */
		left: 5px !important;
		right: auto !important;
		transform: none !important;
		padding: 4px !important;
		border-radius: 6px !important;
	}
	
	#wpa-toolbar button,
	#wpa-toolbar a {
		width: 28px !important;
		height: 28px !important;
		font-size: 12px !important;
	}
	
	/* Collapse to single button on mobile */
	#wpa-toolbar {
		flex-direction: row !important;
		gap: 2px !important;
	}
	
	/* Very small accessibility widgets */
	.pojo-a11y-toolbar-toggle,
	.oca-accessibility-toggle,
	.oca-toggle-btn {
		width: 28px !important;
		height: 28px !important;
		bottom: 100px !important;
		left: 5px !important;
	}
}
