/* Modern Product Page Styles - Scoped to .new_design */

/* Hero Section */
.new_design .product-hero {
    position: relative !important;
    min-height: 35vh !important;
    background-image: url('/images/new/Image_202512311344.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.new_design .product-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(0, 92, 187, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%) !important;
    z-index: 1 !important;
}

.new_design .product-hero-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    color: #ffffff !important;
    padding: 30px 20px !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.new_design .product-hero-title {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3) !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
}

/* Breadcrumbs in Hero */
.new_design .breadcrumb-hero {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    font-size: 1rem !important;
}

.new_design .breadcrumb-hero a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.new_design .breadcrumb-hero a:hover {
    color: #ffd700 !important;
    text-decoration: underline !important;
}

.new_design .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 1.1rem !important;
}

.new_design .breadcrumb-current {
    color: #ffd700 !important;
    font-weight: 600 !important;
}

/* Content Section */
.new_design .product-content-section {
    padding: 60px 0 0 !important;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%) !important;
}

/* Back Link */
.new_design .back-link-wrapper {
    margin-bottom: 40px !important;
}

.new_design .back-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    background: #f8f9fa !important;
    color: #005cbb !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}

.new_design .back-link:hover {
    background: #005cbb !important;
    color: #ffffff !important;
    border-color: #005cbb !important;
    transform: translateX(-5px) !important;
    text-decoration: none !important;
}

/* Product Layout Grid */
.new_design .product-layout-grid {
    display: grid !important;
    grid-template-columns: 1fr 400px !important;
    gap: 50px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

/* Left Column - Product Details */
.new_design .product-details-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}

.new_design .product-description-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 40px !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08) !important;
    font-size: 1.35rem !important;
    line-height: 1.8 !important;
    color: #2c2c2c !important;
}

.new_design .product-name-heading {
    font-size: clamp(1.75rem, 3vw, 2.25rem) !important;
    font-weight: 700 !important;
    color: #005cbb !important;
    margin-bottom: 25px !important;
    padding-bottom: 20px !important;
    border-bottom: 3px solid #005cbb !important;
    line-height: 1.3 !important;
}

.new_design .product-description-card p {
    font-size: 1.35rem !important;
    line-height: 1.8 !important;
    color: #2c2c2c !important;
    margin-bottom: 15px !important;
}

.new_design .product-section-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 40px !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08) !important;
}

.new_design .section-heading {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #005cbb !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px !important;
    border-bottom: 3px solid #005cbb !important;
}

.new_design .section-icon {
    font-size: 2rem !important;
}

.new_design .section-content {
    font-size: 1.35rem !important;
    line-height: 1.8 !important;
    color: #2c2c2c !important;
}

.new_design .section-content p {
    font-size: 1.35rem !important;
    line-height: 1.8 !important;
    color: #2c2c2c !important;
    margin-bottom: 15px !important;
}

.new_design .section-content ul,
.new_design .section-content ol {
    margin-left: 20px !important;
}

.new_design .section-content li {
    margin-bottom: 10px !important;
}

/* Right Column - Sidebar */
.new_design .product-sidebar-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}

/* Quote CTA Card */
.new_design .quote-cta-card {
    background: linear-gradient(135deg, #005cbb 0%, #00a8e8 100%) !important;
    border-radius: 24px !important;
    padding: 40px 30px !important;
    text-align: center !important;
    box-shadow: 0 8px 30px rgba(0, 92, 187, 0.3) !important;
    position: sticky !important;
    top: 100px !important;
    z-index: 10 !important;
}

.new_design .quote-cta-icon {
    font-size: 3.5rem !important;
    margin-bottom: 20px !important;
}

.new_design .quote-cta-title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
}

.new_design .quote-cta-text {
    font-size: 1.35rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 25px !important;
}

.new_design .quote-cta-button {
    display: inline-block !important;
    padding: 18px 45px !important;
    background: #ffd700 !important;
    color: #1a1a1a !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4) !important;
}

.new_design .quote-cta-button:hover {
    background: #ffed4e !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5) !important;
    text-decoration: none !important;
}

/* Product Image Cards */
.new_design .product-image-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 25px !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
}

.new_design .product-image-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 35px rgba(0, 92, 187, 0.15) !important;
}

.new_design .image-card-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #005cbb !important;
    margin-bottom: 15px !important;
    text-align: center !important;
}

.new_design .product-image {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    display: block !important;
    cursor: pointer !important;
    transition: transform 0.3s ease !important;
}

.new_design .product-image:hover {
    transform: scale(1.02) !important;
}

.new_design .drawing-note {
    font-size: 0.95rem !important;
    color: #6c757d !important;
    text-align: center !important;
    margin-top: 12px !important;
    font-style: italic !important;
}

/* Technical Drawing Card - Dark Background for Transparent PNGs */
.new_design .technical-drawing-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%) !important;
    border: 2px solid #ffd700 !important;
}

.new_design .technical-drawing-card .image-card-title {
    color: #ffd700 !important;
}

.new_design .technical-drawing-card .drawing-note {
    color: rgba(255, 255, 255, 0.8) !important;
}

.new_design .technical-drawing-card:hover {
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.3) !important;
    border-color: #ffed4e !important;
}

/* Additional Photos Section */
.new_design .additional-photos-section {
    margin-top: 80px !important;
    padding-top: 60px !important;
    border-top: 3px solid #e9ecef !important;
}

.new_design .additional-photos-heading {
    text-align: center !important;
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
    font-weight: 700 !important;
    color: #005cbb !important;
    margin-bottom: 15px !important;
}

.new_design .additional-photos-subtext {
    text-align: center !important;
    font-size: 1.35rem !important;
    color: #6c757d !important;
    margin-bottom: 40px !important;
}

.new_design .additional-photos-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 25px !important;
}

.new_design .photo-item {
    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    display: block !important;
    border: 2px solid transparent !important;
}

.new_design .photo-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 10px 35px rgba(0, 92, 187, 0.2) !important;
    border-color: #005cbb !important;
}

.new_design .photo-item img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    display: block !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .new_design .product-layout-grid {
        grid-template-columns: 1fr 350px !important;
        gap: 40px !important;
    }
}

@media (max-width: 992px) {
    .new_design .product-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .new_design .quote-cta-card {
        position: relative !important;
        top: 0 !important;
    }
    
    .new_design .product-hero {
        min-height: 32vh !important;
    }
}

@media (max-width: 768px) {
    .new_design .product-content-section {
        padding: 40px 0 0 !important;
    }
    
    .new_design .product-hero {
        min-height: 28vh !important;
    }
    
    .new_design .product-hero-content {
        padding: 25px 15px !important;
    }
    
    .new_design .product-description-card,
    .new_design .product-section-card {
        padding: 30px 20px !important;
    }
    
    .new_design .quote-cta-card {
        padding: 35px 25px !important;
    }
    
    .new_design .additional-photos-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new_design .back-link-wrapper {
    animation: fadeInUp 0.6s ease-out backwards !important;
    animation-delay: 0.1s !important;
}

.new_design .product-description-card,
.new_design .product-section-card {
    animation: fadeInUp 0.6s ease-out backwards !important;
}

.new_design .product-description-card {
    animation-delay: 0.2s !important;
}

.new_design .product-section-card:nth-of-type(2) {
    animation-delay: 0.3s !important;
}

.new_design .product-section-card:nth-of-type(3) {
    animation-delay: 0.4s !important;
}

.new_design .quote-cta-card,
.new_design .product-image-card {
    animation: fadeInUp 0.6s ease-out backwards !important;
}

.new_design .quote-cta-card {
    animation-delay: 0.2s !important;
}

.new_design .product-image-card:nth-of-type(2) {
    animation-delay: 0.3s !important;
}

.new_design .product-image-card:nth-of-type(3) {
    animation-delay: 0.4s !important;
}

.new_design .photo-item {
    animation: fadeInUp 0.6s ease-out backwards !important;
}

.new_design .photo-item:nth-child(1) { animation-delay: 0.5s !important; }
.new_design .photo-item:nth-child(2) { animation-delay: 0.55s !important; }
.new_design .photo-item:nth-child(3) { animation-delay: 0.6s !important; }
.new_design .photo-item:nth-child(4) { animation-delay: 0.65s !important; }
.new_design .photo-item:nth-child(n+5) { animation-delay: 0.7s !important; }

