.product-showcase-container {
    padding: 180px 20px 80px 20px;
    max-width: 1300px;
    margin: 0 auto;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}


.product-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-bottom: 220px;
}

.product-info {
    flex: 1;
    min-width: 320px;
    animation: slideInLeft 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
}

.product-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.product-info h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin: 0 0 20px 0;
    letter-spacing: -2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(90deg, #ffffff, #666);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-sub {
    font-weight: 300;
    color: #a3a3a3;
    -webkit-text-fill-color: initial;
    display: block;
    margin-top: 5px;
}

.product-info p {
    font-size: 1.15rem;
    color: #a3a3a3;
    line-height: 1.7;
    margin-bottom: 45px;
    max-width: 90%;
}


.product-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 36px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

@keyframes bounceRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

.btn-primary {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-primary i {
    animation: bounceRight 1.5s infinite ease-in-out;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(5px);
    border-color: #fff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.btn-secondary i {
    animation: bounceDown 1.5s infinite ease-in-out;
}


.product-preview {
    flex: 1.2;
    min-width: 320px;
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    animation: slideInRight 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.preview-frame {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.5s ease;
    transform-style: preserve-3d;
}

.preview-frame:hover {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.03) translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: -20px 40px 80px rgba(255, 255, 255, 0.08);
}

.product-main-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.05);
}


.features-section {
    position: relative;
    padding-top: 80px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

.features-section h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 800;
}

.features-layout {
    display: flex;
    gap: 40px;
    background: rgba(10, 10, 10, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    flex-wrap: wrap;
    height: 700px;
}


.features-tabs {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-right: 2px solid rgba(255, 255, 255, 0.05);
    padding-right: 30px;
}

.feature-tab {
    background: transparent;
    border: 2px solid transparent;
    color: #a3a3a3;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Inter', sans-serif;
}

.feature-tab i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-tab:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    transform: translateX(5px);
}

.feature-tab.active {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-tab.active i {
    transform: scale(1.1);
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}


.features-content-container {
    flex: 2;
    min-width: 300px;
    position: relative;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    min-height: 480px;

}

.feature-pane {
    display: none;
    opacity: 0;
    animation: fadeInPane 0.5s ease forwards;
}

.feature-pane.active {
    display: block;
}

.feature-pane h3 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-pane p {
    font-size: 1.15rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.06);

    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper {
    background: rgba(255, 255, 255, 0.05);
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);

}

.feature-icon-wrapper i {
    font-size: 1.3rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.feature-details h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

.feature-details p {
    margin: 0;
    font-size: 0.9rem;
    color: #a3a3a3;
    line-height: 1.5;
}


@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInPane {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.showcases-section {
    position: relative;
    padding-top: 100px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

.showcases-section h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

.showcases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.showcase-video-wrapper {
    background: rgba(10, 10, 10, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.showcase-video-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.1);
}

.showcase-video {
    width: 100%;
    border-radius: 12px;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #050505;
    transition: opacity 0.4s ease;
}

.showcase-video-wrapper:hover .showcase-video {
    opacity: 0.5;
}

.showcase-video-wrapper:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    border-color: #fff;
}


@media (max-width: 800px) {
    .features-layout {
        flex-direction: column;
    }

    .features-tabs {
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.05);
        padding-right: 0;
        padding-bottom: 30px;
    }

    .showcases-grid {
        grid-template-columns: 1fr;
    }
}