/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: #f7fbff;
    color: #1a3c5e;
    overflow-x: hidden;
}

/* App Container */
.app-container {
    display: flex;
    min-height: 100vh;
}

button.delete-item-btn {
    color: #ce3e3e;
}
.popular-card__tag--healthy {
    background-color: #e8f5e9;
    color: #2e7d32;
}
.popular-card__tag--popular {
    background-color: #ffebee;
    color: #c62828;
}
.popular-card__tag--fresh {
    background-color: #e3f2fd;
    color: #1565c0;
}
.popular-card__tag--tasty {
    background-color: #fff3e0;
    color: #ef6c00;
}
.popular-card__tag--organic {
    background-color: #f1f8e9;
    color: #558b2f;
}
.popular-card__tag--local {
    background-color: #eceff1;
    color: #37474f;
}
.popular-card__tag--vegan {
    background-color: #dcedc8;
    color: #33691e;
}
.popular-card__tag--gluten-free {
    background-color: #f3e5f5;
    color: #6a1b9a;
}
/* Sidebar */
.sidebar {
    width: 280px;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0; /* Solda sabit */
    height: 100%;
    z-index: 1000;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    border-right: 1px solid #e0e7ff;
}

.sidebar__header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e7ff;
}

.sidebar__logo {
    width: 210px;
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-close {
    display: none;
}
/* Modal dialog aynı kalıyor */
.modal-dialog {
    position: relative;
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
}

/* Kırmızı renkli kapatma butonu */
.modal-kapat {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 8px;
    cursor: pointer;
    background: #fff;
    border: 2px solid #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    width: 32px;
    height: 32px;
    transition: all 0.2s ease;
}

/* Hover efekti */
.modal-kapat:hover {
    background: #dc3545;
}

/* Material icons için stil */
.modal-kapat .material-icons-round {
    font-size: 18px;
    color: #dc3545;
    transition: color 0.2s ease;
}

/* Hover durumunda icon rengi */
.modal-kapat:hover .material-icons-round {
    color: #fff;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #1a3c5e;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 10px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover, .nav-link--active {
    background: #e6f0fa;
    color: rgb(40, 121, 176);
    transform: translateX(5px);
}

.nav-link .material-icons-round {
    font-size: 20px;
}

/* Main Content */
.main-content {
    padding: 30px;
    flex: 1;
    background: #f7fbff;
    margin-left: 280px; /* Sidebar genişliği kadar kaydır */
}

/* Top Header */
.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: none; /* Masaüstünde gizli */
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.menu-toggle .material-icons-round {
    font-size: 28px;
    color: rgb(40, 121, 176);
}

.menu-toggle.active {
    transform: rotate(90deg);
}

.search-bar {
    display: flex;
    align-items: center;
    background: #e6f0fa;
    padding: 12px 20px;
    border-radius: 50px;
    flex: 1;
    margin: 0 20px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.search-bar:hover {
    background: #d6e6f2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-bar .material-icons-round {
    color: #1a3c5e;
    margin-right: 12px;
}

.search-bar input {
    border: none;
    background: none;
    outline: none;
    font-size: 15px;
    color: #1a3c5e;
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.header-bag {
    display: flex;
    gap: 15px;
}

.cart-button {
    background: rgb(40, 121, 176);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-left: 15px;
    margin-right: 15px;
}

.cart-button:hover {
    transform: scale(1.1);
    background: rgb(50, 141, 196);
}

.cart-button__count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f43f5e;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 50%;
}

.profile-button {
    background: rgb(12,100,52,255);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

.profile-button:hover {
    transform: scale(1.1);
    background: rgb(50, 141, 196);
}

.profile-button__count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f43f5e;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 50%;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgb(40, 121, 176), rgb(50, 141, 196));
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, rgb(40, 121, 176), rgb(15, 98, 49, 255));
    box-shadow: 0 6px 16px rgba(40, 121, 176, 0.3);
}

.hero-section__content {
    max-width: 50%;
    color: #fff;
}

.hero-section__content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-section__content p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-section__btn {
    background: #ffffff;
    color: rgb(40, 121, 176);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.hero-section__btn:hover {
    background: rgb(40, 121, 176);
    color: #fff;
    border: 1px solid #fff;
    transform: scale(1.05);
}

.hero-section__image img {
    max-width: 450px;
    border-radius: 20px;
    object-fit: cover;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Categories Section */
.categories-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a3c5e;
}

.section-header__view-all {
    background: none;
    border: none;
    color: rgb(40, 121, 176);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.section-header__view-all:hover {
    color: rgb(50, 141, 196);
    transform: translateX(5px);
}

.categories-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 15px;
}

.category-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    text-decoration: none;
    color: #1a3c5e;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 340px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid #e6f0fa;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgb(40, 121, 176), rgb(50, 141, 196));
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1.1);
}

.category-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.category-card__icon {
    flex-shrink: 0;
    position: relative;
}

.category-card__icon img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgb(40, 121, 176);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.category-card:hover .category-card__icon img {
    transform: scale(1.1);
    border-color: rgb(50, 141, 196);
}

.category-card__icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(40, 121, 176, 0.1);
    z-index: -1;
    transition: background 0.3s ease;
}

.category-card:hover .category-card__icon::after {
    background: rgba(50, 141, 196, 0.2);
}

.category-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a3c5e;
    margin: 0;
    background: linear-gradient(90deg, #1a3c5e, rgb(40, 121, 176));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.category-card:hover .category-card__title {
    transform: translateX(5px);
}

.category-card__arrow {
    margin-left: auto;
    color: rgb(40, 121, 176);
    font-size: 28px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.category-card:hover .category-card__arrow {
    transform: translateX(8px);
    color: rgb(50, 141, 196);
}

.category-card__products {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category-card__product {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.category-card__product:hover {
    background: #f0f7fa;
}

.category-card__product img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.category-card__product:hover img {
    transform: scale(1.05);
}

.category-card__product span {
    font-size: 16px;
    font-weight: 500;
    color: #1a3c5e;
    flex: 1;
}

.category-card__add-btn {
    background: rgb(40, 121, 176);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.category-card__add-btn:hover {
    background: rgb(50, 141, 196);
    transform: scale(1.15);
}

/* Popular Poke Bowls Section */
.popular-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a3c5e;
}

.view-controls {
    display: flex;
    gap: 10px;
}

.view-controls__btn {
    background: #e6f0fa;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    color: #1a3c5e;
}

.view-controls__btn:hover, .view-controls__btn--active {
    background: rgb(40, 121, 176);
    color: #fff;
    transform: scale(1.1);
}

.view-controls__btn .material-icons-round {
    font-size: 20px;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.popular-grid--list {
    grid-template-columns: 1fr;
}

.popular-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e6f0fa;
}

.popular-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.popular-card__image-wrapper {
    position: relative;
    overflow: hidden;
}

.popular-card__image-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: linear-gradient(90deg, rgb(40, 121, 176), rgb(15, 98, 49, 255));
    box-shadow: 0 6px 16px rgba(40, 121, 176, 0.3);
}

.popular-card:hover .popular-card__image-wrapper img {
    transform: scale(1.15);
}

.popular-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.popular-card:hover .popular-card__overlay {
    opacity: 1;
}

.popular-card__quick-view {
    background: rgb(40, 121, 176);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.popular-card__quick-view:hover {
    background: rgb(50, 141, 196);
    transform: rotate(360deg);
}

.popular-card__content {
    padding: 25px;
}

.popular-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.popular-card__title {
    font-size: 22px;
    font-weight: 600;
    color: #1a3c5e;
}

.popular-card__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #f59e0b;
}

.popular-card__rating .material-icons-round {
    font-size: 16px;
}

.popular-card__desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.6;
}

.popular-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.popular-card__price {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 121, 176);
}

.popular-card__add-btn {
    background: rgb(15, 98, 49, 255);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.popular-card__add-btn:hover {
    background: rgb(50, 141, 196);
    transform: translateX(5px);
}

.popular-card__tags {
    display: flex;
    gap: 10px;
}

.popular-card__tag {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.popular-card__tag--healthy {
    background: #d1fae5;
    color: #059669;
}

.popular-card__tag--spicy {
    background: #fee2e2;
    color: #dc2626;
}

.popular-card__tag--popular {
    background: #fef3c7;
    color: #d97706;
}

/* Menu Section */
.container {
    margin: 0 auto;
    padding: 0 0px;
}

.menu-section {
    padding-bottom: 50px;
}

.category-tabs {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 16px;
    margin-bottom: 40px;
    scrollbar-width: none;
    background: #f0f5ff;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(40, 121, 176, 0.1);
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    flex: 0 0 auto;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgb(40, 121, 176), rgb(30, 91, 132));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.category-tab:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(40, 121, 176, 0.2);
    background: #f8fbff;
}

.category-tab:hover::before {
    transform: scaleX(1);
}

.category-tab.active {
    background: linear-gradient(90deg, rgb(40, 121, 176), rgb(15, 98, 49, 255));
    box-shadow: 0 6px 16px rgba(40, 121, 176, 0.3);
}

.category-tab.active::before {
    transform: scaleX(1);
}

.category-tab__image {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f0f5ff;
    z-index: 1;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.category-tab.active .category-tab__image {
    border-color: #ffffff;
    transform: scale(1.1);
}

.category-tab__title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 20px;
    z-index: 1;
    transition: color 0.3s ease;
}

.category-tab.active .category-tab__title {
    color: #ffffff;
}

.menu-grid {
    min-height: 200px;
}

.category-items {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.category-items.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.item-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.item-card__image-wrapper {
    position: relative;
    background: linear-gradient(90deg, rgb(40, 121, 176), rgb(15, 98, 49, 255));
    box-shadow: 0 6px 16px rgba(40, 121, 176, 0.3);
}

.item-card__image {
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.item-card:hover .item-card__image {
    transform: scale(1.05);
}

.item-card__favorite-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.item-card__favorite-btn:hover {
    background: rgb(40, 121, 176);
    transform: scale(1.1);
}

.item-card__favorite-btn .material-icons-round {
    font-size: 20px;
    color: rgb(15, 98, 49, 255);
}

.item-card__content {
    padding: 20px;
}

.item-card__title {
    font-size: 20px;
    font-weight: 700;
    color: rgb(40, 121, 176);
    margin-bottom: 8px;
}

.item-card__description {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2 satırla sınırla */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-card__panel {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f0f5ff;
    padding: 12px 16px;
    border-radius: 12px;
}

.item-card__price {
    font-size: 16px;
    font-weight: 600;
    color: rgb(40, 121, 176);
    flex: 1;
    background: linear-gradient(90deg, rgba(40, 121, 176, 0.1), rgba(30, 91, 132, 0.05));
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-family: 'Manrope', sans-serif;
    position: relative;
    overflow: hidden;
}

.item-card__price:hover {
    color: rgb(30, 91, 132);
    background: linear-gradient(90deg, rgba(40, 121, 176, 0.2), rgba(30, 91, 132, 0.1));
    transform: translateY(-1px);
}

.item-card__price::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.4s ease;
}

.item-card__price:hover::after {
    left: 100%;
}

.item-card__add-btn {
    background: rgb(15, 98, 49, 255);
    color: #fff;
    border: none;
    padding: 8px;
    border-radius: 50%;
    font-size: 0;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(40, 121, 176, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-card__add-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.4s ease;
}

.item-card__add-btn:hover::after {
    left: 100%;
}

.item-card__add-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(40, 121, 176, 0.4);
}

.item-card__add-btn .material-icons-round {
    font-size: 18px;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none; /* Masaüstünde (web versiyonunda) gizli */
}

/* Sondaran eklenen css orders baslangıc */

[class*=" lab-"] {
    display: inline-block;
    font-family: "Lab"!important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 18px!important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

.lab-reserve:before {
    content: "\e029";
}

.lab-arrow-right:before {
    content: "\e08a";
}



.lab-font-size-13 {
    font-size: 13px!important;
}

.lab-font-size-32 {
    font-size: 32px!important;
}

.lab-color-blue {
    color: #008bba!important;
}

::-webkit-scrollbar {
    display: none;
}

/*! CSS Used from: https://demo.foodappi.xyz/css/app.css */

*,
:after,
:before {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-scroll-snap-strictness: proximity;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59, 130, 246, .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
}

*,
:after,
:before {
    border: 0 solid #e5e7eb;
    box-sizing: border-box;
}

:after,
:before {
    --tw-content: "";
}

a {
    color: inherit;
    text-decoration: inherit;
}

p {
    margin: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

:disabled {
    cursor: default;
}

a,
span {
    display: inline-block;
    font-style: normal;
}

.mb-1 {
    margin-bottom: .25rem;
}

.mb-2 {
    margin-bottom: .5rem;
}

.flex {
    display: flex;
}

.w-full {
    width: 100%;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1\.5 {
    gap: .375rem;
}

.gap-3 {
    gap: .75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-x-3 {
    -moz-column-gap: .75rem;
    column-gap: .75rem;
}

.gap-y-1 {
    row-gap: .25rem;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: .5rem;
}

.border {
    border-width: 1px;
}

.border-\[\#EFF0F6\] {
    --tw-border-opacity: 1;
    border-color: rgb(239 240 246/var(--tw-border-opacity, 1));
}

.bg-\[\#BDEFFF\] {
    --tw-bg-opacity: 1;
    background-color: rgb(189 239 255/var(--tw-bg-opacity, 1));
}

.bg-\[\#CBFFE0\] {
    --tw-bg-opacity: 1;
    background-color: rgb(203 255 224/var(--tw-bg-opacity, 1));
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity, 1));
}

.p-4 {
    padding: 1rem;
}

.px-2 {
    padding-left: .5rem;
    padding-right: .5rem;
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
}

.py-0\.5 {
    padding-bottom: .125rem;
    padding-top: .125rem;
}

.py-2 {
    padding-bottom: .5rem;
    padding-top: .5rem;
}

.font-rubik {
    font-family: Rubik, sans-serif;
}

.text-\[10px\] {
    font-size: 10px;
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem;
}

.font-light {
    font-weight: 300;
}

.font-medium {
    font-weight: 500;
}

.font-normal {
    font-weight: 400;
}

.capitalize {
    text-transform: capitalize;
}

.leading-4 {
    line-height: 1rem;
}

.leading-6 {
    line-height: 1.5rem;
}

.text-\[\#00749B\] {
    --tw-text-opacity: 1;
    color: rgb(0 116 155/var(--tw-text-opacity, 1));
}

.text-\[\#008BBA\] {
    --tw-text-opacity: 1;
    color: rgb(0 139 186/var(--tw-text-opacity, 1));
}

.text-\[\#2AC769\] {
    --tw-text-opacity: 1;
    color: rgb(42 199 105/var(--tw-text-opacity, 1));
}

.text-heading {
    --tw-text-opacity: 1;
    color: rgb(31 31 57/var(--tw-text-opacity, 1));
}

.text-primary {
    --tw-text-opacity: 1;
    color: rgb(0 179 165/var(--tw-text-opacity, 1));
}

.shadow-xs {
    --tw-shadow: 0px 6px 32px 0px rgba(0, 0, 0, .04);
    --tw-shadow-colored: 0px 6px 32px 0px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.first-letter\:capitalize:first-letter {
    text-transform: capitalize;
}

/* Bildirimler */
.bildirim_popup {
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff, #dfe7fd); /* Degrade arka plan */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); /* Derin gölge */
    padding: 25px;
    border: 2px solid #5850ec; /* Canlı mor çerçeve */
    max-width: 420px; /* Geniş modal */
    transition: all 0.3s ease;
}

.bildirim_icon {
    font-size: 15px !important; /* Küçük ikon */
    margin-bottom: 12px !important;
    border-width: 1px !important; /* İnce çerçeve */
    transform: scale(0.85); /* Hafif küçültme */
}

.bildirim_success .bildirim_icon {
    color: #2ecc71 !important; /* Canlı yeşil */
    border-color: #2ecc71 !important;
}

.bildirim_error .bildirim_icon {
    color: #e74c3c !important; /* Canlı kırmızı */
    border-color: #e74c3c !important;
}

.bildirim_title {
    font-size: 17px !important;
    color: #1e272e !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    margin-top: 5px !important;
    line-height: 1.3 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bildirim_timer_progress_bar {
    background: linear-gradient(to right, #5850ec, #00ddeb) !important; /* Degrade çubuk */
    height: 4px !important;
    border-radius: 2px !important;
}

/* Arka plan overlay'i kaldır */
.bildirim_container {
    background: transparent !important; /* Overlay yok */
}

/* Animasyon */
.bildirim_popup.bildirim_show {
    animation: bounceIn 0.5s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0.7); opacity: 0; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

  .notbaslik {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eef4fb;
    border-left: 5px solid #1976d2;
    padding: 20px;
    margin: 30px auto;
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
    color: #2c3e50;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .notbaslik .icon {
    font-size: 30px;
    color: #1976d2;
    margin-right: 12px;
    flex-shrink: 0;
  }

  .not-text {
    line-height: 1.6;
    text-align: left;
  }

  .not-text strong {
    color: #1976d2;
  }

  .not-text em {
    color: #555;
    font-style: italic;
  }

        /* Geliştirilmiş Sipariş Başarılı Bölümü Stilleri */
        .order-success-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            background: linear-gradient(135deg, rgb(40, 121, 176), rgb(50, 141, 196), rgb(15, 98, 49, 0.8));
            border-radius: 30px;
            padding: 60px;
            margin: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            text-align: center;
            color: #fff;
            animation: fadeIn 1.2s ease-in-out;
        }

        /* Arka Plan Efekti */
        .order-success-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -30%;
            width: 160%;
            height: 160%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
            animation: pulseBackground 12s ease-in-out infinite;
            z-index: 0;
        }

        .order-success-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/food.png') repeat;
            opacity: 0.1;
            z-index: 0;
        }

        .order-success-section > * {
            z-index: 1;
        }

        /* Başarı İkonu */
        .success-icon {
            font-size: 100px;
            color: #fff;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
            padding: 25px;
            border-radius: 50%;
            margin-bottom: 25px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            animation: bounceIn 0.8s ease, glow 2s ease-in-out infinite;
        }

        /* Başlık */
        .order-success-section h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #fff, #e6f0fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: slideIn 0.9s ease;
        }

        /* Açıklama Metni */
        .order-success-section p {
            font-size: 20px;
            font-weight: 300;
            max-width: 700px;
            margin-bottom: 40px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.6;
            animation: slideIn 1.1s ease;
        }

        /* Sipariş Detayları Kartı */
        .order-details {
            background: rgba(255, 255, 255, 0.15);
            padding: 25px 40px;
            border-radius: 20px;
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 1.3s ease;
            position: relative;
            overflow: hidden;
        }

        .order-details::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, rgb(40, 121, 176), rgb(50, 141, 196));
            animation: slideBorder 2s ease-in-out infinite;
        }

        .order-details p {
            font-size: 18px;
            font-weight: 400;
            margin: 0;
            display: flex;
            justify-content: space-between;
            color: #e6f0fa;
        }

        .order-details p strong {
            font-weight: 600;
            color: #fff;
        }

        /* Buton */
        .order-success-section .hero-section__btn {
            padding: 18px 50px;
            font-size: 20px;
            font-weight: 700;
            background: linear-gradient(90deg, rgb(40, 121, 176), rgb(50, 141, 196));
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
        }

        .order-success-section .hero-section__btn:hover {
            background: linear-gradient(90deg, rgb(50, 141, 196), rgb(40, 121, 176));
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
            border-color: #fff;
        }

        /* Animasyonlar */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { transform: translateY(40px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes bounceIn {
            0% { transform: scale(0); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }

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

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.06); }
            100% { transform: scale(1); }
        }

        @keyframes pulseBackground {
            0% { transform: scale(1); opacity: 0.25; }
            50% { transform: scale(1.2); opacity: 0.15; }
            100% { transform: scale(1); opacity: 0.25; }
        }

        @keyframes glow {
            0% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }
            50% { box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3); }
            100% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }
        }

        @keyframes slideBorder {
            0% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Responsive Tasarım */
        @media (max-width: 768px) {
            .order-success-section {
                margin: 10px;
                padding: 40px 20px;
                border-radius: 20px;
            }

            .order-success-section h1 {
                font-size: 36px;
            }

            .order-success-section p {
                font-size: 16px;
                max-width: 90%;
            }

            .success-icon {
                font-size: 70px;
                padding: 15px;
            }

            .order-details {
                padding: 20px;
            }

            .order-details p {
                font-size: 16px;
                flex-direction: column;
                gap: 5px;
                align-items: flex-start;
            }

            .order-success-section .hero-section__btn {
                padding: 14px 30px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .order-success-section h1 {
                font-size: 28px;
            }

            .order-success-section p {
                font-size: 14px;
            }

            .success-icon {
                font-size: 60px;
            }
        }

/* Genel Stil */
.payment-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Başlık */
.payment-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Ödeme Yöntemleri */
.payment-choices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-choice {

    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.payment-choice.active {
    display: flex;
}

.payment-choice:has(input[value="online"]) {
    display: flex;
}

.payment-choice:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.payment-selector {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #2563eb;
}

.payment-symbol i {
    font-size: 1.5rem;
    color: #2563eb;
    width: 24px;
    height: 24px;
    line-height: 24px;
    flex-shrink: 0;
}

.payment-symbol img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.payment-choice:has([value="cash"]:checked) .payment-symbol i {
    color: #059669;
}

.payment-info {
    flex-grow: 1;
}

.payment-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
}

.payment-description {
    display: block;
    font-size: 0.875rem;
    color: #718096;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
}

.payment-icons img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Alt Ödeme Yöntemleri */
.payment-suboptions {
    margin-top: 1rem;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.subchoice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.subchoice:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.sub-payment-selector {
    width: 1rem;
    height: 1rem;
    accent-color: #2563eb;
}

.subchoice span {
    font-size: 1rem;
    font-weight: 500;
    color: #2d3748;
}

.subchoice .payment-method-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Hata Mesajı */
.payment-error {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #9b2c2c;
    background: #fef2f2;
    border: 1px solid #feb2b2;
    border-radius: 0.375rem;
    display: none;
}

.payment-error:not(.hidden) {
    display: block;
}

/* Responsive Tasarım */
@media (max-width: 640px) {
    .payment-wrapper {
        margin: 1rem;
        padding: 1rem;
    }

    .payment-heading {
        font-size: 1.25rem;
    }

    .payment-choice {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .payment-icons {
        justify-content: flex-start;
    }

    .payment-suboptions {
        padding-left: 1rem;
    }

    .subchoice .payment-method-logo {
        width: 20px;
        height: 20px;
    }

    .payment-symbol i,
    .payment-symbol img,
    .payment-icons img {
        width: 20px;
        height: 20px;
    }
}

/* sipariş detayları modalı */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex !important;
}

/* Modal Content */
.modal-content {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Modal Header */
.sipararis-detay-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--swal2-deny-button-background-color);
}

.modal-title {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2a2a2a;
}

.modal-title .material-icons-round {
    margin-right: 8px;
    font-size: 24px;
    color: rgb(0, 139, 186);
}

.close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #2a2a2a;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: #e76f51;
}

/* Modal Body */
.modal-body {
  padding: 20px 0;
}

/* Section */
.section {
  margin-bottom: 20px;
  padding: 15px;
  background: #fefefe;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #008BBA;
  margin-bottom: 12px;
  text-align: left;
  display: flex;
  align-items: center;
}

.section-title .material-icons-round {
  font-size: 20px;
  margin-right: 8px;
  color: #e76f51;
}

/* Order Summary List */
.order-list {
  list-style: none;
}

.order-item {
  padding: 8px 0;
  font-size: 0.95rem;
  color: #2a2a2a;
  border-bottom: 1px solid #f1f1f1;
  transition: background 0.2s;
}

.order-item:hover {
  background: #fff8f1;
  border-radius: 6px;
}

.order-item-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.order-item-main .material-icons-round {
  font-size: 18px;
  margin-right: 8px;
  color: #2a9d8f;
}

.order-item-main .badge {
  background: #0c6434;
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
}

.order-item-extra,
.order-item-addon {
  display: flex;
  align-items: center;
  padding-left: 26px;
  font-size: 0.9rem;
  color: #2a2a2a;
}

.order-item-extra .material-icons-round,
.order-item-addon .material-icons-round {
  font-size: 16px;
  margin-right: 8px;
  color: #2a9d8f;
}

/* Modal Footer */
.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid #f1f1f1;
}

/* Buttons */
.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
}

.btn .material-icons-round {
  font-size: 18px;
  margin-right: 6px;
}

.btn-secondary {
  background: #6b7280;
  color: #fff;
}

.btn-secondary:hover {
  background: #5a626e;
  transform: translateY(-1px);
}

/* Details bekijken butonu */
button[onclick^="loadOrderDetails"] {
    background: transparent;
    border: none;
    color: #008BBA;
    font-size: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1.5px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: transform 0.1s ease, background 0.2s ease, color 0.2s ease;
}

button[onclick^="loadOrderDetails"]:hover {
    background: rgba(0, 139, 186, 0.1);
    color: #00749B;
    transform: translateY(-1px);
}

button[onclick^="loadOrderDetails"]:active {
    transform: translateY(0);
    background: rgba(0, 139, 186, 0.2);
}

/* Responsive */
@media (max-width: 600px) {
  .modal-content {
    width: 95%;
    padding: 15px;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  .section {
    padding: 10px;
  }

  .btn {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}