/* Remover efeitos de glow */
svg, img[src*=".svg"], .emoji,
.guarantee-icon, .card-icon-svg, .title-icon-svg {
    filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

/* ===================================
   CONTAINER PRINCIPAL
=================================== */
.single-product-teatia {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ===================================
   LAYOUT PRODUTO - REDESIGN ELEGANTE
=================================== */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f7fc 100%);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(156, 39, 176, 0.1);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.product-layout::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.05) 0%, transparent 70%);
    animation: blob-float 20s ease-in-out infinite;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

/* ===================================
   GALERIA DE IMAGENS
=================================== */
.product-gallery {
    position: relative;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.main-image:hover {
    box-shadow: 0 8px 24px rgba(156, 39, 176, 0.2);
}

.gallery-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
    animation: pulse-sale 2s infinite;
}

@keyframes pulse-sale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===================================
   INFORMAÇÕES DO PRODUTO
=================================== */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.product-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2rem;
    color: #333;
    margin: 0 0 12px;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f0f0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffc107;
    font-size: 0.95rem;
}

/* ===================================
   PREÇO
=================================== */
.product-price-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 24px;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.price-old {
    font-size: 1.4rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 12px;
}

.price-save {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 12px;
}

/* ===================================
   DESCRIÇÃO CURTA
=================================== */
.product-short-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #333;
}

.product-features li::before {
    content: '✓';
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===================================
   BOTÕES DE AÇÃO - REDESIGN
=================================== */
.product-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.btn-add-to-cart,
.btn-buy-now {
    flex: 1;
    padding: 18px 30px;
    border: none;
    border-radius: 14px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-add-to-cart::before,
.btn-buy-now::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-add-to-cart:hover::before,
.btn-buy-now:hover::before {
    width: 300px;
    height: 300px;
}

.btn-add-to-cart {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.3);
}

.btn-add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(156, 39, 176, 0.4);
}

.btn-buy-now {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.4);
}
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-selector label {
    font-weight: 600;
    color: #333;
}

.quantity-input {
    display: flex;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.quantity-input button {
    background: #f0f0f0;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-input button:hover {
    background: #9c27b0;
    color: white;
}

.quantity-input input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-add-to-cart {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: white;
    padding: 18px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-to-cart::before {
    content: '🛒';
    font-size: 1.3em;
}

.btn-add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(156, 39, 176, 0.4);
}

.btn-buy-now {
    background: #4caf50;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

/* ===================================
   GARANTIAS E SEGURANÇA
=================================== */
.product-guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #555;
}

.guarantee-icon {
    font-size: 1.5em;
}

/* ===================================
   TABS DE CONTEÚDO - REDESIGN ELEGANTE
=================================== */
.product-tabs {
    background: linear-gradient(135deg, #f9f7fc 0%, #fff 100%);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(156, 39, 176, 0.08);
    overflow: hidden;
    margin-top: 40px;
}

.tabs-nav {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(156, 39, 176, 0.1);
    padding: 10px;
    position: relative;
}

.tabs-nav::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 33.333%;
    height: 2px;
    background: linear-gradient(90deg, #9c27b0, #e91e63);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.tab-button {
    flex: 1;
    padding: 18px 30px;
    background: transparent;
    border: none;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 12px;
}

.tab-button:hover {
    background: rgba(156, 39, 176, 0.05);
    color: #9c27b0;
    transform: translateY(-2px);
}

.tab-button.active {
    color: #9c27b0;
    background: rgba(156, 39, 176, 0.1);
}

.tab-button:nth-child(2).active ~ .tabs-nav::before {
    transform: translateX(100%);
}

.tab-button:nth-child(3).active ~ .tabs-nav::before {
    transform: translateX(200%);
}

.tab-content {
    padding: 50px;
    display: none;
    animation: fadeInUp 0.5s ease-out;
    background: white;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: #2d3748;
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #9c27b0;
    display: inline-block;
}

.tab-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    color: #9c27b0;
    margin: 30px 0 20px;
}

.tab-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tab-content ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.tab-content ul li::before {
    content: '✔️';
    position: absolute;
    left: 0;
    color: #9c27b0;
    font-size: 1.2rem;
}

.tab-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 15px 0;
}

.tab-content strong {
    color: #2d3748;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.product-tabs {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tabs-nav {
    display: flex;
    gap: 12px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-button {
    background: none;
    border: none;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-button.active {
    color: #9c27b0;
}

.tab-button.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin: 0 0 16px;
}

.tab-content p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

/* ===================================
   PRODUTOS RELACIONADOS
=================================== */
.related-products {
    margin-top: 60px;
}

.related-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.related-title::before {
    content: '✨';
    margin-right: 10px;
}

/* ===================================
   RESPONSIVO
=================================== */
@media (max-width: 968px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 28px;
    }
    
    .main-image {
        height: 400px;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-price {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .single-product-teatia {
        padding: 0 16px;
        margin: 20px auto;
    }
    
    .product-layout,
    .product-tabs {
        padding: 20px;
        border-radius: 16px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-price {
        font-size: 1.8rem;
    }
    
    .btn-add-to-cart {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .product-guarantees {
        grid-template-columns: 1fr;
    }
    
    .tabs-nav {
        gap: 8px;
    }
    
    .tab-button {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}
