.novawave-product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.product-main-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(221, 190, 88, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.product-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(221, 190, 88, 0.05) 0%, transparent 50%, rgba(196, 169, 74, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.product-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.product-image-wrapper {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 40px;
    border: 2px solid rgba(221, 190, 88, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(221, 190, 88, 0.1), transparent);
    transition: left 0.6s ease;
}

.product-image-wrapper:hover {
    border-color: rgba(221, 190, 88, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(-5px) scale(1.02);
}

.product-image-wrapper:hover::before {
    left: 100%;
}

.product-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

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

.single-product .product_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DDBE58;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.single-product .price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.single-product .price .amount {
    color: #DDBE58;
    font-weight: 700;
}

.single-product .woocommerce-product-details__short-description {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 20px 0;
}

.single-product .cart {
    margin: 30px 0;
}

.single-product .quantity {
    margin-bottom: 20px;
}

.single-product .quantity input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(221, 190, 88, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 12px 16px;
    width: 80px;
    text-align: center;
    transition: all 0.3s ease;
}

.single-product .quantity input:focus {
    outline: none;
    border-color: #DDBE58;
    box-shadow: 0 0 0 3px rgba(221, 190, 88, 0.2);
}

.single-product .single_add_to_cart_button,
.single-product .buy-now-button {
    background: linear-gradient(135deg, #DDBE58 0%, #C4A84A 100%);
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(221, 190, 88, 0.3);
    position: relative;
    overflow: hidden;
}

.single-product .single_add_to_cart_button::before,
.single-product .buy-now-button::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.6s ease;
}

.single-product .single_add_to_cart_button:hover,
.single-product .buy-now-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(221, 190, 88, 0.4);
}

.single-product .single_add_to_cart_button:hover::before,
.single-product .buy-now-button:hover::before {
    left: 100%;
}

.product-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #DDBE58;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
}

.trust-badge svg {
    color: #DDBE58;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.payment-methods {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(221, 190, 88, 0.2);
}

.payment-label {
    display: block;
    color: #888;
    font-size: 12px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.payment-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icon {
    width: 45px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(221, 190, 88, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    border-color: #DDBE58;
    transform: scale(1.1);
}

.payment-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 15px;
    background: #DDBE58;
    border-radius: 3px;
}

.product-extra-section {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(221, 190, 88, 0.1);
    backdrop-filter: blur(10px);
}

@media (max-width: 1024px) {
    .product-main-section {
        gap: 40px;
        padding: 30px;
    }

    .single-product .product_title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .novawave-product-container {
        padding: 20px 15px;
    }

    .product-main-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }

    .product-image-wrapper {
        padding: 30px 20px;
    }

    .single-product .product_title {
        font-size: 1.8rem;
    }

    .single-product .price {
        font-size: 1.5rem;
    }

    .payment-icons {
        gap: 10px;
    }

    .payment-icon {
        width: 40px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .product-main-section {
        padding: 20px 15px;
    }

    .product-image-wrapper {
        padding: 20px 15px;
    }

    .single-product .product_title {
        font-size: 1.5rem;
    }

    .single-product .price {
        font-size: 1.3rem;
    }

    .trust-badge {
        font-size: 13px;
    }

    .single-product .single_add_to_cart_button,
    .single-product .buy-now-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-main-section {
    animation: fadeInUp 0.6s ease-out;
}

.product-image-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

.product-info-section {
    animation: fadeInUp 1s ease-out;
}

.single-product .price del,
.single-product .price ins {
    text-decoration: none;
}

.single-product .price del .amount {
    color: #888;
    text-decoration: line-through;
}

.single-product .price ins .amount {
    color: #DDBE58;
    font-weight: 700;
}