
        /* [Todo o CSS anterior permanece igual, adicionando apenas alguns estilos para imagens] */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #fef9f0;
            color: #5c3d1e;
            line-height: 1.6;
        }

        /* Cabeçalho */
        header {
            background-color: #ffcc00;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
            font-size: 1.5rem;
            color: #5c3d1e;
        }

        .logo img {
            width: 10rem;
        }

        .cart-icon {
            position: relative;
            font-size: 1.5rem;
            color: #5c3d1e;
            cursor: pointer;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #ff6600;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }

        /* Container principal */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Seções (todas ocultas por padrão, exceto a inicial) */
        .section {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .section.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Página inicial - Produtos */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-image {
            height: 260px;
            background-color: #ffcc00;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #5c3d1e;
            position: relative;
            overflow: hidden;
        }

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

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

        .product-icon-fallback {
            position: absolute;
            font-size: 4rem;
            color: #5c3d1e;
            opacity: 0.8;
        }

        .product-info {
            padding: 15px;
        }

        .product-title {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #5c3d1e;
        }

        .product-description {
            color: #7d5d3a;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .product-price {
            font-size: 1.3rem;
            font-weight: bold;
            color: #ff6600;
            margin-bottom: 15px;
        }

        .btn-add-to-cart {
            background-color: #ffcc00;
            color: #5c3d1e;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            width: 100%;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .btn-add-to-cart:hover {
            background-color: #e6b800;
        }

        /* Seção de tamanhos */
        .size-options {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .size-option {
            padding: 8px 15px;
            border: 2px solid #ffcc00;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .size-option.selected {
            background-color: #ffcc00;
            font-weight: bold;
        }

        /* Contador de quantidade */
        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .quantity-btn {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: none;
            background-color: #ffcc00;
            color: #5c3d1e;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quantity-value {
            font-size: 1.2rem;
            font-weight: bold;
            min-width: 30px;
            text-align: center;
        }

        /* Página do carrinho */
        .cart-item {
            display: flex;
            background-color: white;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            align-items: center;
        }

        .cart-item-image {
            width: 60px;
            height: 60px;
            background-color: #ffcc00;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #5c3d1e;
            margin-right: 15px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }

        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cart-item-icon-fallback {
            position: absolute;
            font-size: 1.8rem;
            color: #5c3d1e;
            opacity: 0.8;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-title {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .cart-item-size {
            color: #7d5d3a;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .cart-item-price {
            color: #ff6600;
            font-weight: bold;
        }

        .cart-item-remove {
            color: #ff3333;
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 5px;
        }

        .cart-summary {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            margin-top: 20px;
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        /* Botões de navegação */
        .btn {
            padding: 12px 20px;
            border-radius: 5px;
            border: none;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary {
            background-color: #ffcc00;
            color: #5c3d1e;
            width: 100%;
        }

        .btn-primary:hover {
            background-color: #e6b800;
        }

        .btn-secondary {
            background-color: #f0f0f0;
            color: #5c3d1e;
            margin-top: 10px;
            width: 100%;
        }

        .btn-secondary:hover {
            background-color: #e0e0e0;
        }

        /* Checkout - Localização */
        .location-section {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
        }

        .location-option {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border: 2px solid #f0f0f0;
            border-radius: 10px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .location-option.selected {
            border-color: #ffcc00;
            background-color: rgba(255, 204, 0, 0.1);
        }

        .location-icon {
            font-size: 1.5rem;
            color: #ff6600;
        }

        /* Checkout - Pagamento */
        .payment-options {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
        }

        .payment-option {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border: 2px solid #f0f0f0;
            border-radius: 10px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .payment-option.selected {
            border-color: #ffcc00;
            background-color: rgba(255, 204, 0, 0.1);
        }

        .payment-icon {
            font-size: 1.5rem;
            color: #ff6600;
        }

        /* Confirmação */
        .confirmation-section {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            text-align: center;
        }

        .confirmation-icon {
            font-size: 4rem;
            color: #25D366;
            /* Cor do WhatsApp */
            margin-bottom: 20px;
        }

        .confirmation-message {
            margin-bottom: 20px;
        }

        /* Navegação inferior para mobile */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 100;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            color: #7d5d3a;
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 5px;
            transition: all 0.3s;
        }

        .nav-item.active {
            color: #ff6600;
        }

        .nav-item i {
            font-size: 1.2rem;
        }

        .nav-item span {
            font-size: 0.8rem;
        }

        /* Botão de instalação PWA */
        .install-button {
            position: fixed;
            bottom: 80px;
            right: 20px;
            background-color: #ff6600;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 99;
            font-weight: bold;
            display: none;
            /* Inicialmente escondido */
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Indicador de status offline */
        .offline-indicator {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #ff3333;
            color: white;
            text-align: center;
            padding: 10px;
            z-index: 101;
            display: none;
        }

        /* Splash screen para PWA */
        .splash-screen {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ffcc00;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            transition: opacity 0.5s ease;
        }

        .splash-logo {
            font-size: 4rem;
            color: #5c3d1e;
            margin-bottom: 20px;
            animation: bounce 1s infinite alternate;
        }

        @keyframes bounce {
            from {
                transform: translateY(0);
            }

            to {
                transform: translateY(-20px);
            }
        }

        .splash-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: #5c3d1e;
        }

        /* Responsividade */
        @media (min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            }

            .bottom-nav {
                display: none;
            }

            .install-button {
                bottom: 30px;
            }
        }

        @media (max-width: 767px) {
            .container {
                padding-bottom: 70px;
            }
        }

        /* Estilo para modo de exibição standalone (quando instalado) */
        @media (display-mode: standalone) {
            header {
                padding-top: 30px;
                /* Compensa a barra de status */
            }

            .install-button {
                display: none !important;
                /* Esconde o botão de instalação quando já está instalado */
            }
        }

        /* Estilo para WhatsApp */
        .fa-whatsapp {
            color: #25D366;
        }

        .whatsapp-button {
            background-color: #25D366;
            color: white;
        }

        .whatsapp-button:hover {
            background-color: #1da851;
        }