/* Product Detail Styles */
.breadcrumb-section {
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
}

.product-detail-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.product-main-image {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.product-icon-wrapper {
    transition: all 0.3s ease;
}

.product-icon-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(54, 159, 222, 0.2);
}

.feature-item {
    padding: 0.5rem 0;
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(25, 135, 84, 0.2) !important;
}

.benefit-card {
    transition: all 0.3s ease;
    padding: 1.5rem 1rem;
    border-radius: 12px;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transform: translateY(-5px);
}

.tech-stack .badge {
    transition: all 0.3s ease;
}

.tech-stack .badge:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.pricing-option {
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-option:hover {
    border-color: rgba(54, 159, 222, 0.3);
    background: rgba(54, 159, 222, 0.05);
}

.form-check-input:checked + .form-check-label .pricing-option {
    border-color: var(--primary);
    background: rgba(54, 159, 222, 0.1);
}

.cta-actions .btn {
    transition: all 0.3s ease;
}

.cta-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-item {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.info-item:hover {
    background: rgba(248, 249, 250, 0.8);
}

/* Related Products */
.related-products .product-card {
    transition: all 0.3s ease;
}

.related-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
}

/* Responsive */
@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }
    
    .benefit-card {
        margin-bottom: 1rem;
    }
    
    .sticky-sidebar {
        position: static;
    }
}

/* Pricing Options Styles */
.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(54, 159, 222, 0.1), transparent);
    transition: left 0.5s ease;
}

.pricing-option:hover::before {
    left: 100%;
}

.pricing-option:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(54, 159, 222, 0.15);
}

.pricing-option.active {
    border-color: var(--primary);
    background: rgba(54, 159, 222, 0.05);
    box-shadow: 0 5px 20px rgba(54, 159, 222, 0.1);
}

.pricing-content {
    position: relative;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.pricing-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a202c;
    margin: 0;
}

.pricing-badge {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-badge.enterprise {
    background: #6c757d;
}

.pricing-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pricing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.pricing-check {
    font-size: 1.25rem;
    color: #e9ecef;
    transition: all 0.3s ease;
}

.pricing-option.active .pricing-check {
    color: var(--primary);
}

/* Animation for active state */
.pricing-option.active {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(54, 159, 222, 0.1);
    }
    50% {
        box-shadow: 0 5px 25px rgba(54, 159, 222, 0.2);
    }
    100% {
        box-shadow: 0 5px 20px rgba(54, 159, 222, 0.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-option {
        padding: 1.25rem;
    }
    
    .pricing-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .pricing-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}