/* ================================================
 * SINGLE PRODUCT PAGE - GORGEOUS ENGAGEMENT DESIGN
 * ================================================ */
.single-product div.product {
    display: block !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    max-width: 1400px !important;
}

/* Hero Section with Image */
.single-product .product-hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--pricing-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--pricing-border);
    border-radius: 24px;
    padding: 4rem;
    margin: 2rem 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.single-product .product-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan-primary), #3b82f6, var(--purple-accent));
}

/* Image Side - Gorgeous Frame */
.single-product .product-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-product .product-image-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 24px;
    padding: 2rem;
    border: 2px solid rgba(6, 182, 212, 0.3);
    box-shadow: 
        0 0 60px rgba(6, 182, 212, 0.2),
        inset 0 0 60px rgba(6, 182, 212, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.single-product .product-image-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--cyan-primary), #3b82f6, var(--purple-accent), var(--cyan-primary));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

.single-product .product-image-frame:hover::before {
    opacity: 0.5;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.single-product .product-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* Placeholder Icon if no image */
.single-product .product-placeholder-icon {
    width: 200px;
    height: 200px;
    font-size: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan-primary), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 10px 40px rgba(6, 182, 212, 0.4));
}

/* Floating Badge */
.single-product .product-badge {
    position: absolute;
    top: -15px;
    right: 50px;
    background: linear-gradient(135deg, var(--orange), #ef4444);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Content Side */
.single-product .product-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

/* Hide default gallery */
.single-product .woocommerce-product-gallery {
    display: none !important;
}

/* Override default summary */
.single-product div.product .summary {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

/* Category Badge */
.single-product .product-category-badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.15);
    color: var(--cyan-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Title */
.single-product h1.product_title {
    font-size: 3rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: var(--text-primary) !important;
    margin: 0 0 1rem 0 !important;
    background: linear-gradient(135deg, var(--cyan-primary), var(--purple-accent)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-align: left !important;
}

/* Price */
.single-product .price {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    color: var(--orange) !important;
    margin: 0 0 2rem 0 !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 0.5rem !important;
    text-align: left !important;
}

.single-product .price .woocommerce-Price-amount {
    display: inline-flex;
    align-items: baseline;
}

.single-product .price .woocommerce-Price-currencySymbol {
    font-size: 2rem;
    margin-right: 0.25rem;
}

/* Description */
.single-product .woocommerce-product-details__short-description {
    font-size: 1.125rem !important;
    color: var(--text-muted) !important;
    line-height: 1.8 !important;
    margin-bottom: 2rem !important;
    text-align: left !important;
    max-width: 100% !important;
}

/* Benefits/Features Section */
.single-product .product-benefits {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.single-product .product-benefits h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.single-product .product-benefits h3::before {
    content: '✨';
    font-size: 1.75rem;
}

.single-product .product-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.single-product .product-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

.single-product .product-benefits li::before {
    content: "✓";
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    color: var(--green);
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 0.125rem;
}

/* Add to Cart Form */
.single-product form.cart {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin: 2rem 0 !important;
    justify-content: flex-start !important;
}

.single-product .quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-product .quantity label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
}

.single-product .quantity input {
    background: rgba(0,0,0,0.4) !important;
    border: 2px solid rgba(6, 182, 212, 0.3) !important;
    color: white !important;
    height: 60px !important;
    width: 100px !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.single-product .quantity input:focus {
    border-color: var(--cyan-primary) !important;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2) !important;
    outline: none !important;
}

.single-product button.single_add_to_cart_button {
    background: linear-gradient(135deg, var(--cyan-primary), #3b82f6) !important;
    height: 60px !important;
    padding: 0 3rem !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    border: none !important;
    color: white !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin: 0 !important;
}

.single-product button.single_add_to_cart_button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 35px rgba(6, 182, 212, 0.4) !important;
}

/* Trust Badges */
.single-product .product-trust-badges {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
}

.single-product .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--green);
    font-size: 0.9375rem;
    font-weight: 600;
}

.single-product .trust-badge svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Product Meta */
.single-product .product_meta {
    border-top: 1px solid var(--pricing-border) !important;
    padding-top: 1.5rem !important;
    margin-top: 2rem !important;
    color: var(--text-muted) !important;
    font-size: 0.875rem !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    text-align: left !important;
}

.single-product .product_meta span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin: 0 !important;
}

.single-product .product_meta a {
    color: var(--cyan-primary) !important;
    font-weight: 600 !important;
}

/* Hide Related Products */
.single-product .related.products,
.single-product .upsells.products {
    display: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .single-product .product-hero-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }
    
    .single-product .product-benefits ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .single-product h1.product_title {
        font-size: 2rem !important;
    }
    
    .single-product .price {
        font-size: 2.5rem !important;
    }
    
    .single-product .product-image-frame {
        max-width: 300px;
    }
    
    .single-product form.cart {
        flex-direction: column;
        align-items: stretch !important;
    }
    
    .single-product button.single_add_to_cart_button {
        width: 100% !important;
    }
    
    .single-product .product-trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
}
