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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

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

/* Modal de Localização */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-content h3 {
    margin-bottom: 10px;
    color: #333;
}

.location-form {
    margin-top: 20px;
}

.location-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.location-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 15px;
    background-color: #fff;
}

.location-form select:focus {
    outline: none;
    border-color: #ff6b35;
}

.btn-primary {
    background-color: #ff6b35;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e55a2b;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 28px;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-link i {
    font-size: 16px;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-count {
    background-color: #ff6b35;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

/* Store Available Section */
.store-available {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 30px 0;
}

.store-info {
    text-align: center;
}

.store-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.store-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.store-details span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-details i {
    font-size: 16px;
}

.btn-start-order {
    background-color: white;
    color: #ff6b35;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.btn-start-order:hover {
    transform: scale(1.05);
}

.btn-start-order i {
    font-size: 18px;
}

/* Store Banner Section */
.store-banner-section {
    position: relative;
    margin-bottom: 80px;
}

.store-banner {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #2c1810 0%, #3d2415 50%, #4a2c1a 100%);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(139, 69, 19, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.store-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.store-banner::after {
    content: '🍕';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    opacity: 0.15;
    pointer-events: none;
}

.status-badge-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.store-profile-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.store-profile-logo {
    position: absolute;
    top: -60px;
    left: 20px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #5D4037 0%, #3E2723 100%);
    border-radius: 12px;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.logo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 100%;
    height: 100%;
}

.chef-icon {
    font-size: 48px;
    margin-bottom: 5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-pizzaria {
    font-size: 12px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 2px;
    font-style: italic;
}

.logo-bento {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
}

.logo-bento::after {
    content: '👨‍🍳';
    font-size: 14px;
    margin-left: 4px;
    position: absolute;
    top: -2px;
}

.verified-icon {
    color: #4caf50;
    font-size: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Store Header */
.store-header {
    background-color: #fff;
    padding: 30px 0 20px;
    border-bottom: 1px solid #eee;
    margin-top: 60px;
}

.store-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.store-name-section h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.open {
    background-color: #4caf50;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-badge.open i {
    font-size: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.store-info-section {
    flex: 1;
    max-width: 500px;
}

.rating-section h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.verified {
    color: #4caf50;
    font-size: 14px;
    margin-left: 8px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.rating-stars {
    color: #ffc107;
    font-size: 18px;
}

.rating-value {
    font-weight: bold;
    font-size: 18px;
}

.rating-count {
    color: #666;
    font-size: 14px;
}

.store-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meta-item {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: #999;
    font-size: 14px;
    width: 16px;
}

.meta-item strong {
    color: #333;
}

.ifood-badge {
    color: #ea1d2c;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.verified-badge {
    color: #4caf50;
    font-weight: 600;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Promotions Banner */
.promotions-banner {
    background-color: #fff;
    padding: 30px 0 20px;
    border-bottom: 1px solid #eee;
}

.promotions-banner .section-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

.promo-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background-color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-btn.active {
    background-color: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.tab-btn:hover {
    border-color: #ff6b35;
}

/* Pizza Flavors Section */
.pizza-flavors {
    background-color: #fff;
    padding: 40px 0;
}

.pizza-flavors .section-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.pizza-flavors .section-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.flavor-card {
    background-color: #fff;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.flavor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}

.flavor-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
}

.flavor-card h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.flavor-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
    min-height: 40px;
}

.flavor-price {
    font-size: 22px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 15px;
}

.btn-flavor {
    width: 100%;
    background-color: #ff6b35;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-flavor:hover {
    background-color: #e55a2b;
}

.btn-flavor i {
    font-size: 16px;
}

/* Promotions Section */
.promotions {
    background-color: #fff;
    padding: 40px 0;
}

.promotions .section-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.promotion-card {
    background-color: #fff;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.promotion-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #4caf50;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.promotion-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff6b35;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.promotion-card.featured {
    border-color: #ff6b35;
    border-width: 3px;
}

.promotion-card.best-offer {
    border-color: #ffc107;
    border-width: 3px;
}

.promotion-card h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    margin-top: 10px;
}

.promotion-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.promotion-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

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

.new-price {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
}

.btn-promo {
    width: 100%;
    background-color: #ff6b35;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-promo:hover {
    background-color: #e55a2b;
}

.btn-promo i {
    font-size: 18px;
}

/* Reviews Section */
.reviews {
    background-color: #fff;
    padding: 40px 0;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews .section-title {
    font-size: 24px;
    color: #333;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-value-large {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.rating-stars-large {
    color: #ffc107;
    font-size: 24px;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rating-count-large {
    font-weight: 600;
    color: #333;
}

.total-reviews {
    color: #666;
    font-size: 14px;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #eee;
}

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

.reviewer-name {
    font-weight: 600;
    color: #333;
}

.review-stars {
    color: #ffc107;
    font-size: 14px;
}

.review-text {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.review-date {
    color: #999;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .store-header-content {
        flex-direction: column;
    }

    .store-details {
        flex-direction: column;
        gap: 10px;
    }

    .store-banner {
        height: 200px;
    }

    .store-profile-logo {
        width: 120px;
        height: 120px;
        top: -50px;
    }

    .chef-icon {
        font-size: 40px;
    }

    .logo-pizzaria {
        font-size: 10px;
    }

    .logo-bento {
        font-size: 20px;
    }

    .store-header {
        margin-top: 50px;
    }

    .flavors-grid {
        grid-template-columns: 1fr;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
    }

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

    .reviews-header {
        flex-direction: column;
    }

    .overall-rating {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .modal-content {
        padding: 20px;
    }

    .promotion-card {
        padding: 15px;
    }

    .flavor-selection-grid {
        grid-template-columns: 1fr;
    }

    .flavor-modal-content {
        width: 100%;
        max-height: 95vh;
    }
}

/* Modal de Seleção de Sabores */
.flavor-modal-content {
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    width: 95%;
}

.flavor-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.flavor-modal-header h2 {
    font-size: 24px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flavor-modal-header h2 i {
    font-size: 26px;
    color: #ff6b35;
}

.close-flavor-modal {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    line-height: 1;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-flavor-modal:hover {
    color: #333;
}

.flavor-modal-body {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.flavor-modal-info {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.flavor-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.flavor-selection-item {
    background-color: #fff;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.flavor-selection-item:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.flavor-selection-item.selected {
    border-color: #ff6b35;
    background-color: #fff5f2;
}

.flavor-selection-item.selected .flavor-selection-check {
    opacity: 1;
    color: #ff6b35;
}

.flavor-selection-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
}

.flavor-selection-info {
    flex: 1;
}

.flavor-selection-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.flavor-selection-info p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.flavor-selection-check {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    color: #ff6b35;
}

.selected-flavors {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.selected-flavors-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-size: 16px;
}

.selected-flavors-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.no-selection {
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 10px;
}

.selected-flavor-item {
    background-color: #fff;
    border: 2px solid #ff6b35;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.flavor-number {
    background-color: #ff6b35;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.flavor-name {
    flex: 1;
    font-weight: 600;
    color: #333;
}

.remove-flavor-btn {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-flavor-btn:hover {
    color: #cc0000;
}

.flavor-modal-footer {
    border-top: 2px solid #eee;
    padding-top: 20px;
}

.btn-confirm-flavors {
    width: 100%;
    background-color: #ff6b35;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-confirm-flavors:hover:not(:disabled) {
    background-color: #e55a2b;
}

.btn-confirm-flavors:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.btn-confirm-flavors i {
    font-size: 18px;
}

/* Carrinho Modal */
.cart-modal-content {
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.cart-header h2 {
    font-size: 24px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h2 i {
    font-size: 26px;
    color: #ff6b35;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    line-height: 1;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    color: #333;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-info h4 i {
    color: #ff6b35;
    font-size: 18px;
}

.cart-item-price {
    font-size: 14px;
    color: #666;
}

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

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.qty-btn:hover {
    background-color: #f5f5f5;
    border-color: #ff6b35;
    color: #ff6b35;
}

.qty-btn i {
    font-size: 12px;
}

.cart-item-qty {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.remove-btn {
    width: 32px;
    height: 32px;
    border: none;
    background-color: #ff4444;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.remove-btn:hover {
    background-color: #cc0000;
}

.remove-btn i {
    font-size: 14px;
}

.cart-item-total {
    font-weight: bold;
    font-size: 18px;
    color: #ff6b35;
    min-width: 100px;
    text-align: right;
}

.cart-footer {
    border-top: 2px solid #eee;
    padding-top: 20px;
}

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

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

.total-row.total-final {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    padding-top: 10px;
    border-top: 2px solid #eee;
}

.btn-checkout {
    width: 100%;
    background-color: #ff6b35;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-checkout:hover:not(:disabled) {
    background-color: #e55a2b;
}

.btn-checkout:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.btn-checkout i {
    font-size: 18px;
}

/* Notificação de Carrinho */
.cart-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4caf50;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 1000;
}

.cart-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.cart-notification i {
    margin-right: 8px;
    font-size: 18px;
}

/* Checkout Page */
.checkout-main {
    padding: 40px 0;
    background-color: #f5f5f5;
    min-height: calc(100vh - 80px);
}

.checkout-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.checkout-title i {
    color: #ff6b35;
    font-size: 36px;
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.checkout-form-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.checkout-section:last-child {
    margin-bottom: 0;
}

.section-heading {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-heading i {
    color: #ff6b35;
    font-size: 24px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Métodos de Pagamento */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    border: 2px solid #eee;
    border-radius: 8px;
    transition: all 0.3s;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    cursor: pointer;
    margin: 0;
}

.payment-option input[type="radio"]:checked + label {
    background-color: #fff5f2;
}

.payment-option:has(input[type="radio"]:checked) {
    border-color: #ff6b35;
}

.payment-icon {
    font-size: 24px;
    color: #ff6b35;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-name {
    flex: 1;
    font-weight: 600;
    color: #333;
}

.payment-desc {
    color: #666;
    font-size: 14px;
}

.card-fields,
.cash-change-fields,
.pix-payment-area {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

/* Estilos PIX Payment */
.pix-container {
    width: 100%;
}

.pix-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pix-title i {
    color: #32CD32;
}

.pix-loading,
.pix-status {
    text-align: center;
    padding: 30px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #32CD32;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pix-loading p,
.pix-status p {
    color: #666;
    margin: 10px 0;
}

.status-message {
    font-size: 0.9rem;
    color: #999;
}

.pix-qrcode {
    text-align: center;
}

.qrcode-image-container {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.qrcode-image-container img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
}

.pix-copy-code {
    margin-top: 20px;
}

.pix-instructions {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pix-code-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.pix-code-input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #fff;
    color: #333;
    font-family: monospace;
}

.btn-copy-pix {
    padding: 12px 20px;
    background: #32CD32;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-copy-pix:hover {
    background: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(50, 205, 50, 0.3);
}

.pix-info {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: left;
}

.pix-info p {
    margin: 8px 0;
    color: #333;
}

.pix-info strong {
    color: #666;
}

.pix-success {
    text-align: center;
    padding: 30px;
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: 12px;
    color: #155724;
}

.pix-success i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 15px;
}

.pix-success p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 0;
}

.success-message {
    font-size: 0.95rem;
    color: #666;
}

.pix-error {
    text-align: center;
    padding: 30px;
    background: #f8d7da;
    border: 2px solid #dc3545;
    border-radius: 12px;
    color: #721c24;
}

.pix-error i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 15px;
}

.pix-error p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 0;
}

.error-message {
    font-size: 0.95rem;
    color: #666;
    margin: 10px 0;
}

.btn-retry-pix {
    margin-top: 20px;
    padding: 12px 30px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-retry-pix:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

@media (max-width: 768px) {
    .pix-code-container {
        flex-direction: column;
    }
    
    .btn-copy-pix {
        width: 100%;
        justify-content: center;
    }
    
    .qrcode-image-container img {
        max-width: 200px;
    }
}

/* Resumo do Pedido */
.checkout-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.summary-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-title i {
    color: #ff6b35;
    font-size: 24px;
}

.summary-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.summary-item:last-child {
    border-bottom: none;
}

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

.summary-item-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-item-name i {
    color: #ff6b35;
    font-size: 16px;
}

.summary-item-qty {
    font-size: 12px;
    color: #666;
}

.summary-item-price {
    font-weight: 600;
    color: #ff6b35;
}

.summary-totals {
    padding: 20px 0;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.summary-totals .total-row {
    margin-bottom: 10px;
}

.summary-totals .total-row.total-final {
    font-size: 24px;
    margin-top: 15px;
    padding-top: 15px;
}

.delivery-info {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.delivery-info p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.delivery-info p:last-child {
    margin-bottom: 0;
}

.delivery-info p i {
    color: #ff6b35;
    font-size: 16px;
}

.delivery-info strong {
    color: #333;
}

.btn-submit-order {
    width: 100%;
    background-color: #ff6b35;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-order:hover:not(:disabled) {
    background-color: #e55a2b;
}

.btn-submit-order:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.btn-submit-order i {
    font-size: 18px;
}

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

/* Responsive Checkout */
@media (max-width: 968px) {
    .checkout-content {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .checkout-form-section {
        padding: 20px;
    }

    .summary-card {
        padding: 20px;
    }
}

