/* Paleta de Cores Customizada (Mesma da index) */
        :root {
            --branco: #ffffff;
            --rose: #d4a3a3;
            --rose-escuro: #b57b7b;
            --dourado: #c5a059;
            --texto-escuro: #333333;
            --fundo-claro: #fcf9f9;
            --shopee-laranja: #ee4d2d;
            --whatsapp-verde: #25D366;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--branco);
            color: var(--texto-escuro);
        }

        h1, h2, h3, .logo {
            font-family: 'Playfair Display', serif;
        }

        /* Navbar simplificada para demonstração */
        .navbar {
            padding: 1rem 2rem;
            background-color: var(--branco);
            border-bottom: 1px solid #f0f0f0;
        }
        .navbar-brand { color: var(--dourado); font-size: 2rem; font-weight: 600; letter-spacing: 2px; }

        /* --- Página de Produto --- */
        .breadcrumb {
            font-size: 0.85rem;
            margin-top: 20px;
        }
        .breadcrumb a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb a:hover { color: var(--dourado); }
        .breadcrumb-item.active { color: var(--texto-escuro); font-weight: 600; }

        /* Galeria de Imagens */
        .main-image-container {
            width: 100%;
            height: 600px;
            overflow: hidden;
            background-color: var(--fundo-claro);
            margin-bottom: 15px;
        }
        .main-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .thumbnail-row {
            display: flex;
            gap: 15px;
            overflow-x: auto;
        }
        .thumbnail-row::-webkit-scrollbar { display: none; }
        .thumbnail-img {
            width: 90px;
            height: 120px;
            object-fit: cover;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.3s;
            opacity: 0.7;
        }
        .thumbnail-img:hover, .thumbnail-img.active {
            border-color: var(--dourado);
            opacity: 1;
        }

        /* Detalhes do Produto */
        .produto-titulo {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: var(--texto-escuro);
        }
        .produto-preco {
            font-size: 1.8rem;
            color: var(--rose-escuro);
            font-weight: 700;
            margin-bottom: 25px;
        }
        .produto-descricao {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 30px;
        }

        /* Seletor de Tamanhos */
        .size-selector-title {
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }
        .size-options {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        .size-options input[type="radio"] { display: none; }
        .size-options label {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .size-options label:hover {
            border-color: var(--rose);
        }
        .size-options input[type="radio"]:checked + label {
            border-color: var(--dourado);
            color: var(--dourado);
            font-weight: bold;
            background-color: var(--fundo-claro);
        }

        /* Botões de Ação (Comprar) */
        .btn-acao {
            display: block;
            width: 100%;
            padding: 15px;
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.95rem;
            border: none;
            text-decoration: none;
            transition: opacity 0.3s, transform 0.2s;
            margin-bottom: 15px;
        }
        .btn-acao:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            color: var(--branco);
        }
        .btn-shopee {
            background-color: var(--shopee-laranja);
            color: var(--branco);
        }
        .btn-whatsapp {
            background-color: var(--whatsapp-verde);
            color: var(--branco);
        }
        .btn-acao i {
            margin-right: 8px;
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .main-image-container { height: 450px; }
            .produto-titulo { font-size: 1.8rem; mt-4; }
        }