/* Product Page Gaming - Futurista e Clean */
.product-page-gaming {
    background: #0a0a0a;
    color: #e0e0e8;
    font-family: 'DIN Next', 'Roboto Condensed', sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}



/* Efeito de padrão hexágono/tech no background */
.product-page-gaming::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 48px,
            rgba(219, 0, 0, 0.02) 48px,
            rgba(219, 0, 0, 0.02) 50px
        ),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 48px,
            rgba(219, 0, 0, 0.02) 48px,
            rgba(219, 0, 0, 0.02) 50px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 48px,
            rgba(219, 0, 0, 0.02) 48px,
            rgba(219, 0, 0, 0.02) 50px
        );
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 0;
    animation: patternMove 40s linear infinite;
    opacity: 0.4;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.product-page-gaming section {
    background: transparent;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.product-page-gaming .container {
    max-width: 90%;
}



@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.product-page-gaming .product-slick .slick-slide img {
    border-radius: 16px;
    background: transparent;
}

.product-page-gaming .slider-nav {
    margin-top: 30px;
}

.product-page-gaming .slider-nav .slick-slide {
    padding: 0 10px;
}

.product-page-gaming .slider-nav .slick-slide img {
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.6;
}

.product-page-gaming .slider-nav .slick-slide.slick-current img,
.product-page-gaming .slider-nav .slick-slide:hover img {
    border-color: #db0000;
    box-shadow: 0 0 25px rgba(219, 0, 0, 0.6);
    opacity: 1;
    transform: scale(1.05);
}

/* Product Details - Card Unificado */
.product-page-gaming .product-page-details {
    padding-left: 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(219, 0, 0, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 40px rgba(219, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.product-page-gaming .product-page-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(219, 0, 0, 0.5), transparent);
}

.product-page-gaming .main-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(219, 0, 0, 0.3);
    text-align: left;
}

.product-page-gaming .product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.product-page-gaming .rating-list {
    display: flex;
    gap: 8px;
}

.product-page-gaming .rating-list i {
    color: #ffd700;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.product-page-gaming .rating-list i.ri-star-line {
    color: rgba(255, 255, 255, 0.2);
}

.product-page-gaming .divider {
    color: rgba(255, 255, 255, 0.2);
}

.product-page-gaming .product-rating a {
    color: white;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}


/* Price - Design Futurista */
.product-page-gaming .price-text {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
}

.product-page-gaming .price-text::before {
    display: none;
}

.product-page-gaming .price-text h3 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.product-page-gaming .price-text #price-display {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.product-page-gaming .price-text del {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    margin-left: 12px;
    text-decoration-thickness: 2px;
}

.product-page-gaming .price-text .discounted-price {
    color: #4caf50;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 12px;
    background: rgba(76, 175, 80, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-page-gaming .price-text h4 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.product-page-gaming .price-text #total-price-display {
    color: #db0000;
    font-size: 1.5rem;
    font-weight: 800;
    margin-left: 10px;
    text-shadow: 0 0 20px rgba(219, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.product-page-gaming .price-text span:last-child {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    display: block;
    margin-top: 8px;
}

/* Price and Quantity Row - Layout em linha */
.product-page-gaming .price-qty-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-page-gaming .price-left {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.product-page-gaming .unit-price-container {
    display: none;
    flex-direction: column;
}

.product-page-gaming .total-price-container {
    display: flex;
    flex-direction: column;
}

.product-page-gaming .price-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.product-page-gaming .price-value-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-page-gaming .price-with-discount {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product-page-gaming .price-value {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.product-page-gaming .price-old {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    text-decoration-thickness: 2px;
}

.product-page-gaming .discounted-price {
    color: #4caf50;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(76, 175, 80, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-page-gaming .total-price-value {
    color: #db0000;
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(219, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.product-page-gaming .price-center {
    flex: 1;
    min-width: 200px;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-page-gaming .qty-section {
    margin-bottom: 0;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
}

.product-page-gaming .qty-box {
    width: 100%;
}

.product-page-gaming .input-group {
    display: flex;
    align-items: center;
    border: 1px solid rgba(219, 0, 0, 0.25);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    max-width: 160px;
}

.product-page-gaming .input-group button {
    background: transparent;
    border: none;
    color: #db0000;
    padding: 15px 20px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(219, 0, 0, 0.15);
}

.product-page-gaming .input-group button:last-child {
    border-right: none;
    border-left: 1px solid rgba(219, 0, 0, 0.15);
}

.product-page-gaming .input-group button:hover {
    background: rgba(219, 0, 0, 0.15);
    color: #ff3333;
    text-shadow: 0 0 15px rgba(219, 0, 0, 0.8);
}

.product-page-gaming .input-group input {
    background: transparent;
    border: none;
    color: #ffffff;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 15px 10px;
    width: 80px;
}

.product-page-gaming .input-group input:focus {
    outline: none;
    background: rgba(219, 0, 0, 0.08);
}

/* Buttons - Melhorados e Compactos */
.product-page-gaming .product-buttons {
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.product-page-gaming .btn-add-to-cart,
.product-page-gaming .btn-add-to-cart-and-checkout {
    flex: 1;
    min-width: 180px;
    padding: 16px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.product-page-gaming .btn-add-to-cart {
    background: rgba(219, 0, 0, 0.15);
    color: #db0000;
    border-color: rgba(219, 0, 0, 0.4);
}

.product-page-gaming .btn-add-to-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(219, 0, 0, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.product-page-gaming .btn-add-to-cart:hover::before {
    width: 400px;
    height: 400px;
}

.product-page-gaming .btn-add-to-cart:hover {
    background: rgba(219, 0, 0, 0.25);
    color: #ffffff;
    border-color: #db0000;
    box-shadow: 0 8px 32px rgba(219, 0, 0, 0.5), 0 0 60px rgba(219, 0, 0, 0.3);
    transform: translateY(-3px);
}

.product-page-gaming .btn-add-to-cart-and-checkout {
    background: linear-gradient(135deg, #db0000 0%, #ff3333 100%);
    color: #ffffff;
    border: none;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(219, 0, 0, 0.4);
}

.product-page-gaming .btn-add-to-cart-and-checkout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: 0;
}

.product-page-gaming .btn-add-to-cart-and-checkout:hover::before {
    left: 100%;
}

.product-page-gaming .btn-add-to-cart-and-checkout:hover {
    background: linear-gradient(135deg, #ff0000 0%, #ff5555 100%);
    box-shadow: 0 8px 40px rgba(219, 0, 0, 0.6), 0 0 80px rgba(219, 0, 0, 0.4);
    transform: translateY(-3px);
}

.product-page-gaming .btn-add-to-cart i,
.product-page-gaming .btn-add-to-cart-and-checkout i,
.product-page-gaming .btn-add-to-cart span,
.product-page-gaming .btn-add-to-cart-and-checkout span {
    position: relative;
    z-index: 2;
}

.product-page-gaming .buy-box {
    margin-bottom: 30px;
}

.product-page-gaming .buy-box a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.product-page-gaming .buy-box a:hover {
    color: #db0000;
    border-color: rgba(219, 0, 0, 0.4);
    background: rgba(219, 0, 0, 0.15);
    box-shadow: 0 4px 16px rgba(219, 0, 0, 0.3);
}

.product-page-gaming .buy-box a i {
    font-size: 1.2rem;
    color: #db0000;
}

/* Bordered Boxes - Glassmorphism */
.product-page-gaming .bordered-box {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(219, 0, 0, 0.2);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 40px rgba(219, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-page-gaming .bordered-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(219, 0, 0, 0.6), transparent);
}

.product-page-gaming .bordered-box:hover {
    border-color: rgba(219, 0, 0, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(219, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.product-page-gaming .bordered-box .sub-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

/* Shipping Info */
.product-page-gaming .shipping-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-page-gaming .shipping-info li {
    color: rgba(255, 255, 255, 0.75);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.product-page-gaming .shipping-info li:last-child {
    border-bottom: none;
}

.product-page-gaming .shipping-info li span:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.product-page-gaming .shipping-info li span:last-child {
    color: #db0000;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Delivery Details */
.product-page-gaming .delivery-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-page-gaming .delivery-details li {
    color: rgba(255, 255, 255, 0.75);
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border-radius: 0;
    margin-bottom: 10px;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.product-page-gaming .delivery-details li:hover {
    background: transparent;
    border-left-color: #db0000;
    transform: translateX(5px);
    color: rgba(255, 255, 255, 0.9);
}

.product-page-gaming .delivery-details li i {
    color: #db0000;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px rgba(219, 0, 0, 0.5));
    flex-shrink: 0;
}

/* Dashed Border Box - Compacto */
.product-page-gaming .dashed-border-box {
    border: 1px dashed rgba(219, 0, 0, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.product-page-gaming .dashed-border-box:hover {
    border-color: rgba(219, 0, 0, 0.5);
    background: rgba(219, 0, 0, 0.03);
}

.product-page-gaming .dashed-border-box .sub-title {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.product-page-gaming .payment-img {
    max-width: 100%;
    opacity: 0.85;
    filter: brightness(1.05);
    max-height: 60px;
}

/* Tabs */
.product-page-gaming .nav-tabs {
    border-bottom: 1px solid rgba(219, 0, 0, 0.3);
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 16px 16px 0 0;
    padding: 10px 10px 0 10px;
}

.product-page-gaming .nav-tabs .nav-link {
    color: rgba(255, 255, 255, 0.6);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 20px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 12px 12px 0 0;
    position: relative;
    font-size: 0.9rem;
}

.product-page-gaming .nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #db0000, #ff3333);
    transition: width 0.3s ease;
}

.product-page-gaming .nav-tabs .nav-link:hover {
    color: #db0000;
    background: rgba(219, 0, 0, 0.1);
}

.product-page-gaming .nav-tabs .nav-link:hover::after {
    width: 80%;
}

.product-page-gaming .nav-tabs .nav-link.active {
    background: rgba(219, 0, 0, 0.15);
    color: #db0000;
}

.product-page-gaming .nav-tabs .nav-link.active::after {
    width: 100%;
}

.product-page-gaming .tab-content {
    color: rgba(255, 255, 255, 0.9);
    padding: 40px 0;
    line-height: 1.8;
}

.product-page-gaming .product-tab-description {
    font-size: 1.05rem;
}

.product-page-gaming .product-tab-description p {
    margin-bottom: 25px;
}

/* Related Products */
.product-page-gaming .product-related h2 {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 60px;
    text-align: center;
    text-shadow: 0 0 40px rgba(219, 0, 0, 0.4);
}

.product-page-gaming .basic-product {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(219, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 40px rgba(219, 0, 0, 0.08);
    position: relative;
}

.product-page-gaming .basic-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(219, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-page-gaming .basic-product:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(219, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(219, 0, 0, 0.5);
}

.product-page-gaming .basic-product:hover::before {
    opacity: 1;
}

.product-page-gaming .basic-product .img-wrapper {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.product-page-gaming .basic-product .img-wrapper img {
    transition: transform 0.4s ease;
}

.product-page-gaming .basic-product:hover .img-wrapper img {
    transform: scale(1.08);
}

.product-page-gaming .basic-product .product-title {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.product-page-gaming .basic-product .product-title:hover {
    color: #db0000;
}

.product-page-gaming .basic-product .price {
    color: #db0000;
    font-weight: 800;
    font-size: 1.4rem;
    text-shadow: 0 0 20px rgba(219, 0, 0, 0.5);
}

/* Reviews */
.product-page-gaming .product-rating-box {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(219, 0, 0, 0.2);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 60px rgba(219, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.product-page-gaming .rating-number {
    color: #ffffff;
    font-size: 4.5rem;
    font-weight: 900;
    text-shadow: 0 0 40px rgba(219, 0, 0, 0.6);
    position: relative;
    z-index: 1;
    letter-spacing: -3px;
}

.product-page-gaming .base-rating i {
    color: #ffd700;
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.product-page-gaming .rating-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 15px;
}

.product-page-gaming .review-title-2 h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-page-gaming .review-title-2 p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.product-page-gaming .review-title-2 .btn {
    background: rgba(219, 0, 0, 0.15);
    color: #db0000;
    border: 1px solid rgba(219, 0, 0, 0.4);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.product-page-gaming .review-title-2 .btn:hover {
    background: rgba(219, 0, 0, 0.25);
    border-color: #db0000;
    box-shadow: 0 4px 20px rgba(219, 0, 0, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.product-page-gaming .review-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-page-gaming .people-box {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(219, 0, 0, 0.2);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 40px rgba(219, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-page-gaming .people-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(219, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-page-gaming .people-box:hover {
    border-color: rgba(219, 0, 0, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(219, 0, 0, 0.2);
    transform: translateX(5px);
}

.product-page-gaming .people-box:hover::before {
    opacity: 1;
}

.product-page-gaming .user-round {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #db0000 0%, #ff3333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(219, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.product-page-gaming .people-name .name {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
}

.product-page-gaming .people-name .text-content {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.product-page-gaming .product-rating i {
    color: #ffd700;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.product-page-gaming .reply p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Modals */
.product-page-gaming .modal-content {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(219, 0, 0, 0.3);
    border-radius: 24px;
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(219, 0, 0, 0.2);
}

.product-page-gaming .modal-header {
    border-bottom: 1px solid rgba(219, 0, 0, 0.3);
    padding: 30px 40px;
}

.product-page-gaming .modal-header h3 {
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-page-gaming .modal-header .btn-close {
    background: transparent;
    border: none;
    color: #db0000;
    font-size: 1.5rem;
    opacity: 1;
    transition: all 0.3s ease;
}

.product-page-gaming .modal-header .btn-close:hover {
    color: #ff3333;
    text-shadow: 0 0 15px rgba(219, 0, 0, 0.8);
    transform: rotate(90deg);
}

.product-page-gaming .modal-body {
    padding: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.product-page-gaming .modal-footer {
    border-top: 1px solid rgba(219, 0, 0, 0.3);
    padding: 25px 40px;
}

.product-page-gaming .modal-footer .btn {
    padding: 14px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.product-page-gaming .modal-footer .btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.product-page-gaming .modal-footer .btn-outline:hover {
    border-color: rgba(219, 0, 0, 0.6);
    color: #db0000;
    background: rgba(219, 0, 0, 0.15);
}

.product-page-gaming .modal-footer .btn-solid {
    background: linear-gradient(135deg, #db0000 0%, #ff3333 100%);
    border: none;
    color: #ffffff;
    font-weight: 800;
}

.product-page-gaming .modal-footer .btn-solid:hover {
    background: linear-gradient(135deg, #ff0000 0%, #ff5555 100%);
    box-shadow: 0 4px 20px rgba(219, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* Form Elements */
.product-page-gaming .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(219, 0, 0, 0.3);
    color: #ffffff;
    border-radius: 12px;
    padding: 14px 20px;
    backdrop-filter: blur(10px);
}

.product-page-gaming .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #db0000;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(219, 0, 0, 0.4);
}

.product-page-gaming .form-label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Size Delivery Info */
.product-page-gaming .size-delivery-info {
    margin-bottom: 0;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-page-gaming .size-delivery-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.product-page-gaming .size-delivery-info a:hover {
    color: #db0000;
    border-color: rgba(219, 0, 0, 0.4);
    background: rgba(219, 0, 0, 0.15);
    box-shadow: 0 4px 16px rgba(219, 0, 0, 0.3);
}

.product-page-gaming .size-delivery-info a i {
    color: #db0000;
    font-size: 1.2rem;
}

/* Timer Box */
.product-page-gaming .timer-sec-box {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.product-page-gaming .timer p {
    color: #4caf50;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 0 25px rgba(76, 175, 80, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .product-page-gaming .product-page-details {
        padding-left: 0;
        margin-top: 50px;
    }

    .product-page-gaming .main-title {
        font-size: 2.5rem;
    }

    .product-page-gaming .product-buttons {
        flex-direction: column;
    }

    .product-page-gaming .btn-add-to-cart,
    .product-page-gaming .btn-add-to-cart-and-checkout {
        width: 100%;
    }

    .product-page-gaming .price-qty-row {
        flex-direction: column;
        align-items: stretch;
    }

    .product-page-gaming .price-left,
    .product-page-gaming .price-center {
        min-width: 100%;
        text-align: left;
    }

    .product-page-gaming .price-center {
        align-items: flex-start;
    }

    .product-page-gaming .qty-section {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .product-page-gaming .price-value {
        font-size: 1.3rem;
    }

    .product-page-gaming .total-price-value {
        font-size: 1.2rem;
    }
}
