/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --background: hsl(0, 0%, 98%);
    --foreground: hsl(0, 0%, 10%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(0, 0%, 10%);
    --primary: hsl(0, 84%, 50%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-glow: hsl(0, 84%, 60%);
    --secondary: hsl(0, 0%, 15%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --muted: hsl(0, 0%, 95%);
    --muted-foreground: hsl(0, 0%, 45%);
    --border: hsl(0, 0%, 90%);
    --destructive: hsl(0, 84%, 50%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(0, 84%, 50%) 0%, hsl(0, 84%, 60%) 100%);
    --gradient-dark: linear-gradient(135deg, hsl(0, 0%, 15%) 0%, hsl(0, 0%, 10%) 100%);
    
    /* Shadows */
    --shadow-glow: 0 10px 40px -10px hsl(0, 84%, 50%, 0.4);
    --shadow-card: 0 4px 20px -4px hsl(0, 0%, 0%, 0.1);
    
    /* Border Radius */
    --radius: 1rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: 6rem;
}

/* Override body padding for checkout page */
body:has(.checkout-container) {
    padding-bottom: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 4px 20px -4px hsl(0, 0%, 0%, 0.1), 0 0 0 3px var(--primary-glow);
        transform: scale(1.02);
    }
    50% {
        box-shadow: 0 4px 20px -4px hsl(0, 0%, 0%, 0.1), 0 0 0 6px var(--primary-glow);
        transform: scale(1.04);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.5s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.3s ease-out;
}

/* Combo 1 Special Highlight */
.product-card[data-combo-id="combo-1"] {
    position: relative;
    overflow: hidden;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    cursor: pointer;
    animation: fadeIn 0.5s ease-out;
}

.product-card[data-combo-id="combo-1"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary-glow);
    border-radius: var(--radius);
    pointer-events: none;
    z-index: 1;
}

.product-card[data-combo-id="combo-1"]:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
    animation: highlightPulse 2s infinite;
}

.product-card[data-combo-id="combo-1"] .product-image {
    position: relative;
}

.product-card[data-combo-id="combo-1"] .product-image::after {
    content: 'MAIS VENDIDO';
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    z-index: 2;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--card);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.header .container {
    padding: 1rem;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo-img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid hsl(0, 84%, 50%, 0.2);
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.logo-text p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.header-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.status-item:first-child {
    color: var(--foreground);
    font-weight: 500;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.rating {
    color: var(--foreground) !important;
    font-weight: 500;
}

.rating svg {
    color: #fbbf24;
    fill: #fbbf24;
}

/* Main Content */
.main {
    padding: 1.5rem 0;
}

/* Promo Bar */
.promo-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: slideUp 0.5s ease-out;
}

@media (min-width: 768px) {
    .promo-bar {
        grid-template-columns: 1fr 1fr;
    }
}

.promo-card {
    padding: 0.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.promo-card.primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-glow);
}

.promo-card.secondary {
    background: var(--background);
    color: var(--primary);
    box-shadow: var(--shadow-card);
    border:3px solid var(--primary-glow)
}

.promo-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
}

.promo-text p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.highlight {
    font-weight: 700;
}

/* Tabs */
.tabs {
    width: 100%;
}

.tabs-list {
    display: flex;
    width: 100%;
    background-color: var(--muted);
    padding: 0.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.tab-trigger {
    flex: 1;
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--muted-foreground);
}

.tab-trigger.active {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-glow);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Product Card */
.product-card {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    cursor: pointer;
    animation: fadeIn 0.5s ease-out;
}

.product-card:hover {
    box-shadow: var(--shadow-glow);
}

.product-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.combo-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.product-info {
    padding: 1rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.product-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary.full-width {
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
    font-size: 1rem;
}

.btn-ghost {
    background: none;
    border: none;
    color: var(--destructive);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-ghost:hover {
    background-color: hsl(0, 84%, 50%, 0.1);
}

.btn-outline {
    background: none;
    border: 1px solid var(--border);
    color: var(--foreground);
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    border-color: var(--primary);
}

.close-btn {
    background: none;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.close-btn:hover {
    background-color: var(--muted);
}

/* Floating Cart */
.floating-cart {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 40;
    animation: slideUp 0.5s ease-out;
}

.floating-cart-btn {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    border: none;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: opacity 0.3s ease;
}

.floating-cart-btn:hover {
    opacity: 0.9;
}

.cart-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-icon-wrapper {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-divider {
    width: 1px;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 60;
    display: none;
}

.cart-sidebar.open {
    display: block;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
}

.cart-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 32rem;
    height: 100%;
    background-color: var(--card);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-header svg {
    color: var(--primary);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    gap: 1rem;
}

.empty-icon {
    font-size: 6rem;
    opacity: 0.5;
}

.cart-empty h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.cart-empty p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    background-color: var(--muted);
    border-radius: 0.75rem;
    padding: 1rem;
    animation: fadeIn 0.5s ease-out;
}

.cart-item-content {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.cart-item-image {
    width: 5rem;
    height: 5rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-details {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

.cart-item-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.25rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-display {
    width: 2rem;
    text-align: center;
    font-weight: 600;
    color: var(--foreground);
}

.remove-btn {
    background: none;
    border: none;
    color: var(--destructive);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.remove-btn:hover {
    background-color: hsl(0, 84%, 50%, 0.1);
}

.cart-footer {
    border-top: 1px solid var(--border);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-total-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.125rem;
}

.total-row span:first-child {
    font-weight: 600;
    color: var(--foreground);
}

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

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 70;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-glow);
    max-width: 28rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: scaleIn 0.3s ease-out;
}

.combo-modal {
    max-width: 32rem;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.modal-body {
    padding: 1.5rem;
}

/* Location Modal */
.location-step {
    padding: 1.5rem;
}

.location-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.location-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-foreground);
}

.location-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.location-header p {
    color: var(--muted-foreground);
}

.location-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group select,
.form-group input {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
    transition: var(--transition-smooth);
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(0, 84%, 50%, 0.1);
}

.small {
    width: 5rem;
}

.location-searching,
.location-found {
    text-align: center;
    padding: 3rem 1.5rem;
}

.spinner {
    width: 4rem;
    height: 4rem;
    border: 4px solid var(--muted);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background-color: hsl(142, 76%, 36%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: hsl(142, 76%, 36%);
}

.location-searching h3,
.location-found h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.location-searching p,
.location-found p {
    color: var(--muted-foreground);
}

.location-found p {
    font-size: 1.125rem;
}

/* Combo Modal */
.combo-section {
    margin-bottom: 1.5rem;
}

.combo-section h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.selection-count {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.flavor-option,
.drink-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.flavor-option:hover,
.drink-option:hover {
    border-color: var(--primary);
}

.flavor-option.selected,
.drink-option.selected {
    border-color: var(--primary);
    background-color: hsl(0, 84%, 50%, 0.05);
}

.flavor-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.flavor-option input,
.drink-option input {
    margin: 0;
}

.flavor-option label,
.drink-option label {
    cursor: pointer;
    flex: 1;
    font-size: 0.875rem;
    color: var(--foreground);
}

.drinks-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Toast */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 990;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    color: var(--primary-foreground); /* Changed from var(--background) to var(--primary-foreground) for better contrast */
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 20rem;
    animation: slideIn 0.3s ease-out;
}

.toast.success {
    border-color: hsl(142, 76%, 36%);
    background-color: hsla(142, 76%, 36%, 0.397);
    backdrop-filter: blur(10px);
}

.toast.error {
    border-color: var(--destructive);
    background-color: hsla(0, 84%, 50%, 0.5);
    backdrop-filter: blur(10px);
}

.toast-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    color: hsl(142, 76%, 36%);
}

.toast.error .toast-icon {
    color: var(--destructive);
}

.toast-message {
    z-index: 999;
    flex: 1;
    font-size: 0.875rem;
    color: var(--foreground);
}

/* Disclaimer Banner */
.disclaimer-banner {
    background-color: hsl(48, 96%, 89%); /* Light yellow */
    color: hsl(40, 80%, 20%); /* Darker text for contrast */
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid hsl(48, 96%, 80%);
    box-shadow: 0 2px 10px -5px hsl(48, 96%, 70%, 0.5);
}

/* Customer Reviews Section */
.customer-reviews-section {
    padding: 2rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to one column for mobile */
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns for tablet */
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr); /* Three columns for desktop */
    }
}

.review-card {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    animation: fadeIn 0.5s ease-out;
}

.review-card:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

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

.customer-name {
    font-weight: 600;
    color: var(--foreground);
    font-size: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24; /* Star color */
    fill: #fbbf24; /* Star fill color */
}

.stars svg {
    width: 1rem;
    height: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .header-status {
        gap: 0.75rem;
    }
    
    .status-item {
        font-size: 0.75rem;
    }
    
    /* Esconder alguns itens no mobile para dar espaço */
    .status-item:nth-child(4) {
        display: none;
    }
    
    .floating-cart-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .cart-content {
        width: 100%;
    }
    
    .modal-content {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .flavors-grid {
        grid-template-columns: 1fr;
    }
    
    .toast {
        min-width: auto;
        width: calc(100vw - 2rem);
    }
}

/* Checkout Page Styles */
.checkout-container {
    min-height: 100vh;
    background-color: var(--background);
    padding: 2rem 1rem;
}

.checkout-content {
    max-width: 64rem;
    margin: 0 auto;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .checkout-content {
        padding: 2rem;
    }
}

.back-btn {
    background: none;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.back-btn:hover {
    background-color: var(--muted);
}

.checkout-grid {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
}

@media (min-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    gap: 0.75rem;
}

.form-row.two-cols {
    grid-template-columns: 2fr 1fr;
}

.form-row.half {
    grid-template-columns: 1fr 1fr;
}

.order-summary {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.summary-item-name {
    color: var(--foreground);
}

.summary-item-price {
    font-weight: 600;
    color: var(--foreground);
}

.summary-total {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 1.125rem;
    font-weight: 700;
}

.summary-total-label {
    color: var(--foreground);
}

.summary-total-price {
    color: var(--primary);
}

.empty-cart-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 50vh;
    gap: 1rem;
}

.empty-cart-icon {
    width: 5rem;
    height: 5rem;
    background-color: var(--muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.empty-cart-message h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.empty-cart-message p {
    color: var(--muted-foreground);
}

/* Payment Step */
.payment-container {
    max-width: 28rem;
    margin: 0 auto;
    animation: fadeIn 0.5s ease-out;
    padding: 1rem;
}

.payment-card {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.payment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    text-align: center;
    margin-bottom: 1.5rem;
}

.payment-amount {
    background-color: var(--muted);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.payment-amount-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.payment-amount-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.qr-code {
    background-color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.qr-placeholder {
    width: 12rem;
    height: 12rem;
    background-color: #e5e7eb;
    margin: 0 auto;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.pix-code-section {
    margin-bottom: 1.5rem;
}

.pix-code-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    display: block;
}

.pix-code-input {
    display: flex;
    gap: 0.5rem;
}

.pix-code-input input {
    flex: 1;
    background-color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-family: monospace;
    font-size: 0.875rem;
    color: var(--foreground);
}

.copy-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--foreground);
}

.copy-btn:hover {
    border-color: var(--primary);
}

.success-container {
    max-width: 28rem;
    margin: 0 auto;
    animation: scaleIn 0.3s ease-out;
    padding: 1rem;
}

.success-card {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.success-card-icon {
    width: 6rem;
    height: 6rem;
    background-color: hsl(142, 76%, 36%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: hsl(142, 76%, 36%);
}

.success-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.success-message {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.success-time {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}