
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #f5f5f5;
            line-height: 1.6;
            background-color: #0a0a0a;
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(40, 20, 0, 0.2) 0%, transparent 20%),
                radial-gradient(circle at 85% 30%, rgba(60, 30, 0, 0.15) 0%, transparent 20%);
            min-height: 100vh;
        }

        .container {
            margin: 0 auto;
            padding: 0 20px;
            max-width: 1000px; 
            
        }

        /* Header */
        header {
            background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(139, 69, 19, 0.3);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #D4AF37, #FFD700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            font-size: 2.5rem;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: #f5f5f5;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(to right, #D4AF37, #FFD700);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 80%;
        }

        .nav-links a:hover {
            color: #FFD700;
        }

        .header-icons {
            display: flex;
            gap: 1.8rem;
            font-size: 1.4rem;
        }

        .header-icons i {
            cursor: pointer;
            transition: all 0.3s;
            color: #f5f5f5;
        }

        .header-icons i:hover {
            color: #F85C70;
            transform: scale(1.1);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: linear-gradient(135deg, #ff4757, #ff3838);
            color: white;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 50%;
            font-weight: 600;
        }

        /* Breadcrumb */
        .breadcrumb {
            padding: 1.5rem 0;
            margin-bottom: 2rem;
            background: transparent;
        }

        .breadcrumb ul {
            display: flex;
            list-style: none;
            gap: 0.8rem;
            font-size: 0.95rem;
        }

        .breadcrumb a {
            color: #F85C70;
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: #FFD700;
        }

        .breadcrumb i {
            font-size: 0.8rem;
            color: rgba(245, 245, 245, 0.6);
        }

        /* Product Detail */
        .product-detail {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 5rem;
            background: rgba(20, 20, 20, 0.7);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        @media (max-width: 1024px) {
            .product-detail {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }

        /* Gallery */
        .product-gallery {
            position: relative;
        }

        .main-image {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
            position: relative;
            border: 2px solid rgba(212, 175, 55, 0.3);
        }

        .main-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .main-image:hover img {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.8));
            border-radius: 15px;
        }

        .gallery-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, #ff3838, #ff6b6b);
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(255, 56, 56, 0.3);
        }

        .thumbnail-gallery {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            overflow-x: auto;
            padding: 1rem 0.5rem;
        }

        .thumbnail {
            width: 100px;
            height: 100px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s;
            flex-shrink: 0;
            position: relative;
        }

        .thumbnail.active {
            border-color: #D4AF37;
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .thumbnail:hover img {
            transform: scale(1.1);
        }

        /* Product Info */
        .product-info {
            padding: 1rem;
        }

        .product-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            background: linear-gradient(135deg, #f5f5f5, #D4AF37);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }

        .product-subtitle {
            font-size: 1.3rem;
            color: rgba(245, 245, 245, 0.8);
            margin-bottom: 2rem;
            font-style: italic;
            border-left: 3px solid #D4AF37;
            padding-left: 1rem;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .stars {
            color: #FFD700;
            font-size: 1.2rem;
        }

        .rating-count {
            color: rgba(245, 245, 245, 0.7);
            font-size: 1rem;
        }

        .product-price {
            margin: 2.5rem 0;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .current-price {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #D4AF37, #FFD700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .old-price {
            font-size: 1.8rem;
            color: rgba(245, 245, 245, 0.4);
            text-decoration: line-through;
        }

        .discount {
            background: linear-gradient(135deg, #ff3838, #ff6b6b);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .product-description {
            margin: 2rem 0;
            color: rgba(245, 245, 245, 0.9);
            line-height: 1.8;
            font-size: 1.1rem;
            padding: 1.5rem;
            background: rgba(30, 30, 30, 0.5);
            border-radius: 12px;
            border-left: 4px solid #D4AF37;
        }

        /* Features */
        .features {
            margin: 2.5rem 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(30, 30, 30, 0.6);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            transition: all 0.3s;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .feature:hover {
            background: rgba(40, 40, 40, 0.8);
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateY(-3px);
        }

        .feature i {
            color: #D4AF37;
            font-size: 1.5rem;
            min-width: 30px;
        }

        .feature span {
            font-weight: 500;
            color: #f5f5f5;
        }

 /* pedido */
        .pedido-selector {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }

        .pedido-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 2px solid rgba(212, 175, 55, 0.5);
            background: rgba(20, 20, 20, 0.8);
            color: #D4AF37;
            font-size: 1.3rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .pedido-btn:hover {
            border-color: #FFD700;
            background: rgba(212, 175, 55, 0.1);
            transform: scale(1.1);
        }

        .pedido-input {
            width: 350px;
            height: 45px;
            text-align: center;
            border: 2px solid rgba(212, 175, 55, 0.5);
            background: rgba(20, 20, 20, 0.8);
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 6000;
            color: #f5f5f5;
        }
         .pedido-inputobs {
            width: 350px;
            height: 150px;
            text-align: center;
            border: 2px solid rgba(212, 175, 55, 0.5);
            background: rgba(20, 20, 20, 0.8);
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 6000;
            color: #f5f5f5;
        }
        .pedido-input:focus {
            outline: none;
            border-color: #F85C70;
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }
      

        /* Quantity */
        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }

        .quantity-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 2px solid rgba(212, 175, 55, 0.5);
            background: rgba(20, 20, 20, 0.8);
            color: #D4AF37;
            font-size: 1.3rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .quantity-btn:hover {
            border-color: #FFD700;
            background: rgba(212, 175, 55, 0.1);
            transform: scale(1.1);
        }

        .quantity-input {
            width: 80px;
            height: 45px;
            text-align: center;
            border: 2px solid rgba(212, 175, 55, 0.5);
            background: rgba(20, 20, 20, 0.8);
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 600;
            color: #f5f5f5;
        }

        .quantity-input:focus {
            outline: none;
            border-color: #F85C70;
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }

        /* Buttons */
        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .btn {
            padding: 1.2rem 2.5rem;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            font-size: 1.1rem;
            border: none;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.5px;
            flex: 1;
            min-width: 250px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #F85C70, #B8860B);
            color: #0a0a0a;
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
            background: linear-gradient(135deg, #FFD700, #F85C70);
        }

        .btn-secondary {
            background: transparent;
            color: #F85C70;
            border: 2px solid #D4AF37;
        }

        .btn-secondary:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
        }

        

        /* Related Products */
        .related-products {
            margin-bottom: 5rem;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .product-card {
            background: rgba(20, 20, 20, 0.7);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s;
            border: 1px solid rgba(212, 175, 55, 0.1);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        }

        .product-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 1.8rem;
        }

        .card-title {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #f5f5f5;
            font-size: 1.3rem;
        }

        .card-price {
            color: #F85C70;
            font-weight: 700;
            font-size: 1.4rem;
            margin-top: 0.8rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
            background: rgba(20, 20, 20, 0.8);
            border-radius: 8px 0 0 8px;
            color: #f5f5f5;
            font-size: 1rem;
        }

        .newsletter-form button {
            background: linear-gradient(135deg, #F85C70, #B8860B);
            color: #0a0a0a;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
            background: linear-gradient(135deg, #F85C70, #F85C70);
        }

        

        /* Responsive */
        @media (max-width: 600px) {
            .header-content {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .nav-links {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .product-title {
                font-size: 2.5rem;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
            
            .ingredients-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }

        /* Glow effect */
        .glow {
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(20, 20, 20, 0.8);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #F85C70, #B8860B);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #F85C70, #D4AF37);
        }
