/* Common Product Pages Styles */

/* Additional color variables for product pages */
:root {
    --orange: #ff6b35;
    --orange-light: #ff8c42;
    --orange-dark: #e55a2b;

    /* Font sizes are inherited from global.css and already reduced by 5% */

    /* Line heights */
    --line-height-body: 1.6;
    --line-height-heading: 1.2;
    --line-height-mobile: 1.5;

    /* Spacing - Responsive using viewport units */
    --spacing-xs: clamp(0.5rem, 2vw, 1rem);
    --spacing-sm: clamp(1rem, 3vw, 1.5rem);
    --spacing-md: clamp(1.5rem, 4vw, 2rem);
    --spacing-lg: clamp(2rem, 5vw, 3rem);
    --spacing-xl: clamp(3rem, 6vw, 4rem);
    --spacing-xxl: clamp(4rem, 8vw, 6rem);

    /* Sidebar ratio variables are now centralized in global.css */
}

/* Breakpoint system is now centralized in global.css */





/* Product Header */
.product-header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--deep-blue) 50%, var(--dark-navy) 100%);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.product-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.product-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
    padding: 2rem;
}

.product-category {
    font-size: 1.14rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: clamp(2.85rem, 7.6vw, 5.7rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.1;
}

.product-subtitle {
    font-size: 1.71rem;
    color: var(--gold-light);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.product-hero-description {
    font-size: var(--font-size-body-lg);
    line-height: var(--line-height-body);
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    text-align: left;
}

/* Key Features Section - Orange Colored */
.key-features-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    position: relative;
}

.key-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.375rem, 4.75vw, 3.8rem);
    font-weight: 700;
    text-align: left;
    margin-bottom: 4rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Responsive breakpoints for features grid */
@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: left;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.9rem;
    color: var(--orange);
    font-weight: bold;
}

.feature-title {
    font-size: 1.425rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Technical Specifications Section */
.tech-specs-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--deep-blue) 0%, var(--dark-navy) 100%);
}

.tech-specs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Tablet responsive (767px and below) */
@media (max-width: 767px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Small mobile optimization (480px and below) */
@media (max-width: 480px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.spec-category {
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 3rem;
    transition: all 0.4s ease;
}

.spec-category:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.spec-category-title {
    font-family: var(--font-heading);
    font-size: 1.71rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: left;
}

.spec-icon {
    font-size: 2.375rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: left;
    display: block;
}

.spec-list {
    list-style: none;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--cream);
}

.spec-value {
    font-weight: 400;
    color: var(--white);
    text-align: right;
}

/* Applications Section - Yellow Background */
.applications-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

.applications-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

/* Applications Grid - Yellow Section */
.applications-section .applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
    margin-top: 4rem;
}

/* Force desktop layout for screens above 767px */
@media (min-width: 768px) {
    .applications-section .applications-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}

/* Tablet responsive (767px and below) */
@media (max-width: 767px) {
    .applications-section .applications-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Small mobile optimization (480px and below) */
@media (max-width: 480px) {
    .applications-section .applications-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

.application-card {
    background: rgba(12, 20, 38, 0.8);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.application-card:hover {
    transform: translateY(-8px);
    background: rgba(12, 20, 38, 0.9);
    border-color: var(--white);
}

.application-title {
    font-size: 1.235rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.application-icon {
    font-size: 2.375rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: left;
    display: block;
}

.application-description {
    font-size: 0.95rem;
    color: var(--cream);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-navy) 100%);
    text-align: left;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.71rem, 3.8vw, 2.85rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
}

.cta-description {
    font-size: var(--font-size-body-lg);
    color: var(--cream);
    margin-bottom: 3rem;
    line-height: var(--line-height-body);
    text-align: left;
}

.cta-buttons {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.95rem, 1.9vw, 1.045rem);
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cta-btn-secondary:hover {
    background: var(--gold);
    color: var(--dark-navy);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s ease forwards;
}

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

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 767px) {
    .product-header {
        padding: 10rem 1rem 6rem;
    }

    .key-features-section,
    .tech-specs-section,
    .applications-section {
        padding: 6rem 1rem;
    }

    .features-grid,
    .specs-grid,
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Product Image Section Styles */
.product-image-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--dark-navy) 0%, var(--deep-blue) 100%);
    text-align: left;
}

.product-image-container {
    max-width: 1000px;
    margin: 0 auto;
}

.product-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.product-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.image-caption {
    margin-top: 2rem;
    font-size: var(--font-size-body-lg);
    color: var(--cream);
    font-style: italic;
    text-align: left;
    line-height: 1.6;
}

/* Responsive styles for product image section */
@media (max-width: 767px) {
    .product-image-section {
        padding: 4rem 1rem;
    }

    .product-image {
        max-width: 100%;
        border-radius: 15px;
    }

    .image-caption {
        font-size: var(--font-size-body);
        margin-top: 1.5rem;
    }
}

/* Product Showcase Section with Video */
.product-showcase-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-navy) 100%);
}

.product-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-content {
    color: var(--white);
}

.showcase-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.8vw, 2.85rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
}

.showcase-content p {
    font-size: var(--font-size-body-lg);
    line-height: var(--line-height-body);
    color: var(--cream);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.highlight-list {
    list-style: none;
    padding: 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: var(--font-size-body);
    color: var(--white);
    transition: all 0.3s ease;
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.14rem;
    min-width: 20px;
}

.highlight-item:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.showcase-video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.showcase-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 18px;
    transition: all 0.4s ease;
}

.showcase-video-container:hover .showcase-video {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
}

/* Responsive styles for showcase section */
@media (max-width: 1024px) {
    .product-showcase-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-video {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .product-showcase-section {
        padding: 6rem 1rem;
    }

    .showcase-content h2 {
        font-size: clamp(1.71rem, 4.75vw, 2.375rem);
    }

    .showcase-content p {
        font-size: var(--font-size-body);
    }

    .highlight-item {
        font-size: var(--font-size-body);
        padding: 0.8rem 0;
    }

    .showcase-video {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .product-image-section {
        padding: 3rem 1rem;
    }

    .product-image {
        border-radius: 10px;
    }

    .product-showcase-section {
        padding: 4rem 1rem;
    }

    .showcase-video {
        height: 250px;
    }
}

/* Technology Section - Card Grid Layout */
.technology-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--deep-blue) 0%, var(--dark-navy) 100%);
}

.technology-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tech-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 3rem;
    text-align: left;
    transition: all 0.4s ease;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
}

.tech-card-icon {
    font-size: 2.85rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--gold);
    transition: all 0.3s ease;
}

.tech-card:hover .tech-card-icon {
    transform: scale(1.1);
    color: var(--gold-light);
}

.tech-card-title {
    font-family: var(--font-heading);
    font-size: 1.425rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-card-title {
    color: var(--gold);
}

.tech-card-description {
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    color: var(--cream);
    opacity: 0.9;
}

/* Responsive styles for tech grid */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .technology-section {
        padding: 6rem 1rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-card {
        padding: 2rem;
    }

    .tech-card-icon {
        font-size: 2.375rem;
        margin-bottom: 1rem;
    }

    .tech-card-title {
        font-size: 1.235rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .technology-section {
        padding: 4rem 1rem;
    }

    .tech-card {
        padding: 1.5rem;
    }

    .tech-card-icon {
        font-size: 1.9rem;
    }

    .tech-card-title {
        font-size: 1.14rem;
    }
}
