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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.gurme-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%), var(--restaurant-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 20px var(--primary-color);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.restaurant-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.restaurant-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.restaurant-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.restaurant-details {
    display: flex;
    gap: 25px;
    font-size: 0.9rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.selected-options .badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

.detail-item a {
    color: #fff!important;
    text-decoration: none;
}

.detail-item i {
    width: 16px;
    text-align: center;
}

.header-language {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 5px 15px;
}

.categories-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.category-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 170px;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--primary-color);
}

.category-image {
    height: 170px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    margin:0;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-slider-container {
    background: white;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 15px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-to-main {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-to-main:hover {
    background: var(--primary-color);
}

.category-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.slider-category {
    min-width: 200px;
    height: 80px;
    text-align: center;
    cursor: pointer;
    padding: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    background: white;
    position: relative;
    overflow: hidden;
}

.slider-category:hover,
.slider-category.active {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--primary-color);
}

.slider-category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.slider-category.active .slider-category-image {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.slider-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-category-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 10px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-section {
    display: none;
}

.menu-section.active {
    display: block !important;
}

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

.group-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    align-items: stretch;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card.out-of-stock {
    opacity: 0.6;
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.search-icon-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stock-badge {
    background: #dc3545;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-info {
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1; /* Kartın geri kalan alanını kapla */
}

.product-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.3;
}

.product-description {
    font-size: 0.65rem;
    color: #888;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.product-price-tags {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-tags {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tag-label {
    background: var(--primary-color);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: none;
}

.product-variants {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 6px;
}

.variants-list {
    margin-bottom: 4px;
}

.variant-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.6rem;
    margin-bottom: 1px;
    flex-wrap: wrap;
    gap: 4px;
}

.variant-name {
    color: #666;
    font-weight: 400;
    flex: 1;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.3;
}

.variant-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.65rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.price-current {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-old {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 500px;
    }

    .category-card {
        height: 170px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .restaurant-details {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .restaurant-name {
        font-size: 1.5rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 500px;
        margin: 0 auto;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
    }

    .category-slider {
        gap: 10px;
    }

    .slider-category {
        min-width: 150px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .gurme-header {
        padding: 15px 0;
    }

    .header-content {
        padding: 0 15px;
    }

    .restaurant-name {
        font-size: 1.3rem;
    }

    .restaurant-tagline {
        font-size: 1rem;
    }

    .categories-container,
    .menu-container {
        padding: 0 5px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        margin: 0 auto;
    }

    .category-card {
        max-width: none;
        margin: 0;
        height: 170px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .product-card {
        max-width: none;
        margin: 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }

    .slider-category {
        min-width: 120px;
        height: 75px;
    }
}

.gurme-footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
    background: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-social {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: var(--primary-color);
    opacity: 0.9;
}

.footer-copyright {
    margin-top: 10px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.product-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.product-popup-overlay.active {
    display: flex;
}

.product-popup {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.popup-product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.popup-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.popup-product-info {
    padding: 25px;
}

.popup-product-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.popup-product-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.popup-product-tags {
    margin-bottom: 20px;
}

.popup-product-variants {
    margin-bottom: 20px;
}

.popup-variants-list {
    margin-bottom: 15px;
}

.popup-variant-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 6px 10px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 13px;
}

.popup-variant-name {
    color: #666;
    font-weight: 400;
}

.popup-variant-price {
    color: var(--primary-color);
    font-weight: 600;
}

.popup-tag-label {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.popup-product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.popup-price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.popup-price-old {
    font-size: 1.4rem;
    color: #999;
    text-decoration: line-through;
}

@media (max-width: 768px) {
    .product-popup {
        max-width: 95vw;
        margin: 10px;
    }

    .popup-product-image {
        height: 250px;
    }

    .popup-product-info {
        padding: 20px;
    }

    .popup-product-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-popup {
        max-width: 100vw;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
    }

    .popup-product-image {
        height: 300px;
        border-radius: 0;
    }

    .popup-product-info {
        padding: 15px;
    }

    .popup-product-title {
        font-size: 1.3rem;
    }
}


.header-language {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.language-selector {
    position: relative;
    display: inline-block;
}

.language-selector-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
}

.language-selector-current:hover {
    opacity: 0.8;
}

.language-flag {
    font-size: 16px;
}

.language-name {
    font-size: 13px;
    white-space: nowrap;
}

.language-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-selector.active .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 5px;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #e0e0e0;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f5f5f5;
}

.language-option .language-flag {
    font-size: 16px;
}

.language-option .language-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .header-language {
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }

    .language-selector-current {
        padding: 6px 10px;
        font-size: 13px;
    }

    .language-dropdown {
        min-width: 140px;
        right: -10px;
    }

    .language-option {
        padding: 10px 14px;
    }

    .language-option .language-name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header-language {
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }

    .language-selector-current {
        padding: 5px 8px;
    }

    .language-flag {
        font-size: 14px;
    }

    .language-arrow {
        font-size: 10px;
    }
}

.cart-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.cart-toggle {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-width: 200px;
}

.cart-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.cart-icon {
    position: relative;
    font-size: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.cart-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-label {
    font-size: 14px;
    font-weight: 500;
}

.cart-total {
    font-size: 16px;
    font-weight: bold;
}

/* Sepet Panel */
.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.cart-panel.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-color);
    color: white;
}

.cart-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    max-height: calc(100vh - 225px);
}

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

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #f8f9fa;
}

.item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.item-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.item-price {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.item-notes {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.item-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 20px;
    padding: 5px;
    border: 1px solid #ddd;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #d32f2f;
    transform: scale(1.1);
}

.quantity {
    font-size: 14px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.remove-item:hover {
    background: #ff3742;
    transform: scale(1.1);
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.cart-empty i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 15px;
}

.cart-empty p {
    font-size: 16px;
    margin: 0;
}

/* Sepet Footer */
.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
    margin-top: auto;
    flex-shrink: 0;
}

.cart-summary {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-row:last-child {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
}

/* Minimum Order Warning */
.minimum-order-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 12px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #856404;
    font-size: 14px;
}

.minimum-order-warning i {
    color: #f39c12;
    font-size: 16px;
}

.cart-actions {
    display: flex;
    gap: 10px;
}

.btn-clear-cart,
.btn-checkout {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-clear-cart.show,
.btn-checkout.show {
    display: flex;
}

.btn-clear-cart {
    background: #6c757d;
    color: white;
}

.btn-clear-cart:hover {
    background: #5a6268;
}

.btn-checkout {
    background: var(--primary-color);
    color: white;
}

.btn-checkout:hover {
    background: #d32f2f;
}

/* Sepet Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.cart-open {
    overflow: hidden;
}

.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.order-modal.active {
    opacity: 1;
    visibility: visible;
}

.order-modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.order-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-color);
    color: white;
    border-radius: 15px 15px 0 0;
}

.order-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.order-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.order-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.order-modal-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.required {
    color: #ff4757;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.order-summary {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.order-summary h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #333;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.order-total {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
    font-size: 16px;
}

.form-actions {
    display: flex;
    gap: 10px;
}

.btn-cancel,
.btn-submit-order {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-cancel {
    background: #6c757d;
    color: white;
}

.btn-cancel:hover {
    background: #5a6268;
}

.btn-submit-order {
    background: var(--primary-color);
    color: white;
}

.btn-submit-order:hover {
    background: #d32f2f;
}

.product-actions {
    margin-top: 15px;
}

.btn-add-to-cart {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 4px 11px;

    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-to-cart:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-add-to-cart i {
    font-size: 12px;
}

.popup-product-actions {
    margin-top: 20px;
}

.btn-add-to-cart-popup {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-to-cart-popup:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .cart-container {
        bottom: 15px;
        right: 15px;
    }

    .cart-toggle {
        min-width: 160px;
        padding: 12px 15px;
    }

    .cart-panel {
        width: 100%;
        right: -100%;
    }

    .order-modal-content {
        width: 95%;
        margin: 20px;
    }
}

@media (max-width: 480px) {
    .cart-toggle {
        min-width: 140px;
        padding: 10px 12px;
    }

    .cart-label {
        font-size: 12px;
    }

    .cart-total {
        font-size: 14px;
    }

    .cart-item {
        padding: 10px;
    }

    .item-image {
        width: 50px;
        height: 50px;
    }
}

.gurme-product-title-row.master-product-title-row {
    width: 100%;
    line-height: 1.35;
}

.gurme-product-title-row.master-product-title-row .product-title {
    display: inline;
    margin-right: 4px;
    margin-bottom: 0;
    vertical-align: middle;
}

.gurme-product-title-row.master-product-title-row .master-product-tag-icons {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    vertical-align: middle;
}

.master-product-tag-icons {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.master-tag-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.06);
    color: var(--primary-color, #ff6b35);
    cursor: default;
    outline: none;
    flex-shrink: 0;
}

.master-tag-icon-wrap:hover,
.master-tag-icon-wrap:focus-visible {
    background: rgba(0, 0, 0, 0.1);
}

.master-tag-icon {
    font-size: 0.72rem;
    line-height: 1;
}

.master-tag-icon-wrap::after {
    content: attr(data-label);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%) translateY(4px);
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(20, 20, 20, 0.92);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.25;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    z-index: 30;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.master-tag-icon-wrap:is(:hover, :focus-visible, .is-open)::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.popup-product-tags .master-popup-tag-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.popup-product-tags .master-popup-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.06);
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.25;
    max-width: 100%;
}

.popup-product-tags .master-popup-tag-ico {
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--primary-color, #ff6b35);
}

.popup-product-tags .master-popup-tag-label {
    word-break: break-word;
}
