/* ========================================
   PRODUCT DETAIL PAGE - VICENTE
   Design Moderno e Limpo
   ======================================== */

/* Product Detail Section */
.product-detail-section {
    padding: 40px 0;
    background: #ffffff;
    min-height: 100vh;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #000000;
}

.breadcrumb-separator {
    color: #ccc;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

/* Product Detail Main */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 20px;
}

.product-main-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    margin-bottom: 20px;
}

.main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-main-image:hover .main-img {
    transform: scale(1.02);
}

.product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    background: #f8f9fa;
    color: #ccc;
}

.product-image-placeholder i {
    font-size: 4rem;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Media */
.product-main-media {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    margin-bottom: 20px;
}

.main-img, .main-video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-img:hover {
    transform: scale(1.02);
}

.main-video {
    background: #000;
}

/* Zoom da imagem principal */
#main-media-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    background-position: center;
}

#main-media-container .main-img {
    transition: opacity 0.2s ease;
}

#main-media-container.zoom-active {
    cursor: zoom-out;
    background-repeat: no-repeat;
    background-size: 200%;
}

#main-media-container.zoom-active .main-img {
    opacity: 0;
}

@media (hover: none) {
    #main-media-container.zoom-active {
        background-size: 180%;
    }
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-play-icon {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 24px;
}

/* Thumbnail Gallery */
.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.thumbnail:hover {
    border-color: #013c10;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: #013c10;
    box-shadow: 0 0 0 2px rgba(1, 60, 16, 0.2);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge-sale {
    background: #ff4757;
    color: white;
}

.product-badge-featured {
    background: #000000;
    color: white;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: #000000;
}

.thumbnail.active {
    border-color: #000000;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-category {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ddd;
    font-size: 16px;
}

.stars i.filled {
    color: #ffc107;
}

.rating-text {
    font-size: 14px;
    color: #666;
}

/* Product Price */
.product-price-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-old {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.price-current {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.price-installments {
    font-size: 16px;
    color: #666;
}

/* Product Options */
.product-option {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.selected-color {
    font-weight: 400;
    color: #666;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
}

.size-option:hover {
    border-color: #000000;
    background: #000000;
    color: white;
}

.size-option.selected,
.size-option.active {
    border-color: #013c10;
    background: #013c10;
    color: white;
}

    .size-option.disabled {
    border-color: #e0e0e0;
    background: #f8f9fa;
    color: #ccc;
    cursor: pointer; /* Allow clicking */
    opacity: 0.5;
}

.size-option.disabled:hover {
    border-color: #ff6b6b;
    background: #fff5f5;
    color: #ff6b6b;
    transform: scale(1.02);
}

.no-sizes {
    color: #dc3545;
    font-style: italic;
    margin: 10px 0;
}

.color-options {
    display: flex;
    gap: 12px;
}

.color-option {
    width: 40px;
    height: 40px;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-option:hover {
    border-color: #000000;
    transform: scale(1.1);
}

.color-option.selected,
.color-option.active {
    border-color: #013c10;
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(1, 60, 16, 0.2);
}

.color-option.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.color-option.disabled {
    border-color: #e0e0e0;
    cursor: pointer; /* Allow clicking */
    opacity: 0.5;
    position: relative;
}

.color-option.disabled::after {
    content: '✕';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #dc3545;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.color-option.disabled:hover {
    border-color: #ff6b6b;
    transform: scale(1.05);
    opacity: 0.7;
}

.size-guide {
    font-size: 14px;
    color: #000000;
    text-decoration: underline;
    align-self: flex-start;
}

/* Stock Status */
.stock-status {
    margin: 20px 0;
}

.in-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #28a745;
    font-weight: 500;
}

.out-of-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dc3545;
    font-weight: 500;
}

.in-stock i,
.out-of-stock i {
    font-size: 16px;
}

/* Product Actions */
.product-actions-detail {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

/* Botões de ação */
.add-to-cart-detail {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
}

.add-to-cart-detail:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Botão desabilitado (sem estoque) */
.add-to-cart-detail:disabled {
    background: #6c757d !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.6;
}

.add-to-cart-detail:disabled:hover {
    background: #6c757d !important;
    transform: none !important;
    box-shadow: none !important;
}

.wishlist-btn {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
}

.wishlist-btn:hover {
    border-color: #000000;
    color: #000000;
}

.wishlist-btn.active {
    border-color: #ff4757;
    color: #ff4757;
}

/* Product Features */
.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
}

.feature-item i {
    color: #000000;
    font-size: 16px;
    width: 20px;
}

/* Product Tabs */
.product-tabs {
    margin-top: 60px;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: #000000;
}

.tab-btn.active {
    color: #000000;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000000;
}

.tabs-content {
    min-height: 300px;
}

.tab-content {
    display: none;
}

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

/* Description Tab */
.description-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.features-list li {
    padding-left: 20px;
    position: relative;
    font-size: 16px;
    color: #333;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.description-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Specifications Tab */
.specifications-grid {
    display: grid;
    gap: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.spec-value {
    color: #666;
}

/* Especificações */
.specifications-content {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    line-height: 1.6;
    color: #333;
    font-size: 0.95rem;
}

.specifications-content p {
    margin-bottom: 1rem;
}

.specifications-content p:last-child {
    margin-bottom: 0;
}


/* Related Products */
.related-products {
    margin-top: 60px;
}

.related-products h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.related-product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.related-product-image {
    height: 200px;
    overflow: hidden;
}

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

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

.related-product-info {
    padding: 20px;
}

.related-product-name {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.related-product-name a {
    color: #333;
    text-decoration: none;
}

.related-product-name a:hover {
    color: #000000;
}

.related-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.price-current {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Product Reviews Section */
.product-reviews-section {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.reviews-header {
    margin-bottom: 30px;
}

.reviews-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
}

.reviews-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.overall-rating .stars {
    justify-content: center;
    margin-bottom: 10px;
}

.overall-rating .stars i {
    font-size: 20px;
}

.total-reviews {
    color: #666;
    font-size: 16px;
}

.rating-breakdown {
    display: grid;
    gap: 12px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-label {
    min-width: 80px;
    font-size: 14px;
    color: #333;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #ffc107 0%, #ffdb4d 100%);
    transition: width 0.3s ease;
}

.rating-count {
    min-width: 40px;
    text-align: right;
    font-size: 14px;
    color: #666;
}

.reviews-list {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.review-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge {
    color: #28a745;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-date {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-rating {
    flex-shrink: 0;
}

.review-rating i {
    font-size: 16px;
    color: #ddd; /* Cor padrão para estrelas vazias */
}

.review-rating i.filled {
    color: #ffc107; /* Cor amarela para estrelas preenchidas */
}

.review-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.review-comment {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.reviews-actions {
    text-align: center;
}

.reviews-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.empty-reviews {
    text-align: center;
    padding: 40px 20px;
}

.empty-content i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-content h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.empty-content p {
    margin: 0 0 20px 0;
    color: #666;
    line-height: 1.5;
}

.empty-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

/* ========================================
   MODAL DO GUIA DE TAMANHOS
   ======================================== */

.size-guide-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 85%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    background: #333;
    color: white;
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 1.5rem;
}

/* Calculadora de Tamanhos */
.size-calculator {
    margin-bottom: 1.5rem;
}

.size-calculator h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.size-calculator > p {
    color: #666;
    margin-bottom: 1.5rem;
}

.size-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.size-form .form-group {
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.size-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.size-form input,
.size-form select {
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.size-form input:focus,
.size-form select:focus {
    outline: none;
    border-color: #333;
}

.form-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.size-result {
    background: #f8f9fa;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    margin-top: 1rem;
}

/* Tabelas de Referência */
.size-tables {
    margin-bottom: 1.5rem;
}

.size-tables h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.size-table-section {
    margin-bottom: 1.5rem;
}

.size-table-section:last-child {
    margin-bottom: 0;
}

.size-table-section h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
    margin-bottom: 1rem;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.85rem;
}

.size-table th {
    background: #333;
    color: white;
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
}

.size-table td {
    padding: 0.5rem;
    text-align: center;
    border-bottom: 1px solid #e1e5e9;
    font-size: 0.8rem;
}

.size-table tr:nth-child(even) {
    background: #f8f9fa;
}

.size-table tr:hover {
    background: #e9ecef;
}

.size-table td:first-child {
    font-weight: 600;
    color: #333;
}

/* Dicas de Medição */
.measurement-tips {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e1e5e9;
}

.measurement-tips h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tip-card {
    background: white;
    border-radius: 6px;
    padding: 1rem;
    border-left: 4px solid #333;
}

.tip-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-images {
        position: static;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .price-current {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 20px 0;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .price-current {
        font-size: 24px;
    }
    
    .product-actions-detail {
        gap: 10px;
    }
    
    .tabs-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    /* Reviews Section Responsive */
    .product-reviews-section {
        margin: 40px 0;
        padding: 20px;
    }
    
    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rating-number {
        font-size: 36px;
    }
    
    .overall-rating .stars i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 20px;
    }
    
    .price-current {
        font-size: 20px;
    }
    
    .size-options {
        gap: 8px;
    }
    
    .size-option {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .color-option {
        width: 35px;
        height: 35px;
    }
    
    .tabs-content {
        min-height: 200px;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 80vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .size-form {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .size-table th,
    .size-table td {
        padding: 0.4rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .size-form {
        grid-template-columns: 1fr;
    }
}

/* Materiais */
.materials-content {
    padding: 1rem 0;
}

.material-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #333;
}

.material-label {
    font-weight: 600;
    color: #333;
    margin-right: 1rem;
    min-width: 120px;
}

.material-value {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.no-material {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}
