/* ============================================================
   365 SHAWARMA - STYLE.CSS
   ============================================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #1a1a1a;
    padding-top: 80px;
    min-height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M30,20 L40,10 L50,20 L40,30 Z' fill='%23F57C00' opacity='0.04'/%3E%3Cpath d='M70,50 L80,40 L90,50 L80,60 Z' fill='%23F57C00' opacity='0.03'/%3E%3Ccircle cx='100' cy='30' r='8' fill='%231a1a1a' opacity='0.03'/%3E%3Ccircle cx='20' cy='90' r='12' fill='%23F57C00' opacity='0.04'/%3E%3Cpath d='M10,40 Q30,20 50,40' stroke='%231a1a1a' stroke-width='1.5' fill='none' opacity='0.04'/%3E%3Cpath d='M70,100 Q90,80 110,100' stroke='%23F57C00' stroke-width='1.5' fill='none' opacity='0.04'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Ccircle cx='40' cy='40' r='15' fill='%23F57C00' opacity='0.03'/%3E%3Crect x='140' y='30' width='20' height='20' fill='%231a1a1a' opacity='0.02' transform='rotate(45 150 40)'/%3E%3Cpath d='M30,160 Q70,130 110,160' stroke='%23F57C00' stroke-width='2' fill='none' opacity='0.03'/%3E%3Cpath d='M130,180 Q160,150 190,180' stroke='%231a1a1a' stroke-width='2' fill='none' opacity='0.03'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M20,40 L30,30 L40,40 L30,50 Z' fill='%23F57C00' opacity='0.04'/%3E%3Cpath d='M50,10 L60,0 L70,10 L60,20 Z' fill='%231a1a1a' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 120px 120px, 200px 200px, 80px 80px;
    background-position: 0 0, 50px 50px, 100px 100px;
    background-repeat: repeat, repeat, repeat;
    background-attachment: fixed;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid #F57C00;
    box-shadow: 0 4px 30px rgba(245, 124, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s;
    padding: 4px 10px 4px 4px;
    border-radius: 40px;
    border: 1px solid transparent;
}

.logo-item:hover {
    background: rgba(245, 124, 0, 0.04);
    border-color: rgba(245, 124, 0, 0.08);
    transform: scale(1.02);
}

.logo-item .logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid #F57C00;
    object-fit: cover;
    background: #fff;
    padding: 2px;
    flex-shrink: 0;
}

.logo-item .logo-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.logo-item .logo-label small {
    font-weight: 400;
    color: #888;
    font-size: 10px;
    display: block;
    margin-top: -1px;
}

.logo-divider {
    width: 1px;
    height: 30px;
    background: rgba(0, 0, 0, 0.08);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F57C00;
    color: #fff;
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 6px 18px rgba(245, 124, 0, 0.2);
}

.header-phone:hover {
    background: #e65100;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245, 124, 0, 0.3);
}

.cart-toggle {
    background: rgba(245, 124, 0, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(245, 124, 0, 0.15);
    position: relative;
}

.cart-toggle:hover {
    background: #e65100;
    transform: scale(1.02);
}

.cart-toggle .cart-count {
    background: #fff;
    color: #F57C00;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* ===== LANGUAGE DROPDOWN ===== */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown .lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.03);
    padding: 8px 14px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: 0.3s;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
}

.lang-dropdown .lang-current:hover {
    border-color: #F57C00;
    color: #F57C00;
}

.lang-dropdown .lang-current .lang-flag {
    font-size: 16px;
}

.lang-dropdown .lang-current .lang-arrow {
    font-size: 12px;
    transition: transform 0.3s;
    color: #aaa;
}

.lang-dropdown .lang-current .lang-arrow.open {
    transform: rotate(180deg);
}

.lang-dropdown .lang-menu {
    position: absolute;
    top: 45px;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 6px 0;
    min-width: 130px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.lang-dropdown .lang-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.lang-dropdown .lang-menu .lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: none;
    background: 0 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    width: 100%;
    text-align: left;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.lang-dropdown .lang-menu .lang-option:hover {
    background: rgba(245, 124, 0, 0.04);
    color: #F57C00;
}

.lang-dropdown .lang-menu .lang-option.active {
    color: #F57C00;
    background: rgba(245, 124, 0, 0.06);
}

.lang-dropdown .lang-menu .lang-option .lang-flag {
    font-size: 16px;
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 90px 25px 20px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.cart-sidebar.open {
    right: 0;
}

.cart-sidebar .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.cart-sidebar .cart-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.cart-sidebar .cart-close {
    background: 0 0;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 6px;
}

.cart-sidebar .cart-close:hover {
    color: #1a1a1a;
    transform: rotate(90deg);
}

.cart-sidebar .cart-items {
    flex: 1 1 auto;
    overflow-y: auto;
    padding-right: 4px;
    margin-bottom: 0;
    min-height: 0;
}

.cart-sidebar .cart-items::-webkit-scrollbar {
    width: 4px;
}

.cart-sidebar .cart-items::-webkit-scrollbar-thumb {
    background: #F57C00;
    border-radius: 4px;
}

.cart-item {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    animation: slideIn 0.3s ease;
    gap: 8px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item .cart-item-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item img {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    object-fit: cover;
    background: #f0ece6;
    flex-shrink: 0;
}

.cart-item .item-info {
    flex: 1;
}

.cart-item .item-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.cart-item .item-info p {
    font-size: 13px;
    color: #888;
}

.cart-item .item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item .item-actions .qty-btn {
    background: rgba(0, 0, 0, 0.04);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #1a1a1a;
}

.cart-item .item-actions .qty-btn:hover {
    background: #F57C00;
    color: #fff;
}

.cart-item .item-actions .qty {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item .item-actions .remove-btn {
    background: 0 0;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    padding: 4px;
}

.cart-item .item-actions .remove-btn:hover {
    color: #e65100;
}

.cart-item-options {
    padding-left: 55px;
    margin-top: 2px;
}

.cart-item-options summary {
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #F57C00;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
    list-style: none;
}

.cart-item-options summary::-webkit-details-marker {
    display: none;
}

.cart-item-options summary::before {
    content: '▶ ';
    font-size: 11px;
    transition: transform 0.3s;
}

.cart-item-options[open] summary::before {
    content: '▼ ';
}

.cart-item-options .options-summary-text {
    color: #888;
    font-weight: 400;
    font-size: 12px;
    margin-left: 4px;
}

.cart-item-options .options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 6px;
}

.cart-item-options .option-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(245, 124, 0, 0.08);
    border: 1px solid rgba(245, 124, 0, 0.12);
    border-radius: 20px;
    padding: 3px 12px 3px 8px;
    font-size: 12px;
    color: #1a1a1a;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
    user-select: none;
}

.cart-item-options .option-tag:hover {
    background: rgba(245, 124, 0, 0.15);
}

.cart-item-options .option-tag .option-qty {
    font-weight: 700;
    color: #F57C00;
    margin-right: 2px;
}

.cart-item-options .option-tag .remove-option {
    background: 0 0;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 12px;
    padding: 0 2px;
    transition: 0.3s;
    line-height: 1;
}

.cart-item-options .option-tag .remove-option:hover {
    color: #e65100;
}

.cart-item-options .add-option-btn {
    background: rgba(0, 0, 0, 0.04);
    border: 1px dashed rgba(0, 0, 0, 0.12);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 12px;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.cart-item-options .add-option-btn:hover {
    background: rgba(245, 124, 0, 0.06);
    border-color: rgba(245, 124, 0, 0.2);
    color: #F57C00;
}

.cart-empty {
    text-align: center;
    padding: 50px 0;
    color: #999;
}

.cart-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    color: #ddd;
}

.cart-empty p {
    font-size: 16px;
}

.cart-footer {
    flex-shrink: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding-bottom: 10px;
    position: sticky;
    bottom: 0;
    width: 100%;
    z-index: 10;
}

.cart-footer .cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cart-footer .cart-total span:last-child {
    color: #F57C00;
}

.cart-footer .checkout-btn {
    width: 100%;
    background: #F57C00;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cart-footer .checkout-btn:hover {
    background: #e65100;
    transform: scale(1.02);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cart-overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* ===== OPTIONS MODAL ===== */
.options-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.options-modal-overlay.active {
    display: flex;
}

.options-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 30px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    animation: modalIn 0.4s ease;
    max-height: 85vh;
    overflow-y: auto;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.options-modal-content .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.options-modal-content .modal-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.options-modal-content .modal-header button {
    background: 0 0;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 6px;
}

.options-modal-content .modal-header button:hover {
    color: #1a1a1a;
    transform: rotate(90deg);
}

.options-modal-content .modal-options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0 20px;
}

.options-modal-content .modal-options-list .option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: 0.3s;
}

.options-modal-content .modal-options-list .option-item:hover {
    background: rgba(245, 124, 0, 0.04);
    border-color: rgba(245, 124, 0, 0.1);
}

.options-modal-content .modal-options-list .option-item label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    flex: 1;
}

.options-modal-content .modal-options-list .option-item label input[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: #F57C00;
    cursor: pointer;
    flex-shrink: 0;
}

.options-modal-content .modal-options-list .option-item .qty-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.options-modal-content .modal-options-list .option-item .qty-controls button {
    background: rgba(0, 0, 0, 0.04);
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #1a1a1a;
}

.options-modal-content .modal-options-list .option-item .qty-controls button:hover {
    background: #F57C00;
    color: #fff;
}

.options-modal-content .modal-options-list .option-item .qty-controls button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.04);
    color: #999;
}

.options-modal-content .modal-options-list .option-item .qty-controls button:disabled:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #999;
}

.options-modal-content .modal-options-list .option-item .qty-controls .qty-value {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    font-size: 15px;
    color: #F57C00;
}

.options-modal-content .modal-actions {
    display: flex;
    gap: 12px;
}

.options-modal-content .modal-actions .btn-cancel {
    flex: 1;
    background: rgba(0, 0, 0, 0.04);
    color: #555;
    border: none;
    padding: 10px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.options-modal-content .modal-actions .btn-cancel:hover {
    background: rgba(0, 0, 0, 0.08);
}

.options-modal-content .modal-actions .btn-save {
    flex: 2;
    background: #F57C00;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.options-modal-content .modal-actions .btn-save:hover {
    background: #e65100;
    transform: scale(1.02);
}

/* ===== CHECKOUT MODAL ===== */
.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    z-index: 4000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.checkout-modal-overlay.active {
    display: flex;
}

.checkout-modal-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 35px 30px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: modalIn 0.4s ease;
}

.checkout-modal-content .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkout-modal-content .modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-modal-content .modal-header h3 i {
    color: #F57C00;
}

.checkout-modal-content .modal-header button {
    background: 0 0;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 6px;
}

.checkout-modal-content .modal-header button:hover {
    color: #1a1a1a;
    transform: rotate(90deg);
}

.checkout-modal-content .order-summary {
    background: rgba(245, 124, 0, 0.04);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
    max-height: 120px;
    overflow-y: auto;
    border: 1px solid rgba(245, 124, 0, 0.06);
}

.checkout-modal-content .order-summary .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.checkout-modal-content .order-summary .summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    font-weight: 700;
    color: #1a1a1a;
    border-top: 2px solid #F57C00;
    margin-top: 5px;
}

.checkout-modal-content .form-group {
    margin-bottom: 16px;
}

.checkout-modal-content .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.checkout-modal-content .form-group label .required {
    color: #e65100;
    margin-left: 2px;
}

.checkout-modal-content .form-group input,
.checkout-modal-content .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.6);
    color: #1a1a1a;
}

.checkout-modal-content .form-group input:focus,
.checkout-modal-content .form-group textarea:focus {
    outline: 0;
    border-color: #F57C00;
    box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.08);
    background: #fff;
}

.checkout-modal-content .form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.checkout-modal-content .form-group .error-message {
    color: #e65100;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.checkout-modal-content .form-group.error input,
.checkout-modal-content .form-group.error textarea {
    border-color: #e65100;
    background: rgba(230, 81, 0, 0.03);
}

.checkout-modal-content .form-group.error .error-message {
    display: block;
}

.checkout-modal-content .modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.checkout-modal-content .modal-actions .btn-cancel {
    flex: 1;
    background: rgba(0, 0, 0, 0.04);
    color: #555;
    border: none;
    padding: 12px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.checkout-modal-content .modal-actions .btn-cancel:hover {
    background: rgba(0, 0, 0, 0.08);
}

.checkout-modal-content .modal-actions .btn-confirm {
    flex: 2;
    background: #F57C00;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-modal-content .modal-actions .btn-confirm:hover {
    background: #e65100;
    transform: scale(1.02);
}

.checkout-modal-content .modal-actions .btn-confirm:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px 40px;
}

/* ===== CAROUSEL ===== */
.carousel-container {
    position: relative;
    width: 100%;
    margin: 10px 0 30px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 124, 0, 0.08);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 30px 50px;
    gap: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.carousel-slide .slide-image {
    flex: 0 0 40%;
    height: 280px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.carousel-slide .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f0ece6;
}

.carousel-slide .slide-content {
    flex: 1 1 50%;
    padding: 10px 0;
    min-width: 0;
}

.carousel-slide .slide-content .badge {
    display: inline-block;
    background: #F57C00;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.carousel-slide .slide-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.carousel-slide .slide-content h2 span {
    color: #F57C00;
}

.carousel-slide .slide-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 90%;
}

.carousel-slide .slide-content .btn-order {
    background: #F57C00;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(245, 124, 0, 0.2);
}

.carousel-slide .slide-content .btn-order:hover {
    background: #e65100;
    transform: scale(1.02);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    color: #1a1a1a;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: none;
}

.carousel-btn:hover {
    background: #F57C00;
    color: #fff;
}

.carousel-btn.prev {
    left: 16px;
}

.carousel-btn.next {
    right: 16px;
}

.carousel-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: 0.3s;
    border: none;
    padding: 0;
}

.carousel-indicators .dot.active {
    background: #F57C00;
    width: 28px;
    border-radius: 6px;
}

/* ===== SLOGAN ===== */
.slogan-section {
    text-align: center;
    padding: 30px 0 40px;
    margin: -10px 0 10px;
    position: relative;
}

.slogan-section .slogan {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 4px;
    display: inline-block;
    padding: 18px 50px;
    border-radius: 12px;
    position: relative;
    background: transparent;
    border: 2px solid #F57C00;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    animation: neonPulse 2s ease-in-out infinite alternate;
    box-shadow: 0 0 10px rgba(245, 124, 0, 0.3), 0 0 20px rgba(245, 124, 0, 0.2), 0 0 40px rgba(245, 124, 0, 0.1), inset 0 0 10px rgba(245, 124, 0, 0.1);
}

.slogan-section .slogan span {
    color: #fff;
    text-shadow: 0 0 7px #F57C00, 0 0 10px #F57C00, 0 0 21px #F57C00, 0 0 42px #F57C00;
}

.slogan-section .slogan .neon-number {
    color: #fff;
    font-size: 52px;
    font-weight: 900;
    text-shadow: 0 0 7px #F57C00, 0 0 10px #F57C00, 0 0 21px #F57C00, 0 0 42px #F57C00, 0 0 82px #F57C00, 0 0 92px #F57C00;
    animation: neonFlicker 3s infinite;
}

.slogan-section .slogan .neon-text {
    color: #fff;
    text-shadow: 0 0 7px #F57C00, 0 0 10px #F57C00, 0 0 21px #F57C00, 0 0 42px #F57C00;
    animation: neonFlicker2 2.5s infinite alternate;
}

@keyframes neonPulse {
    0% {
        box-shadow: 0 0 10px rgba(245, 124, 0, 0.3), 0 0 20px rgba(245, 124, 0, 0.2), 0 0 40px rgba(245, 124, 0, 0.1), inset 0 0 10px rgba(245, 124, 0, 0.1);
        border-color: #F57C00;
    }
    50% {
        box-shadow: 0 0 20px rgba(245, 124, 0, 0.5), 0 0 40px rgba(245, 124, 0, 0.3), 0 0 80px rgba(245, 124, 0, 0.2), 0 0 120px rgba(245, 124, 0, 0.1), inset 0 0 20px rgba(245, 124, 0, 0.2);
        border-color: #ff9800;
    }
    100% {
        box-shadow: 0 0 30px rgba(245, 124, 0, 0.6), 0 0 60px rgba(245, 124, 0, 0.4), 0 0 100px rgba(245, 124, 0, 0.2), 0 0 150px rgba(245, 124, 0, 0.1), inset 0 0 30px rgba(245, 124, 0, 0.2);
        border-color: #ffb74d;
    }
}

@keyframes neonFlicker {
    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        text-shadow: 0 0 7px #F57C00, 0 0 10px #F57C00, 0 0 21px #F57C00, 0 0 42px #F57C00, 0 0 82px #F57C00, 0 0 92px #F57C00;
        opacity: 1;
    }
    20%,
    24%,
    55% {
        text-shadow: 0 0 7px #F57C00, 0 0 10px #F57C00, 0 0 21px #F57C00;
        opacity: 0.8;
    }
}

@keyframes neonFlicker2 {
    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        text-shadow: 0 0 7px #F57C00, 0 0 10px #F57C00, 0 0 21px #F57C00, 0 0 42px #F57C00;
        opacity: 1;
    }
    20%,
    24%,
    55% {
        text-shadow: 0 0 5px #F57C00, 0 0 8px #F57C00;
        opacity: 0.7;
    }
}

.slogan-section .slogan::before,
.slogan-section .slogan::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 12px;
    z-index: -1;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.slogan-section .slogan::before {
    background: linear-gradient(45deg, #F57C00, #ff9800, #F57C00, #ffb74d);
    background-size: 300% 300%;
    animation: gradientMove 3s ease-in-out infinite alternate;
    filter: blur(4px);
    opacity: 0.3;
}

.slogan-section .slogan::after {
    background: linear-gradient(45deg, #F57C00, #ff9800, #F57C00);
    background-size: 300% 300%;
    animation: gradientMove 3s ease-in-out infinite alternate-reverse;
    filter: blur(8px);
    opacity: 0.15;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes neonGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

/* ===== PAGE TITLE ===== */
.page-title {
    font-size: 38px;
    font-weight: 700;
    color: #F57C00;
    margin: 20px 0 10px;
    text-shadow: 0 2px 12px rgba(245, 124, 0, 0.08);
}

.page-title small {
    font-size: 20px;
    font-weight: 400;
    color: #777;
    display: block;
    margin-top: 5px;
}

/* ===== CATEGORIES ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin: 30px 0 40px;
}

.category-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 124, 0, 0.08);
    cursor: pointer;
    text-decoration: none;
    color: #1a1a1a;
    overflow: hidden;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(245, 124, 0, 0.12);
    border-color: #F57C00;
    background: rgba(255, 255, 255, 0.9);
}

.category-card .card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: opacity 0.8s ease;
    background: #f0ece6;
}

.category-card .card-content {
    padding: 15px 10px 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.category-card p {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.category-card .view-btn {
    background: transparent;
    color: #F57C00;
    border: 2px solid #F57C00;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
}

.category-card .view-btn:hover {
    background: #F57C00;
    color: #fff;
    transform: scale(1.03);
}

/* ===== INFO BANNERS ===== */
.info-banners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 0 40px;
    padding: 20px 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 124, 0, 0.06);
}

.info-banner {
    text-align: center;
    padding: 15px 10px;
    transition: 0.3s;
    border-radius: 16px;
}

.info-banner:hover {
    background: rgba(245, 124, 0, 0.04);
    transform: scale(1.02);
}

.info-banner .number {
    font-size: 32px;
    font-weight: 900;
    color: #F57C00;
    line-height: 1.2;
}

.info-banner .label {
    font-size: 15px;
    font-weight: 400;
    color: #444;
    margin-top: 4px;
}

/* ===== DISH LIST ===== */
#dish-list {
    display: none;
    margin: 30px 0 50px;
}

#dish-list .back-btn {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #F57C00;
    color: #F57C00;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(4px);
}

#dish-list .back-btn:hover {
    background: #F57C00;
    color: #fff;
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.dish-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

.dish-card:hover {
    transform: translateY(-6px);
    border-color: #F57C00;
    box-shadow: 0 12px 30px rgba(245, 124, 0, 0.08);
}

.dish-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 12px;
    background: #f0ece6;
}

.dish-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.dish-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.dish-card .add-to-cart-btn {
    background: #F57C00;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
}

.dish-card .add-to-cart-btn:hover {
    background: #e65100;
    transform: scale(1.03);
}

/* ===== DISH DETAIL ===== */
#dish-detail {
    display: none;
    padding: 30px 0;
}

#dish-detail .back-btn {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #F57C00;
    color: #F57C00;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(4px);
}

#dish-detail .back-btn:hover {
    background: #F57C00;
    color: #fff;
}

.detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid rgba(245, 124, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.detail-container .detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    background: #f0ece6;
}

.detail-container .detail-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-container .detail-info h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
}

.detail-container .detail-info .detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #F57C00;
}

.detail-container .detail-info .detail-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.detail-container .detail-info .detail-ingredients {
    font-size: 14px;
    color: #666;
    background: rgba(245, 124, 0, 0.05);
    padding: 15px 20px;
    border-radius: 16px;
    border-left: 4px solid #F57C00;
}

.detail-container .detail-info .detail-ingredients strong {
    color: #1a1a1a;
}

.detail-container .detail-info .detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.detail-container .detail-info .detail-actions .add-to-cart-btn {
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    background: #F57C00;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
}

.detail-container .detail-info .detail-actions .add-to-cart-btn:hover {
    background: #e65100;
    transform: scale(1.03);
}

/* ===== SOCIAL ===== */
.social-section {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 40px 30px;
    margin: 40px 0 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(245, 124, 0, 0.06);
    text-align: center;
}

.social-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #F57C00;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-section .sub-text {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    padding: 16px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.04);
    min-width: 120px;
    backdrop-filter: blur(4px);
}

.social-icon:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #F57C00;
    box-shadow: 0 15px 40px rgba(245, 124, 0, 0.08);
}

.social-icon i {
    font-size: 48px;
    transition: 0.3s;
}

.social-icon .fa-facebook {
    color: #1877F2;
}

.social-icon .fa-instagram {
    color: #E4405F;
}

.social-icon .fa-tiktok {
    color: #00f2ea;
}

.social-icon span {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

/* ===== CONTACTS ===== */
.contacts-section {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 40px 30px;
    margin: 40px 0 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(245, 124, 0, 0.06);
}

.contacts-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #F57C00;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.contact-item {
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 20px 24px;
    border-left: 6px solid #F57C00;
    transition: 0.8s;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    min-height: 160px;
}

.contact-item .contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.26;
    z-index: 0;
    pointer-events: none;
}

.contact-item>*:not(.contact-bg) {
    position: relative;
    z-index: 1;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-left-color: #e65100;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-item .address {
    font-size: 16px;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item .phone {
    font-size: 16px;
    font-weight: 600;
    color: #F57C00;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.2s;
}

.contact-item .phone:hover {
    color: #e65100;
}

.contact-item .phone i {
    width: 20px;
}

.contact-item .note {
    font-size: 14px;
    color: #888;
    margin-top: 6px;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    color: #999;
    font-size: 14px;
    margin-top: 20px;
}

/* ===== ADDRESS / MAP ===== */
#selected-address {
    font-size: 13px;
    color: #666;
    padding: 8px 12px;
    background: rgba(245, 124, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(245, 124, 0, 0.1);
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

#selected-address i {
    color: #F57C00;
    font-size: 16px;
}

#selected-address .address-text {
    flex: 1;
    word-break: break-word;
}

.map-hint {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 6px;
}

.map-hint i {
    color: #F57C00;
}

.coords-info {
    font-size: 11px;
    color: #bbb;
    text-align: center;
    margin-top: 4px;
}

/* ===== DELIVERY TIME ===== */
#deliveryTime {
    margin-top: 10px;
    font-weight: 600;
    color: #F57C00;
    display: none;
    font-size: 15px;
    background: rgba(245, 124, 0, 0.06);
    padding: 8px 14px;
    border-radius: 8px;
    border-left: 4px solid #F57C00;
    transition: all 0.3s ease;
}

#deliveryTime i {
    margin-right: 8px;
}

/* ===== YANDEX MAP ===== */
#yandexMap {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    background: #f0f0f0;
    z-index: 1;
}

/* ===== FULLSCREEN MAP ===== */
#fullscreenMapOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#fullscreenMapOverlay.active {
    display: flex;
}

#fullscreenMapOverlay .fullscreen-map-container {
    width: 100%;
    max-width: 900px;
    height: 90vh;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

#fullscreenMapOverlay .fullscreen-map-container #fullscreenMap {
    width: 100%;
    height: 100%;
}

#fullscreenMapOverlay .fullscreen-map-container .map-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
    flex-wrap: wrap;
    justify-content: center;
}

#fullscreenMapOverlay .fullscreen-map-container .map-controls .btn {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
}

#fullscreenMapOverlay .fullscreen-map-container .map-controls .btn:hover {
    transform: scale(1.05);
    background: #F57C00;
    color: #fff;
}

#fullscreenMapOverlay .fullscreen-map-container .map-controls .btn.btn-close {
    background: #e65100;
    color: #fff;
}

#fullscreenMapOverlay .fullscreen-map-container .map-controls .btn.btn-close:hover {
    background: #bf360c;
}

#fullscreenMapOverlay .fullscreen-map-container .map-controls .btn.btn-location {
    background: #F57C00;
    color: #fff;
}

#fullscreenMapOverlay .fullscreen-map-container .map-controls .btn.btn-location:hover {
    background: #e65100;
}

#fullscreenMapOverlay .fullscreen-map-container .map-controls .btn.btn-confirm {
    background: #2e7d32;
    color: #fff;
}

#fullscreenMapOverlay .fullscreen-map-container .map-controls .btn.btn-confirm:hover {
    background: #1b5e20;
}

#fullscreenMapOverlay .fullscreen-map-container .map-close-top {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#fullscreenMapOverlay .fullscreen-map-container .map-close-top:hover {
    background: #e65100;
    transform: rotate(90deg);
}

#fullscreenMapOverlay .fullscreen-map-container .map-address-display {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 14px;
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 80%;
    text-align: center;
    font-weight: 500;
    border: 2px solid #F57C00;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#fullscreenMapOverlay .fullscreen-map-container .map-address-display i {
    color: #F57C00;
    margin-right: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    .header {
        height: 70px;
        padding: 0 16px;
    }
    .logo-area {
        gap: 8px;
    }
    .logo-item {
        padding: 2px 6px 2px 2px;
    }
    .logo-item .logo-img {
        height: 32px;
        width: 32px;
    }
    .logo-item .logo-label {
        font-size: 11px;
    }
    .logo-item .logo-label small {
        font-size: 8px;
    }
    .logo-divider {
        height: 24px;
    }
    .header-right {
        gap: 8px;
    }
    .header-phone {
        padding: 6px 12px;
        font-size: 13px;
        gap: 4px;
    }
    .header-phone i {
        font-size: 14px;
    }
    .header-phone span {
        display: none;
    }
    .lang-dropdown .lang-current {
        padding: 5px 10px;
        font-size: 12px;
    }
    .lang-dropdown .lang-current .lang-flag {
        font-size: 14px;
    }
    .lang-dropdown .lang-menu {
        min-width: 110px;
    }
    .lang-dropdown .lang-menu .lang-option {
        font-size: 13px;
        padding: 8px 14px;
    }
    .cart-toggle {
        padding: 6px 12px;
        font-size: 13px;
    }
    .cart-toggle .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    .cart-toggle span {
        display: none;
    }
    .cart-sidebar {
        width: 100%;
        right: -100%;
        padding: 80px 18px 20px;
        max-height: 100vh;
    }
    .cart-item-options {
        padding-left: 55px;
    }
    .carousel-slide {
        flex-direction: column;
        padding: 20px 20px 40px;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
    .carousel-slide .slide-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
        height: 200px;
        border-radius: 20px;
    }
    .carousel-slide .slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .carousel-slide .slide-content {
        flex: none;
        width: 100%;
        padding: 0;
    }
    .carousel-slide .slide-content h2 {
        font-size: 22px;
    }
    .carousel-slide .slide-content p {
        max-width: 100%;
        font-size: 14px;
    }
    .carousel-slide .slide-content .btn-order {
        padding: 10px 24px;
        font-size: 14px;
        justify-content: center;
    }
    .carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .carousel-btn.prev {
        left: 8px;
    }
    .carousel-btn.next {
        right: 8px;
    }
    .carousel-indicators {
        bottom: 10px;
        gap: 8px;
    }
    .carousel-indicators .dot {
        width: 8px;
        height: 8px;
    }
    .carousel-indicators .dot.active {
        width: 22px;
    }
    .slogan-section .slogan {
        font-size: 28px;
        padding: 12px 25px;
        letter-spacing: 2px;
    }
    .slogan-section .slogan .neon-number {
        font-size: 34px;
    }
    .info-banners {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 15px 10px;
        border-radius: 16px;
    }
    .info-banner .number {
        font-size: 22px;
    }
    .info-banner .label {
        font-size: 13px;
    }
    .page-title {
        font-size: 28px;
    }
    .page-title small {
        font-size: 16px;
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .category-card .card-image {
        height: 100px;
    }
    .category-card .card-content {
        padding: 10px 8px 15px;
    }
    .category-card h3 {
        font-size: 16px;
    }
    .category-card .view-btn {
        font-size: 11px;
        padding: 6px 14px;
    }
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    .contact-item {
        min-height: 130px;
    }
    .dish-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .social-icons {
        gap: 15px;
    }
    .social-icon {
        padding: 12px 20px;
        min-width: 90px;
    }
    .social-icon i {
        font-size: 36px;
    }
    .options-modal-content {
        max-width: 95%;
        padding: 20px;
    }
    .cart-footer {
        padding: 15px 0 30px;
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        position: sticky;
        bottom: 0;
        width: 100%;
        z-index: 10;
    }
    .cart-footer .checkout-btn {
        font-size: 15px;
        padding: 14px;
    }
    .checkout-modal-content {
        padding: 25px 20px;
        max-width: 95%;
    }
    .checkout-modal-content .modal-actions {
        flex-direction: column;
    }
    .checkout-modal-content .modal-actions .btn-cancel {
        flex: none;
    }
    .checkout-modal-content .modal-actions .btn-confirm {
        flex: none;
    }
    .detail-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    .detail-container .detail-image {
        height: 250px;
    }
    .detail-container .detail-info h2 {
        font-size: 24px;
    }
    .detail-container .detail-info .detail-price {
        font-size: 22px;
    }
    #fullscreenMapOverlay .fullscreen-map-container .map-controls .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    #fullscreenMapOverlay .fullscreen-map-container .map-address-display {
        font-size: 12px;
        padding: 8px 16px;
        max-width: 90%;
        white-space: normal;
    }
    #yandexMap {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .header-phone span {
        display: none;
    }
    .header-phone {
        padding: 6px 10px;
    }
    .lang-dropdown .lang-current {
        padding: 4px 8px;
        font-size: 11px;
    }
    .lang-dropdown .lang-current .lang-flag {
        font-size: 12px;
    }
    .lang-dropdown .lang-current .lang-arrow {
        font-size: 10px;
    }
    .lang-dropdown .lang-menu {
        min-width: 100px;
    }
    .lang-dropdown .lang-menu .lang-option {
        font-size: 12px;
        padding: 6px 12px;
    }
    .cart-toggle {
        padding: 6px 10px;
        font-size: 12px;
    }
    .cart-toggle .cart-count {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }
    .logo-item .logo-img {
        height: 28px;
        width: 28px;
    }
    .logo-item .logo-label {
        font-size: 9px;
    }
    .logo-item .logo-label small {
        display: none;
    }
    .logo-divider {
        height: 20px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dish-grid {
        grid-template-columns: 1fr;
    }
    .social-icon {
        min-width: 70px;
        padding: 10px 14px;
    }
    .social-icon i {
        font-size: 28px;
    }
    .social-icon span {
        font-size: 11px;
    }
    .category-card .card-image {
        height: 80px;
    }
    .category-card .card-content {
        padding: 8px 6px 12px;
    }
    .category-card h3 {
        font-size: 14px;
    }
    .category-card p {
        font-size: 12px;
    }
    .category-card .view-btn {
        font-size: 10px;
        padding: 4px 12px;
    }
    .carousel-slide .slide-image {
        height: 160px;
        max-width: 260px;
    }
    .carousel-slide .slide-content h2 {
        font-size: 18px;
    }
    .carousel-slide .slide-content .badge {
        font-size: 10px;
        padding: 3px 12px;
    }
    .carousel-slide .slide-content .btn-order {
        font-size: 13px;
        padding: 8px 18px;
    }
    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    .carousel-btn.prev {
        left: 4px;
    }
    .carousel-btn.next {
        right: 4px;
    }
    .slogan-section .slogan {
        font-size: 20px;
        padding: 10px 18px;
        letter-spacing: 1px;
        border-width: 1.5px;
    }
    .slogan-section .slogan .neon-number {
        font-size: 26px;
    }
    .slogan-section {
        padding: 15px 0 25px;
    }
    .info-banners {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px 10px;
        border-radius: 12px;
    }
    .info-banner .number {
        font-size: 20px;
    }
    .info-banner .label {
        font-size: 14px;
    }
    .page-title {
        font-size: 24px;
    }
    .page-title small {
        font-size: 14px;
    }
    .contact-item {
        min-height: 120px;
        padding: 16px 18px;
    }
    .contact-item .contact-bg {
        opacity: 0.26;
    }
    .cart-item-options {
        padding-left: 0;
        margin-top: 4px;
    }
    .cart-item .cart-item-main {
        flex-wrap: wrap;
    }
    .options-modal-content {
        padding: 16px;
    }
    .options-modal-content .modal-actions {
        flex-direction: column;
    }
    .options-modal-content .modal-actions .btn-cancel {
        flex: none;
    }
    .options-modal-content .modal-actions .btn-save {
        flex: none;
    }
    .cart-footer {
        padding: 12px 0 35px;
    }
    .cart-footer .checkout-btn {
        font-size: 14px;
        padding: 14px;
        border-radius: 30px;
    }
    .checkout-modal-content {
        padding: 20px 16px;
    }
    .checkout-modal-content .modal-actions {
        flex-direction: column;
    }
    .checkout-modal-content .modal-actions .btn-cancel {
        flex: none;
    }
    .checkout-modal-content .modal-actions .btn-confirm {
        flex: none;
    }
    .detail-container {
        grid-template-columns: 1fr;
        padding: 16px;
    }
    .detail-container .detail-image {
        height: 200px;
    }
    .detail-container .detail-info h2 {
        font-size: 20px;
    }
    .detail-container .detail-info .detail-price {
        font-size: 18px;
    }
    #fullscreenMapOverlay {
        padding: 10px;
    }
    #fullscreenMapOverlay .fullscreen-map-container .map-controls {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        bottom: 15px;
    }
    #fullscreenMapOverlay .fullscreen-map-container .map-controls .btn {
        width: 90%;
        justify-content: center;
        padding: 10px;
    }
    #fullscreenMapOverlay .fullscreen-map-container .map-address-display {
        font-size: 11px;
        padding: 6px 12px;
        max-width: 95%;
        top: 10px;
        white-space: normal;
    }
    #yandexMap {
        height: 180px;
    }
}