@charset "UTF-8";

/* ========== MODERN PRODUCT PAGE STYLES ========== */

:root {
    --primary-bg: #ffffff;
    --secondary-bg: #f8f9fa;
    --accent-gold: #ffd700;
    /* Usar apenas em estrelas */
    --accent-orange: #ff6b35;
    --accent-laranja: #ff6b35;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #8a8a8a;
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.08);
    --gradient-primary: linear-gradient(135deg, var(--accent-orange), #ff8c42);
    --gradient-secondary: linear-gradient(135deg, #2b2b2b, #1a1a1a);
    /* Substitui amarelo/azul */
    --gradient-dark: linear-gradient(135deg, #f8f9fa, #e9ecef);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --shadow-neon: 0 6px 24px rgba(255, 107, 53, 0.28);
    --shadow-neon-strong: 0 10px 36px rgba(255, 107, 53, 0.36);
    --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.16);
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Inter', 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}


/* ========== NAVBAR FIXES ========== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(233, 236, 239, 0.6);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


/* ========== HERO SECTION ========== */

.product-hero {
    min-height: 100vh;
    position: relative;
    padding: 8rem 0 2rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.08), rgba(0, 0, 0, 0.06));
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}


/* ========== PRODUCT GALLERY ========== */

.product-gallery {
    position: sticky;
    top: 2rem;
}


/* Sombreamento escuro por trás dos cards iniciais (galeria e info) */

.product-card {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.product-gallery .img-switcher_produtos {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.gallery-main {
    position: relative;
    margin-bottom: 1rem;
}

.img-switcher_produtos {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 2px solid #e9ecef;
    box-shadow: var(--shadow-card);
    cursor: grab;
    user-select: none;
    transition: var(--transition-smooth);
}

.img-switcher_produtos:active {
    cursor: grabbing;
    transform: scale(0.98);
}

.produto-img_produtos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.produto-img_produtos.active_produtos {
    opacity: 1;
    transform: scale(1);
}

.switch-btn_produtos {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0.8;
}

.switch-btn_produtos:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--accent-orange);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.25);
    opacity: 1;
}

.switch-btn_produtos:active {
    transform: translateY(-50%) scale(1.05);
    transition: all 0.1s ease;
}

.prev_produtos {
    left: 20px;
}

.next_produtos {
    right: 20px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.img-switcher_produtos:hover {
    box-shadow: var(--shadow-card), 0 0 0 rgba(255, 255, 255, 0);
    transform: translateY(-2px);
}

.img-switcher_produtos:hover .gallery-overlay {
    opacity: 1;
}

.zoom-indicator {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    transition: var(--transition-smooth);
    transform: scale(1);
}

.zoom-indicator i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
    background: #ffffff;
}

.thumbnail.active {
    border-color: var(--accent-orange);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.thumbnail:hover img {
    transform: scale(1.1);
}


/* ========== GALLERY DOTS NAVIGATION ========== */

.gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.dot.active {
    background: var(--accent-orange);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}


/* ========== PRODUCT INFO SECTION ========== */

.product-info-section {
    padding: 2rem 0;
}

.product-info {
    padding: 2.5rem;
    box-sizing: border-box;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: var(--shadow-card);
    color: var(--text-primary);
}

.product-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-neon);
}

.product-title {
    margin-bottom: 1rem;
}

.title-main {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.title-sub {
    display: block;
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
    font-size: 1.1rem;
}

.stars i.fas {
    color: var(--accent-gold);
}

.stars i.far {
    color: rgba(255, 215, 0, 0.3);
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    text-shadow: none;
}

.price-original {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-discount {
    background: var(--gradient-secondary);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.feature-list i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}


/* ========== SIZE SELECTION ========== */

.size-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.size-option {
    position: relative;
    cursor: pointer;
}

.size-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.size-label {
    display: block;
    padding: 1rem;
    text-align: center;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    color: #1a1a1a !important;
    /* garantir visibilidade nos não selecionados */
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    opacity: 1;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.size-input:checked+.size-label,
.size-label.selected {
    background: #1f1f1f;
    color: #ffffff !important;
    border-color: #1f1f1f;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.size-label:hover {
    border-color: #222222;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.size-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-orange);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.size-guide-link:hover {
    color: var(--text-primary);
}


/* ========== QUANTITY SELECTION ========== */

.quantity-section {
    margin-bottom: 2rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 200px;
    color: var(--text-primary);
}

.qty-btn {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    color: var(--text-primary) !important;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


/* Garantir ícones visíveis (menos/mais) */

.qty-btn i,
.qty-btn svg {
    color: var(--text-primary) !important;
}


/* Forçar cor preta explícita nos ícones dos botões de quantidade */

.quantity-section .qty-btn .fas,
.quantity-section .qty-btn .fa,
.quantity-section .qty-btn i {
    color: #111111 !important;
}

.qty-btn:hover {
    background: var(--gradient-primary);
    color: #141414 !important;
    border-color: var(--accent-orange);
    transform: scale(1.05);
    box-shadow: var(--shadow-neon);
}

.quantity-input {
    width: 80px;
    height: 50px;
    background: #ffffff !important;
    border: 2px solid #e9ecef;
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    /* Safari/Chrome */
    caret-color: var(--text-primary);
    text-align: center;
    padding: 0;
    line-height: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0;
    outline: none;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


/* Remover spinners nativos para não deslocar o número */

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input {
    -moz-appearance: textfield;
    appearance: textfield;
}


/* Forçar cor escura do número em todos os navegadores */

.quantity-section input[type="number"],
.quantity-controls input[type="number"] {
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
}


/* Garantir contraste forte para quantidade em todos os estados */

.quantity-controls * {
    color: var(--text-primary) !important;
}


/* Remover possível opacidade em estados desativados por estilos antigos */

.quantity-input[disabled],
.qty-btn[disabled] {
    opacity: 0.6;
    color: var(--text-primary) !important;
}

.quantity-input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}


/* ========== ACTION BUTTONS ========== */

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon-strong);
}

.btn-secondary {
    background: #ffffff;
    color: var(--accent-orange);
    border: 2px solid #e9ecef;
    box-shadow: var(--shadow-neon);
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon-strong);
}

.btn-ripple {
    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-primary:active .btn-ripple {
    width: 300px;
    height: 300px;
}


/* ========== PRODUCT FEATURES ========== */

.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-orange);
    min-width: 40px;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}


/* ========== PRODUCT DETAILS SECTION ========== */

.product-details-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.details-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 3rem;
    background: #ffffff;
    border-radius: 15px;
    padding: 0.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.tab-btn {
    flex: 1;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 10px;
}

.tab-btn.active {
    background: #1f1f1f;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.tab-content {
    display: none;
}

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}


/* Melhor contraste de texto nas especificações */

.spec-item .spec-label {
    color: var(--text-secondary) !important;
    font-weight: 600;
}

.spec-item .spec-value {
    color: #1a1a1a !important;
    font-weight: 700;
}

.spec-item:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.18);
}

.spec-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.spec-value {
    font-weight: 700;
    color: var(--text-primary);
}

.reviews-summary {
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--card-border);
}

.rating-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.rating-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.rating-stars {
    display: flex;
    gap: 0.3rem;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.rating-count {
    color: var(--text-secondary);
    font-size: 1.1rem;
}


/* ========== REVIEWS SYSTEM ========== */

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
}

.rating-breakdown {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--card-border);
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.rating-bar span:first-child {
    min-width: 30px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rating-bar span:last-child {
    min-width: 40px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: right;
}

.bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.bar .fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.add-review-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--card-border);
}

.add-review-section h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.star-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.star-rating i {
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.star-rating i:hover,
.star-rating i.active {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
    resize: vertical;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.review-form textarea {
    min-height: 120px;
}

.reviews-list {
    margin-top: 2rem;
}

.review-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.review-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-bg);
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-primary);
}

.review-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.review-rating {
    display: flex;
    gap: 0.2rem;
}

.review-rating i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.review-rating i.active {
    color: var(--accent-gold);
}

.review-rating i:not(.active) {
    color: rgba(255, 215, 0, 0.3);
}


/* Rating overview stars */

.rating-overview .rating-stars i {
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.rating-overview .rating-stars i.fas {
    color: var(--accent-gold);
}

.rating-overview .rating-stars i.far {
    color: rgba(255, 215, 0, 0.3);
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 1rem;
}


/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 1200px) {
    .product-container {
        gap: 3rem;
    }
    .title-main {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-gallery {
        position: static;
    }
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 6rem 0 1rem 0;
    }
    .product-container {
        padding: 0 1rem;
    }
    .title-main {
        font-size: 2rem;
    }
    .price-current {
        font-size: 2rem;
    }
    .size-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .action-buttons {
        flex-direction: column;
    }
    .product-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .details-tabs {
        flex-direction: column;
    }
    .tab-btn {
        text-align: center;
    }
    .rating-breakdown {
        padding: 1.5rem;
    }
    .add-review-section {
        padding: 1.5rem;
    }
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .reviewer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .product-container {
        padding: 0 0.5rem;
    }
    .title-main {
        font-size: 1.8rem;
    }
    .size-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quantity-controls {
        max-width: 150px;
    }
    .qty-btn,
    .quantity-input {
        height: 45px;
    }
    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    .gallery-thumbnails {
        gap: 0.5rem;
    }
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    .gallery-dots {
        bottom: 10px;
    }
    .product-features {
        gap: 0.8rem;
    }
    .feature-item {
        padding: 1rem;
    }
}

@media (max-width: 320px) {
    .product-hero {
        padding: 5rem 0 1rem 0;
    }
    .product-container {
        padding: 0 0.25rem;
    }
    .title-main {
        font-size: 1.5rem;
    }
    .title-sub {
        font-size: 0.9rem;
    }
    .price-current {
        font-size: 1.5rem;
    }
    .size-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .size-option {
        padding: 0.5rem;
    }
    .size-label {
        font-size: 0.8rem;
    }
    .quantity-controls {
        max-width: 120px;
    }
    .qty-btn,
    .quantity-input {
        height: 40px;
        font-size: 0.9rem;
    }
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    .gallery-thumbnails {
        gap: 0.25rem;
    }
    .thumbnail {
        width: 50px;
        height: 50px;
    }
    .gallery-dots {
        bottom: 8px;
    }
    .product-features {
        gap: 0.5rem;
    }
    .feature-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    .feature-item i {
        font-size: 1.2rem;
    }
    .details-tabs {
        gap: 0.5rem;
    }
    .tab-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}


/* ========== ANIMATIONS ========== */

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-info-section>* {
    animation: slideInUp 0.6s ease-out forwards;
}

.product-info-section>*:nth-child(1) {
    animation-delay: 0.1s;
}

.product-info-section>*:nth-child(2) {
    animation-delay: 0.2s;
}

.product-info-section>*:nth-child(3) {
    animation-delay: 0.3s;
}

.product-info-section>*:nth-child(4) {
    animation-delay: 0.4s;
}

.product-info-section>*:nth-child(5) {
    animation-delay: 0.5s;
}

.product-info-section>*:nth-child(6) {
    animation-delay: 0.6s;
}

.product-info-section>*:nth-child(7) {
    animation-delay: 0.7s;
}

.product-info-section>*:nth-child(8) {
    animation-delay: 0.8s;
}