/* Redesigned Product Page Styles */

:root {
    --product-accent: #7B61FF;
    --product-primary: #2EC4B6;
    --product-bg-light: #F8FAFC;
    --product-text-muted: #64748B;
}

.product-page {
    overflow-x: hidden;
}

/* Modern Hero with Floating Elements */
.product-hero {
    padding: 180px 0 120px;
    background: #ffffff;
    position: relative;
}

.product-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--product-bg-light);
    z-index: 0;
    border-bottom-left-radius: 100px;
}

.product-hero .container {
    position: relative;
    z-index: 1;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(46, 196, 182, 0.1);
    color: var(--product-primary);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.product-hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    animation: fadeInLeft 0.8s ease-out;
}

.product-hero .lead {
    font-size: 1.4rem;
    color: var(--product-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInLeft 1s ease-out;
}

.hero-image-container {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.main-product-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.hero-image-container:hover .main-product-img {
    transform: scale(1.02) translateY(-10px);
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.floating-badge .count {
    font-size: 2rem;
    font-weight: 800;
    color: var(--product-primary);
    font-family: 'Outfit', sans-serif;
}

.floating-badge .label {
    font-size: 0.85rem;
    color: var(--product-text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

/* Elegant Quote Section */
.statement-section {
    padding: 140px 0;
    background: var(--white);
    text-align: center;
}

.statement-text {
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--text) 0%, var(--product-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

/* Featured Split Section */
.feature-split {
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.feature-split-img {
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 0 40px 40px 0;
}

.feature-split-content {
    padding: 0 10% 0 15%;
}

.feature-split-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.feature-split-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--product-text-muted);
    margin-bottom: 1.5rem;
}

/* Modern Grid with Hover Reveals */
.feature-grid-section {
    padding: 140px 0;
    background: var(--product-bg-light);
}

.section-tag {
    text-align: center;
    color: var(--product-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.grid-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 5rem;
}

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

.grid-item {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.02);
}

.grid-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: var(--product-primary);
}

.grid-item .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(46, 196, 182, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--product-primary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.grid-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.grid-item p {
    color: var(--product-text-muted);
    line-height: 1.7;
}

/* Full Width Experience Section */
.immersive-experience {
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    width: 100%;
}

.immersive-experience::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.immersive-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-left: 10%;
}

.immersive-content h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.immersive-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Animations */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Responsive */
@media (max-width: 1200px) {
    .product-hero h1 { font-size: 3.5rem; }
    .modern-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .product-hero-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .hero-tag, .product-hero .lead { margin-left: auto; margin-right: auto; }
    .product-hero-bg { width: 100%; height: 50%; top: 50%; border-bottom-left-radius: 0; border-top-left-radius: 100px; }
    .feature-split { grid-template-columns: 1fr; }
    .feature-split-img { height: 400px; border-radius: 40px; margin: 0 1.8rem; }
    .feature-split-content { padding: 4rem 1.8rem; text-align: center; }
    .modern-grid { grid-template-columns: 1fr; }
    .statement-text { font-size: 2rem; }
    .immersive-content { padding: 0 1.8rem; text-align: center; }
    .immersive-content h2 { font-size: 2.5rem; }
}
