/* roboto-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v50-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-900 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/inter-v20-latin_latin-ext-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* CSS Variables - Barvy z Figma designu */
:root {
    --brand-primary: #E7344E;
    --brand-secondary: #003955;
    --brand-blue: #0B3A58;
    --text-primary: #092634;
    --bg-beige: #F7F2EC;
    --bg-light-blue: #EBF6FD;
    --bg-gray: #F0F0F0;
    --white: #FFFFFF;
    --dark-red: #B92A3E;
    --green: #3B8A3E;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

main {
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1;
}

h1 {
    font-size: 70px;
    font-weight: 900;
    color: var(--brand-primary);
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header */
.header {
    background: var(--white);
    padding: 40px 0 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.logo svg {
    width: 110px;
    height: auto;
    display: block;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-end;
}

.nav-top {
    display: flex;
    gap: 25px;
    align-items: center;
    font-size: 14px;
    opacity: 0.8;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-contact svg {
    flex-shrink: 0;
    color: var(--text-primary);
}

.nav-account {
    font-weight: 700;
}

.nav-main {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-main a {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    transition: color 0.3s;
}

.nav-main a:hover {
    color: var(--brand-primary);
}

.cart-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    border-radius: 10px;
    height: 60px;
    cursor: pointer;
}

.cart-button svg {
    width: 20px;
    height: 20px;
}

.cart-info {
    display: flex;
    align-items: center;
    color: var(--bg-beige);
}

.cart-count {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    padding: 60px 0;
}

.hero-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    line-height: 1;
    margin-bottom: 0;
}

.hero-checklist {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-item span {
    font-size: 20px;
    line-height: 1.5;
}

/* Food Categories */
.food-categories {
    padding: 0 0 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--bg-beige);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 423px;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background-size: cover;
    background-position: bottom;
    mix-blend-mode: multiply;
    opacity: 0.7;
}

.category-mrazena {
    background: var(--bg-light-blue);
}

.category-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.category-icon {
    width: 48px;
    height: 48px;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-card h3 {
    font-size: 30px;
    color: var(--text-primary);
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    background: rgba(255, 255, 255, 0.66);
    padding: 2px 8px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
    color: #695639;
    line-height: 1.3;
}

.tag-more {
    background: transparent;
    color: #958E7E;
    font-weight: 400;
}

.btn {
    padding: 6px 40px;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--brand-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-red);
}

.btn-secondary {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), var(--brand-primary);
    color: var(--white);
}

.btn-dark {
    background: var(--brand-secondary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
}

/* Objedn�vkov� syst�m */
.ordering-system {
    padding: 40px 0;
}

.ordering-wrapper {
    background: var(--bg-beige);
    border-radius: 10px;
    padding: 60px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.ordering-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ordering-content h2 {
    line-height: 1;
}

.ordering-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-item span {
    font-size: 16px;
    line-height: 1.4;
}

.ordering-login-label {
    font-size: 18px;
    margin-top: 10px;
}

.ordering-buttons {
    display: flex;
    gap: 20px;
}

.ordering-mockup {
    position: relative;
    width: 460px;
    height: 432px;
    flex-shrink: 0;
}

/* Desktop Mockup 1 */
.mockup-desktop {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 300px;
    z-index: 3;
}

.mockup-desktop .mockup-frame {
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    border-radius: 7px;
    box-shadow: 0px 3px 34px rgba(0, 0, 0, 0.15);
    padding: 8px;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 4px;
    overflow: hidden;
}

.mockup-header {
    height: 40px;
    background: linear-gradient(90deg, #E7344E 0%, #B92A3E 100%);
    border-radius: 4px 4px 0 0;
}

.mockup-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-line {
    height: 12px;
    background: #E0E0E0;
    border-radius: 6px;
    width: 100%;
}

.mockup-line.short {
    width: 60%;
}

.mockup-line.medium {
    width: 80%;
}

/* Desktop Mockup 2 */
.mockup-desktop-2 {
    position: absolute;
    left: 0;
    top: 32px;
    width: 348px;
    height: 348px;
    z-index: 2;
}

.mockup-desktop-2 .mockup-frame {
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    border-radius: 7px;
    box-shadow: 0px 3px 34px rgba(0, 0, 0, 0.15);
    padding: 8px;
}

.mockup-card {
    height: 60px;
    background: #F7F2EC;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Mobile Mockup */
.mockup-mobile {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 178px;
    height: 365px;
    z-index: 4;
}

.mockup-phone {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 29px;
    box-shadow: 0px 3px 34px rgba(0, 0, 0, 0.25);
    padding: 10px;
    position: relative;
}

.mockup-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 0 0 10px 10px;
    z-index: 10;
}

.mockup-screen-mobile {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.mockup-header-mobile {
    height: 50px;
    background: linear-gradient(90deg, #E7344E 0%, #B92A3E 100%);
}

.mockup-content-mobile {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-item {
    height: 50px;
    background: #F7F2EC;
    border-radius: 8px;
}

/* Z�kazn�ci */
.customers {
    padding: 40px 0;
    text-align: center;
}

.customers h2 {
    margin-bottom: 40px;
}

.customers-logos {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 20px;
}

.customer-logo {
    width: 187px;
    padding: 10px;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    color: #1E1E1E;
}

.link-underline {
    text-decoration: underline;
    font-size: 16px;
    line-height: 1.4;
}

/* P?�padovky / Testimonials */
.testimonials {
    padding: 40px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    height: 465px;
}

.testimonial-card {
    background: var(--bg-beige);
    border-radius: 24px;
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.5;
    color: #1F302B;
    margin-bottom: 20px;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 16px;
    line-height: 1.4;
    color: #1F302B;
}

.info-title,
.info-highlight {
    font-weight: 700;
}

/* O firm? / About */
.about {
    padding: 40px 0;
}

.about-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    mix-blend-mode: multiply;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
}

.about-content h2 {
    margin-bottom: 0;
}

.about-content p {
    font-size: 16px;
    line-height: 1.4;
}

/* V�hody / Benefits */
.benefits {
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 140px 140px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-icon {
    width: 51px;
    height: 38px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-item h3 {
    font-size: 24px;
    color: var(--brand-primary);
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.3;
}

/* Additional Info (Automaty & Certifikace) */
.additional-info {
    padding: 40px 0;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.info-card {
    border-radius: 10px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 150px;
}

.info-automaty {
    background: var(--brand-blue);
    color: var(--white);
}

.info-certifikace {
    background: var(--bg-beige);
    color: var(--brand-secondary);
    height: 150px;
    padding: 20px 40px;
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-content h3 {
    font-size: 24px;
    line-height: 1;
}

.info-content p {
    font-size: 16px;
    line-height: 1.4;
}

.info-content a {
    text-decoration: underline;
}

.info-image img {
    width: 241px;
    height: 210px;
    object-fit: contain;
}

.info-certificates {
    display: flex;
    gap: 13px;
    align-items: flex-end;
}

.info-certificates img {
    width: 116px;
    height: 164px;
    object-fit: cover;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--brand-primary);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url('WebTemplate/images/LogoBackground.png');
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-column:first-child {
    width: 230px;
}

.footer-logo svg {
    width: 110px;
    height: auto;
    display: block;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
    line-height: 1.4;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-contact-item img {
    width: 25px;
    height: 21px;
}

.footer-small {
    font-size: 12px;
    line-height: 1;
}

.footer-column h4 {
    font-size: 24px;
    line-height: 1;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-nav a {
    font-size: 16px;
    font-weight: 700;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-orders {
    width: 450px;
}

.footer-order-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-order-card {
    background: var(--dark-red);
    border-radius: 10px;
    padding: 20px;
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: none;
    color: var(--white);
}

.footer-order-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.footer-order-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
    line-height: 1.4;
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 12px;
    line-height: 1;
    opacity: 0.75;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    flex: 1;
}

.footer-bottom p:last-child {
    text-align: right;
}

.footer-bottom a {
    text-decoration: underline;
}

/* Mobile Menu (Hidden by default) */
.mobile-menu-button {
    display: none;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 80px 20px 20px 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none;
    }
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.mobile-nav a:hover {
    color: var(--brand-primary);
}

.mobile-nav-divider {
    height: 1px;
    background: var(--bg-gray);
    margin: 10px 0;
}

.mobile-nav-account {
    color: var(--brand-primary) !important;
}

/* Blazor specific styles */
h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

/* Form Styles */
.form-page {
    padding: 60px 0;
    background: var(--bg-beige);
    min-height: calc(100vh - 200px);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
}

.form-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-label-required::after {
    content: ' *';
    color: var(--brand-primary);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background: var(--white);
    border: 1px solid #D0D0D0;
    border-radius: 8px;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(231, 52, 78, 0.1);
}

.form-input::placeholder {
    color: #A0A0A0;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-hint {
    font-size: 14px;
    color: #6B6B6B;
    margin-top: 4px;
    display: block;
}

.form-alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-alert-error {
    background: #FEE;
    border: 1px solid #FCC;
    color: #C00;
}

.form-alert-success {
    background: #EFE;
    border: 1px solid #CFC;
    color: #060;
}

.form-alert-icon {
    flex-shrink: 0;
    font-size: 20px;
}

.form-alert-content {
    flex: 1;
}

.form-alert-content strong {
    display: block;
    margin-bottom: 4px;
}

.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.form-divider {
    border: 0;
    border-top: 1px solid #E0E0E0;
    margin: 30px 0;
}

.form-footer {
    text-align: center;
    font-size: 16px;
    color: var(--text-primary);
}

.form-footer a {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

.btn-full-width {
    width: 100%;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* RESPONSIVE FORM STYLES - INSERT BEFORE END OF @media (max-width: 768px) */

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1zbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "Do�lo k chyb?."
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header Mobile */
    .header {
        padding: 20px 0 0;
    }

    .header-wrapper {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 10px;
        align-items: center;
    }

    .logo {
        grid-column: 1;
    }

    .logo svg {
        width: 80px;
        height: auto;
    }

    .nav {
        display: none;
    }

    .mobile-menu-button {
        grid-column: 2;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        background: transparent;
        border: 1px solid var(--brand-primary);
        border-radius: 10px;
        color: var(--brand-primary);
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        white-space: nowrap;
    }

    .mobile-menu-button svg {
        width: 20px;
        height: 20px;
    }

    .cart-button {
        grid-column: 3;
        height: auto;
        padding: 8px 12px;
        gap: 8px;
    }

    .cart-button svg {
        width: 18px;
        height: 18px;
    }

    .cart-info {
        font-size: 13px;
    }

    .cart-count {
        font-size: 14px;
    }

    /* Hero Mobile */
    .hero {
        padding: 20px 0;
    }

    .hero-content {
        flex-direction: column;
    }

    h1 {
        font-size: 42px;
    }

    .checklist-item span {
        font-size: 16px;
    }

    /* Categories Mobile */
    .categories-grid {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 10px;
        gap: 10px;
    }

    .category-card {
        display: inline-block;
        width: 285px;
        margin-right: 10px;
        white-space: normal;
        scroll-snap-align: start;
    }

    /* Ordering System Mobile */
    .ordering-wrapper {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }

    .ordering-content h2 {
        font-size: 24px;
    }

    .ordering-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .ordering-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .ordering-mockup {
        display: none;
    }

    /* Customers Mobile */
    .customers-logos {
        flex-wrap: wrap;
        gap: 25px;
    }

    .customer-logo {
        width: 129px;
        font-size: 21px;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        height: auto;
        padding: 10px;
    }

    .testimonial-card {
        display: inline-block;
        width: 280px;
        margin-right: 10px;
        white-space: normal;
        vertical-align: top;
    }

    .testimonial-text {
        font-size: 16px;
    }

    /* About Mobile */
    .about-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .about-content {
        padding: 20px;
    }

    /* Benefits Mobile */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefit-item h3 {
        font-size: 18px;
    }

    .benefit-item p {
        font-size: 12px;
    }

    /* Footer Mobile */
    .footer {
        padding: 30px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-column {
        width: 100% !important;
    }

    .footer-orders {
        width: 100%;
    }

    .footer-order-cards {
        flex-direction: column;
    }

    .footer-order-card {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        font-size: 10px;
    }

    .footer-bottom p:last-child {
        text-align: left;
    }

    /* Info Cards Mobile */
    .info-card {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 20px;
    }

    .info-automaty {
        padding-bottom: 0;
    }

    .info-image img {
        width: 100%;
        height: auto;
    }

    .info-certificates {
        width: 100%;
        justify-content: space-between;
    }

    .info-certificates img {
        width: 30%;
        height: auto;
    }

    /* Form Responsive */
    .form-page {
        padding: 30px 0;
    }

    .form-container {
        padding: 30px 20px;
    }

}

/* ========================================
   TEPLÁ JÍDLA PAGE STYLES
   ======================================== */

/* Hero Section */
.tepla-hero {
    padding: 40px 0 80px;
}

.tepla-hero-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.tepla-hero-text {
    flex: 1;
}

    .tepla-hero-text h1 {
        font-size: 50px;
        font-weight: 900;
        color: var(--brand-primary);
        line-height: 1;
        margin: 0;
    }

.tepla-hero-checklist {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-icon-green {
    flex-shrink: 0;
}

/* Menu Select Section */
.tepla-menu-select {
    padding: 0 0 40px;
}

    .tepla-menu-select h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 20px;
    }

.menu-weeks {
    display: flex;
    gap: 30px;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.week-badge {
    border: 2px solid #15AA13;
    background: rgba(0, 255, 103, 0.15);
    border-radius: 17px;
    padding: 8px;
    flex-shrink: 0;
}

.week-badge-inner {
    background: var(--brand-primary);
    border-radius: 10px;
    padding: 12px 60px;
    text-align: center;
}

.week-label {
    color: white;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.week-status {
    color: #15AA13;
    font-size: 16px;
    font-weight: 700;
    margin-top: 6px;
}

.menu-info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #E2F5FF;
    padding: 20px;
    border-radius: 10px;
    flex-shrink: 0;
}

    .menu-info-box svg {
        flex-shrink: 0;
    }

    .menu-info-box p {
        font-size: 16px;
        line-height: 1.4;
        color: #005E8D;
        margin: 0;
    }

.week-link {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: underline;
}

    .week-link:hover {
        color: var(--brand-primary);
    }

/* Pricing Section */
.tepla-pricing {
    padding: 40px 0;
}

.pricing-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.pricing-column {
    flex: 1;
}

    .pricing-column h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 30px;
        text-align: center;
    }

.price-table {
    border: 1px solid #B8B4AD;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr 80px 80px 80px;
    gap: 20px;
    align-items: center;
}

    .price-row:not(:last-child) {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .price-row.header {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

.price-label {
    font-size: 16px;
    line-height: 1.4;
}

.price-value {
    font-size: 16px;
    text-align: right;
    line-height: 1.4;
}

    .price-value.green {
        color: #15AA13;
    }

.pricing-notes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.note-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

    .note-item svg {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .note-item p {
        font-size: 16px;
        line-height: 1.4;
        margin: 0;
    }

/* How It Works Section */
.how-it-works {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: var(--bg-beige);
    padding: 40px;
    border-radius: 10px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

    .step-number .number {
        font-size: 24px;
        font-weight: 700;
        color: var(--brand-primary);
    }

.step-arrow {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-primary);
    height: 23px;
}

.arrow-diagonal {
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

    .step-content h3 {
        font-size: 24px;
        font-weight: 700;
        color: var(--brand-primary);
        margin-bottom: 10px;
    }

    .step-content p {
        font-size: 14px;
        line-height: 1.3;
        margin: 0;
    }

/* Included Section */
.tepla-included {
    padding: 80px 0;
    background: var(--bg-beige);
}

    .tepla-included h2 {
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 40px;
    }

.included-grid {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.included-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 0 1 auto;
    min-width: 180px;
    max-width: 220px;
}

    .included-item svg {
        margin-bottom: 10px;
        height: 38px;
        width: auto;
    }

    .included-item h3 {
        font-size: 24px;
        font-weight: 700;
        color: var(--brand-primary);
        text-align: center;
        line-height: 1.2;
    }

    .included-item p {
        font-size: 14px;
        line-height: 1.3;
        text-align: center;
        margin: 0;
    }

.plus-sign {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-primary);
    padding-top: 0;
    flex-shrink: 0;
    align-self: center;
}

/* Guarantee Section */
.tepla-guarantee {
    padding: 40px 0;
}

.guarantee-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.guarantee-image {
    flex: 1;
}

    .guarantee-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        mix-blend-mode: multiply;
    }

.guarantee-content {
    flex: 1;
    padding: 40px;
}

    .guarantee-content h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .guarantee-content p {
        font-size: 16px;
        line-height: 1.4;
        margin: 0;
    }

/* Gallery Section */
.tepla-gallery {
    padding: 40px 0;
}

    .tepla-gallery h2 {
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 20px;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.gallery-item {
    aspect-ratio: 575/370;
    overflow: hidden;
    border-radius: 10px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        mix-blend-mode: multiply;
    }

/* Vending Machine Card */
.vending-machine-card {
    background: var(--brand-secondary);
    color: white;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.vending-content {
    flex: 1;
}

    .vending-content h2 {
        color: white;
        margin-bottom: 10px;
        font-size: 24px;
        font-weight: 700;
    }

    .vending-content p {
        color: white;
        font-size: 16px;
        line-height: 1.4;
    }

.vending-image {
    width: 241px;
    height: 210px;
    flex-shrink: 0;
}

    .vending-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

/* Additional Info Section - padding top pro odsazení */
.additional-info {
    padding-top: 80px;
}

/* Certification Section pro Tepla Jidla */
.tepla-certification {
    padding: 80px 0 0;
}

/* Mobile Responsive - Teplá jídla */
@media (max-width: 768px) {
    .tepla-hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .tepla-hero-text h1 {
        font-size: 36px;
    }

    .menu-weeks {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .price-row {
        grid-template-columns: 1fr 70px 70px 70px;
        gap: 10px;
    }

    .included-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .included-item {
        min-width: 150px;
        max-width: 180px;
    }

    .plus-sign {
        display: none;
    }

    .guarantee-wrapper {
        flex-direction: column;
    }

    .guarantee-content {
        padding: 20px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========================================
   O NÁS PAGE STYLES
   ======================================== */

.onas-hero-section {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    align-items: flex-start;
}

.onas-hero-left {
    flex: 0 0 560px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

    .onas-hero-left h1 {
        font-size: 50px;
        font-weight: 900;
        line-height: 1.1;
        color: var(--brand-primary);
        margin: 0;
    }

    .onas-hero-left p {
        font-size: 20px;
        line-height: 1.5;
        color: var(--text-color);
        margin: 0;
    }

.onas-hero-placeholder {
    flex: 1;
    min-height: 281px;
    background: #bebebe;
    border-radius: 10px;
}

.onas-section-hero {
    padding: 60px 0 0 0;
}

.onas-section {
    padding: 40px 0;
}

.onas-certificates-wrapper {
    max-width: 1200px;
}

.onas-text-section {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.onas-text-column {
    flex: 1;
}

    .onas-text-column p {
        font-size: 16px;
        line-height: 1.6;
        color: var(--text-color);
        margin: 0;
    }

        .onas-text-column p + p {
            margin-top: 16px;
        }

.onas-certificates-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.onas-certificates-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .onas-certificates-column h2 {
        font-size: 30px;
        font-weight: 700;
        line-height: 1.2;
        color: var(--text-color);
        text-align: center;
        margin: 0 0 10px 0;
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.onas-certificate-box {
    background: #e2f5ff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
}

    .onas-certificate-box svg {
        flex-shrink: 0;
    }

    .onas-certificate-box p {
        font-size: 16px;
        line-height: 1.5;
        color: #005E8D;
        margin: 0;
    }

.onas-certificate-button {
    background: #005E8D;
    border: none;
    color: white;
    padding: 12px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

    .onas-certificate-button:hover {
        background: #004570;
    }

.onas-employees-section {
    background: #EBF6FD;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
}

    .onas-employees-section h2 {
        font-size: 30px;
        font-weight: 700;
        color: var(--text-color);
        margin: 0 0 10px 0;
    }

    .onas-employees-section p {
        font-size: 50px;
        font-weight: 900;
        color: var(--brand-primary);
        margin: 0;
    }

.onas-customers-section {
    text-align: center;
}

    .onas-customers-section h2 {
        font-size: 30px;
        font-weight: 700;
        color: var(--text-color);
        margin-bottom: 40px;
    }

.onas-customers-logos {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

    .onas-customers-logos > div {
        width: 187px;
        height: 120px;
        background: #F0F0F0;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        font-weight: 700;
        color: #1E1E1E;
    }

        .onas-customers-logos > div > p {
            font-size: 30px;
            font-weight: 700;
            color: #1E1E1E;
            margin: 0;
        }

.onas-customers-link {
    color: var(--text-color);
    text-decoration: underline;
    font-size: 16px;
}

.onas-gallery-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 20px;
}

.onas-features-section {
    padding: 60px 0;
}

.onas-features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.onas-features-row {
    display: flex;
    gap: 140px;
}

.onas-feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.onas-feature-icon {
    width: 51px;
    height: 38px;
}

.onas-feature-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0;
}

.onas-feature-item p {
    font-size: 14px;
    line-height: 1.3;
    color: var(--text-color);
    margin: 0;
}

/* Mobile Responsive - O nás */
@media (max-width: 768px) {
    .container {
        padding: 0 15px !important;
        max-width: 100vw !important;
    }

    .onas-hero-section {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .onas-hero-left {
        flex: 1 !important;
        max-width: 100% !important;
    }

        .onas-hero-left h1 {
            font-size: 36px !important;
        }

        .onas-hero-left p {
            font-size: 18px !important;
        }

    .onas-text-section {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .onas-certificates-container {
        flex-direction: column !important;
        gap: 40px !important;
    }

    .onas-certificates-column h2 {
        font-size: 24px !important;
        min-height: auto !important;
    }

    .onas-customers-logos {
        flex-wrap: wrap !important;
        gap: 20px !important;
        justify-content: center !important;
    }

        .onas-customers-logos > div {
            width: calc(50% - 10px) !important;
            min-width: 140px !important;
            max-width: 180px !important;
        }

    .onas-features-row {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .onas-feature-item h3 {
        font-size: 20px !important;
    }
}

/* ========================================
   KONTAKT PAGE STYLES
   ======================================== */

.kontakt-hero {
    padding: 40px 0;
}

.kontakt-info-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
}

.kontakt-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.kontakt-columns {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.kontakt-company-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .kontakt-company-info p {
        font-size: 16px;
        line-height: 1.4;
        color: var(--text-color);
    }

.kontakt-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.kontakt-contact-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

    .kontakt-contact-item svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin-top: -1px;
    }

    .kontakt-contact-item p {
        font-size: 16px;
        line-height: 1.5;
        color: var(--text-color);
    }

.kontakt-hours {
    width: 230px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .kontakt-hours h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-color);
        margin: 0;
    }

.kontakt-hours-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

    .kontakt-hours-content p {
        margin: 0;
    }

.kontakt-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-color);
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0.8;
}

    .kontakt-legal p {
        margin: 0;
    }

.kontakt-map {
    flex: 1;
    min-width: 0;
    height: 391px;
    background: #d9d9d9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .kontakt-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 10px;
    }

.kontakt-orders-section {
    padding: 60px 0 40px 0;
}

.kontakt-orders-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
}

.kontakt-orders-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.kontakt-order-card {
    width: 220px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    background: var(--dark-red);
    border-radius: 10px;
    padding: 24px 20px;
}

    .kontakt-order-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: white;
        line-height: 1.3;
        margin: 0 0 16px 0;
        min-height: 48px;
        display: flex;
        align-items: flex-start;
    }

.kontakt-order-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

    .kontakt-order-contact p {
        font-size: 16px;
        line-height: 1.5;
        color: white;
        word-break: break-word;
        margin: 0;
    }

.kontakt-form-section {
    background: var(--brand-secondary);
    padding: 80px;
    border-radius: 10px;
    margin: 40px 0;
}

.kontakt-form-title {
    font-size: 30px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.kontakt-form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.kontakt-form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontakt-form-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.kontakt-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kontakt-form-label {
    font-size: 16px;
    line-height: 1.4;
    color: white;
}

.kontakt-form-input {
    height: 48px;
    background: rgba(255, 255, 255, 0.75);
    border: none;
    border-radius: 10px;
    padding: 0 15px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.kontakt-form-textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.75);
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    resize: none;
    min-height: 200px;
}

.kontakt-form-note {
    font-size: 12px;
    line-height: 1.4;
    color: white;
    opacity: 0.5;
}

.kontakt-form-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

    .kontakt-form-consent input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .kontakt-form-consent label {
        font-size: 12px;
        line-height: 1.4;
        color: white;
        opacity: 0.5;
    }

    .kontakt-form-consent a {
        color: white;
        text-decoration: underline;
    }

.kontakt-form-submit {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.kontakt-submit-button {
    border: 1px solid white;
    background: transparent;
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding: 11px 45px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .kontakt-submit-button:hover {
        background: white;
        color: var(--brand-secondary);
    }

.kontakt-link-underlined {
    text-decoration: underline;
}

/* Mobile Responsive - Kontakt */
@media (max-width: 768px) {
    .kontakt-info-wrapper {
        flex-direction: column;
    }

    .kontakt-columns {
        flex-direction: column;
    }

    .kontakt-hours {
        width: 100%;
    }

    .kontakt-map {
        height: 300px;
    }

    .kontakt-orders-grid {
        flex-direction: column;
    }

    .kontakt-order-card {
        width: 100%;
    }

    .kontakt-form-section {
        padding: 40px 20px;
    }

    .kontakt-form-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .kontakt-form-textarea {
        min-height: 150px;
    }
}

/* ========================================
   KOŠÍK PAGE STYLES
   ======================================== */

.kosik-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.kosik-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

    .kosik-breadcrumb a {
        color: var(--text-primary);
        text-decoration: none;
    }

        .kosik-breadcrumb a:hover {
            text-decoration: underline;
        }

.kosik-breadcrumb-separator {
    color: var(--text-primary);
}

.kosik-breadcrumb-current {
    color: var(--text-primary);
    font-weight: 500;
}

.kosik-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 40px;
}

.kosik-date-section {
    background: var(--bg-beige);
    border-radius: 10px 10px 10px 0;
    padding: 24px 30px;
    margin-bottom: 30px;
}

.kosik-date-header {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.kosik-table-header {
    display: grid;
    grid-template-columns: 70px 1fr 19px 100px 48px;
    gap: 30px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(166, 148, 122, 0.3);
    margin-bottom: 12px;
}

.kosik-col-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.kosik-col-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

.kosik-col-allergen {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    width: 19px;
}

.kosik-col-quantity {
    font-size: 14px;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
}

.kosik-col-delete {
    width: 48px;
}

.kosik-item-row {
    display: grid;
    grid-template-columns: 70px 1fr 19px 100px 48px;
    gap: 30px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(166, 148, 122, 0.3);
}

    .kosik-item-row .kosik-col-number {
        font-size: 14px;
        font-weight: 400;
        color: var(--text-primary);
        line-height: 1.3;
    }

    .kosik-item-row .kosik-col-name {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

.kosik-item-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

.kosik-item-desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.3;
}

.kosik-item-row .kosik-col-allergen {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

.kosik-quantity-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: white;
    border: 1px solid #b8b4ad;
    border-radius: 10px;
    height: 48px;
    padding: 0 15px;
}

.kosik-qty-btn {
    background: transparent;
    border: none;
    color: #a6947a;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
    padding: 0;
    width: 20px;
    text-align: center;
}

    .kosik-qty-btn:hover {
        color: var(--text-primary);
    }

.kosik-qty-value {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.4;
    min-width: 30px;
    text-align: center;
}

.kosik-delete-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid #a6947a;
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
}

    .kosik-delete-btn svg {
        width: 22px;
        height: 24px;
        color: #a6947a;
    }

    .kosik-delete-btn:hover {
        background: rgba(166, 148, 122, 0.1);
    }

.kosik-date-total {
    display: flex;
    justify-content: flex-end;
    padding: 12px 4px;
    margin-top: 4px;
}

.kosik-date-total {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.4;
}

.kosik-summary {
    background: var(--bg-beige);
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kosik-summary-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Dialog overlay and content */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.dialog-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.dialog-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.25rem;
    color: var(--text-primary, #1a1a1a);
}

.dialog-content p {
    margin: 0 0 25px 0;
    color: var(--text-secondary, #666);
    line-height: 1.5;
}

.dialog-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.kosik-print-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
    text-decoration: underline;
    font-size: 16px;
    cursor: pointer;
}

    .kosik-print-link svg {
        width: 22px;
        height: 22px;
        color: var(--text-primary);
    }

    .kosik-print-link:hover {
        text-decoration: none;
    }

.kosik-total-count {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-primary);
}

    .kosik-total-count strong {
        font-weight: 700;
    }

.kosik-summary-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kosik-actions-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.kosik-btn-secondary {
    background: transparent;
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    padding: 11px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    height: 48px;
    white-space: nowrap;
}

    .kosik-btn-secondary:hover {
        background: var(--brand-primary);
        color: white;
    }

.kosik-btn-dark {
    background: var(--brand-secondary);
    border: none;
    color: white;
    padding: 11px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    height: 48px;
    white-space: nowrap;
}

    .kosik-btn-dark:hover {
        background: #0B3A58;
    }

.kosik-btn-primary {
    background: var(--brand-primary);
    border: none;
    color: white;
    padding: 11px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    height: 48px;
    white-space: nowrap;
}

    .kosik-btn-primary:hover {
        background: var(--dark-red);
    }

/* Mobile responsiveness */
@media (max-width: 768px) {
    .kosik-container {
        padding: 20px 15px 40px;
    }

    .kosik-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .kosik-date-section {
        padding: 20px 15px;
    }

    .kosik-table-header {
        display: none;
    }

    .kosik-item-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 0;
    }

    .kosik-col-number {
        font-weight: 700;
    }

    .kosik-col-name {
        order: -1;
    }

    .kosik-col-quantity {
        justify-self: start;
    }

    .kosik-col-delete {
        justify-self: end;
    }

    .kosik-summary {
        padding: 20px;
    }

    .kosik-summary-top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .kosik-summary-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .kosik-actions-right {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .kosik-btn-secondary,
    .kosik-btn-dark,
    .kosik-btn-primary {
        width: 100%;
        padding: 11px 20px;
    }
}

.kosik-date-total {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: rgba(11, 58, 88, 0.1);
    border-radius: 10px;
    margin-top: 20px;
    font-size: 18px;
    color: var(--brand-secondary);
}

.kosik-channel-section {
    margin-bottom: 50px;
}

.kosik-channel-header {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-secondary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--brand-secondary);
}

.kosik-channel-total {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: rgba(11, 58, 88, 0.1);
    border-radius: 10px;
    margin-top: 20px;
    font-size: 18px;
    color: var(--brand-secondary);
}

.kosik-channel-total strong {
    font-weight: 700;
}

/* Košík - Empty and Loading states */
.kosik-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    gap: 20px;
}

.kosik-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--bg-gray);
    border-top-color: var(--brand-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.kosik-loading p {
    font-size: 16px;
    color: var(--text-primary);
}

.kosik-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    gap: 20px;
}

.kosik-empty svg {
    color: #a6947a;
}

.kosik-empty h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.kosik-empty p {
    font-size: 16px;
    color: var(--text-primary);
    opacity: 0.7;
}

.kosik-empty .btn {
    margin-top: 10px;
}

/* Košík - Fixed quantity for soups */
.kosik-qty-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-primary);
    height: 48px;
}

/* Košík - Disabled buttons */
.kosik-qty-btn:disabled,
.kosik-delete-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .kosik-channel-header {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .kosik-channel-total {
        padding: 15px;
        font-size: 16px;
    }
}

/* ========================================
   MENU ORDER PAGE STYLES
   ======================================== */

.menu-warning-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFF8DC;
    border: 1px solid #B8860B;
    padding: 15px 20px;
    border-radius: 10px;
}

.menu-warning-box span {
    font-size: 16px;
    line-height: 1.4;
    color: #8B6914;
}

.menu-warning-box a {
    color: #8B6914;
    font-weight: 700;
    text-decoration: underline;
}

.menu-warning-box a:hover {
    text-decoration: none;
}

.menu-loading,
.menu-error {
    padding: 40px;
    text-align: center;
    font-size: 16px;
    color: var(--text-primary);
}

.menu-error {
    color: var(--brand-primary);
}

.menu-actions-top {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.menu-action-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
    font-size: 14px;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.menu-action-link:hover {
    opacity: 1;
}

.menu-action-link i {
    font-size: 16px;
}

.menu-table-header {
    grid-template-columns: 70px 60px 1fr 40px 120px;
}

.menu-item-row {
    grid-template-columns: 70px 60px 1fr 40px 120px;
}

.menu-col-weight {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.3;
}

.menu-item-note {
    font-size: 12px;
    color: #15AA13;
    font-weight: 600;
    margin-top: 4px;
}

.menu-item-soup {
    background: rgba(21, 170, 19, 0.05);
}

.menu-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.menu-tag-healthy {
    background: #E8F5E9;
    color: #15AA13;
}

.menu-tag-premium {
    background: #FFF3E0;
    color: #E65100;
}

.menu-info-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid #a6947a;
    border-radius: 50%;
    cursor: pointer;
    color: #a6947a;
    font-size: 16px;
}

.menu-info-btn:hover {
    background: rgba(166, 148, 122, 0.1);
}

.menu-legend {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 14px;
    color: var(--text-primary);
    opacity: 0.7;
    flex-wrap: wrap;
}

.menu-legend span {
    white-space: nowrap;
}

/* Mobile responsiveness for menu order page */
@media (max-width: 768px) {
    .menu-actions-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .menu-table-header {
        display: none;
    }

    .menu-item-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .menu-col-weight {
        order: 1;
    }

    .menu-legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========================================
   FROZEN MEALS ORDER PAGE STYLES
   ======================================== */

.frozen-category-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.frozen-category-link {
    font-size: 16px;
    color: var(--text-primary);
    text-decoration: underline;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
}

.frozen-category-link:hover {
    opacity: 1;
    color: var(--brand-primary);
}

.frozen-table-header {
    display: grid;
    grid-template-columns: 80px 1fr 100px 120px;
    gap: 20px;
    align-items: center;
}

.frozen-item-row {
    display: grid;
    grid-template-columns: 80px 1fr 100px 120px;
    gap: 20px;
    align-items: center;
}

.kosik-col-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: right;
}

@media (max-width: 768px) {
    .frozen-category-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .frozen-table-header {
        display: none;
    }

    .frozen-item-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .frozen-item-row .kosik-col-price {
        text-align: left;
    }

    .frozen-item-row .kosik-col-quantity {
        justify-self: start;
    }
}
