/* ===== PRODUCTS PAGE STYLES ===== */

/* ===== PRODUCT HERO ===== */
.product-hero {
    position: relative;
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    padding: 160px 91px 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 520px;
}

.product-hero-content {
    flex: 1;
    z-index: 5;
    opacity: 0;
    transform: translateY(40px);
}

.product-hero-content.animate-in {
    animation: fadeSlideUp 0.8s ease forwards;
}

.product-hero-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2E8B57;
    background: rgba(46, 139, 87, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.product-hero-title {
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 64px;
    line-height: 66px;
    color: #000000;
    margin-bottom: 20px;
}

.product-hero-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    color: #444444;
    max-width: 480px;
    margin-bottom: 32px;
}

.product-hero-image {
    flex: 1;
    max-width: 550px;
    opacity: 0;
    transform: translateX(40px);
}

.product-hero-image.animate-in {
    animation: slideInRight 0.8s ease 0.3s forwards;
}

.product-hero-img {
    width: 100%;
    height: 380px;
    object-fit: contain;
    border-radius: 24px;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.08));
}


/* ===== USE CASES / FEATURES SECTION ===== */
.product-uses {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 80px 60px;
}

.uses-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
}

.uses-header.animate-in {
    animation: fadeSlideUp 0.7s ease forwards;
}

.uses-title {
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 44px;
    line-height: 46px;
    color: #000;
    margin-bottom: 12px;
}

.uses-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: #666;
}

.uses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.use-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.use-card.animate-in {
    animation: fadeSlideUp 0.6s ease forwards;
}

.use-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.use-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(167, 255, 254, 0.2);
    color: #2E8B57;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.use-card:hover .use-icon {
    background: rgba(46, 139, 87, 0.15);
}

.use-title {
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
}

.use-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    color: #666;
}


/* ===== PRODUCT GALLERY ===== */
.product-gallery {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 40px 60px 80px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-header.animate-in {
    animation: fadeSlideUp 0.7s ease forwards;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.gallery-card {
    border-radius: 20px;
    overflow: hidden;
    background: #E9E9E9;
    height: 300px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card.animate-in {
    animation: fadeSlideUp 0.6s ease forwards;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}


/* ===== PRODUCT BENEFITS BAR ===== */
.product-benefits {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 60px 80px;
}

.benefits-bar {
    background: #111111;
    border-radius: 20px;
    padding: 48px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(30px);
}

.benefits-bar.animate-in {
    animation: fadeSlideUp 0.7s ease forwards;
}

.benefit-item {
    text-align: center;
    flex: 1;
}

.benefit-number {
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 42px;
    color: #A7FFFE;
    margin-bottom: 6px;
}

.benefit-label {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #aaaaaa;
}


/* ===== PRODUCT CTA ===== */
.product-cta {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 60px 100px;
    text-align: center;
}

.product-cta-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(30px);
}

.product-cta-box.animate-in {
    animation: fadeSlideUp 0.7s ease forwards;
}

.product-cta-box .cta-title {
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 40px;
    color: #000;
    margin-bottom: 14px;
}

.product-cta-box .cta-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: #666;
    margin-bottom: 28px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}


/* ===== BACK LINK ===== */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2E8B57;
    margin-bottom: 16px;
    transition: gap 0.3s ease;
}

.back-link:hover {
    gap: 12px;
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover svg {
    transform: translateX(-3px);
}


/* ===== PRODUCT VARIANTS SECTION ===== */
.product-variants {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 80px 60px;
}

.variants-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
}

.variants-header.animate-in {
    animation: fadeSlideUp 0.7s ease forwards;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.variant-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.variant-card.animate-in {
    animation: fadeSlideUp 0.6s ease forwards;
}

.variant-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.12);
}

.variant-image {
    width: 100%;
    height: 340px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.variant-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.variant-card:hover .variant-image img {
    transform: scale(1.05);
}

.variant-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
    animation: tagPulse 2.8s ease-in-out infinite;
}

@keyframes tagPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

.variant-tag.standard {
    background: rgba(46, 139, 87, 0.12);
    color: #2E8B57;
    animation: tagPulse 2.8s ease-in-out infinite, glowGreen 2.8s ease-in-out infinite;
}

@keyframes glowGreen {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 81, 35, 0);
    }

    50% {
        box-shadow: 0 0 12px 3px rgba(0, 97, 42, 0.25);
    }
}

.variant-tag.tech {
    background: rgba(70, 130, 180, 0.12);
    color: #4682B4;
    animation: tagPulse 2.8s ease-in-out infinite, glowBlue 2.8s ease-in-out infinite;
}

@keyframes glowBlue {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 72, 130, 0);
    }

    50% {
        box-shadow: 0 0 12px 3px rgba(0, 62, 112, 0.3);
    }
}



.variant-info {
    padding: 28px 30px 34px;
}

.variant-name {
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 30px;
    color: #000;
    margin-bottom: 10px;
}

.variant-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 24px;
    color: #666;
    margin-bottom: 20px;
}

.variant-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.variant-features li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.variant-features li svg {
    width: 18px;
    height: 18px;
    color: #2E8B57;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .variants-grid {
        grid-template-columns: 1fr;
    }

    .product-variants {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 600px) {
    .variant-image {
        height: 260px;
    }
}

/* ===== ANIMATIONS (reuse from main) ===== */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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


/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .product-hero {
        padding: 140px 50px 60px;
    }

    .product-hero-title {
        font-size: 50px;
        line-height: 52px;
    }

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

@media (max-width: 900px) {
    .product-hero {
        flex-direction: column;
        padding: 130px 30px 50px;
        text-align: center;
        gap: 30px;
    }

    .product-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .product-hero-image {
        max-width: 100%;
    }

    .product-hero-img {
        height: 280px;
    }

    .product-uses,
    .product-gallery,
    .product-benefits,
    .product-cta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .benefits-bar {
        flex-wrap: wrap;
        gap: 30px;
        padding: 36px 24px;
    }

    .benefit-item {
        flex: 1 1 40%;
    }

    .uses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .product-hero {
        padding: 120px 20px 40px;
    }

    .product-hero-title {
        font-size: 38px;
        line-height: 42px;
    }

    .product-hero-desc {
        font-size: 17px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex: 1 1 100%;
    }
}