
:root {
    --primary-color: #4a0e4e;      
    --primary-light: #9d4edd;     
    --primary-dark: #240046;      
    --accent-gold: #ffb703;       
    --accent-pink: #ff0054;       
    --bg-dark: #faf6fa;           
    --bg-card: rgba(255, 255, 255, 0.88); 
    --bg-card-hover: rgba(157, 78, 221, 0.03);
    --text-main: #240046;         
    --text-muted: #62476b;        
    --border-color: rgba(74, 14, 78, 0.08); 
    --border-active: #9d4edd;
    --shadow-sm: 0 6px 16px rgba(74, 14, 78, 0.03);
    --shadow-md: 0 12px 32px rgba(74, 14, 78, 0.06);
    --shadow-lg: 0 20px 48px rgba(74, 14, 78, 0.1);
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --glass-blur: blur(16px);
}


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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(142, 43, 144, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(230, 57, 100, 0.04) 0%, transparent 40%);
    background-attachment: fixed;
    overflow-x: hidden;
}


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

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

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 209, 102, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 209, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 209, 102, 0); }
}

@keyframes pulseGreen {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-zoom-in {
    animation: fadeIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}


::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}


.notice-bar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    color: var(--accent-gold);
    font-family: var(--font-headings);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 209, 102, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.notice-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice-item i {
    font-size: 1rem;
    color: var(--accent-pink);
    flex-shrink: 0;
}


.hero-section {
    position: relative;
    height: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('assets/images/acai_banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(83, 17, 84, 0.15) 0%, rgba(83, 17, 84, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    background: rgba(36, 0, 70, 0.55);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.logo-wrapper {
    margin-bottom: 8px;
}

.shop-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 10px rgba(255, 209, 102, 0.3);
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.shop-logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.shop-title { font-size: 2.2rem;
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 3px 8px rgba(83, 17, 84, 0.5);
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.shop-tagline {
    font-size: 0.95rem;
    color: #ebdbeb;
    font-weight: 300;
    margin-bottom: 8px;
    text-shadow: 0 2px 6px rgba(83, 17, 84, 0.4);
}

.shop-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    color: #25D366;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #25D366;
    border-radius: 50%;
    animation: pulseGreen 2s infinite;
}


.card {
    background-color: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.main-container {
    max-width: 940px;
    margin: 15px auto 30px;
    padding: 0 15px;
    position: relative;
    z-index: 3;
}


.warning-panel {
    padding: 16px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.04) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-gold);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.warning-title-icon {
    color: var(--accent-gold);
    margin-right: 6px;
    font-size: 1.1rem;
}

.warning-text h3 { font-size: 1.15rem;
    font-family: var(--font-headings);
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.warning-text ul {
    list-style: none;
}

.warning-text li { font-size: 0.95rem;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-main);
}

.warning-text li:last-child {
    margin-bottom: 0;
}

.warning-text li i {
    color: var(--accent-pink);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
}


.builder-grid {
    display: grid;
    grid-template-columns: 1fr 290px;
    gap: 15px;
    align-items: start;
}

.builder-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


.section-card {
    padding: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.step-number {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    font-family: var(--font-headings);
    font-weight: 800;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 0 8px rgba(255, 209, 102, 0.3);
    flex-shrink: 0;
}

.section-header h2 { font-size: 1.3rem;
    font-family: var(--font-headings);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.3px;
}

.section-desc { font-size: 1rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 15px;
}

.section-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.section-header-meta .section-desc { font-size: 1rem;
    margin-bottom: 0;
    flex: 1;
}

.counter-badge {
    background-color: var(--primary-light);
    color: var(--accent-gold);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 209, 102, 0.2);
}

.warning-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
    background-color: rgba(255, 255, 255, 0.03);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.warning-subtext i {
    color: var(--accent-gold);
}


.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 8px;
}


.options-grid.checkboxes {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}

.option-card {
    position: relative;
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    user-select: none;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 10px rgba(83, 17, 84, 0.02);
}

.option-card input[type="radio"],
.option-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.option-content {
    display: flex;
    gap: 15px;
    align-items: center;
}

.option-card.radio-card .option-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
}

.option-icon-wrapper {
    background-color: rgba(157, 78, 221, 0.06);
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(157, 78, 221, 0.1);
    transition: transform var(--transition-normal);
}

.cup-icon {
    color: var(--accent-gold);
    transition: transform var(--transition-normal);
}

.size-300 { font-size: 0.9rem; }
.size-500 { font-size: 1.1rem; }
.size-700 { font-size: 1.3rem; }
.size-1000 { font-size: 1.5rem; }

.option-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.option-details h3 { font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.option-details .price {
    font-family: var(--font-headings);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.topping-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
}


.option-card:hover {
    background-color: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.option-card:hover .option-icon-wrapper {
    transform: scale(1.05);
}


.option-card.radio-card input[type="radio"]:checked + .option-content {
    
}


.option-card.active {
    background-color: rgba(157, 78, 221, 0.04);
    border-color: var(--primary-light);
    box-shadow: 0 8px 24px rgba(157, 78, 221, 0.12);
    transform: translateY(-2px);
}

.option-card.active .option-icon-wrapper {
    background-color: rgba(157, 78, 221, 0.12);
    border-color: rgba(157, 78, 221, 0.25);
    transform: scale(1.05);
}

.option-card.active .cup-icon {
    color: var(--accent-gold);
    transform: scale(1.1) rotate(-6deg);
}


.option-card.check-card {
    padding: 8px;
    flex-direction: row;
    align-items: center;
}

.check-indicator {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid var(--border-color);
    position: relative;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.option-card.check-card.active .check-indicator {
    background-color: var(--accent-pink);
    border-color: var(--accent-pink);
}

.option-card.check-card.active .check-indicator::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.option-card.check-card.active {
    border-color: var(--accent-pink);
    background-color: rgba(255, 0, 84, 0.03);
    box-shadow: 0 8px 24px rgba(255, 0, 84, 0.08);
    transform: translateY(-2px);
}

.tag-gratis {
    font-size: 0.75rem;
    color: #25D366;
    background-color: rgba(37, 211, 102, 0.1);
    padding: 2px 8px;
    border-radius: 50px;
    display: inline-block;
    align-self: flex-start;
}

.price-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold);
    background-color: rgba(255, 209, 102, 0.1);
    padding: 2px 8px;
    border-radius: 50px;
    display: inline-block;
    align-self: flex-start;
}


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

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

.form-group.col-2 {
    grid-column: span 2;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.form-group label .required {
    color: var(--accent-pink);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
    pointer-events: none;
    transition: color var(--transition-fast);
}

.input-wrapper input,
.input-wrapper select {
    padding: 13px 16px 13px 36px;
    font-size: 1rem;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(74, 14, 78, 0.12);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
    background-color: rgba(142, 43, 144, 0.03);
    border-color: var(--primary-light);
    box-shadow: 0 0 10px rgba(142, 43, 144, 0.08);
}

.input-wrapper input:focus + i,
.input-wrapper select:focus + i {
    color: var(--primary-light);
}

.input-wrapper select option {
    background-color: #ffffff;
    color: var(--text-main);
}


.summary-column {
    position: relative;
}

.sticky-wrapper {
    position: sticky;
    top: 70px;
    z-index: 10;
}

.checkout-summary-card {
    border-top: 4px solid var(--accent-pink);
    padding: 18px;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.summary-header i {
    font-size: 1.3rem;
    color: var(--accent-pink);
}

.summary-header h2 {
    font-family: var(--font-headings);
    font-size: 1.3rem;
    font-weight: 700;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-section h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.summary-row { font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
}

.summary-row.font-bold {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--accent-gold);
}

.summary-list {
    list-style: none;
    padding-left: 0;
}

.summary-list li {
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    padding-left: 10px;
    position: relative;
}

.summary-list li::before {
    content: "•";
    color: var(--accent-pink);
    position: absolute;
    left: 0;
}

.empty-list-msg {
    color: var(--text-muted) !important;
    font-style: italic;
    font-size: 0.95rem;
}

.empty-list-msg::before {
    display: none !important;
}

.summary-divider {
    height: 1px;
    border-top: 1px dashed var(--border-color);
    margin: 10px 0;
}

.summary-totals {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.02);
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.total-row {
    font-family: var(--font-headings);
    font-size: 1.15rem !important;
    font-weight: 800;
    color: var(--text-main);
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
}

.total-row span:last-child {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 209, 102, 0.2);
}

.checkout-notice {
    margin-top: 20px;
    background-color: rgba(239, 71, 111, 0.06);
    border: 1px solid rgba(239, 71, 111, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.checkout-notice p {
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.checkout-notice p i {
    color: var(--accent-pink);
}

.checkout-notice .desc {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 4px;
    margin-left: 18px;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-headings);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 13px 26px;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e0a200 100%);
    color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.25);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffc93c 0%, var(--accent-gold) 100%);
    transform: translateY(-2.5px) scale(1.015);
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.4);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--primary-light);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1c9e4c 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
    border: none;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #2ae06d 0%, #20ba59 100%);
    transform: translateY(-2.5px) scale(1.015);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.40);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg { padding: 16px 28px; font-size: 1.1rem;
    padding: 12px 24px;
    font-size: 0.98rem;
    border-radius: var(--radius-md);
}

#btn-submit-order {
    margin-top: 15px;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 2, 13, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: #ffffff;
    border: 1px solid rgba(83, 17, 84, 0.1);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    padding: 35px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--accent-pink);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.pix-logo-wrapper {
    margin-bottom: 12px;
}

.pix-logo {
    height: 38px;
    object-fit: contain;
    filter: none;
}

.modal-header h2 {
    font-family: var(--font-headings);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.amount-card {
    background: linear-gradient(135deg, rgba(142, 43, 144, 0.08) 0%, rgba(142, 43, 144, 0.02) 100%);
    border: 1px solid rgba(142, 43, 144, 0.15);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.amount-card .label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.amount-card .value {
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.pix-instructions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.instruction-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.instruction-step .step-num {
    background-color: var(--primary-light);
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.instruction-step p {
    font-size: 0.9rem;
    color: var(--text-main);
}

.pix-key-container {
    display: flex;
    background-color: rgba(83, 17, 84, 0.04);
    border: 1px solid rgba(83, 17, 84, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-left: 34px;
    margin-top: -10px;
}

.pix-key-text {
    flex: 1;
    padding: 12px 16px;
    font-family: monospace;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: all;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.btn-copy {
    border-radius: 0;
    border: none;
    border-left: 1px solid var(--border-color);
    font-size: 0.95rem;
    padding: 12px 20px;
    min-width: 100px;
}

.alert-box {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

.warning-alert {
    background-color: rgba(230, 57, 100, 0.08);
    border: 1px solid rgba(230, 57, 100, 0.25);
    color: var(--text-main);
}

.warning-alert i {
    color: var(--accent-pink);
    font-size: 1.1rem;
    margin-top: 2px;
}


.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
    width: 100%;
}

.toast {
    background: rgba(255, 255, 255, 0.95);
    border-left: 4px solid var(--accent-gold);
    color: var(--text-main);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(83, 17, 84, 0.08);
    border-right: 1px solid rgba(83, 17, 84, 0.08);
    border-bottom: 1px solid rgba(83, 17, 84, 0.08);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.active {
    transform: translateX(0);
}

.toast.success {
    border-left-color: #25D366;
}

.toast.error {
    border-left-color: var(--accent-pink);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-content i {
    font-size: 1.2rem;
}

.toast.success i { color: #25D366; }
.toast.error i { color: var(--accent-pink); }

.toast-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
}

.toast-close:hover {
    color: var(--text-main);
}


.main-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

.main-footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}


.mobile-bottom-bar {
    display: none;
}

@media (max-width: 992px) {
    body {
        padding-bottom: 110px; 
    }

    .notice-bar {
        position: relative; 
        padding: 12px 16px;
    }

    .notice-container {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .notice-item {
        font-size: 0.95rem;
    }

    .builder-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-wrapper {
        position: relative;
        top: 0;
    }

    .hero-section {
        height: 240px;
    }

    .shop-title { font-size: 2.2rem;
    }

    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--bg-card);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border-top: 1px solid var(--border-color);
        padding: 16px 24px;
        justify-content: space-between;
        align-items: center;
        z-index: 900;
        box-shadow: 0 -8px 24px rgba(74, 14, 78, 0.08);
    }

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

    .mobile-bar-label {
        font-size: 0.85rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mobile-bar-price {
        font-family: var(--font-headings);
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--accent-gold);
    }
}

@media (max-width: 600px) {
    .options-grid,
    .options-grid.checkboxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .option-card {
        padding: 10px 8px;
    }

    
    .option-card.radio-card .option-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px !important;
    }

    
    .option-card.check-card {
        padding: 10px 8px;
    }

    .option-card.check-card .option-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 8px !important;
        width: 100%;
    }

    .option-card.check-card .option-details {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .option-icon-wrapper {
        width: 38px;
        height: 38px;
        border-radius: var(--radius-sm);
        margin-bottom: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cup-icon {
        font-size: 1.1rem !important; 
    }

    .option-details h3 { font-size: 0.95rem;
        line-height: 1.25;
    }

    .option-details .price {
        font-size: 1.05rem;
        margin-top: 2px;
    }

    .topping-badge {
        font-size: 0.7rem;
        margin-top: 3px;
        line-height: 1.1;
    }

    .tag-gratis,
    .price-badge {
        font-size: 0.72rem;
        padding: 1px 6px;
        margin-top: 2px;
        align-self: flex-start;
    }

    .warning-panel {
        padding: 14px;
        margin-bottom: 15px;
    }

    .warning-title-icon {
        font-size: 1.05rem;
        margin-right: 6px;
    }

    .mobile-bottom-bar {
        padding: 12px 16px;
        bottom: 12px;
        left: 12px;
        right: 12px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
    }

    .mobile-bar-price {
        font-size: 1.25rem;
    }

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

    .form-group.col-2 {
        grid-column: span 1;
    }

    .hero-section {
        height: 190px;
        padding: 8px;
    }

    .hero-content {
        padding: 8px 12px;
    }

    .shop-logo {
        width: 45px;
        height: 45px;
    }

    .shop-title { font-size: 1.7rem;
    }

    .shop-tagline {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .shop-status-badge {
        padding: 6px 14px;
        font-size: 0.85rem;
    }

    .main-container {
        padding: 0 10px;
        margin-top: -15px;
    }

    .section-card {
        padding: 16px 12px;
    }

    .modal-card {
        padding: 20px 15px;
    }

    .geo-detect-card .value {
        font-size: 1.4rem;
    }

    ;
}

.section-header.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.combo-icon {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.combo-cup-1 {
    font-size: 1.3rem !important;
    color: var(--primary-light) !important;
}

.combo-cup-2 {
    font-size: 1.0rem !important;
    margin-left: -6px;
    margin-top: 4px;
    opacity: 0.85;
    color: var(--accent-pink) !important;
}

.badge-destaque {
    background-color: var(--accent-gold) !important;
    color: var(--primary-dark) !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(255, 209, 102, 0.4);
}

.option-card.radio-card.combo-card.active {
    border-color: var(--accent-gold) !important;
    background-color: rgba(255, 209, 102, 0.05) !important;
}





.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 4px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.tab-btn {
    flex: 1;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-family: var(--font-headings);
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: transparent;
    color: var(--text-muted);
}

.tab-btn:hover {
    color: var(--text-main);
    background: var(--bg-card-hover);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: #ffffff;
    border-color: var(--primary-light);
    box-shadow: 0 4px 16px rgba(157, 78, 221, 0.25);
}

.tab-btn.active i {
    color: var(--accent-gold);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}




.marmitas-promo-banner {
    background: linear-gradient(135deg, #e85d04 0%, #f48c06 50%, #ffba08 100%);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(232, 93, 4, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    border: 1px dashed rgba(255, 255, 255, 0.4);
}

.marmitas-promo-banner i {
    color: #ffffff;
    font-size: 1.25rem;
    animation: bounce 1.5s ease infinite;
}




.marmitas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.marmita-card {
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.marmita-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.marmita-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.marmita-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(157, 78, 221, 0.2);
}

.marmita-title-group h3 {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.marmita-price-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-pink);
    background: rgba(239, 71, 111, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 3px;
}

.marmita-ingredients {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.marmita-ingredients li {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding-left: 4px;
    line-height: 1.4;
}

.marmita-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.qty-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary-light);
    background: #ffffff;
    color: var(--primary-color);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.qty-btn:hover {
    background: var(--primary-light);
    color: #ffffff;
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-value {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    min-width: 30px;
    text-align: center;
    user-select: none;
}




.marmitas-promo-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.12) 0%, rgba(232, 93, 4, 0.08) 100%);
    border: 1px solid rgba(255, 183, 3, 0.3);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #e85d04;
}

.marmitas-promo-badge i {
    color: var(--accent-gold);
    font-size: 1rem;
}




@media (max-width: 992px) {
    .marmitas-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tab-navigation {
        margin-left: 0;
        margin-right: 0;
        border-radius: var(--radius-sm);
    }

    .tab-btn {
        padding: 10px 14px;
        font-size: 0.95rem;
        max-width: none;
    }
}

@media (max-width: 600px) {
    .tab-navigation {
        gap: 4px;
        padding: 3px;
    }

    .tab-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
        gap: 4px;
    }

    .marmitas-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .marmita-card {
        padding: 14px;
        gap: 10px;
    }

    .marmita-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }

    .marmita-title-group h3 {
        font-size: 0.95rem;
    }

    .marmita-ingredients li {
        font-size: 0.75rem;
    }

    .qty-btn {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .qty-value {
        font-size: 1.3rem;
    }

    .marmitas-promo-banner {
        font-size: 0.76rem;
        padding: 10px 12px;
        line-height: 1.35;
    }




#step-delivery-shared {
    max-width: 700px;
    margin: 20px auto;
    padding: 28px 32px;
    border-top: 4px solid var(--primary-light);
}

#step-delivery-shared .section-header {
    margin-bottom: 12px;
}

#step-delivery-shared .section-header h2 {
    font-size: 1.3rem;
}

#step-delivery-shared .section-desc {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

#step-delivery-shared .form-grid {
    gap: 16px;
}

#step-delivery-shared label {
    font-weight: 600;
    font-size: 0.9rem;
}

    
    #step-delivery-shared {
        padding: 16px 12px;
    }

    #step-delivery-shared .form-grid {
        gap: 12px;
    }
}

@media (max-width: 400px) {
    .tab-btn {
        padding: 8px 10px;
        font-size: 0.75rem;
    }

    .marmita-card {
        padding: 12px;
    }

    .marmita-header {
        gap: 8px;
    }

    .marmita-qty {
        gap: 10px;
        padding-top: 10px;
    }

    .options-grid {
        grid-template-columns: 1fr !important;
    }

    .option-card.check-card .option-content {
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
    }
}




.cep-input-wrapper {
    position: relative;
    display: flex;
    width: 100%;
}

.cep-input-wrapper input {
    padding-right: 65px !important;
}

.btn-search-cep {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background-color: var(--primary-light);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.btn-search-cep:hover {
    background-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(83, 17, 84, 0.15);
}

.btn-search-cep i {
    position: static !important;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    pointer-events: none;
}

.residence-type-selector {
    display: flex;
    gap: 12px;
    width: 100%;
}

.residence-option {
    flex: 1;
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid rgba(83, 17, 84, 0.15);
    padding: 14px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 500;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    user-select: none;
    position: relative;
    color: var(--text-muted);
}

.residence-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.residence-option:hover {
    background-color: rgba(142, 43, 144, 0.02);
    border-color: rgba(142, 43, 144, 0.2);
}

.residence-option.active {
    background-color: rgba(142, 43, 144, 0.05);
    border-color: var(--primary-light);
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(142, 43, 144, 0.05);
}

.residence-option i {
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.residence-option.active i {
    color: var(--primary-light);
}

.promo-banner {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--primary-light) 100%);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(230, 57, 100, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.promo-banner i {
    color: var(--accent-gold);
    font-size: 1.25rem;
    animation: flamePulse 1.2s ease infinite alternate;
}

@keyframes flamePulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px var(--accent-gold)); }
    100% { transform: scale(1.2); filter: drop-shadow(0 0 8px #ff9e00); }
}

.geo-icon-wrapper {
    background-color: rgba(87, 22, 88, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 20px rgba(255, 209, 102, 0.25);
}

.geo-pulse-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    animation: bounce 2s infinite ease-in-out;
}

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

.geo-loader {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(83, 17, 84, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-light);
    animation: spin 1s ease-in-out infinite;
    margin: 15px auto;
}

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

.geo-footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pix-key-container {
    margin-left: 0;
    margin-top: 5px;
}

.info-alert {
    background-color: rgba(142, 43, 144, 0.05);
    border: 1px solid rgba(142, 43, 144, 0.15);
    color: var(--text-main);
}

.info-alert i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

.combo-icon {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.combo-cup-1 {
    font-size: 1.3rem !important;
    color: var(--primary-light) !important;
}

.combo-cup-2 {
    font-size: 1.0rem !important;
    margin-left: -6px;
    margin-top: 4px;
    opacity: 0.85;
    color: var(--accent-pink) !important;
}

.badge-destaque {
    background-color: var(--accent-gold) !important;
    color: var(--primary-dark) !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(255, 209, 102, 0.4);
}

.option-card.radio-card.combo-card.active {
    border-color: var(--accent-gold) !important;
    background-color: rgba(255, 209, 102, 0.05) !important;
}

.pix-key-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.8);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}




.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.modal-body {
    padding: 0;
}

.form-group-modal {
    margin-bottom: 16px;
}

.form-group-modal label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-group-modal input {
    width: 100%;
    padding: 13px 16px;
    font-size: 1.05rem;
    border: 1px solid rgba(74, 14, 78, 0.15);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-body);
    background: #fff;
    transition: border-color var(--transition-fast);
}

.form-group-modal input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.1);
}

.form-group-modal input[readonly] {
    background: #f8f6f9;
    color: var(--text-muted);
}

.input-row {
    display: flex;
    gap: 8px;
}

.input-row input {
    flex: 1;
}

.input-row .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.info-alert-modal {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    margin-bottom: 16px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-main);
}

.info-alert-modal i {
    color: #25D366;
    font-size: 1.1rem;
    flex-shrink: 0;
}

#modal-address-fields {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 14, 78, 0.08);
}

#btn-confirm-geo {
    margin-top: 8px;
}

.geo-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(157, 78, 221, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border: 2px solid var(--primary-light);
}

.geo-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-light);
}

@media (max-width: 600px) {
    .modal-card {
        padding: 24px 18px;
    }
    
    .input-row {
        flex-direction: column;
    }
}
