.navbar-brand {
	color: var(--brand-orange) !important;
}

body {
	background-color: var(--bg-body);
	font-family: 'Poppins', Roboto, Helvetica, Arial, sans-serif;
	color: var(--text-main);
}

h1, h2, h3, h4, h5 {	color: var(--brand-blue);
}

.text-brand-blue {	color: var(--brand-blue);
}
.text-brand-orange {	color: var(--brand-orange);
}
.bg-brand-orange {	background-color: var(--brand-orange);
	color: white;
	border: none;
}
.bg-brand-orange:hover {	background-color: var(--brand-orange-hover);
	color: white;
}


.btn-card {
	background-color: var(--brand-orange-light);
	color: var(--brand-orange);
	font-weight: 600;
	border: none;
	transition: 0.2s;
	border-radius: 8px;
}
.btn-card:hover {
	background-color: var(--brand-orange-light-hover);
	color: var(--brand-orange);
}

.navbar-brand {	color: var(--brand-blue);
	font-weight: 800;
	font-size: 2.0rem;
	letter-spacing: -0.5px;
}
.navbar-brand i {	color: var(--brand-blue);
	font-size: 2.0rem !important;
}
.nav-link {	color: var(--text-main) !important;
	font-weight: 500;
	margin-left: 1rem;
}
.nav-link:hover, .nav-link:focus {	color: var(--brand-blue) !important;
}
.navbar-brand:hover, .navbar-brand:focus, .navbar-brand:active {	color: var(--brand-blue) !important;
}


.search-container {	max-width: 720px;
	margin: 0 auto;
	position: relative;
}
.search-group {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px var(--shadow-heavy);
}
.search-input {	border: none !important;
	padding: 1.2rem 1.5rem;
	font-size: 1.1rem;
}
.search-input:focus {	box-shadow: none;
}
.gps-btn {
	border: none;
	background: white;
	color: var(--text-muted);
	padding: 0 15px;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
	min-width: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gps-btn i {	font-size: 1.4rem; vertical-align: middle;
}
.search-submit {
	background-color: var(--brand-orange);
	color: white;
	padding: 0 30px;
	font-weight: 600;
	border-radius: 0 !important;
}
.search-submit:hover {	background-color: var(--brand-orange-hover);
}

.autocomplete-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border-radius: 0 0 12px 12px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
	z-index: 1000;
	display: none;
	border: 1px solid #eee;
	border-top: none;
	overflow: hidden;
}

.autocomplete-item {
	padding: 12px 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: 0.2s;
	color: var(--text-main);
	text-align: left;
}

.autocomplete-item:hover {
	background-color: var(--brand-blue-light);
}

.autocomplete-item i {
	color: var(--brand-blue);
	font-size: 1.1rem;
}

.autocomplete-item b {
	color: var(--brand-blue);
}

.city-links a {	color: #555;
	text-decoration: none;
	font-weight: 500;
	transition: 0.2s;
}
.city-links a i {	color: var(--brand-blue);
	margin-right: 4px;
}
.city-links a:hover {	color: var(--brand-blue);
}

.step-item {	position: relative;
	padding: 0 2rem;
}
.step-number {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	background-color: var(--brand-blue);
	color: white;
	border-radius: 50%;
	margin-right: 8px;
	font-weight: bold;
	font-size: 0.9rem;
}
@media (min-width: 768px) {
	.step-divider {		border-right: 1px solid #e0e0e0;
	}
}


.footer-top {	background-color: var(--brand-blue-light);
	padding: 40px 0;
}
.footer-top a {	color: var(--text-main);
	text-decoration: none;
	margin: 0 12px;
	font-weight: 500;
}
.footer-top h5 {
	color: var(--brand-blue-dark);
}
.footer-bottom {	background-color: var(--brand-blue-dark);
	color: #e0e0e0;
	padding: 25px 0;
}
.footer-bottom a {	color: white;
	text-decoration: none;
	margin: 0 15px;
	font-size: 0.9rem;
}


.restaurant-card {
	position: relative;
	border: none;
	border-radius: 12px;
	background-color: var(--bg-card);
	box-shadow: 0 4px 15px var(--shadow);
	overflow: hidden;
	height: 100%;
	transition: transform 0.2s;
}
.restaurant-card:hover {	transform: translateY(-5px);
	box-shadow: 0 8px 25px var(--shadow-heavy);
}

.card-img-wrapper {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: 12px 12px 0 0;
}
.card-img-wrapper img {	width: 100%;
	height: 100%;
	object-fit: cover;
}


.overlay-badges {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 20;
	display: flex;
	gap: 6px;
}
.badge-special {
	font-size: 0.7rem;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 20px;
	text-transform: uppercase;
}
.badge-novinka {	background-color: var(--color-novinka);
	color: white;
}
.badge-akce {	background-color: var(--color-akce);
	color: white;
}
.badge-vyhodne {	background-color: var(--color-vyhodne);
	color: white;
}

.promo-overlay {
	position: absolute;
	bottom: 12px;
	left: 12px;
	right: 12px;
	background-color: rgba(255, 255, 255, 0.95);
	border: 1px solid var(--brand-orange);
	border-radius: 6px;
	padding: 8px 10px;
	color: var(--brand-orange);
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.2;
	z-index: 10;
}

.card-body {	padding: 16px;
}
.card-title {	font-weight: 700;
	font-size: 1.15rem;
	color: var(--brand-blue);
}
.card-subtitle {	color: var(--text-muted);
	font-size: 0.85rem;
	margin-top: 7px;
	margin-bottom: 15px;
}


.delivery-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 0.9rem;
	font-weight: 500;
}
.info-row {	display: flex;
	justify-content: space-between;
	align-items: center;
}
.info-item {	display: flex;
	align-items: center;
	gap: 6px;
}
.info-item i {	color: var(--icon-color);
	font-size: 1.1rem;
}

.payment-icons {
    display: flex;
    gap: 8px;
    margin-left: auto;
    align-items: center;
}
.payment-method {	color: var(--color-success);
	font-size: 1.3rem;
}

.restaurant-card.is-closed {
	pointer-events: none;
}


.restaurant-card.is-closed .card-img-wrapper img {
	filter: grayscale(1) brightness(0.7);
}

.restaurant-card.is-closed .card-img-wrapper::after {
	content: "NYNÍ ZAVŘENO";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 800;
	font-size: 1.2rem;
	letter-spacing: 1px;
	z-index: 30;
}

.restaurant-card.is-closed .card-body {
	opacity: 0.4;
	background-color: #f8f8f8;
}

.restaurant-card.is-closed .btn-card {
	background-color: #e0e0e0;
	color: #888;
}



/* --- O nás --- */
.highlight {
	color: var(--brand-orange);
	font-weight: bold;
}

.story-block {
	border-left: 4px solid var(--brand-blue);
	padding-left: 20px;
	margin: 30px 0;
	background-color: #f9f9f9;
	padding-top: 15px;
	padding-bottom: 15px;
}

.cta-box {
	text-align: center;
	margin-top: 50px;
	padding: 30px;
	border-top: 1px solid #eee;
}


/* --- Sekce 10 důvodů --- */
.reasons-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
	margin-bottom: 60px;
}

.reason-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 10px;
}

.number {
	display: flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
    height: 35px;
    border: 2px solid var(--brand-blue-light);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--brand-blue-dark);
    background-color: var(--brand-blue-light);
    flex-shrink: 0;
}

.icon-box {
	color: var(--brand-orange);
	display: flex;
	align-items: center;
	justify-content: center;
}

.reason-content h3 {
	color: var(--brand-blue);
	margin: 0 0 5px 0;
	font-size: 1.15rem;
}

.reason-content p {
	margin: 0;
	font-size: 0.95rem;
}


/* --- Ceník --- */
.pricing-section {
	background-color: var(--brand-blue-light);
	padding: 50px 20px;
	border-radius: 15px;
	text-align: center;
	margin-bottom: 60px;
}

.pricing-grid {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.price-card {
	background: white;
	padding: 25px;
	border-radius: 10px;
	min-width: 200px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
	color: #000;
	transition: transform 0.2s;
}
.price-card:hover {
	transform: translateY(-5px);
	color: var(--brand-blue);
	text-decoration: none;
}
.price-card .amount {
	font-size: 1.5rem;
	font-weight: bold;
	display: block;
}
.pricing-note {
	margin-top: 20px;
	font-size: 0.9rem;
	color: #777;
}


/* --- Kontaktní karty --- */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.contact-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	text-align: center;
	border: 1px solid var(--brand-blue-light);
	transition: transform 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.icon-circle {
	width: 60px;
	height: 60px;
	border: 2px solid var(--brand-orange);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: var(--brand-orange);
}

.contact-card h3 {
	color: var(--brand-blue);
	margin-bottom: 15px;
}

.contact-card a {
	color: var(--brand-orange);
	text-decoration: none;
	font-weight: bold;
}


.btn-submit {
	background: var(--brand-orange);
	color: white;
	border: none;
	border-radius: 8px;
	transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover:not(:disabled) {
	background: var(--brand-orange-hover);
	color: white;
	transform: translateY(-2px);
}

.btn-submit:disabled {
	background: var(--brand-orange-light);
	color: var(--brand-orange);
	cursor: not-allowed;
	transform: none;
}

.btn-submit:disabled:hover {
	background: var(--brand-orange-light-hover);
	color: var(--brand-orange);
	transform: none;
}


.ios-modal {
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	display: flex;
	align-items: flex-end;
}

.ios-modal-content {
	background-color: #f9f9f9;
	width: 100%;
	border-radius: 20px 20px 0 0;
	padding: 20px;
	animation: slideUp 0.3s ease-out;
}

.app-icon-small {
	width: 60px;
	height: 60px;
	border-radius: 13px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ios-share-icon, .ios-add-icon {
	vertical-align: middle;
	margin: 0 5px;
}

.ios-close-btn {
	float: right;
	font-size: 28px;
	font-weight: bold;
	color: #8e8e93;
	cursor: pointer;
}

@keyframes slideUp {
	from { transform: translateY(100%); }
	to { transform: translateY(0); }
}


.payment-status {	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	border: none;
}
.payment-status-banner {
	padding: 20px;
	border-radius: 10px;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 2rem;
}
.payment-status-banner i {	font-size: 2.5rem;
	margin-right: 15px;
}
.payment-status .label-text {	color: #6c757d;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.payment-status .value-text {	font-size: 1.05rem;
	font-weight: 600;
}
.payment-status .value-text-small {
	font-size: 0.9rem;
	font-weight: 600;
}
.payment-status .price-tag {	font-size: 2.8rem;
	color: #000 !important;
	font-weight: 800;
}
.payment-btn {
	background-color: #28a745 !important;
	border-color: #28a745 !important;
	color: #ffffff !important;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.payment-btn:hover, .payment-btn:focus, .payment-btn:active {
	background-color: #218838 !important;
	border-color: #218838 !important;
	color: #ffffff !important;
	box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3) !important;
}
