
        :root {
            --primary-color: #2c786c;
            --secondary-color: #3fab89;
            --dark-color: #004445;
            --light-color: #f8f1f1;
            --accent-color: #ff7e33;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f9f9f9;
            color: #333;
        }
        
        .hero-section {
            background: url('/assets/media/images/loja/CapaLoja3.png') center/cover;
            color: white;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-content-wrapper {
            background: rgba(0, 68, 69, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 4rem;
            max-width: 800px;
            margin: 0 auto;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
        }
        
        /*.navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
        }*/
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-color);
        }
        
        .feature-card {
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background: white;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .payment-method {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 20px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .payment-method:hover {
            transform: scale(1.05);
        }
        
        .delivery-card {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        
        .btn-accent {
            background-color: var(--accent-color);
            color: white;
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 30px;
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-accent:hover {
            background-color: #ff6a1a;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 126, 51, 0.4);
        }
        
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 4rem 0;
        }
        
        .footer-link {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-link:hover {
            color: white;
            text-decoration: underline;
        }
    
        /* Modern Product Search and Filter Styles */
        .search-container {
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.1);
        }
        
        .search-container:focus-within {
            box-shadow: 0 5px 15px rgba(44, 120, 108, 0.2);
            border-color: var(--primary-color);
        }
        
        .product-card {
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            background: white;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--accent-color);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .filter-btn.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .page-item.active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
    /* Modern Product Search and Filter Styles */
        .search-container {
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.1);
        }
        
        .search-container:focus-within {
            box-shadow: 0 5px 15px rgba(44, 120, 108, 0.2);
            border-color: var(--primary-color);
        }
        
        .product-card {
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            background: white;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--accent-color);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .filter-btn.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .page-item.active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .btn-ml {
            background: linear-gradient(135deg, #ffe600, #ffcc00);
            color: #212121;
            font-weight: 600;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 2px solid #ffd000;
        }

        .btn-ml:hover {
            transform: scale(1.05);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            text-decoration: none;
            background: linear-gradient(135deg, #ffde00, #ffc107);
            color: #000;
        }
    .btn-ml {
        background: linear-gradient(135deg, #ffe600, #ffcc00);
        color: #212121;
        font-weight: 600;
        border: 2px solid #ffd000;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-ml:hover {
        transform: scale(1.05);
        background: linear-gradient(135deg, #ffde00, #ffc107);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        color: #000;
        text-decoration: none;
    }

    .btn-accent {
        background-color: #198754;
        color: #fff;
        border: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-accent:hover {
        background-color: #157347;
        transform: scale(1.05);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    }
