/* Index Page Specific Styles */

/* Cinematic Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--deep-blue) 50%, var(--dark-navy) 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 3s ease-in-out 2s forwards;
}

.loading-content {
    text-align: left;
    animation: logoReveal 2s ease-in-out;
}

.loading-logo {
    font-family: var(--font-heading);
    font-size: clamp(2.375rem, 5.7vw, 3.8rem);
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.loading-tagline {
    font-size: clamp(0.95rem, 1.9vw, 1.14rem);
    font-weight: 300;
    color: var(--silver);
    letter-spacing: 3px;
}

/* Hero Section - Cinematic */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 5%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.4) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(12, 20, 38, 0.8) 0%,
        transparent 50%,
        rgba(212, 175, 55, 0.1) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: heroEntrance 2s ease-out 3s both;
    width: 100%;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: clamp(1.1875rem, 2.85vw, 1.425rem);
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 1rem;
    letter-spacing: clamp(2px, 1vw, 4px);
    opacity: 0.9;
    font-family: var(--font-primary);
    text-transform: none;
}

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

.hero-description {
    font-size: var(--font-size-body-lg);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: var(--line-height-body);
    text-align: left;
    color: var(--cream);
}

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

.hero-cta::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;
}

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

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

/* Story Timeline Section */
.story-section {
    padding: 10rem 2rem;
    background: linear-gradient(180deg, var(--dark-navy) 0%, var(--deep-blue) 50%, var(--dark-navy) 100%);
    position: relative;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
}

.story-title {
    font-family: 'Changa One', serif;
    font-size: var(--font-size-section);
    font-weight: 700;
    text-align: left;
    margin-bottom: clamp(4rem, 6vw, 8rem);
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    width: 100%;
    margin-bottom: 8rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content {
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    padding: 4rem;
    border-radius: 0;
    border: none;
    position: relative;
    box-shadow: none;
}

.timeline-content-enhanced {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.timeline-title {
    font-size: clamp(1.425rem, 3.325vw, 2.09rem);
    font-weight: 600;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    color: var(--gold);
    text-align: left;
}

.timeline-description {
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    color: var(--cream);
    opacity: 0.9;
    text-align: left;
    margin-bottom: 2rem;
}

.timeline-marker {
    display: none;
}



/* Product Timeline Styles */
.product-image-container {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: none;
    transition: all 0.5s ease;
    background: transparent;
    position: relative;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Special height for the Easy Peel container to give more space */
.easy-peel-container.product-image-container {
    height: 470px;
}

.product-timeline-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 30px; /* Rounded edges for timeline images */
    transition: all 0.5s ease;
}

.product-timeline-image-rounded {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px; /* Rounded edges for timeline images */
    transition: all 0.5s ease;
}

/* Bio-Degradable image scaled down by 40% */
.bio-degradable-small {
    transform: scale(0.6); /* 40% reduction (100% - 40% = 60% = 0.6) */
    transform-origin: center;
}

/* Subtle hover animation for Bio-Degradable image */
.timeline-content:hover .bio-degradable-small {
    transform: scale(0.63); /* Subtle increase from 0.6 to 0.63 (5% increase) */
}

.product-timeline-video {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 90%;
    height: 90%;
    max-width: 200px;
    max-height: 150px;
    object-fit: contain;
    transition: all 0.5s ease;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: none;
}

.timeline-content:hover .product-image-container {
    border: none;
    box-shadow: none;
    transform: none;
    background: transparent;
}

.timeline-content:hover .product-timeline-image {
    transform: scale(1.05);
}

.product-link {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.product-link:hover {
    color: inherit;
}

.product-specs-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.spec-badge {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark-navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8075rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.spec-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

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

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

.highlight-number {
    font-family: var(--font-heading);
    font-size: 2.375rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 0.95rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Products Showcase - Cinema Grid */
.products-section {
    padding: 10rem 2rem;
    background: var(--dark-navy);
}

.products-container {
    max-width: 1600px;
    margin: 0 auto;
}

.products-title {
    font-family: var(--font-heading);
    font-size: clamp(2.85rem, 5.7vw, 4.75rem);
    font-weight: 700;
    text-align: left;
    margin-bottom: 6rem;
    color: var(--gold);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.product-showcase {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.product-showcase:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

/* White background for transparent images like Yakult */
.product-image[src*="yakult"] {
    background-color: white;
    object-fit: contain;
}

.product-showcase:hover .product-image {
    transform: scale(1.1);
    filter: brightness(0.7);
}

/* Special case for Yakult image on hover */
.product-showcase:hover .product-image[src*="yakult"] {
    background-color: white;
    object-fit: contain;
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(12, 20, 38, 0.9) 0%,
        transparent 50%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: all 0.5s ease;
}

.product-showcase:hover .product-overlay {
    background: linear-gradient(
        to top,
        rgba(12, 20, 38, 0.95) 0%,
        rgba(212, 175, 55, 0.1) 100%
    );
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.product-description {
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    color: var(--cream);
    text-align: left;
}

/* Manufacturing Excellence */
.manufacturing-section {
    padding: 10rem 2rem;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-navy) 100%);
    position: relative;
}

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

.manufacturing-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.375rem, 4.75vw, 3.8rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 3rem;
}

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

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

.stat-item {
    text-align: left;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.85rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--cream);
    margin-top: 0.5rem;
}

.manufacturing-text {
    font-size: var(--font-size-body-lg);
    line-height: var(--line-height-body);
    color: var(--cream);
    text-align: left;
}

/* Manufacturing Slideshow */
.manufacturing-slideshow,
.about-slideshow {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.manufacturing-slideshow:hover,
.about-slideshow:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.nav-dot.active,
.nav-dot:hover {
    background: var(--gold);
    border-color: var(--gold-light);
    transform: scale(1.2);
}

.slideshow-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    color: var(--dark-navy);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.14rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-arrows:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

/* Feature Tags Section */
.feature-tags-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--deep-blue) 100%);
    position: relative;
    overflow: hidden;
}

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

.feature-tags-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.8vw, 2.85rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.feature-tags-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    border-radius: 12px;
    padding: 0.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
    min-height: 120px;
    gap: 0.5rem;
}

.feature-tag:hover {
    transform: translateY(-3px);
}

.feature-tag-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #27ae60;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 13.3px;
    margin-bottom: 0.3rem;
}

.feature-tag-title {
    background: transparent;
    color: var(--white);
    padding: 0.4rem 0.8rem;
    font-weight: 700;
    font-size: 0.8075rem;
    text-align: left;
    min-width: 80px;
}

.feature-tag-description {
    color: var(--white);
    font-size: clamp(0.665rem, 1.425vw, 0.7125rem);
    line-height: 1.2;
    opacity: 0.9;
    text-align: left;
}

/* Contact Section - Elegant (legacy - scoped to avoid overriding global contact grid) */
.index-contact-section {
    padding: 10rem 2rem;
    background: linear-gradient(180deg, var(--dark-navy) 0%, #000 100%);
}

.index-contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.index-contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2.85rem, 5.7vw, 4.75rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 3rem;
}

.index-contact-content {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* COMMENTED OUT - Contact form removed
.contact-form-container {
    flex: 2;
    max-width: 700px;
}

.contact-form {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}
*/

.contact-qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    flex: 1;
    max-width: 300px;
}

.contact-qrcode .qrcode-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.contact-qrcode .qrcode-text h3 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.contact-qrcode .qrcode-text p {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

/* COMMENTED OUT - Contact form removed
.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.form-submit {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark-navy);
    border: none;
    padding: 1.2rem 4rem;
    border-radius: 8px;
    font-size: 1.045rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 1px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}
*/

/* COMMENTED OUT - Contact form removed
/* Contact Form Messages */
.contact-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.contact-success {
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
}

.contact-error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.contact-message i {
    font-size: 1.1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for submit button */
.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}
*/

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Easy Peel Section Specific Styles - 3-element layout */
.easy-peel-container {
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    padding: 0;
}

.easy-peel-images-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 22%;
    margin-right: 3%;
}

.easy-peel-left-image-top,
.easy-peel-left-image-bottom {
    width: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.easy-peel-left-image-top:hover,
.easy-peel-left-image-bottom:hover {
    transform: scale(1.05);
}

.easy-peel-video-large {
    width: 75%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: none;
    transition: all 0.3s ease;
    display: block;
}

.easy-peel-video-large:hover {
    transform: scale(1.02);
}

/* Double Side Color Film - Stack images vertically at 768px and below */
@media (max-width: 768px) {
    /* Target the double side color film container specifically */
    .timeline-item .product-image-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        height: auto;
        align-items: center;
    }
    
    .timeline-item .product-image-container .product-timeline-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        max-height: 280px;
        object-fit: contain;
    }
}

/* Responsive Design for Feature Tags */
@media (max-width: 767px) {
    .feature-tags-section {
        padding: 4rem 1rem;
    }

    .feature-tags-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .feature-tag {
        padding: 0.4rem;
        min-height: 100px;
        gap: 0.3rem;
    }

    .feature-tag-check {
        width: 20px;
        height: 20px;
        font-size: 11.4px;
        margin-bottom: 0.2rem;
    }

    .feature-tag-title {
        font-size: 0.7125rem;
        padding: 0.3rem 0.6rem;
        min-width: 70px;
    }

    .feature-tag-description {
        font-size: clamp(0.6175rem, 1.14vw, 0.665rem);
        line-height: 1.1;
    }
    
    /* Easy Peel mobile layout - stacked */
    .easy-peel-container {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }

    .easy-peel-video {
        width: 95%;
        height: auto;
        max-height: 200px;
        object-fit: contain;
        margin-bottom: 1rem;
    }

    .easy-peel-image {
        position: relative;
        width: 80%;
        height: auto;
        max-width: 200px;
        max-height: 120px;
        margin: 0;
    }

    .timeline-content { 
        padding: 2rem; 
    }
    
    .timeline-content-enhanced { 
        padding: 0; 
    }
    
    .manufacturing-container { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }
    
    .manufacturing-stats { 
        grid-template-columns: 1fr; 
    }
    
    .about-highlights { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.5rem; 
    }
    
    .products-grid { 
        grid-template-columns: 1fr; 
    }
    
    .product-image-container { 
        height: 350px; 
    }
    
    .spec-badge { 
        font-size: 0.7125rem; 
        padding: 0.4rem 0.8rem; 
    }
}

/* Tablet specific adjustments for Easy Peel */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Easy Peel tablet layout - side by side */
    .easy-peel-container {
        flex-direction: row;
        height: 350px;
        padding: 0;
    }

    .easy-peel-images-left {
        width: 30%;
    }

    .easy-peel-video-large {
        width: 70%;
        min-height: 250px;
        max-height: 280px;
        object-fit: contain;
    }
}

/* iPad Air specific adjustments (820px width) */
@media (min-width: 810px) and (max-width: 830px) {
    /* Easy Peel iPad Air layout - side by side with optimal sizing */
    .easy-peel-container {
        flex-direction: row;
        height: 340px;
        padding: 0;
    }

    .easy-peel-images-left {
        width: 32%;
    }

    .easy-peel-video-large {
        width: 68%;
        min-height: 240px;
        max-height: 270px;
        object-fit: contain;
    }
}

/* iPad Mini and smaller tablets specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Easy Peel iPad Mini layout - scaled down side by side */
    .easy-peel-container {
        flex-direction: row;
        height: 320px;
        padding: 0;
    }

    .easy-peel-images-left {
        width: 35%;
    }

    .easy-peel-video-large {
        width: 65%;
        min-height: 220px;
        max-height: 250px;
        object-fit: contain;
    }
}

/* Small mobile adjustments for Easy Peel */
@media (max-width: 480px) {
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
    }
    
    .highlight-number {
        font-size: 1.9rem;
    }
    
    /* Easy Peel small mobile adjustments */
    .easy-peel-container {
        padding: 0;
        flex-direction: column;
    }

    .easy-peel-images-left {
        width: 100%;
        flex-direction: row;
        margin-bottom: 1rem;
    }
    
    .easy-peel-left-image-top,
    .easy-peel-left-image-bottom {
        width: 48%;
    }

    .easy-peel-video-large {
        width: 100%;
        min-height: 200px;
        max-height: none;
        margin-left: 0;
    }
    
    /* Double Side Color Film mobile layout - stack images vertically */
    .product-image-container {
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }
    
    .product-timeline-image {
        width: 100%;
        height: auto;
        max-height: 200px;
        object-fit: contain;
    }
}

/* Large desktop Easy Peel adjustments */
@media (min-width: 1441px) {
    /* Easy Peel desktop layout */
    .easy-peel-images-left {
        width: 20%;
    }
    
    .easy-peel-container.product-image-container {
        height: 520px;
    }
}

/* Feature Tag Icon Styles */
.feature-tag-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}