
:root {
    --primary-color: #531154;      
    --primary-light: #8e2b90;     
    --primary-dark: #300431;      
    --accent-gold: #f5b842;       
    --accent-pink: #e63964;       
    --bg-dark: #fcf9fc;           
    --bg-card: rgba(255, 255, 255, 0.85); 
    --bg-card-hover: rgba(142, 43, 144, 0.02);
    --text-main: #331535;         
    --text-muted: #735b75;        
    --border-color: rgba(83, 17, 84, 0.08); 
    --border-active: #8e2b90;
    --shadow-sm: 0 4px 12px rgba(83, 17, 84, 0.04);
    --shadow-md: 0 8px 24px rgba(83, 17, 84, 0.08);
    --shadow-lg: 0 16px 40px rgba(83, 17, 84, 0.12);
    --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.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --glass-blur: blur(12px);
}


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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -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: 380px;
    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: 20px;
    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: 800px;
}

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

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

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

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

.shop-tagline {
    font-size: 1.1rem;
    color: #ebdbeb;
    font-weight: 300;
    margin-bottom: 15px;
    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.85rem;
    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: 1200px;
    margin: -40px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}


.warning-panel {
    padding: 24px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(142, 43, 144, 0.06) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-left: 4px solid var(--accent-gold);
}

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

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

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

.warning-text li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    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 380px;
    gap: 30px;
    align-items: start;
}

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


.section-card {
    padding: 30px;
}

.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: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 0 10px rgba(255, 209, 102, 0.3);
    flex-shrink: 0;
}

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

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

.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 {
    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.85rem;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 209, 102, 0.2);
}

.warning-subtext {
    font-size: 0.85rem;
    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(220px, 1fr));
    gap: 20px;
}


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

.option-card {
    position: relative;
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    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(142, 43, 144, 0.08);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(142, 43, 144, 0.12);
    transition: transform var(--transition-normal);
}

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

.size-300 { font-size: 1.4rem; }
.size-500 { font-size: 1.8rem; }
.size-700 { font-size: 2.2rem; }
.size-1000 { font-size: 2.6rem; }

.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.25rem;
    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(142, 43, 144, 0.05);
    border-color: var(--primary-light);
    box-shadow: 0 0 15px rgba(142, 43, 144, 0.08);
}

.option-card.active .option-icon-wrapper {
    background-color: rgba(142, 43, 144, 0.15);
    border-color: rgba(142, 43, 144, 0.3);
}

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


.option-card.check-card {
    padding: 16px;
    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(239, 71, 111, 0.05);
}

.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-size: 0.9rem;
    font-weight: 500;
    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: 16px;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: color var(--transition-fast);
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background-color: #ffffff;
    border: 1px solid rgba(83, 17, 84, 0.15);
    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: 24px;
}

.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.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

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

.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.85rem;
    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.85rem;
}

.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.35rem !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.85rem;
    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: 10px;
    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: 12px 24px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(255, 209, 102, 0.2);
}

.btn-primary:hover {
    background-color: #fcd97d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 209, 102, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

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

.btn-lg {
    padding: 16px 30px;
    font-size: 1.05rem;
    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.85rem;
    padding: 12px 20px;
    min-width: 100px;
}

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

.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.85rem;
    margin-bottom: 8px;
}


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

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

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

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

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

    .hero-section {
        height: 320px;
    }

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

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

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

    .option-card {
        padding: 12px;
    }

    .option-card.radio-card .option-content {
        gap: 8px;
    }

    .option-icon-wrapper {
        width: 45px;
        height: 45px;
        border-radius: var(--radius-sm);
    }

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

    .option-details h3 {
        font-size: 0.85rem;
    }

    .option-details .price {
        font-size: 1.05rem;
    }

    .topping-badge {
        font-size: 0.7rem;
    }

    .option-card.check-card {
        padding: 12px;
    }

    .option-card.check-card .option-details h3 {
        font-size: 0.85rem;
    }

    .warning-panel {
        padding: 16px;
    }

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

    .mobile-bottom-bar {
        padding: 12px 16px;
    }

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

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

    .hero-section {
        height: 280px;
    }

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

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

    .section-card {
        padding: 20px;
    }

    .modal-card {
        padding: 20px;
    }

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


.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(83, 17, 84, 0.1);
    padding: 14px 24px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-fast);
}

.mobile-bottom-bar.hidden {
    transform: translateY(100%);
}

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

.mobile-bar-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    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);
    text-shadow: 0 0 10px rgba(255, 209, 102, 0.2);
}

#btn-mobile-checkout {
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(255, 209, 102, 0.2);
}


.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-detect-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: 24px;
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

.geo-detect-card.detected {
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.06);
}

.geo-detect-card .label {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

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

.geo-detect-card .sub {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.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;
}

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

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


.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); }
}


.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: 0 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 5;
}

.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: 14px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(230, 57, 100, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    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); }
}


.reviews-section {
    margin-top: 40px;
    padding: 35px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

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

.review-card {
    background: #fdfbfd;
    border: 1px solid rgba(142, 43, 144, 0.08);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all var(--transition-fast);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(142, 43, 144, 0.15);
}

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

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

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.review-user h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
}

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

.stars {
    display: flex;
    gap: 3px;
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.review-content {
    font-size: 0.9rem;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.5;
}

.rating-header-icon {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.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.6rem !important;
    color: var(--primary-light) !important;
}

.combo-cup-2 {
    font-size: 1.3rem !important;
    margin-left: -8px;
    margin-top: 5px;
    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;
}

