/* ============================================
   PREMIUM PRODUCTS PAGE CONTENT - SCOPED STYLES
   ============================================ */

/* ===================================
   PROCESS SECTION
   =================================== */
.cnc-process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a2942 50%, #0f1f38 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cnc-process-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cnc-process-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.cnc-process-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cnc-process-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.cnc-process-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cnc-process-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.cnc-process-image-wrapper:hover .cnc-process-image {
    transform: scale(1.05);
}

.cnc-process-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.cnc-process-play-btn:hover {
    background: #3b82f6;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

/* Process Steps Grid */
.cnc-process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cnc-process-step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cnc-process-step-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.cnc-process-step-number {
    font-size: 60px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.cnc-process-step-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cnc-process-step-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

/* ===================================
   PRODUCT RANGE SECTION
   =================================== */
.cnc-range-section {
    padding: 100px 0;
    background: #0f1f38;
    position: relative;
}

.cnc-range-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.cnc-range-heading {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.cnc-range-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* Filter Buttons */
.cnc-filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.cnc-filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cnc-filter-btn:hover,
.cnc-filter-btn.active {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

/* Product Grid */
.cnc-range-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cnc-range-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cnc-range-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.cnc-range-card-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.cnc-range-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cnc-range-card:hover .cnc-range-card-image {
    transform: scale(1.1);
}

.cnc-range-card-body {
    padding: 24px;
    text-align: center;
}

.cnc-range-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.cnc-range-card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.5;
}

.cnc-range-card-btn {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid #3b82f6;
    color: #3b82f6;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cnc-range-card-btn:hover {
    background: #3b82f6;
    color: #ffffff;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .cnc-process-header-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cnc-process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cnc-range-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cnc-process-heading {
        font-size: 36px;
    }

    .cnc-process-steps-grid {
        grid-template-columns: 1fr;
    }

    .cnc-range-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cnc-range-heading {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .cnc-range-grid {
        grid-template-columns: 1fr;
    }
}