/* Easy Peel Technology Page Specific Styles */

/* Page-specific overrides and unique styles */
.product-header {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2c3e50 100%);
}

/* Easy Peel specific color accents */
.feature-icon {
    color: #e74c3c; /* Red accent for Easy Peel */
}

.feature-title {
    color: #e74c3c; /* Red accent for Easy Peel */
}

/* Easy Peel Demo Section */
.demo-section {
    padding: 8rem 2rem;
    background: var(--dark-navy);
}

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

.demo-video-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--gold);
}

.demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.demo-text {
    font-size: var(--font-size-body-lg);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.demo-steps {
    list-style-type: none;
    padding: 0;
    counter-reset: step-counter;
}

.demo-step {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    counter-increment: step-counter;
}

.demo-step::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: var(--dark-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .demo-container {
        grid-template-columns: 1fr;
    }

    .demo-video-container {
        height: 300px;
    }
}
