/* ==========================================================================
   Bella Meniu – design alb minimalist, carduri stil shop (v2)
   ========================================================================== */

.bella-meniu {
	--bella-accent: #d6342a;
	--bella-bg: #ffffff;
	--bella-card: #ffffff;
	--bella-ink: #18181b;
	--bella-ink-soft: #71717a;
	--bella-line: #e8e8ec;
	--bella-radius: 16px;
	--bella-shadow: 0 1px 2px rgba(20,20,25,.04), 0 6px 18px rgba(20,20,25,.06);
	--bella-shadow-hover: 0 8px 28px rgba(20,20,25,.12);
	--bella-shadow-lg: 0 -10px 40px rgba(0,0,0,.18);

	box-sizing: border-box;
	font-family: inherit;
	color: var(--bella-ink);
	background: var(--bella-bg);
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 14px 120px;
	-webkit-tap-highlight-color: transparent;
}
.bella-meniu *, .bella-meniu *::before, .bella-meniu *::after { box-sizing: border-box; }

/* ---------- Căutare (mică, pe rândul cu sortarea) ---------- */
.bella-search { position: relative; flex: 1 1 auto; max-width: 340px; min-width: 0; margin: 0; }
.bella-search-ico {
	position: absolute; left: 14px; top: 50%;
	width: 17px; height: 17px; transform: translateY(-50%);
	color: var(--bella-ink-soft); pointer-events: none;
}
.bella-search-input {
	width: 100%; height: 42px;
	border: 1px solid var(--bella-line); border-radius: 11px;
	background: #fff; padding: 0 14px 0 40px;
	font-size: 14px; color: var(--bella-ink); outline: none;
	transition: border-color .15s, box-shadow .15s;
}
.bella-search-input:focus {
	border-color: var(--bella-accent);
	box-shadow: 0 0 0 3px rgba(214,52,42,.10);
}

/* ---------- Navigare pe categorii (taburi cu iconițe) ---------- */
.bella-nav {
	position: relative; z-index: 30;
	margin: 0 -14px 4px; padding: 4px 14px 0;
	background: rgba(255,255,255,.96);
	backdrop-filter: saturate(150%) blur(10px);
	-webkit-backdrop-filter: saturate(150%) blur(10px);
	border-bottom: 1px solid var(--bella-line);
}
/* Indiciu de scroll orizontal: săgeată + fade pe dreapta când mai sunt categorii */
.bella-nav::after, .bella-nav::before {
	content: ""; position: absolute; top: 0; bottom: 1px; width: 56px;
	pointer-events: none; opacity: 0; transition: opacity .2s; z-index: 4;
}
.bella-nav::after {
	right: 0;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23d6342a' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E") no-repeat right 8px center,
		linear-gradient(to right, rgba(255,255,255,0), #fff 60%);
}
.bella-nav::before {
	left: 0;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23d6342a' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 6l-6 6 6 6'/%3E%3C/svg%3E") no-repeat left 8px center,
		linear-gradient(to left, rgba(255,255,255,0), #fff 60%);
}
.bella-nav.has-more::after { opacity: 1; animation: bella-nudge 1.2s ease-in-out 3; }
.bella-nav.has-prev::before { opacity: 1; }
@keyframes bella-nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-5px); } }
@media (prefers-reduced-motion: reduce) { .bella-nav.has-more::after { animation: none; } }
.bella-nav.is-stuck {
	position: fixed; left: 0; right: 0; margin: 0;
	padding: 6px 16px 0; z-index: 300;
	box-shadow: 0 6px 20px rgba(20,20,25,.06);
	background: rgba(255,255,255,.98);
}
.bella-nav.is-stuck .bella-nav-track { max-width: 1200px; margin: 0 auto; }
.bella-nav-spacer { display: none; }
.bella-nav-spacer.is-active { display: block; }
.bella-nav-track {
	display: flex; gap: 2px;
	justify-content: flex-start;
	overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
	scroll-behavior: smooth;
}
.bella-nav-track::-webkit-scrollbar { display: none; }
.bella-nav-pill {
	flex: 0 0 auto; position: relative;
	display: flex; flex-direction: column; align-items: center; gap: 6px;
	border: 0; background: transparent;
	color: var(--bella-ink);
	padding: 10px 18px 12px; cursor: pointer; white-space: nowrap;
	transition: color .15s;
}
.bella-nav-ico { display: inline-flex; }
.bella-nav-ico svg { width: 25px; height: 25px; display: block; }
.bella-nav-label { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; }
.bella-nav-pill::after {
	content: ""; position: absolute; left: 12px; right: 12px; bottom: 0;
	height: 3px; border-radius: 3px 3px 0 0; background: transparent;
	transition: background .15s;
}
.bella-nav-pill.is-active { color: var(--bella-accent); }
.bella-nav-pill.is-active::after { background: var(--bella-accent); }

/* ---------- Toolbar (căutare + sortare) ---------- */
.bella-toolbar { display: flex; align-items: center; gap: 10px; margin: 10px 2px 8px; }
.bella-sort-wrap { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; margin-left: auto; }
.bella-sort-label { font-size: 13px; color: var(--bella-ink-soft); font-weight: 600; white-space: nowrap; }
.bella-sort {
	-webkit-appearance: none; appearance: none;
	border: 1px solid var(--bella-line); border-radius: 10px;
	background: #fff; padding: 9px 30px 9px 12px;
	font-size: 13.5px; font-weight: 700; color: var(--bella-ink);
	cursor: pointer; outline: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 11px center;
}
@media (max-width: 420px) {
	.bella-sort-label { display: none; }
	.bella-sort { padding: 9px 28px 9px 10px; font-size: 13px; }
}

/* ---------- Secțiuni / categorii ---------- */
.bella-cat { scroll-margin-top: 100px; padding-top: 8px; margin-bottom: 18px; }
.bella-cat-title { font-size: 24px; font-weight: 800; margin: 18px 2px 16px; letter-spacing: -.02em; }
.bella-cat-title::after {
	content: ""; display: block; width: 40px; height: 3px;
	margin-top: 8px; background: var(--bella-accent); border-radius: 3px;
}

/* ---------- Grilă ---------- */
.bella-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; }

/* ---------- Card produs ---------- */
/* Mobil: rând orizontal (imagine stânga). Desktop: card vertical (imagine sus). */
.bella-card {
	display: flex; flex-direction: row; gap: 0;
	background: var(--bella-card);
	border: 1px solid #efeff1;
	border-radius: var(--bella-radius);
	box-shadow: 0 2px 10px rgba(20,20,25,.05);
	padding: 0; overflow: hidden;
	transition: transform .15s ease, box-shadow .15s ease;
}
.bella-card.is-flash { animation: bella-flash .6s ease; }
@keyframes bella-flash {
	0% { box-shadow: 0 0 0 3px rgba(214,52,42,.4); }
	100% { box-shadow: 0 2px 10px rgba(20,20,25,.05); }
}
.bella-card-media {
	position: relative; flex: 0 0 112px; width: 112px; align-self: stretch;
	min-height: 112px; overflow: hidden; background: #f0f0f3; display: block; text-decoration: none;
}
.bella-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.bella-badge {
	position: absolute; top: 8px; left: 8px;
	background: var(--bella-accent); color: #fff;
	font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em;
	padding: 4px 8px; border-radius: 7px; line-height: 1; z-index: 1;
}
.bella-card-body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; padding: 12px 14px; }
.bella-card-title { font-size: 14.5px; font-weight: 800; margin: 0 0 5px; line-height: 1.25; letter-spacing: .01em; text-transform: uppercase; }
.bella-card-link { color: var(--bella-ink); text-decoration: none; }
@media (hover: hover) { .bella-card-link:hover { color: var(--bella-accent); } }
.bella-card-desc {
	font-size: 12.5px; color: var(--bella-ink-soft); line-height: 1.4; margin: 0 0 10px;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.bella-card-foot { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 10px; }
.bella-price { display: inline-flex; flex-direction: column; align-items: flex-start; font-size: 16px; font-weight: 800; color: var(--bella-ink); line-height: 1.1; }
.bella-price del { color: var(--bella-ink-soft); font-weight: 500; font-size: 12px; margin: 0 0 1px; }
.bella-price ins { text-decoration: none; color: var(--bella-accent); }

/* Buton adăugare */
.bella-btn { border: 0; cursor: pointer; font-family: inherit; }
.bella-add, .bella-choose {
	flex: 0 0 auto;
	display: inline-flex; align-items: center; justify-content: center;
	height: 38px; padding: 0 14px; border-radius: 10px;
	background: var(--bella-accent); color: #fff;
	font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em;
	white-space: nowrap; transition: transform .1s ease, filter .15s ease;
}
@media (hover: hover) { .bella-add:hover, .bella-choose:hover { filter: brightness(.93); } }
.bella-add:active, .bella-choose:active { transform: scale(.97); }
.bella-add.is-done { background: #2e9e5b !important; }
.bella-btn-label { color: #fff; }
.lbl-full { display: none; }
.lbl-short { display: inline; }
.bella-plus {
	position: relative; flex: 0 0 auto;
	width: 18px; height: 18px; border-radius: 50%;
	background: rgba(255,255,255,.22); margin-left: 8px;
}
.bella-plus::before, .bella-plus::after {
	content: ""; position: absolute; left: 50%; top: 50%; background: #fff; transform: translate(-50%,-50%);
}
.bella-plus::before { width: 9px; height: 2px; }
.bella-plus::after { width: 2px; height: 9px; }
.bella-soldout { font-size: 13px; color: var(--bella-ink-soft); font-weight: 600; }

.bella-empty { text-align: center; color: var(--bella-ink-soft); padding: 40px 0; font-size: 15px; }

/* ---------- Bottom sheet ---------- */
.bella-sheet-overlay {
	position: fixed; inset: 0; z-index: 1000;
	background: rgba(15,15,20,.5);
	display: flex; align-items: flex-end; justify-content: center;
	opacity: 0; transition: opacity .22s ease;
}
.bella-sheet-overlay.is-open { opacity: 1; }
.bella-sheet {
	width: 100%; max-width: 580px; max-height: 92vh;
	background: #fff; border-radius: 22px 22px 0 0;
	box-shadow: var(--bella-shadow-lg);
	display: flex; flex-direction: column; position: relative;
	transform: translateY(100%); transition: transform .26s cubic-bezier(.32,.72,0,1);
}
.bella-sheet-overlay.is-open .bella-sheet { transform: translateY(0); }
.bella-sheet { overflow-x: hidden; }
.bella-sheet-grip { width: 42px; height: 5px; background: #e0e0e4; border-radius: 3px; margin: 10px auto 4px; }
.bella-sheet-close {
	position: absolute; top: 12px; right: 14px; width: 36px; height: 36px;
	border: 0; border-radius: 50%; background: #f1f1f4; color: var(--bella-ink);
	font-size: 22px; line-height: 1; cursor: pointer; z-index: 5;
	display: inline-flex; align-items: center; justify-content: center; padding: 0;
}
.bella-sheet-scroll { flex: 1 1 auto; min-height: 0; overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; padding: 4px 16px 12px; }
.bella-sheet-head { display: flex; gap: 13px; align-items: center; margin: 6px 44px 16px 0; }
.bella-sheet-img { width: 72px; height: 72px; border-radius: 14px; object-fit: cover; flex: 0 0 auto; background: #f0f0f3; }
.bella-sheet-title { font-size: 18px; font-weight: 800; margin: 0 0 4px; letter-spacing: -.01em; line-height: 1.2; }
.bella-sheet-desc { font-size: 12.5px; color: var(--bella-ink-soft); margin: 0; line-height: 1.4; }

.bella-sheet-loading { text-align: center; color: var(--bella-ink-soft); font-size: 14px; padding: 28px 0; }

/* Opțiuni native injectate – afișate curat, pe o coloană */
.bella-sheet-options { margin-bottom: 4px; }
.bella-sheet-options > div,
.bella-sheet-options .tc-extra-product-options,
.bella-sheet-options .tm-extra-product-options,
.bella-sheet-options .tmcp-content,
.bella-sheet-options .tm-epo-element,
.bella-sheet-options .wc-pao-addon,
.bella-sheet-options .product-addon,
.bella-sheet-options [class*="col-"],
.bella-sheet-options [class*="column"],
.bella-sheet-options .row {
	width: 100% !important; max-width: 100% !important; float: none !important;
	margin-left: 0 !important; margin-right: 0 !important; display: block !important; clear: both !important;
}
.bella-sheet-options .tm-epo-element,
.bella-sheet-options .wc-pao-addon,
.bella-sheet-options .product-addon,
.bella-sheet-options fieldset {
	background: #fafafa; border: 1px solid var(--bella-line);
	border-radius: 14px; padding: 14px 14px 6px; margin-bottom: 14px !important;
}
.bella-sheet-options h2, .bella-sheet-options h3,
.bella-sheet-options .wc-pao-addon-name, .bella-sheet-options .product-addon-name,
.bella-sheet-options legend,
.bella-sheet-options .tc-extra-product-options .tm-epo-element-label,
.bella-sheet-options .tmcp-field-wrap > label:first-child {
	font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
	color: var(--bella-ink-soft); margin: 0 2px 6px; padding: 0; border: 0;
}

/* Strânge rândurile de opțiuni: zero margini pe orice wrapper pe care
   îl pune plugin-ul de add-ons în jurul fiecărui topping. */
.bella-sheet-options p,
.bella-sheet-options ul,
.bella-sheet-options li,
.bella-sheet-options .form-row,
.bella-sheet-options .wc-pao-addon-wrap,
.bella-sheet-options .wc-pao-addon-checkbox,
.bella-sheet-options .wc-pao-addon-content,
.bella-sheet-options .tmcp-field-wrap,
.bella-sheet-options .tm-epo-field-wrap,
.bella-sheet-options .tmcp-content,
.bella-sheet-options .cpf-element,
.bella-sheet-options .nm-add-product {
	margin: 0 !important; padding: 0 !important; list-style: none !important;
}
.bella-sheet-options label {
	display: flex; align-items: center; gap: 11px;
	background: transparent; border: 0; border-radius: 9px;
	padding: 8px 8px; margin: 0 !important;
	font-size: 14.5px; font-weight: 600; color: var(--bella-ink);
	cursor: pointer; line-height: 1.25; transition: background .15s;
}
.bella-sheet-options label:has(input:checked) { background: rgba(214,52,42,.06); }
.bella-sheet-options input[type="checkbox"], .bella-sheet-options input[type="radio"] {
	flex: 0 0 auto; width: 21px; height: 21px; margin: 0; accent-color: var(--bella-accent); cursor: pointer;
}
.bella-sheet-options input[type="text"], .bella-sheet-options input[type="number"],
.bella-sheet-options textarea, .bella-sheet-options select {
	width: 100%; border: 1px solid var(--bella-line); border-radius: 12px;
	padding: 11px 12px; font-size: 15px; font-family: inherit; background: #fff; outline: none;
}
.bella-sheet-options input:focus, .bella-sheet-options textarea:focus, .bella-sheet-options select:focus { border-color: var(--bella-accent); }
.bella-sheet-options .wc-pao-addon-price, .bella-sheet-options .amount, .bella-sheet-options .price {
	color: var(--bella-accent); font-weight: 700; margin-left: auto; padding-left: 8px; white-space: nowrap;
}
.bella-sheet-options label > *:last-child { margin-left: auto; }
.bella-sheet-options label > input:last-child { margin-left: 0; }
.bella-sheet-options .quantity { display: none; }

.bella-sheet-foot {
	display: flex; align-items: center; gap: 10px; flex-wrap: nowrap;
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	border-top: 1px solid var(--bella-line); background: #fff;
}
.bella-qty { display: flex; align-items: center; gap: 2px; border: 1px solid var(--bella-line); border-radius: 11px; background: #fff; padding: 3px; flex: 0 0 auto; }
.bella-qty-btn { width: 34px; height: 34px; border: 0; background: transparent; font-size: 20px; color: var(--bella-ink); cursor: pointer; border-radius: 8px; padding: 0; }
.bella-qty-btn:active { background: #f1f1f4; }
.bella-qty-val { min-width: 22px; text-align: center; font-weight: 700; font-size: 15px; }
.bella-sheet-add {
	flex: 1 1 auto; min-width: 0; height: 48px; border: 0; border-radius: 12px;
	background: var(--bella-accent); color: #fff; font-size: 14.5px; font-weight: 800;
	font-family: inherit; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	white-space: nowrap; line-height: 1.15; padding: 0 10px;
	transition: transform .1s, filter .15s;
}
.bella-sheet-add:active { transform: scale(.99); }
.bella-sheet-add:disabled { opacity: .6; cursor: default; }

/* ---------- Bară coș flotantă ---------- */
.bella-cartbar {
	position: fixed; left: 14px; right: 14px; bottom: 14px;
	max-width: 560px; margin: 0 auto; z-index: 900;
	display: flex; align-items: center; gap: 12px; height: 58px; padding: 0 18px;
	border-radius: 15px; background: var(--bella-accent); color: #fff; text-decoration: none;
	box-shadow: 0 10px 30px rgba(214,52,42,.38);
	transform: translateY(140%); opacity: 0;
	transition: transform .28s cubic-bezier(.32,.72,0,1), opacity .2s;
}
.bella-cartbar.is-visible { transform: translateY(0); opacity: 1; }
.bella-cartbar-badge {
	flex: 0 0 auto; min-width: 26px; height: 26px; padding: 0 7px; border-radius: 999px;
	background: rgba(255,255,255,.22); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px;
}
.bella-cartbar-label { flex: 1 1 auto; font-weight: 800; font-size: 16px; }
.bella-cartbar-total { flex: 0 0 auto; font-weight: 800; font-size: 16px; }

/* ---------- Toast ---------- */
.bella-toast {
	position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 12px); z-index: 950;
	background: #18181b; color: #fff; font-size: 14px; font-weight: 600;
	padding: 12px 18px; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,.25);
	opacity: 0; transition: opacity .2s, transform .2s; pointer-events: none; max-width: 90vw;
}
.bella-toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* ==========================================================================
   Desktop: carduri verticale (imagine sus), buton full-width
   ========================================================================== */
@media (min-width: 560px) {
	.bella-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
	.bella-card { flex-direction: column; gap: 0; padding: 12px; }
	.bella-card-media { flex: none; width: 100%; height: 168px; border-radius: 13px; }
	.bella-card-body { padding: 14px 4px 4px; }
	.bella-card-title { font-size: 16.5px; }
	.bella-card-foot { flex-direction: column; align-items: stretch; gap: 12px; }
	.bella-add, .bella-choose { width: 100%; height: 46px; }
	.lbl-full { display: inline; }
	.lbl-short { display: none; }
	@media (hover: hover) {
		.bella-card:hover { transform: translateY(-3px); box-shadow: var(--bella-shadow-hover); }
		.bella-card:hover .bella-card-img { transform: scale(1.05); }
	}
}
@media (min-width: 900px) { .bella-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .bella-grid { grid-template-columns: repeat(4, 1fr); } }

@media (prefers-reduced-motion: reduce) {
	.bella-sheet, .bella-cartbar, .bella-sheet-overlay, .bella-toast, .bella-card, .bella-card-img { transition: none; }
}

/* ==========================================================================
   Protecție împotriva stilurilor temei
   ========================================================================== */
.bella-meniu button, .bella-meniu .bella-btn {
	-webkit-appearance: none; appearance: none; box-shadow: none; text-shadow: none; min-height: 0; line-height: normal;
}
.bella-meniu .bella-nav-pill {
	background: transparent !important; border: 0 !important; color: var(--bella-ink) !important;
	text-transform: none !important; letter-spacing: normal !important; box-shadow: none !important;
}
.bella-meniu .bella-nav-pill.is-active { color: var(--bella-accent) !important; }
.bella-meniu .bella-nav-label {
	text-transform: uppercase !important; letter-spacing: .02em !important;
	color: inherit !important; font-size: 11.5px !important; font-weight: 800 !important;
}
.bella-meniu .bella-nav-ico svg { width: 25px !important; height: 25px !important; }
.bella-meniu .bella-add, .bella-meniu .bella-choose, .bella-meniu .bella-sheet-add {
	background: var(--bella-accent) !important; color: #fff !important; border: 0 !important; cursor: pointer;
	font-weight: 800 !important; line-height: 1 !important; text-indent: 0 !important; text-shadow: none !important;
	overflow: visible !important; box-shadow: none !important;
}
.bella-meniu .bella-add, .bella-meniu .bella-choose {
	height: 38px !important; padding: 0 13px !important; font-size: 12.5px !important;
	text-transform: uppercase !important; letter-spacing: .02em !important;
}
.bella-meniu .bella-sheet-add { font-size: 14.5px !important; text-transform: none !important; }
.bella-meniu .bella-btn-label, .bella-meniu .lbl-full, .bella-meniu .lbl-short {
	color: #fff !important; opacity: 1 !important; visibility: visible !important; font-size: inherit !important;
}
.bella-meniu .bella-add.is-done { background: #2e9e5b !important; }
.bella-meniu .bella-cartbar { background: var(--bella-accent) !important; color: #fff !important; }
.bella-meniu .bella-qty-btn { background: transparent !important; color: var(--bella-ink) !important; border: 0 !important; width: 34px !important; height: 34px !important; min-width: 0 !important; padding: 0 !important; }
.bella-meniu .bella-sheet-close {
	background: #f1f1f4 !important; color: var(--bella-ink) !important; border: 0 !important; box-shadow: none !important;
	width: 36px !important; height: 36px !important; min-width: 0 !important; padding: 0 !important; border-radius: 50% !important;
}
.bella-meniu .bella-sheet-add { font-size: 14.5px !important; text-transform: none !important; letter-spacing: normal !important; min-width: 0 !important; }
.bella-meniu .bella-search-input { background: #fff !important; padding-left: 40px !important; height: 42px !important; }
.bella-meniu .bella-card-img { max-width: 100%; margin: 0; border-radius: 0; box-shadow: none; }
.bella-meniu .bella-card-link, .bella-meniu .bella-card-media { color: var(--bella-ink) !important; text-decoration: none !important; box-shadow: none !important; }
@media (min-width: 560px) {
	.bella-meniu .bella-add, .bella-meniu .bella-choose { width: 100% !important; height: 46px !important; }
}
