        :root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --accent: #ff3e80;
            --success: #00d26a;
            --warning: #ffca28;
            --danger: #ff4d4d;
            --text: #333;
            --bg: #f8f9fa;
            --card-bg: #ffffff;
            --border-radius: 20px;
            --shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s ease;
        }

        [data-theme="dark"] {
            --text: #f8f9fa;
            --bg: #121212;
            --card-bg: #1e1e1e;
            --shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
            transition: var(--transition);
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            padding-bottom: 80px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 16px;
            border-radius: 50px;
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .logo:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            background: rgba(255, 255, 255, 0.15);
        }

        .logo-icon {
            margin-right: 8px;
            font-size: 2rem;
        }

        .search-bar {
            flex: 1;
            max-width: 450px;
            margin: 0 25px;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            padding: 14px 45px 14px 20px;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.15);
            color: white;
            backdrop-filter: blur(10px);
            transition: var(--transition);
            font-size: 1rem;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .search-bar input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.15);
        }

        .search-bar input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .search-bar:after {
            content: "\f002";
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .role-selector {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 8px 15px;
            border: none;
            color: white;
            font-weight: 500;
            cursor: pointer;
            backdrop-filter: blur(10px);
        }

        .theme-toggle {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Navigation */
        .tabs {
            display: flex;
            justify-content: space-around;
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            margin: 20px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 80px;
            z-index: 90;
        }

        .tab {
            padding: 15px 0;
            flex: 1;
            text-align: center;
            font-weight: 600;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: var(--transition);
        }

        .tab.active {
            border-bottom: 3px solid var(--accent);
            color: var(--accent);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        /* Hero Banner */
        .hero {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            margin: 20px 0;
            text-align: center;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .hero h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .cta-button {
            background-color: white;
            color: var(--primary);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(5, 100px);
            /* sempre 5 colunas fixas */
            grid-template-rows: repeat(2, 120px);
            /* duas linhas */
            gap: 10px;
            overflow-x: auto;
            /* scroll horizontal se não couber */
            padding: 10px 0;
            width: 100%;
            box-sizing: border-box;
        }

        .categories-grid::-webkit-scrollbar {
            display: none;
        }

        .category-chip {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 5px;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: none;
            min-width: 100px;
            /* garante largura mínima pra não quebrar */
        }

        .category-chip img {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            object-fit: cover;
            margin-bottom: 5px;
        }

        .category-chip span {
            font-size: 12px;
            text-align: center;
        }

        /* Products */
        /* Grid horizontal de produtos */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            /* sempre 4 colunas */
            gap: 20px;
            margin: 20px 0;
        }

        .products-grid::-webkit-scrollbar {
            display: none;
        }

        .product-card {
            flex: 0 0 250px;
            /* largura fixa, não encolhe */
            background-color: var(--card-bg);
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            width: 100%;
            height: 180px;
            border-radius: 12px 12px 0 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f5f5f5;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info {
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .product-name {
            font-weight: 700;
            font-size: 1rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        .product-store-container {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 5px;
        }

        .product-store-container img {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .product-store-container span {
            font-size: 0.85rem;
            color: var(--secondary);
        }

        .product-distance {
            font-size: 0.8rem;
            color: #777;
        }

        .product-price {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--primary);
        }

        .add-to-cart {
            margin-top: auto;
            padding: 8px;
            background: var(--primary);
            color: white;
            font-weight: 700;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .add-to-cart:hover {
            background: var(--secondary);
        }

        /* Modo escuro */
        .dark-mode .product-image {
            background-color: #2d2d2d;
        }

        .dark-mode .product-image.emoji-fallback {
            background-color: #1e2e1e;
        }

        .pac-container {
            z-index: 99999 !important;
        }

        /* Loading state */
        .loading {
            text-align: center;
            padding: 2rem;
            color: #666;
            font-style: italic;
            grid-column: 1 / -1;
        }

        .no-products {
            text-align: center;
            padding: 2rem;
            color: #999;
            grid-column: 1 / -1;
        }

        .add-to-cart {
            width: 100%;
            padding: 10px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .add-to-cart:hover {
            transform: scale(1.05);
        }

        /* Cart */
        .fixed-cart {
            position: fixed;
            top: 25px;
            right: 30px;
            z-index: 1002;
        }

        .cart-icon-btn {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 50px;
            padding: 14px 24px;
            font-size: 1.4rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            box-shadow: 0 6px 15px rgba(107, 70, 193, 0.4);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .cart-icon-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .cart-icon-btn:hover:before {
            left: 100%;
        }

        .cart-icon-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 20px rgba(107, 70, 193, 0.5);
        }

        .cart-icon {
            margin-right: 10px;
            font-size: 1.6rem;
            position: relative;
            z-index: 1;
        }

        .cart-count {
            background: var(--accent);
            color: white;
            border-radius: 50%;
            padding: 5px 10px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-left: 8px;
            min-width: 28px;
            text-align: center;
            box-shadow: 0 3px 8px rgba(229, 62, 62, 0.4);
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }

        .cart-icon-btn:hover .cart-count {
            transform: scale(1.2) rotate(10deg);
            box-shadow: 0 4px 10px rgba(229, 62, 62, 0.5);
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }

            .search-bar {
                max-width: 100%;
                margin: 10px 0;
            }

            .fixed-cart {
                top: 15px;
                right: 15px;
            }

            .cart-icon-btn {
                padding: 12px 20px;
                font-size: 1.2rem;
            }
        }

        .cart-dropdown {
            display: none;
            position: absolute;
            top: 55px;
            right: 0;
            width: 350px;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 18px;
            animation: fadeIn 0.3s;
        }

        .cart-dropdown-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .close-cart-dropdown {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--danger);
            cursor: pointer;
        }

        .cart-dropdown-items {
            max-height: 260px;
            overflow-y: auto;
            margin-bottom: 14px;
        }

        .cart-dropdown-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
        }

        .cart-dropdown-img {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            overflow: hidden;
            margin-right: 10px;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-dropdown-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cart-dropdown-details {
            flex: 1;
        }

        .cart-dropdown-name {
            font-weight: 600;
            font-size: 1rem;
        }

        .cart-dropdown-price {
            color: var(--primary);
            font-size: 0.95rem;
            margin-bottom: 4px;
        }

        .cart-dropdown-qty {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 2px;
        }

        .cart-dropdown-btn {
            background: var(--bg);
            border: none;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            color: var(--primary);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .cart-dropdown-btn:hover {
            background: var(--accent);
            color: white;
        }

        .cart-dropdown-remove {
            background: none;
            border: none;
            color: var(--danger);
            font-size: 1.3rem;
            cursor: pointer;
            margin-left: 8px;
        }

        .cart-dropdown-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            margin-top: 10px;
        }

        .cart-dropdown-checkout {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 50px;
            padding: 8px 18px;
            font-weight: 700;
            cursor: pointer;
            font-size: 1rem;
            transition: var(--transition);
        }

        .cart-dropdown-checkout:hover {
            background: var(--accent);
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .summary-total {
            font-weight: 800;
            font-size: 1.2rem;
            border-top: 2px solid var(--bg);
            padding-top: 10px;
            margin-top: 10px;
        }

        .checkout-button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            margin-top: 20px;
            transition: var(--transition);
        }

        .checkout-button:hover {
            transform: scale(1.02);
        }

        /* Checkout */
        .checkout-form {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--shadow);
            margin: 20px 0;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border-radius: 12px;
            border: 2px solid var(--bg);
            background-color: var(--bg);
            color: var(--text);
        }

        .form-row {
            display: flex;
            gap: 15px;
        }

        .form-row .form-group {
            flex: 1;
        }

        /* Orders */
        .orders-list {
            margin: 20px 0;
        }

        .order-card {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
        }

        .order-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            border-bottom: 2px solid var(--bg);
            padding-bottom: 10px;
        }

        .order-id {
            font-weight: 700;
            color: var(--primary);
        }

        .order-status {
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .status-pending {
            background-color: rgba(255, 202, 40, 0.2);
            color: var(--warning);
        }

        .status-delivered {
            background-color: rgba(0, 210, 106, 0.2);
            color: var(--success);
        }

        .status-canceled {
            background-color: rgba(255, 77, 77, 0.2);
            color: var(--danger);
        }

        .order-items {
            margin-bottom: 15px;
        }

        .order-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .order-footer {
            display: flex;
            justify-content: space-between;
            border-top: 2px solid var(--bg);
            padding-top: 15px;
            font-weight: 700;
        }

        /* Inicio da area MeusPedidos */

        .seller-foto {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            object-fit: cover;
        }

        .order-seller {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .details-btn {
            margin: 10px 0;
            cursor: pointer;
            background: none;
            border: 1px solid var(--primary);
            padding: 5px 10px;
            border-radius: 5px;
        }

        .order-details p {
            margin: 5px 0;
        }

        .status-spinner {
            display: inline-block;
            width: 14px;
            height: 14px;
            border: 2px solid #ccc;
            border-top-color: var(--warning);
            border-radius: 50%;
            margin-right: 5px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Fim da area MeusPedidos */

        /* Profile */
        .profile-card {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--shadow);
            margin: 20px 0;
            text-align: center;
        }

        .profile-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
        }

        .profile-name {
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .profile-role {
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .profile-stats {
            display: flex;
            justify-content: space-around;
            margin: 20px 0;
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary);
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .profile-menu {
            margin-top: 20px;
        }

        .menu-item {
            display: flex;
            align-items: center;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 10px;
            background-color: var(--bg);
            cursor: pointer;
            transition: var(--transition);
        }

        .menu-item:hover {
            background-color: rgba(106, 17, 203, 0.1);
        }

        .menu-icon {
            margin-right: 15px;
            font-size: 1.2rem;
        }

        /* Help */
        .faq-list {
            margin: 20px 0;
        }

        .faq-item {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 20px 20px;
            color: rgba(0, 0, 0, 0.7);
        }

        [data-theme="dark"] .faq-answer {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        .pulse {
            animation: pulse 1.5s infinite;
        }

        /* Toast */
        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--success);
            color: white;
            padding: 15px 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            z-index: 9000;
            transform: translateY(100px);
            opacity: 0;
            transition: var(--transition);
        }

        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        .toast-error {
            background-color: var(--danger);
        }

        .my-swal-container {
            z-index: 99999 !important;
            /* aumenta acima de qualquer modal ou dropdown */
        }

        /* Aumentar z-index do SweetAlert2 */
        .swal2-container {
            z-index: 99999 !important;
        }

        .swal2-popup {
            z-index: 99999 !important;
        }

        /* Se estiver usando toast especificamente */
        .swal2-toast {
            z-index: 99999 !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: stretch;
            }

            .logo {
                margin-bottom: 15px;
                justify-content: center;
            }

            .search-bar {
                max-width: 100%;
                margin: 0 0 15px 0;
            }

            .header-actions {
                justify-content: center;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }

        /* Modal ZappyLog */
        .modal-zappy .modal-content.auth-card {
            background: var(--card-bg);
            color: var(--text);
            border-radius: 24px;
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .modal-backdrop.show {
            background-color: rgba(255, 255, 255, 0.4) !important;
            backdrop-filter: blur(6px);
        }

        /* Modal full-screen ZappyLog */
        #loginModal .modal-dialog {
            max-width: 100% !important;
            width: 100% !important;
            height: 100% !important;
            margin: 0;
            /* remove centralização automática de altura */
        }

        #loginModal .modal-content {
            height: 100% !important;
            border-radius: 0;
            /* opcional, deixa quadrado full-screen */
            display: flex;
            flex-direction: column;
            background-color: var(--card-bg);
            color: var(--text);
            overflow-y: auto;
        }

        #loginModal .modal-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        /* Backdrop */
        .modal-backdrop.show {
            background-color: rgba(0, 0, 0, 0.6) !important;
        }

        .auth-close {
            position: absolute;
            top: 14px;
            right: 16px;
            z-index: 3;
        }

        .auth-hero {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: #fff;
            padding: 28px 24px;
        }

        .auth-hero .brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 1.1rem;
            opacity: .95;
        }

        .auth-hero .logo-icon {
            filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .2));
        }

        .auth-hero .hero-title {
            margin: 8px 0 4px;
            font-weight: 800;
        }

        .auth-hero .hero-sub {
            margin: 0;
            opacity: .95;
        }

        .auth-body {
            padding: 20px 22px 24px;
        }

        .benefits {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            margin-bottom: 16px;
        }

        .benefit {
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.06);
            padding: 10px 12px;
            border-radius: 16px;
            font-size: .95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        [data-theme="dark"] .benefit {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.08);
        }

        .btn-auth-cta {
            width: 100%;
            padding: 12px 18px;
            border-radius: 999px;
            font-weight: 800;
            border: 0;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: #fff;
            margin: 4px 0 14px;
            transition: var(--transition);
        }

        .btn-auth-cta:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            margin-bottom: 8px;
        }

        .step {
            display: flex;
            gap: 10px;
            align-items: center;
            background: var(--card-bg);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 14px;
            padding: 10px;
        }

        [data-theme="dark"] .step {
            border-color: rgba(255, 255, 255, 0.08);
        }

        .step-badge {
            width: 28px;
            height: 28px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: #fff;
            font-weight: 800;
            font-size: .9rem;
        }

        .step-title {
            font-weight: 700;
            font-size: .95rem;
            line-height: 1;
        }

        .step-sub {
            font-size: .82rem;
            opacity: .75;
        }

        .microcopy {
            font-size: .8rem;
            opacity: .75;
            margin: 0 0 10px;
            text-align: center;
        }

        .btn-ghost {
            width: 100%;
            border-radius: 999px;
        }

        /* Responsivo */
        @media (max-width: 576px) {

            .benefits,
            .steps {
                grid-template-columns: 1fr;
            }
        }

        .store-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 1rem;
            text-align: center;
            transition: var(--transition);
            margin: 10px;
        }

        .store-card:hover {
            transform: translateY(-5px);
        }

        .store-photo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 10px;
        }

        .banner-fechado {
            display: none;
            background: #ffcc00;
            color: #333;
            font-weight: 600;
            padding: 12px;
            text-align: center;
            border-bottom: 2px solid #ffa500;
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Estilos para o botão de localização - versão discreta */
        .enable-location-btn {
            background: transparent;
            color: var(--secondary);
            border: 1px solid var(--secondary);
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 11px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: 500;
            width: 100%;
            text-align: center;
            opacity: 0.8;
        }

        .enable-location-btn:hover {
            background: var(--secondary);
            color: white;
            opacity: 1;
            transform: none;
            box-shadow: none;
        }

        /* Garantir que o botão não quebre o layout */
        .product-distance {
            min-height: 20px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        /* Estilo para quando a distância é mostrada (sem botão) */
        .product-distance:not(:has(.enable-location-btn)) {
            font-size: 0.75rem;
            color: #666;
            min-height: auto;
        }