/* Centered register form styles */

.register-outer {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.form-container {
    background: #fff8e1;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(255, 152, 0, 0.13), 0 1.5px 6px rgba(0, 0, 0, 0.07);
    padding: 40px 32px 32px 32px;
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 32px 0;
}

.form-container h2 {
    color: #ff9800;
    margin-bottom: 24px;
    font-size: 1.6em;
    letter-spacing: 0.01em;
}

.form-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="password"] {
    padding: 12px 14px;
    border: 1.5px solid #ffe0b2;
    border-radius: 8px;
    font-size: 1em;
    margin-bottom: 0;
    background: #fff;
    transition: border 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-container input:focus {
    border: 1.5px solid #ff9800;
    box-shadow: 0 2px 8px #ffe0b2;
}

.form-container button[type="submit"] {
    padding: 12px 0;
    background: linear-gradient(45deg, #ff9800, #f57c00);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 2px 8px #ffe0b2;
}

.form-container button[type="submit"]:hover {
    background: linear-gradient(45deg, #f57c00, #e65100);
    transform: scale(1.04);
}

.form-container p {
    margin-top: 18px;
    font-size: 1em;
    color: #666;
}

.form-container a {
    color: #ff9800;
    text-decoration: underline;
    transition: color 0.2s;
}

.form-container a:hover {
    color: #f57c00;
}


/* Footer styles */

.footer {
    background: linear-gradient(90deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 36px 0 18px 0;
    margin-top: 48px;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -4px 32px rgba(255, 152, 0, 0.10);
    font-size: 1.08em;
    border-top: 2px solid #ffecb3;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 32px;
    padding: 0 32px;
    position: relative;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-start;
    font-weight: 500;
    font-size: 1.08em;
}

.footer-icon {
    width: 32px;
    height: 32px;
    filter: grayscale(0.2) brightness(0.8) drop-shadow(0 2px 4px #ffecb3);
    transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
    vertical-align: middle;
    border-radius: 50%;
    background: #fff3e0;
    padding: 4px;
}

.footer-icon:hover {
    transform: scale(1.18) rotate(-8deg);
    filter: none;
    box-shadow: 0 4px 16px #ff9800a0;
    background: #fffde7;
}

.footer-location {
    font-size: 1.05em;
    color: #f57c00;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.footer-location address {
    font-style: normal;
    color: #333;
    margin-left: 6px;
    font-size: 0.98em;
    font-weight: 400;
}

.footer-copy {
    color: #bdbdbd;
    font-size: 0.97em;
    margin-top: 18px;
    grid-column: 1 / 4;
    text-align: center;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .footer-copy {
        grid-column: 1 / 3;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 10px;
    }
    .footer-copy {
        grid-column: 1 / 2;
    }
    .footer {
        padding: 24px 0 10px 0;
        border-radius: 16px 16px 0 0;
        font-size: 0.98em;
    }
}


/* Available items layout and effects */

.available-items-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    width: 100%;
}

.items-category {
    width: 220px;
    min-height: 220px;
    background: #fff8e1;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(255, 152, 0, 0.13), 0 1.5px 6px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    padding: 20px 10px 24px 10px;
    transition: transform 0.35s cubic-bezier(.25, .8, .25, 1), box-shadow 0.35s;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.7s forwards;
}

.items-category:hover {
    transform: scale(1.06) translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 152, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
    z-index: 2;
}

.items-category h3 {
    color: #f57c00;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s cubic-bezier(.25, .8, .25, 1), box-shadow 0.4s;
    cursor: pointer;
}

.item img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.4s, transform 0.4s;
}

.item:hover img {
    transform: scale(1.12) rotate(-2deg);
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.18);
}

.item span {
    font-size: 1em;
    color: #333;
    font-weight: 500;
}


/* Animations and transitions for available items */

.items-category {
    margin: 30px 0;
    padding: 20px;
    background: #fff8e1;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.7s forwards;
}

.items-category h3 {
    color: #f57c00;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s cubic-bezier(.25, .8, .25, 1), box-shadow 0.4s;
    cursor: pointer;
}

.item img {
    width: 110px;
    height: 110px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.4s, transform 0.4s;
}

.zoom-on-hover:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.18);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.7s forwards;
}


/* Reset basic styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #ffe5b4 100%);
    margin: 0;
    padding: 20px;
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ff9800;
}

.menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.burger-item {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.burger-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.burger-item img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.4s, transform 0.4s;
}

.burger-item:hover img {
    transform: scale(1.12) rotate(-2deg);
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.18);
}

.burger-item h3 {
    margin: 10px 0;
    font-size: 1.1em;
    color: #333;
}

.burger-item p {
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 15px;
}

.burger-item button {
    padding: 10px 16px;
    background: linear-gradient(45deg, #ff9800, #f57c00);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9em;
    transition: background 0.3s ease, transform 0.2s ease;
}

.burger-item button:hover {
    background: linear-gradient(45deg, #f57c00, #e65100);
    transform: scale(1.05);
}

.burger-item button:focus {
    outline: 2px solid #ff9800;
    outline-offset: 2px;
}

#cart-list {
    list-style: none;
    padding: 15px;
    border: 1px solid #ddd;
    margin: 20px 0;
    border-radius: 8px;
    background: #fffaf0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

#cart-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95em;
}

.total {
    font-size: 1.3em;
    text-align: right;
    margin-top: 15px;
    font-weight: bold;
    color: #333;
}

.order-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #4caf50, #388e3c);
    color: white;
    border: none;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.order-btn:hover {
    background: linear-gradient(45deg, #388e3c, #2e7d32);
    transform: scale(1.02);
}

.order-btn:focus {
    outline: 2px solid #4caf50;
    outline-offset: 2px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(45deg, #fff8e1, #ffecb3);
    padding: 15px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border-radius: 12px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4em;
    font-weight: bold;
    color: #ff9800;
}

.navbar-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar-links a {
    color: #ff9800;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.navbar-links a:hover {
    color: #e65100;
    text-decoration: underline;
}

.navbar-links a:focus {
    outline: 2px solid #ff9800;
    outline-offset: 2px;
    border-radius: 4px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #fff8e1;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 8px;
    margin-top: 8px;
}

.dropdown-content a {
    color: #ff9800;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: #ffe0b2;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.menu-section {
    margin-bottom: 40px;
}

.menu-section h2 {
    color: #ff9800;
    margin-bottom: 20px;
    text-align: left;
    font-size: 1.5em;
}


/* Responsive Design */

@media (max-width: 768px) {
    .menu {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .burger-item {
        padding: 15px;
    }
    .navbar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .navbar-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .app-container {
        padding: 20px;
    }
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    .app-container {
        padding: 15px;
    }
    .burger-item button {
        padding: 8px 12px;
        font-size: 0.8em;
    }
    .navbar-logo {
        font-size: 1.2em;
    }
    .navbar-links {
        gap: 10px;
    }
}