/**
 * Product Information Styles
 * Title, description, meta, pricing, and CTA buttons
 */

.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.product-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Product Meta - Details Grid */

.product-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.product-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.product-meta-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Product Description */

.product-description {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* Product Price - MSRP vs Your Price */

.product-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

/* VAT Display Info */

.price-vat-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
    border-radius: 6px;
    width: fit-content;
}

.vat-status {
    font-weight: 600;
    color: white;
}

.vat-amount {
    color: white;
    font-weight: 500;
}

.msrp-savings-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
}

.msrp-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.msrp-label {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.85rem;
}

.msrp-amount {
    text-decoration: line-through;
    color: var(--text-light);
    font-weight: 600;
}

.savings-info {
    display: flex;
    align-items: center;
}

.savings-text {
    color: #dc2626;
    font-weight: 700;
    white-space: nowrap;
}

/* Product CTA Buttons */

.product-cta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.product-cta .btn {
    flex: 1;
    justify-content: center;
    font-weight: 700;
    padding: 1.15rem 2.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

.product-cta .btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
}

.product-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.product-cta .btn-primary:hover::before {
    left: 100%;
}

.product-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
}

.product-cta .btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.product-cta .btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Responsive - Product Info */

@media (max-width: 1024px) {
    .product-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 968px) {
    .product-title {
        font-size: 2rem;
    }

    .msrp-savings-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
    }

    .product-cta {
        flex-direction: column;
    }

    .product-cta .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 1.75rem;
    }

    .product-subtitle {
        font-size: 1rem;
    }

    .product-meta {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.25rem;
    }

    .msrp-savings-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 1.5rem;
    }
}
