/* ============================================
   PIZZARIA PALERMO - PREMIUM ITALIAN STYLE
   ============================================ */

/* -- CSS Variables -- */
:root {
    --bg-dark: #0d0d0d;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --bg-surface: #141414;
    --red-burnt: #8B2500;
    --red-primary: #C0392B;
    --red-light: #E74C3C;
    --red-glow: rgba(192, 57, 43, 0.3);
    --gold: #D4A017;
    --gold-light: #F4D35E;
    --gold-dark: #B8860B;
    --gold-glow: rgba(212, 160, 23, 0.3);
    --white: #FFFFFF;
    --text-primary: #F5F5F5;
    --text-secondary: #B0B0B0;
    --text-muted: #777777;
    --green-whatsapp: #25D366;
    --green-whatsapp-dark: #128C7E;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.6);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-script: 'Dancing Script', cursive;
}

/* -- Reset & Base -- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: 1rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}

/* -- Scrollbar -- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--red-burnt);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-primary);
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
    background: linear-gradient(90deg, var(--red-burnt), var(--red-primary), var(--red-burnt));
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
    overflow: hidden;
    transition: var(--transition);
}

.promo-banner.hidden {
    transform: translateY(-100%);
    height: 0;
    padding: 0;
    opacity: 0;
}

.promo-banner-content {
    display: flex;
    animation: promoScroll 20s linear infinite;
    white-space: nowrap;
    gap: 60px;
}

.promo-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.promo-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 1.4rem;
    opacity: 0.7;
    transition: var(--transition);
    z-index: 2;
}

.promo-close:hover {
    opacity: 1;
}

@keyframes promoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 8px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-btn {
    position: relative;
    color: var(--text-primary);
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.cart-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--red-primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: var(--transition);
}

.cart-count.active {
    transform: scale(1);
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.5) 60%,
            rgba(13, 13, 13, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    width: 140px;
    margin: 0 auto 24px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gold-text {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 300;
}

.hero-delivery-info {
    margin-bottom: 32px;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.delivery-badge svg {
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-primary), var(--red-burnt));
    color: white;
    box-shadow: 0 4px 24px var(--red-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(192, 57, 43, 0.5);
    background: linear-gradient(135deg, var(--red-light), var(--red-primary));
}

.btn-whatsapp {
    background: var(--green-whatsapp);
    color: white;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
    background: #2be06a;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
}

.section-desc {
    color: var(--text-secondary);
    margin-top: 12px;
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais {
    padding: 80px 0;
    background: var(--bg-surface);
    position: relative;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.diferencial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.diferencial-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-dark);
    box-shadow: 0 8px 32px var(--gold-glow);
}

.diferencial-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.diferencial-card:hover .diferencial-icon {
    transform: scale(1.2);
}

.diferencial-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--gold-light);
}

.diferencial-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   CARDÁPIO / MENU
   ============================================ */
.cardapio {
    padding: 80px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--gold);
    border-color: var(--gold-dark);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--red-primary), var(--red-burnt));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px var(--red-glow);
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto 40px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    transition: var(--transition);
}

.search-bar:focus-within {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.search-bar svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

.search-bar input {
    border: none;
    background: none;
    color: var(--text-primary);
    width: 100%;
    outline: none;
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Pizza Card */
.pizza-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pizza-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 160, 23, 0.3);
    box-shadow: var(--shadow-hover);
}

.pizza-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg-surface);
}

.pizza-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pizza-card:hover .pizza-card-image img {
    transform: scale(1.08);
}

.pizza-card-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    gap: 12px;
}

.pizza-card-placeholder svg {
    opacity: 0.3;
}

.pizza-card-placeholder span {
    font-size: 0.85rem;
    font-style: italic;
}

/* Badges */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.badge-popular {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
}

.badge-new {
    background: var(--red-primary);
    color: white;
}

.badge-premium {
    background: linear-gradient(135deg, #8B5CF6, #6D28D9);
    color: white;
}

.pizza-card-body {
    padding: 20px;
}

.pizza-card-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.pizza-card-ingredients {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pizza-card-prices {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.price-btn {
    flex: 1;
    padding: 10px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    color: var(--text-primary);
    cursor: pointer;
}

.price-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.price-btn.selected {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-dark);
    border-color: var(--gold);
    font-weight: 700;
}

.price-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    margin-bottom: 2px;
}

.price-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--red-primary), var(--red-burnt));
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px var(--red-glow);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--red-light), var(--red-primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192, 57, 43, 0.5);
}

.add-to-cart-btn.added {
    background: linear-gradient(135deg, var(--green-whatsapp), var(--green-whatsapp-dark));
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

/* ============================================
   DRINKS CARD
   ============================================ */
.drink-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.drink-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 160, 23, 0.3);
    box-shadow: var(--shadow-hover);
}

.drink-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-surface);
}

.drink-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.drink-card:hover .drink-card-image img {
    transform: scale(1.08);
}

.drink-card-body {
    padding: 20px;
}

.drink-card-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.drink-card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.drink-add-btn {
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--red-primary), var(--red-burnt));
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.drink-add-btn:hover {
    background: linear-gradient(135deg, var(--red-light), var(--red-primary));
    transform: translateY(-2px);
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-surface);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border-subtle);
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.cart-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1.6rem;
    transition: var(--transition);
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--red-light);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    gap: 12px;
    text-align: center;
}

.cart-empty p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.cart-empty span {
    font-size: 0.85rem;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    border: 1px solid var(--border-subtle);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-image {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-surface);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-size {
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.cart-item-price {
    font-weight: 700;
    color: var(--gold-light);
    font-size: 0.95rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.cart-item-remove {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
    padding: 4px;
}

.cart-item-remove:hover {
    color: var(--red-light);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.cart-item-qty span {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Drink Suggestion */
.drink-suggestion {
    padding: 12px 16px;
    border-top: 1px solid var(--border-subtle);
    background: rgba(212, 160, 23, 0.05);
}

.drink-suggestion-header {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gold);
}

.drink-suggestion-items {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.drink-suggestion-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.drink-suggestion-item:hover {
    border-color: var(--gold);
    background: var(--bg-card-hover);
}

.drink-suggestion-item img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
}

.drink-suggestion-item .ds-name {
    font-weight: 600;
}

.drink-suggestion-item .ds-price {
    color: var(--gold);
    font-weight: 700;
}

/* Cart Footer */
.cart-footer {
    padding: 16px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-card);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.cart-total strong {
    font-size: 1.4rem;
    color: var(--gold);
}

.cart-footer .btn+.btn {
    margin-top: 8px;
}

/* ============================================
   CHECKOUT MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1.6rem;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--red-light);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23B0B0B0' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.checkout-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.checkout-summary-item:last-child {
    border-bottom: none;
    padding-top: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Success Modal */
.success-modal {
    text-align: center;
    padding: 48px 32px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: successPulse 1s ease infinite;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.success-modal h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.success-modal p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.delivery-estimate {
    margin-top: 16px;
    padding: 12px 20px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-sm);
    display: inline-block;
}

.delivery-estimate strong {
    color: var(--gold);
}

.success-modal .btn {
    margin-top: 24px;
}

/* ============================================
   DEPOIMENTOS / TESTIMONIALS
   ============================================ */
.depoimentos {
    padding: 80px 0;
    background: var(--bg-surface);
    position: relative;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.depoimento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-dark);
}

.depoimento-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.depoimento-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-primary), var(--red-burnt));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
}

.depoimento-author strong {
    display: block;
    font-size: 0.9rem;
}

.depoimento-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-4px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--gold);
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-col ul li a {
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col ul li.highlight {
    color: var(--red-light);
    font-weight: 600;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--green-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        flex-direction: column;
        background: var(--bg-surface);
        padding: 80px 32px 32px;
        gap: 24px;
        transition: left 0.3s ease;
        z-index: 999;
        border-right: 1px solid var(--border-subtle);
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .hero-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .promo-banner {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .hero-logo {
        width: 100px;
    }

    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .diferencial-card {
        padding: 24px 16px;
    }

    .pizza-card-prices {
        flex-direction: column;
    }
}

/* ============================================
   DIVIDIR PIZZA - BUTTON & MODAL
   ============================================ */

.split-pizza-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: transparent;
    border: 1.5px dashed var(--gold);
    color: var(--gold);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.split-pizza-btn:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-1px);
}

/* Split Modal */
.split-modal-content {
    max-width: 520px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.split-modal-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
    padding: 20px;
    max-height: calc(90vh - 80px);
}

.split-modal-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Search bar */
.split-search-bar input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.split-search-bar input:focus {
    border-color: var(--gold);
}

/* Slots row */
.split-slots {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.split-slot {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background: var(--bg-card);
}

.split-slot.empty {
    border-style: dashed;
    border-color: var(--text-muted);
    opacity: 0.7;
}

.split-slot.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    opacity: 1;
}

.split-slot.filled {
    border-color: var(--primary);
    background: rgba(196, 30, 58, 0.08);
    opacity: 1;
}

.split-slot-num {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.split-slot.empty .split-slot-num {
    background: var(--text-muted);
}

.split-slot-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.split-slot-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
}

.split-slot-price {
    font-size: 0.75rem;
    color: var(--gold);
}

.split-slot-placeholder {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.split-slot-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 0.9rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pizza list */
.split-pizza-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
}

.split-pizza-list::-webkit-scrollbar {
    width: 4px;
}

.split-pizza-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.split-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.split-list-item:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
}

.split-list-item.selected {
    border-color: var(--primary);
    background: rgba(196, 30, 58, 0.08);
}

.split-list-item img,
.split-no-img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.split-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    font-size: 1.3rem;
}

.split-list-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.split-list-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.split-list-price {
    font-size: 0.8rem;
    color: var(--gold);
}

.split-list-check {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Price preview calculator */
.split-price-preview {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    overflow: hidden;
}

.split-calc {
    padding: 14px 16px;
}

.split-calc-title {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.split-calc-row {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.split-calc-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

/* Count Selector */
.split-count-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-secondary);
    padding: 12px 14px;
    border-radius: var(--radius);
    flex-wrap: wrap;
}

.split-count-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.split-count-btns {
    display: flex;
    gap: 8px;
    flex: 1;
}

.split-count-btn {
    flex: 1;
    padding: 8px 12px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.split-count-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.split-count-btn.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

/* Fractional price in list items */
.split-list-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.split-frac-price {
    font-size: 0.85rem;
    color: var(--gold-light);
}

.split-frac-price strong {
    font-weight: 700;
    color: var(--gold);
}

.split-full-price {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Formula in preview */
.split-calc-formula {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.calc-item {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: 6px;
    padding: 5px 10px;
    border: 1px solid var(--border);
}

.calc-name {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90px;
}

.calc-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.calc-plus {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

.split-calc-mean {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding: 8px;
    background: var(--bg-card);
    border-radius: 6px;
    line-height: 1.5;
}

.split-calc-mean strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* ============================================
   AUTH - BOTÃO DE CONTA NA NAVBAR
   ============================================ */
.account-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px 7px 10px;
    background: rgba(212, 160, 23, 0.08);
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.account-btn:hover {
    background: rgba(212, 160, 23, 0.15);
    border-color: var(--gold-dark);
    color: var(--gold);
    transform: translateY(-1px);
}

/* ============================================
   AUTH - ACCOUNT PANEL (sidebar)
   ============================================ */
.account-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
}

.account-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.account-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 90vw;
    background: #12100C;
    border-left: 1px solid rgba(212, 160, 23, 0.15);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.account-panel.open {
    transform: translateX(0);
}

.account-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(212, 160, 23, 0.12);
}

.account-panel-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold-light);
}

.account-panel-close {
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    transition: color 0.2s;
}

.account-panel-close:hover {
    color: var(--gold);
}

/* -- Welcome (logado) -- */
.account-welcome {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px;
}

.account-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0D0B08;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.account-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.account-info strong {
    color: var(--text-primary);
    font-size: 0.97rem;
}

.account-info span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.account-divider {
    height: 1px;
    background: rgba(212, 160, 23, 0.1);
    margin: 0 22px;
}

/* -- Menu -- */
.account-menu {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.account-menu-link {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 500;
    text-align: left;
    background: transparent;
    border: none;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.account-menu-link:hover {
    background: rgba(212, 160, 23, 0.08);
    color: var(--gold);
}

.account-logout-btn {
    color: #FF8E8E !important;
}

.account-logout-btn:hover {
    background: rgba(255, 107, 107, 0.08) !important;
    color: #FF6B6B !important;
}

/* -- Guest (deslogado) -- */
.account-guest {
    padding: 28px 22px 16px;
    text-align: center;
}

.account-guest-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.account-guest p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.account-actions {
    padding: 0 22px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-btn-primary {
    display: block;
    text-align: center;
    padding: 13px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0D0B08;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.account-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.35);
}

.account-btn-secondary {
    display: block;
    text-align: center;
    padding: 12px;
    background: transparent;
    border: 1.5px solid rgba(212, 160, 23, 0.3);
    color: var(--gold);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}

.account-btn-secondary:hover {
    background: rgba(212, 160, 23, 0.08);
    border-color: var(--gold-dark);
}

/* -- Hint -- */
.account-hint {
    padding: 0 22px 22px;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-align: center;
}

.account-loading {
    padding: 30px 22px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   ACCOUNT PANEL — TABS
   ============================================ */
.account-panel-tabs {
    display: flex;
    gap: 4px;
    padding: 12px 14px 4px;
}

.account-panel-tab {
    flex: 1;
    padding: 9px 8px;
    background: transparent;
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.account-panel-tab:hover {
    background: rgba(212, 160, 23, 0.08);
    color: var(--text-secondary);
}

.account-panel-tab.active {
    background: rgba(212, 160, 23, 0.15);
    border-color: rgba(212, 160, 23, 0.5);
    color: var(--gold);
    font-weight: 700;
}

/* ============================================
   MEUS PEDIDOS — ORDER LIST
   ============================================ */
.orders-list {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.orders-loading {
    padding: 28px 22px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.orders-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(212, 160, 23, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.orders-error {
    padding: 16px 22px;
    color: #FF8E8E;
    font-size: 0.88rem;
    text-align: center;
}

.orders-empty {
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.orders-empty-icon {
    font-size: 2.5rem;
}

.orders-empty p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.orders-cta {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 8px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.orders-cta:hover {
    background: rgba(212, 160, 23, 0.2);
}

/* ---- Order Card ---- */
.order-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.order-card:hover {
    border-color: rgba(212, 160, 23, 0.25);
}

.order-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 8px;
}

.order-id {
    font-family: monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.order-card-body {
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.order-items-preview {
    color: var(--text-secondary);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
}

.order-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.order-total {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-light);
}

/* ============================================
   STATUS BADGES
   ============================================ */
.order-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.status-pending {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #FCD34D;
}

.status-confirmed {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #93C5FD;
}

.status-preparing {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #FCD34D;
}

.status-delivery {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #C4B5FD;
}

.status-delivered {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #6EE7B7;
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #FCA5A5;
}

/* ============================================
   CHECKOUT — CAMPO SENHA + SPINNER
   ============================================ */
.checkout-pwd-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 5px;
    line-height: 1.5;
}

.btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

/* ============================================
   PIX PAYMENT MODAL — PREMIUM REDESIGN
   ============================================ */
.pix-modal {
    max-width: 460px;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, #111218 0%, #0c0e12 60%, #091210 100%);
    border: 1px solid rgba(50, 188, 173, 0.18);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(50, 188, 173, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow-y: auto;
    max-height: 92vh;
    position: relative;
}

/* Header pill brand */
.pix-header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pix-header-brand h3 {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    margin: 0;
}

.pix-header-sub {
    font-size: 0.72rem;
    color: #32BCAD;
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0.8;
}

.pix-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(50, 188, 173, 0.1);
    border: 1px solid rgba(50, 188, 173, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pix-modal-header {
    padding: 18px 20px 14px;
    border-bottom: 1px solid rgba(50, 188, 173, 0.08);
    background: rgba(50, 188, 173, 0.03);
}

.pix-modal-header h3 {
    color: var(--text-primary);
}

/* ---- PIX Loading State ---- */
.pix-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 52px 24px 40px;
    text-align: center;
}

.pix-loading-animation {
    position: relative;
    width: 140px;
    height: 140px;
    margin-bottom: 28px;
}

.pix-pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(50, 188, 173, 0.3);
    animation: pixPulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pix-pulse-ring.delay-1 {
    animation-delay: 0.55s;
}

.pix-pulse-ring.delay-2 {
    animation-delay: 1.1s;
}

@keyframes pixPulse {
    0% {
        transform: scale(0.45);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.pix-icon-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: radial-gradient(circle, rgba(50, 188, 173, 0.18) 0%, rgba(50, 188, 173, 0.06) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pixIconFloat 2.4s ease-in-out infinite;
    border: 1px solid rgba(50, 188, 173, 0.25);
    box-shadow: 0 0 30px rgba(50, 188, 173, 0.15);
}

@keyframes pixIconFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -54%) scale(1.06);
    }
}

.pix-loading-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.pix-loading-subtitle {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pix-loading-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.pix-loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #32BCAD;
    animation: pixDotBounce 1.4s ease-in-out infinite;
}

.pix-loading-dots span:nth-child(2) {
    animation-delay: 0.18s;
}

.pix-loading-dots span:nth-child(3) {
    animation-delay: 0.36s;
}

@keyframes pixDotBounce {

    0%,
    80%,
    100% {
        transform: scale(0.5);
        opacity: 0.35;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ---- QR Code Content ---- */
.pix-content {
    padding: 6px 22px 22px;
}

.pix-fade-in {
    animation: pixFadeIn 0.5s ease-out;
}

@keyframes pixFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Info card */
.pix-order-info {
    background: linear-gradient(135deg, rgba(50, 188, 173, 0.07) 0%, rgba(50, 188, 173, 0.03) 100%);
    border: 1px solid rgba(50, 188, 173, 0.18);
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.pix-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
}

.pix-info-row+.pix-info-row {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    padding-top: 10px;
}

.pix-info-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.pix-info-value {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: monospace;
}

.pix-total {
    color: #32BCAD;
    font-size: 1.1rem;
    font-weight: 800;
}

/* QR Code with glow & scan line */
.pix-qr-container {
    text-align: center;
    margin-bottom: 18px;
}

.pix-qr-glow-wrap {
    display: inline-block;
    border-radius: 18px;
    box-shadow: 0 0 0 1px rgba(50, 188, 173, 0.15), 0 0 40px rgba(50, 188, 173, 0.12), 0 0 80px rgba(50, 188, 173, 0.06);
    margin-bottom: 12px;
    animation: pixQRGlow 3s ease-in-out infinite;
}

@keyframes pixQRGlow {

    0%,
    100% {
        box-shadow: 0 0 0 1px rgba(50, 188, 173, 0.15), 0 0 32px rgba(50, 188, 173, 0.10), 0 0 64px rgba(50, 188, 173, 0.05);
    }

    50% {
        box-shadow: 0 0 0 1px rgba(50, 188, 173, 0.25), 0 0 48px rgba(50, 188, 173, 0.18), 0 0 96px rgba(50, 188, 173, 0.08);
    }
}

.pix-qr-frame {
    position: relative;
    display: inline-block;
    padding: 14px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

.pix-qr-image {
    width: 210px;
    height: 210px;
    display: block;
    border-radius: 4px;
}

/* Animated scan line */
.pix-qr-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(50, 188, 173, 0.9) 40%, rgba(50, 188, 173, 1) 50%, rgba(50, 188, 173, 0.9) 60%, transparent 100%);
    box-shadow: 0 0 12px rgba(50, 188, 173, 0.8);
    animation: pixScanLine 2.5s ease-in-out infinite;
    border-radius: 2px;
    top: 0;
}

@keyframes pixScanLine {
    0% {
        top: 8%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 92%;
        opacity: 0;
    }
}

/* Corner decorations */
.pix-qr-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: #32BCAD;
    border-style: solid;
    border-width: 0;
}

.pix-qr-corner.tl {
    top: -1px;
    left: -1px;
    border-top-width: 3px;
    border-left-width: 3px;
    border-top-left-radius: 8px;
}

.pix-qr-corner.tr {
    top: -1px;
    right: -1px;
    border-top-width: 3px;
    border-right-width: 3px;
    border-top-right-radius: 8px;
}

.pix-qr-corner.bl {
    bottom: -1px;
    left: -1px;
    border-bottom-width: 3px;
    border-left-width: 3px;
    border-bottom-left-radius: 8px;
}

.pix-qr-corner.br {
    bottom: -1px;
    right: -1px;
    border-bottom-width: 3px;
    border-right-width: 3px;
    border-bottom-right-radius: 8px;
}

.pix-scan-hint {
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Divider */
.pix-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pix-divider::before,
.pix-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.pix-divider span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Copy code */
.pix-code-container {
    margin-bottom: 20px;
}

.pix-code-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(50, 188, 173, 0.25);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
    overflow-x: auto;
}

.pix-code-text {
    font-size: 0.7rem;
    color: var(--text-secondary);
    line-height: 1.6;
    word-break: break-all;
    white-space: pre-wrap;
    display: block;
    font-family: 'Courier New', monospace;
}

.pix-copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, #32BCAD 0%, #1fa99a 100%);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(50, 188, 173, 0.25);
}

.pix-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(50, 188, 173, 0.4);
    background: linear-gradient(135deg, #3ed4c4 0%, #32BCAD 100%);
}

.pix-copy-btn:active {
    transform: translateY(0);
}

.pix-copy-btn.copied {
    background: linear-gradient(135deg, #10B981, #059669) !important;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

/* Steps instructions */
.pix-instructions {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pix-step {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 7px 0;
    font-size: 0.86rem;
    color: var(--text-secondary);
}

.pix-step+.pix-step {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 6px;
    padding-top: 13px;
}

.pix-step-num {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #32BCAD, #1fa99a);
    color: white;
    font-weight: 800;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(50, 188, 173, 0.3);
}

/* Done button */
.pix-done-btn {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--red-primary), #a0291c);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(192, 57, 43, 0.35);
    letter-spacing: 0.3px;
}

.pix-done-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(192, 57, 43, 0.5);
}

.pix-done-btn:active {
    transform: translateY(0);
}

/* ---- PIX VERIFYING (Premium) ---- */
.pix-verifying {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px 32px;
    position: relative;
    overflow: hidden;
}

/* Ambient glow background */
.pix-verifying-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(50, 188, 173, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pixVerifyBgPulse 3s ease-in-out infinite;
}

@keyframes pixVerifyBgPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Orbit system */
.pix-verifying-visual {
    position: relative;
    margin-bottom: 28px;
    z-index: 1;
}

.pix-orbit-system {
    position: relative;
    width: 160px;
    height: 160px;
}

.pix-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(50, 188, 173, 0.2);
}

.orbit-1 {
    inset: 0;
    animation: orbitSpin1 8s linear infinite;
}

.orbit-2 {
    inset: 14px;
    border-color: rgba(50, 188, 173, 0.15);
    animation: orbitSpin2 12s linear infinite reverse;
}

.orbit-3 {
    inset: 28px;
    border-color: rgba(50, 188, 173, 0.1);
    animation: orbitSpin1 6s linear infinite;
}

@keyframes orbitSpin1 {
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitSpin2 {
    to {
        transform: rotate(-360deg);
    }
}

/* Orbiting dots */
.pix-orbit-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #32BCAD;
    box-shadow: 0 0 8px rgba(50, 188, 173, 0.8);
}

.odot-1 {
    top: -3px;
    left: calc(50% - 3px);
    animation: dotOrbit1 8s linear infinite;
    transform-origin: 3px 83px;
}

.odot-2 {
    top: -3px;
    left: calc(50% - 3px);
    animation: dotOrbit1 12s linear infinite reverse;
    transform-origin: 3px 69px;
    background: rgba(50, 188, 173, 0.6);
    width: 5px;
    height: 5px;
}

.odot-3 {
    top: -3px;
    left: calc(50% - 3px);
    animation: dotOrbit1 6s linear infinite;
    transform-origin: 3px 55px;
    background: rgba(50, 188, 173, 0.4);
    width: 4px;
    height: 4px;
}

@keyframes dotOrbit1 {
    to {
        transform: rotate(360deg);
    }
}

/* Center icon */
.pix-orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    background: radial-gradient(circle, rgba(50, 188, 173, 0.15) 0%, rgba(50, 188, 173, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(50, 188, 173, 0.25);
    box-shadow: 0 0 20px rgba(50, 188, 173, 0.2);
    animation: pixIconFloat 2.5s ease-in-out infinite;
}

.pix-verifying-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
    animation: pixFadeIn 0.5s ease-out;
}

.pix-verifying-subtitle {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    animation: pixFadeIn 0.5s ease-out 0.1s both;
}

/* Status steps */
.pix-verify-steps {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 22px;
    animation: pixFadeIn 0.5s ease-out 0.2s both;
}

.pix-vstep {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.83rem;
    color: var(--text-muted);
    background: transparent;
    transition: all 0.4s ease;
    opacity: 0.4;
}

.pix-vstep.active {
    opacity: 1;
    color: var(--text-primary);
    background: rgba(50, 188, 173, 0.07);
    border: 1px solid rgba(50, 188, 173, 0.15);
}

.pix-vstep.done {
    opacity: 0.7;
    color: #32BCAD;
}

.pix-vstep-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(50, 188, 173, 0.25);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.pix-vstep.active .pix-vstep-dot {
    background: #32BCAD;
    box-shadow: 0 0 8px rgba(50, 188, 173, 0.7);
    animation: vstepPulse 1.2s ease-in-out infinite;
}

.pix-vstep.done .pix-vstep-dot {
    background: #32BCAD;
}

@keyframes vstepPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 6px rgba(50, 188, 173, 0.6);
    }

    50% {
        transform: scale(1.4);
        box-shadow: 0 0 12px rgba(50, 188, 173, 0.9);
    }
}

.pix-vstep-spinner {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(50, 188, 173, 0.2);
    border-top-color: #32BCAD;
    margin-left: auto;
    flex-shrink: 0;
    display: none;
    animation: spin 0.8s linear infinite;
}

.pix-vstep.active .pix-vstep-spinner {
    display: block;
}

/* Progress bar */
.pix-verify-progress {
    width: 100%;
    max-width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    margin-bottom: 16px;
    overflow: hidden;
    animation: pixFadeIn 0.5s ease-out 0.3s both;
}

.pix-verify-progress-bar {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #32BCAD, #1fa99a, #32BCAD);
    background-size: 200% 100%;
    animation: pixProgressShimmer 2s linear infinite;
    width: 60%;
    transition: width 0.5s ease;
}

@keyframes pixProgressShimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* Timer row */
.pix-verify-timer-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    animation: pixFadeIn 0.5s ease-out 0.4s both;
}

.pix-verify-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    animation: pixFadeIn 0.5s ease-out 0.5s both;
}

.pix-verify-close-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 9px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.82rem;
    transition: all 0.2s ease;
}

.pix-verify-close-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
}

/* ---- PIX Error State ---- */
.pix-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 44px 24px;
}

.pix-error-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    animation: pixShake 0.5s ease-in-out;
}

@keyframes pixShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-8px);
    }

    40% {
        transform: translateX(8px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.pix-error h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pix-error p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    max-width: 300px;
    line-height: 1.6;
}

.pix-retry-counter {
    font-size: 0.77rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 8px;
    padding: 4px 14px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: 50px;
    display: inline-block;
}

/* ---- PIX Modal Responsive ---- */
@media (max-width: 520px) {
    .pix-modal {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        max-height: 96vh;
    }

    .pix-qr-image {
        width: 176px;
        height: 176px;
    }

    .pix-loading-animation {
        width: 108px;
        height: 108px;
    }

    .pix-icon-center {
        width: 54px;
        height: 54px;
    }

    .pix-content {
        padding: 4px 14px 18px;
    }

    .pix-code-text {
        font-size: 0.62rem;
    }

    .pix-orbit-system {
        width: 130px;
        height: 130px;
    }
}

/* ---- PIX Confirmed State ---- */
.pix-confirmed {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px 32px;
    position: relative;
    overflow: hidden;
}

.pix-confirmed-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pix-confirmed-particles span {
    position: absolute;
    border-radius: 3px;
    animation: pixConfetti 1.8s ease-out forwards;
}

.pix-confirmed-particles span:nth-child(1) {
    width: 8px;
    height: 8px;
    background: #10B981;
    top: 40%;
    left: 50%;
    --tx: -90px;
    --ty: -110px;
    animation-delay: 0s;
}

.pix-confirmed-particles span:nth-child(2) {
    width: 6px;
    height: 6px;
    background: #F59E0B;
    top: 40%;
    left: 50%;
    --tx: 80px;
    --ty: -130px;
    animation-delay: 0.08s;
}

.pix-confirmed-particles span:nth-child(3) {
    width: 10px;
    height: 4px;
    background: #3B82F6;
    top: 40%;
    left: 50%;
    --tx: -70px;
    --ty: -70px;
    animation-delay: 0.16s;
}

.pix-confirmed-particles span:nth-child(4) {
    width: 5px;
    height: 5px;
    background: #EF4444;
    top: 40%;
    left: 50%;
    --tx: 100px;
    --ty: -60px;
    animation-delay: 0.24s;
}

.pix-confirmed-particles span:nth-child(5) {
    width: 7px;
    height: 7px;
    background: #8B5CF6;
    top: 40%;
    left: 50%;
    --tx: -50px;
    --ty: -140px;
    animation-delay: 0.12s;
}

.pix-confirmed-particles span:nth-child(6) {
    width: 9px;
    height: 4px;
    background: #EC4899;
    top: 40%;
    left: 50%;
    --tx: 60px;
    --ty: -90px;
    animation-delay: 0.2s;
}

.pix-confirmed-particles span:nth-child(7) {
    width: 6px;
    height: 6px;
    background: #14B8A6;
    top: 40%;
    left: 50%;
    --tx: -110px;
    --ty: -50px;
    animation-delay: 0.06s;
}

.pix-confirmed-particles span:nth-child(8) {
    width: 4px;
    height: 8px;
    background: #F97316;
    top: 40%;
    left: 50%;
    --tx: 90px;
    --ty: -100px;
    animation-delay: 0.28s;
}

.pix-confirmed-particles span:nth-child(9) {
    width: 8px;
    height: 5px;
    background: #06B6D4;
    top: 40%;
    left: 50%;
    --tx: -30px;
    --ty: -120px;
    animation-delay: 0.04s;
}

.pix-confirmed-particles span:nth-child(10) {
    width: 5px;
    height: 9px;
    background: #A855F7;
    top: 40%;
    left: 50%;
    --tx: 70px;
    --ty: -50px;
    animation-delay: 0.32s;
}

.pix-confirmed-particles span:nth-child(11) {
    width: 7px;
    height: 7px;
    background: #10B981;
    top: 40%;
    left: 50%;
    --tx: -80px;
    --ty: -30px;
    animation-delay: 0.1s;
}

.pix-confirmed-particles span:nth-child(12) {
    width: 6px;
    height: 4px;
    background: #FBBF24;
    top: 40%;
    left: 50%;
    --tx: 40px;
    --ty: -130px;
    animation-delay: 0.22s;
}

@keyframes pixConfetti {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx, 60px), var(--ty, -80px)) rotate(540deg) scale(0);
        opacity: 0;
    }
}

.pix-confirmed-check {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    animation: pixCheckPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
}

@keyframes pixCheckPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pix-check-animation {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: pixCheckDraw 0.7s ease-out 0.4s forwards;
}

@keyframes pixCheckDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.pix-confirmed-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10B981;
    margin-bottom: 6px;
    animation: pixFadeIn 0.5s ease-out 0.25s both;
}

.pix-confirmed-subtitle {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 22px;
    animation: pixFadeIn 0.5s ease-out 0.35s both;
}

.pix-confirmed-details {
    width: 100%;
    max-width: 280px;
    background: rgba(16, 185, 129, 0.07);
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 18px;
    animation: pixFadeIn 0.5s ease-out 0.45s both;
}

.pix-confirmed-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.pix-confirmed-row+.pix-confirmed-row {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 8px;
    padding-top: 13px;
}

.pix-confirmed-value {
    font-weight: 800;
    color: #10B981;
    font-family: monospace;
}

.pix-confirmed-msg {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 18px;
    animation: pixFadeIn 0.5s ease-out 0.55s both;
}

.pix-confirmed-btn {
    animation: pixFadeIn 0.5s ease-out 0.65s both;
    background: linear-gradient(135deg, #10B981, #059669) !important;
    box-shadow: 0 4px 24px rgba(16, 185, 129, 0.35);
}

.pix-confirmed-btn:hover {
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

/* ============================================
   CART FEEDBACK ANIMATIONS
   ============================================ */

/* Bounce animation on cart button when item added */
@keyframes cartBounce {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.35);
    }

    40% {
        transform: scale(0.9);
    }

    60% {
        transform: scale(1.15);
    }

    80% {
        transform: scale(0.97);
    }

    100% {
        transform: scale(1);
    }
}

.cart-btn.bounce {
    animation: cartBounce 0.6s ease;
}

/* Pulsing glow on cart count */
@keyframes cartCountPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(192, 57, 43, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(192, 57, 43, 0);
    }
}

.cart-count.active {
    transform: scale(1);
    animation: cartCountPulse 1.5s ease infinite;
}

/* Glow effect on cart button when has items */
.cart-btn.has-items {
    color: var(--gold);
    filter: drop-shadow(0 0 6px rgba(212, 160, 23, 0.4));
}

/* ---- CART TOAST NOTIFICATION ---- */
.cart-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 160, 23, 0.1);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    max-width: 340px;
}

.cart-toast.show {
    transform: translateX(0);
}

.cart-toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cart-toast-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-toast-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
}

.cart-toast-msg {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.cart-toast-arrow {
    position: absolute;
    top: -8px;
    right: 24px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(212, 160, 23, 0.3);
}

/* ---- CART FLOATING INDICATOR (mobile) ---- */
@media (max-width: 768px) {
    .cart-toast {
        top: auto;
        bottom: 80px;
        right: 50%;
        transform: translateX(50%) translateY(120%);
        max-width: calc(100vw - 40px);
    }

    .cart-toast.show {
        transform: translateX(50%) translateY(0);
    }

    .cart-toast-arrow {
        display: none;
    }
}
