/*=========================================================
    PRODUCT DETAILS PAGE
    PART 1
=========================================================*/


/*=========================================================
    ROOT VARIABLES
=========================================================*/

:root{

    --primary:#00d4ff;

    --primary-dark:#0099cc;

    --secondary:#00ff99;

    --dark:#050816;

    --dark-light:#0f172a;

    --card:#111827;

    --glass:rgba(255,255,255,.05);

    --glass-hover:rgba(255,255,255,.08);

    --border:rgba(255,255,255,.08);

    --text:#ffffff;

    --text-light:rgba(255,255,255,.75);

    --radius:22px;

    --transition:.35s ease;

    --shadow-lg:0 20px 60px rgba(0,0,0,.35);

    --shadow-primary:0 0 40px rgba(0,212,255,.25);

}
/*=========================================================
    VARIABLES & SYSTEM SETTINGS
=========================================================*/
:root {
    --primary: #00d4ff;
    --secondary: #00ff99;
    --card-bg: rgba(255, 255, 255, .04);
    --card-border: 1px solid rgba(255, 255, 255, .08);
    --blur-strength: 30px;
}

.product-detail-hero ::selection {
    background: var(--primary);
    color: #000;
}

/*=========================================================
    PRODUCT HERO CONTAINER
=========================================================*/
.product-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    background: linear-gradient(
        135deg,
        #050816 0%,
        #071426 50%,
        #0f172a 100%
    );
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.product-detail-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/*=========================================================
    AMBIENT BACKGROUND OVERLAYS
=========================================================*/
.hero-overlay {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-overlay::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    top: -300px;
    right: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, .14), transparent 70%);
    filter: blur(100px);
}

.hero-overlay::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: -200px;
    bottom: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 153, .08), transparent 70%);
    filter: blur(100px);
}

/*=========================================================
    SHARED DETACHED SIDE CARDS
=========================================================*/
.product-side-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--card-bg);
    border: var(--card-border);
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength));
    box-shadow: 0 25px 60px rgba(0, 0, 0, .40);
    transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), border-color .4s ease, box-shadow .4s ease;
    animation: fadeUp .8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    display: flex;
    flex-direction: column;
}

.product-side-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, .20);
    box-shadow: 0 30px 65px rgba(0, 212, 255, .10);
}

/*=========================================================
    IMAGE SIDE CARD (LEFT)
=========================================================*/
.image-card-wrapper {
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
}

.image-inner-holder {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.main-product-image {
    width: 100%;
    max-width: 310px;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
    animation: imageFloat 6s ease-in-out infinite;
}

.image-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, .18), transparent 70%);
    filter: blur(50px);
    z-index: 1;
}

/*=========================================================
    FEATURED RIBBON
=========================================================*/
.featured-ribbon {
    position: absolute;
    top: 25px;
    left: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #040814;
    font-size: .85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 212, 255, .20);
}

/*=========================================================
    INFORMATION SIDE CARD (RIGHT)
=========================================================*/
.info-card-wrapper {
    padding: 55px 50px;
    text-align: left;
    justify-content: center;
}

/* CATEGORY BADGE */
.category-badge-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(0, 212, 255, .08);
    border: 1px solid rgba(0, 212, 255, .18);
    color: var(--primary);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

/* TITLE & DESCRIPTION */
.product-title {
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}

.product-short-description {
    color: rgba(255, 255, 255, .70);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 30px;
}

/*=========================================================
    PRODUCT SPECIFICATION HIGHLIGHTS
=========================================================*/
.product-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
    width: 100%;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .02);
    border: var(--card-border);
    border-radius: 16px;
    transition: transform .3s ease, border-color .3s ease, background-color .3s ease;
}

.highlight-box:hover {
    transform: translateX(4px);
    border-color: rgba(0, 212, 255, .20);
    background: rgba(255, 255, 255, .04);
}

.highlight-icon {
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(0, 212, 255, .10);
    color: var(--primary);
}

.highlight-icon i {
    font-size: 16px;
}

.highlight-content h6 {
    margin: 0 0 2px 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.highlight-box:hover h6 {
    color: var(--primary);
}

.highlight-content span {
    color: rgba(255, 255, 255, .50);
    font-size: 13px;
    display: block;
}

/*=========================================================
    ACTION BUTTON CTA GROUP
=========================================================*/
.action-buttons {
    display: flex;
    gap: 16px;
    flex-direction: row; /* Desktop horizontal display matches template rules */
    width: 100%;
}

.action-buttons .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 170px;
    height: 52px;
    padding: 0 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .3s ease, box-shadow .3s ease;
}

/* PRIMARY QUOTE BUTTON */
.action-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: #040814;
    box-shadow: 0 8px 20px rgba(0, 212, 255, .12);
}

.action-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 212, 255, .22);
}

/* BACK NAVIGATION BUTTON */
.action-buttons .btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, .12);
}

.action-buttons .btn-outline-light:hover {
    background: #ffffff;
    color: #050816;
    transform: translateY(-2px);
    border-color: #ffffff;
}

/*=========================================================
    KEYFRAME ANIMATIONS
=========================================================*/
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/*=========================================================
    RESPONSIVE VIEWPORT MEDIA QUERIES
=========================================================*/
@media (max-width: 991px) {
    .product-detail-hero { padding: 60px 0; }
    .image-card-wrapper { padding: 50px 30px; }
    .main-product-image { max-width: 250px; }
    
    .info-card-wrapper { padding: 40px 35px; text-align: center; }
    .category-badge-container { justify-content: center; }
    .highlight-box { text-align: left; }
    
    /* Safely drop down to stacked buttons on medium views */
    .action-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .action-buttons .btn { flex: unset; width: 100%; max-width: 360px; }
}

@media (max-width: 576px) {
    .image-card-wrapper { padding: 50px 20px; }
    .main-product-image { max-width: 210px; }
    
    .info-card-wrapper { padding: 35px 20px; }
    .product-title { font-size: 1.5rem; }
    .product-short-description { font-size: 0.92rem; }
    
    /* Bullet features convert to centered columns on small screen spaces */
    .highlight-box { flex-direction: column; text-align: center; padding: 18px; }
    .highlight-box:hover { transform: translateY(-2px); }
    
    .product-side-card { border-radius: 22px; }
    .action-buttons .btn { height: 48px; font-size: 14px; }
}

/*=========================================================
    PERFORMANCE DECORATIONS
=========================================================*/
.product-side-card, .main-product-image, .highlight-box, .action-buttons .btn {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}
/*=========================================================
    PRODUCT OVERVIEW
=========================================================*/

.product-overview{

    padding:30px 0;

    position:relative;

}

.product-overview::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top right,
    rgba(0,212,255,.06),
    transparent 45%);

    pointer-events:none;

}


/*=========================================================
    OVERVIEW CARD
=========================================================*/

.overview-content{

    background:var(--glass);

    border:1px solid var(--border);

    backdrop-filter:blur(18px);

    border-radius:26px;

    padding:55px;

    position:relative;

    overflow:hidden;

    box-shadow:var(--shadow-lg);

}

.overview-content::before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    top:-140px;

    right:-140px;

    border-radius:50%;

    background:

    radial-gradient(circle,
    rgba(0,212,255,.12),
    transparent 70%);

}

.overview-content>*{

    position:relative;

    z-index:2;

}

.overview-content h2{

    color:#ffffff;

    font-size:2.5rem;

    font-weight:800;

    margin-bottom:24px;

}

.overview-content p{

    color:var(--text-light);

    line-height:2;

    font-size:1.05rem;

    margin-bottom:18px;

}


/*=========================================================
    SECTION HEADER
=========================================================*/

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 26px;

    border-radius:40px;

    background:rgba(0,212,255,.08);

    border:1px solid rgba(0,212,255,.18);

    color:var(--primary);

    font-size:.85rem;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.section-header h2{

    color:#ffffff;

    font-size:clamp(2rem,4vw,3rem);

    font-weight:800;

    margin-bottom:18px;

}

.section-header p{

    max-width:760px;

    margin:auto;

    color:var(--text-light);

    line-height:1.9;

    font-size:1.02rem;

}
/*=========================================================
    PART 3
    SPECIFICATIONS | FEATURES | GALLERY
=========================================================*/


/*=========================================================
    SPECIFICATIONS SECTION
=========================================================*/

.specifications-section{

    padding:120px 0;

}

.specification-card{

    background:var(--glass);

    backdrop-filter:blur(20px);

    border:1px solid var(--border);

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow-lg);

}


/*=========================================================
    SPECIFICATION TABLE
=========================================================*/

.specification-table{

    margin:0;

    width:100%;

    border-collapse:collapse;

}

.specification-table tbody tr{

    transition:var(--transition);

}

.specification-table tbody tr:nth-child(even){

    background:rgba(255,255,255,.02);

}

.specification-table tbody tr:hover{

    background:rgba(0,212,255,.08);

}

.specification-table th{

    width:35%;

    padding:22px 26px;

    background:#182235;

    color:var(--primary);

    border:1px solid rgba(255,255,255,.05);

    font-size:1rem;

    font-weight:700;

}

.specification-table td{

    padding:22px 26px;

    color:var(--text-light);

    border:1px solid rgba(255,255,255,.05);

    line-height:1.8;

}

.specification-table th i{

    margin-right:8px;

}


/*=========================================================
    PRODUCT FEATURES
=========================================================*/

.product-features-section{

    padding:40px 0;

}

.feature-box{

    position:relative;

    height:100%;

    padding:40px 28px;

    background:var(--glass);

    backdrop-filter:blur(18px);

    border:1px solid var(--border);

    border-radius:22px;

    text-align:center;

    overflow:hidden;

    transition:var(--transition);

}

.feature-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(0,212,255,.08),
        transparent 70%
    );

    opacity:0;

    transition:var(--transition);

}

.feature-box:hover{

    transform:translateY(-10px);

    border-color:rgba(0,212,255,.20);

    box-shadow:0 20px 40px rgba(0,212,255,.15);

}

.feature-box:hover::before{

    opacity:1;

}

.feature-box>*{

    position:relative;

    z-index:2;

}


/*=========================================================
    FEATURE ICON
=========================================================*/

.feature-icon{

    width:90px;

    height:90px;

    margin:auto auto 24px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(0,212,255,.10);

    transition:var(--transition);

}

.feature-box:hover .feature-icon{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    transform:rotate(10deg) scale(1.08);

}

.feature-icon i{

    font-size:2.2rem;

    color:var(--primary);

    transition:var(--transition);

}

.feature-box:hover .feature-icon i{

    color:#000;

}

.feature-box h5{

    color:#ffffff;

    font-size:1.3rem;

    font-weight:700;

    margin-bottom:16px;

}

.feature-box p{

    color:var(--text-light);

    line-height:1.8;

    margin:0;

}


/*=========================================================
    PRODUCT GALLERY
=========================================================*/

.gallery-section{

    padding:120px 0;

}

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    background:var(--glass);

    border:1px solid var(--border);

    backdrop-filter:blur(20px);

    box-shadow:var(--shadow-lg);

    transition:var(--transition);

}

.gallery-card:hover{

    transform:translateY(-8px);

}

.gallery-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.25),

        transparent 45%

    );

    opacity:0;

    transition:var(--transition);

}

.gallery-card:hover::after{

    opacity:1;

}


/*=========================================================
    GALLERY IMAGE
=========================================================*/

.gallery-image{

    width:100%;

    height:520px;

    object-fit:contain;

    background:#101827;

    transition:.45s;

}

.gallery-card:hover .gallery-image{

    transform:scale(1.04);

}


/*=========================================================
    IMAGE LOADER EFFECT
=========================================================*/

.gallery-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle,

    rgba(0,212,255,.08),

    transparent 70%);

    opacity:0;

    transition:.4s;

}

.gallery-card:hover::before{

    opacity:1;

}


/*=========================================================
    COMMON CARD ANIMATION
=========================================================*/

.feature-box,

.gallery-card,

.specification-card{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*=========================================================
    PART 4
    BENEFITS & RELATED PRODUCTS
=========================================================*/


/*=========================================================
    BENEFITS SECTION
=========================================================*/

.benefits-section{

    padding:40px 0;

    position:relative;

}

.benefits-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at left,
    rgba(0,212,255,.05),
    transparent 45%);

    pointer-events:none;

}


/*=========================================================
    BENEFIT CARD
=========================================================*/

.benefit-card{

    position:relative;

    height:100%;

    padding:45px 30px;

    text-align:center;

    background:var(--glass);

    backdrop-filter:blur(20px);

    border:1px solid var(--border);

    border-radius:24px;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:var(--shadow-lg);

}

.benefit-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        135deg,

        rgba(0,212,255,.08),

        transparent 70%

    );

    opacity:0;

    transition:.35s;

}

.benefit-card:hover{

    transform:translateY(-10px);

    border-color:rgba(0,212,255,.20);

    box-shadow:0 25px 45px rgba(0,212,255,.15);

}

.benefit-card:hover::before{

    opacity:1;

}

.benefit-card>*{

    position:relative;

    z-index:2;

}


/*=========================================================
    BENEFIT ICON
=========================================================*/

.benefit-icon{

    width:95px;

    height:95px;

    margin:auto auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(0,212,255,.10);

    transition:var(--transition);

}

.benefit-card:hover .benefit-icon{

    background:

    linear-gradient(

        135deg,

        var(--primary),

        var(--secondary)

    );

    transform:rotate(10deg) scale(1.08);

}

.benefit-icon i{

    font-size:2.3rem;

    color:var(--primary);

    transition:.35s;

}

.benefit-card:hover .benefit-icon i{

    color:#000;

}

.benefit-card h4{

    color:#fff;

    font-size:1.35rem;

    font-weight:700;

    margin-bottom:18px;

}

.benefit-card p{

    color:var(--text-light);

    line-height:1.9;

    margin:0;

}


/*=========================================================
    RELATED PRODUCTS
=========================================================*/

.related-products-section{

    padding:120px 0;

}


/*=========================================================
    RELATED PRODUCT CARD
=========================================================*/

.related-card{

    height:100%;

    overflow:hidden;

    border-radius:24px;

    background:var(--glass);

    backdrop-filter:blur(18px);

    border:1px solid var(--border);

    transition:var(--transition);

    box-shadow:var(--shadow-lg);

}

.related-card:hover{

    transform:translateY(-10px);

    border-color:rgba(0,212,255,.20);

}


/*=========================================================
    RELATED IMAGE
=========================================================*/

.related-product-image{

    position:relative;

    overflow:hidden;

    height:250px;

    background:#0f172a;

}

.related-product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.related-card:hover img{

    transform:scale(1.08);

}


/*=========================================================
    RELATED IMAGE OVERLAY
=========================================================*/

.related-product-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        to top,

        rgba(0,0,0,.30),

        transparent 50%

    );

    opacity:0;

    transition:.35s;

}

.related-card:hover .related-product-image::after{

    opacity:1;

}


/*=========================================================
    RELATED CONTENT
=========================================================*/

.related-product-content{

    padding:28px;

}

.related-product-category{

    display:inline-block;

    margin-bottom:16px;

    padding:8px 16px;

    border-radius:40px;

    background:rgba(0,212,255,.10);

    color:var(--primary);

    font-size:.85rem;

    font-weight:600;

}

.related-product-content h4{

    color:#fff;

    font-size:1.4rem;

    font-weight:700;

    margin-bottom:15px;

}

.related-product-content p{

    color:var(--text-light);

    line-height:1.8;

    margin-bottom:22px;

}

.related-product-content .btn{

    border-radius:12px;

    padding:12px 26px;

    font-weight:600;

}


/*=========================================================
    CARD ANIMATION
=========================================================*/

.related-card,

.benefit-card{

    animation:fadeUp .8s ease both;

}

.related-card:nth-child(2){

    animation-delay:.15s;

}

.related-card:nth-child(3){

    animation-delay:.30s;

}

.benefit-card:nth-child(2){

    animation-delay:.10s;

}

.benefit-card:nth-child(3){

    animation-delay:.20s;

}

.benefit-card:nth-child(4){

    animation-delay:.30s;

}


/*=========================================================
    HOVER SHADOW
=========================================================*/

.related-card:hover,

.benefit-card:hover{

    box-shadow:

    0 25px 60px rgba(0,0,0,.35),

    0 0 35px rgba(0,212,255,.18);

}
/*=========================================================
    PART 5
    CTA | RESPONSIVE | UTILITIES
=========================================================*/


/*=========================================================
    CTA SECTION
=========================================================*/

.product-cta{

    padding:40px 0;

}

.cta-card{

    position:relative;

    overflow:hidden;

    padding:70px 50px;

    border-radius:30px;

    text-align:center;

    background:linear-gradient(
        135deg,
        rgba(15,23,42,.95),
        rgba(5,8,22,.95)
    );

    border:1px solid var(--border);

    box-shadow:var(--shadow-lg);

}

.cta-card::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    left:-150px;

    top:-150px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(0,212,255,.15),

    transparent 70%);

    filter:blur(70px);

}

.cta-card::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    right:-120px;

    bottom:-120px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(0,255,153,.12),

    transparent 70%);

    filter:blur(70px);

}

.cta-card>*{

    position:relative;

    z-index:2;

}

.cta-card h2{

    color:#fff;

    font-size:clamp(2rem,4vw,3rem);

    font-weight:800;

    margin-bottom:20px;

}

.cta-card p{

    max-width:720px;

    margin:0 auto 35px;

    color:var(--text-light);

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.cta-buttons .btn{

    min-width:220px;

    padding:15px 30px;

    border-radius:14px;

    font-weight:700;

    transition:var(--transition);

}

.cta-buttons .btn:hover{

    transform:translateY(-5px);

}


/*=========================================================
    RESPONSIVE DESIGN
=========================================================*/


/*=========================================================
    LARGE DEVICES (1200px)
=========================================================*/

@media (max-width:1200px){

    .product-detail-hero{

        padding:130px 0 80px;

    }

    .product-detail-card{

        border-radius:28px;

    }

    .product-info{

        padding:45px;

    }

    .product-title{

        font-size:2.8rem;

        line-height:1.2;

    }

    .main-product-image{

        max-width:380px;

    }

}


/*=========================================================
    TABLET (992px)
=========================================================*/

@media (max-width:992px){

    section{

        padding:80px 0;

    }

    .product-detail-hero{

        padding:110px 0 70px;

    }

    .product-detail-card{

        border-radius:24px;

    }

    .product-image-wrapper{

        padding:40px 30px 20px;

        text-align:center;

    }

    .main-product-image{

        max-width:300px;

        margin:auto;

    }

    .image-glow{

        width:220px;

        height:220px;

    }

    .product-info{

        padding:35px;

        text-align:center;

        align-items:center;

    }

    .product-category{

        margin-bottom:18px;

    }

    .product-title{

        font-size:2.2rem;

        max-width:650px;

    }

    .product-short-description{

        max-width:620px;

        margin:0 auto 30px;

    }

    .product-highlights{

        width:100%;

        max-width:520px;

        margin:0 auto 30px;

    }

    .action-buttons{

        width:100%;

        max-width:420px;

        margin:0 auto;

        justify-content:center;

    }

}


/*=========================================================
    MOBILE (768px)
=========================================================*/

@media (max-width:768px){

    section{

        padding:60px 0 !important;

    }

    .product-detail-hero{

        padding:85px 0 40px;

    }

    .product-detail-card{

        border-radius:20px;

    }

    .product-image-wrapper{

        padding:25px;

    }

    .main-product-image{

        width:100%;

        max-width:220px;

        margin:auto;

    }

    .image-glow{

        width:170px;

        height:170px;

        filter:blur(40px);

    }

    .featured-ribbon{

        top:12px;

        left:12px;

        font-size:.75rem;

        padding:8px 15px;

    }

    .product-info{

        padding:25px;

        text-align:center;

        display:flex;

        flex-direction:column;

        align-items:center;

    }

    .product-category{

        margin-bottom:18px;

    }

    .product-title{

        font-size:1.7rem;

        line-height:1.35;

        margin-bottom:18px;

    }

    .product-short-description{

        max-width:330px;

        font-size:.95rem;

        margin-bottom:28px;

    }

    .product-highlights{

        width:100%;

        max-width:340px;

        margin:0 auto 30px;

        gap:15px;

    }

    .highlight-box{

        padding:16px;

    }

    .highlight-icon{

        width:52px;

        height:52px;

    }

    .highlight-icon i{

        font-size:1.1rem;

    }

    .highlight-content h6{

        font-size:1rem;

    }

    .highlight-content span{

        font-size:.85rem;

    }

    .action-buttons{

        width:100%;

        max-width:340px;

        display:flex;

        flex-direction:column;

        gap:15px;

    }

    .action-buttons .btn{

        width:100%;

    }

    .overview-content{

        padding:22px;

    }

    .feature-box,

    .benefit-card{

        padding:22px 18px;

    }

    .gallery-image{

        height:220px;

    }

    .related-product-image{

        height:180px;

    }

    .cta-card{

        padding:28px 20px;

    }

}


/*=========================================================
    SMALL MOBILE (576px)
=========================================================*/

@media (max-width:576px){

    .product-detail-hero{

        padding:75px 0 35px;

    }

    .product-detail-card{

        border-radius:18px;

    }

    .product-image-wrapper{

        padding:20px;

    }

    .main-product-image{

        max-width:180px;

    }

    .image-glow{

        width:140px;

        height:140px;

    }

    .product-info{

        padding:20px;

    }

    .product-title{

        font-size:1.45rem;

    }

    .product-short-description{

        font-size:.9rem;

    }

    .highlight-box{

        padding:14px;

    }

    .highlight-icon{

        width:46px;

        height:46px;

    }

    .highlight-icon i{

        font-size:1rem;

    }

}


/*=========================================================
    EXTRA SMALL (400px)
=========================================================*/

@media (max-width:400px){

    .product-title{

        font-size:1.25rem;

    }

    .product-short-description{

        font-size:.85rem;

    }

    .highlight-content h6{

        font-size:.9rem;

    }

    .highlight-content span{

        font-size:.78rem;

    }

    .action-buttons .btn{

        font-size:.85rem;

    }

}
    

    /*=========================================
        PRODUCT INFO
    =========================================*/

    .product-category{

        font-size:.75rem;

        padding:8px 16px;

        margin-bottom:15px;

    }

    .product-title{

        max-width:300px;

        font-size:1.45rem;

        line-height:1.35;

        margin-bottom:15px;

    }

    .product-short-description{

        max-width:300px;

        font-size:.9rem;

        line-height:1.75;

        margin-bottom:25px;

    }

    /*=========================================
        HIGHLIGHT CARDS
    =========================================*/

    .product-highlights{

        max-width:320px;

        gap:12px;

        margin-bottom:25px;

    }

    

    /*=========================================
        BUTTONS
    =========================================*/

    .action-buttons{

        max-width:320px;

        gap:12px;

    }

    .action-buttons .btn{

        min-height:48px;

        padding:12px 18px;

        font-size:.9rem;

    }

    /*=========================================
        OVERVIEW
    =========================================*/

    .overview-content{

        padding:20px;

    }

    /*=========================================
        SPECIFICATION TABLE
    =========================================*/

    .specification-table th,

    .specification-table td{

        padding:12px;

        font-size:.85rem;

    }

    /*=========================================
        FEATURES
    =========================================*/

    .feature-box,

    .benefit-card{

        padding:22px 16px;

    }

    .feature-icon,

    .benefit-icon{

        width:65px;

        height:65px;

    }

    .feature-icon i,

    .benefit-icon i{

        font-size:1.6rem;

    }

    /*=========================================
        GALLERY
    =========================================*/

    .gallery-image{

        height:180px;

    }

    /*=========================================
        RELATED PRODUCTS
    =========================================*/

    .related-product-image{

        height:170px;

    }

    .related-product-content{

        padding:18px;

    }

    /*=========================================
        CTA
    =========================================*/

    .cta-card{

        padding:25px 18px;

    }

    .cta-buttons{

        flex-direction:column;

        gap:12px;

    }

    .cta-buttons .btn{

        width:100%;

    }

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

.product-info{
    position:relative;
    z-index:10;
}

.product-image-wrapper{
    position:relative;
    z-index:10;
}

.hero-overlay{
    z-index:1;
}
.product-detail-card,
.product-detail-card *{
    opacity:1 !important;
    filter:none !important;
    mix-blend-mode:normal !important;
}
/*=========================================================
    EXTRA SMALL DEVICES (400px)
=========================================================*/

@media (max-width:400px){

    /*=========================================
        HERO
    =========================================*/

    .product-detail-hero{

        padding:70px 0 30px;

    }

    .product-detail-hero .container{

        padding-left:16px;

        padding-right:16px;

    }

    /*=========================================
        PRODUCT IMAGE
    =========================================*/

    .main-product-image{

        max-width:165px;

        border-radius:16px;

    }

    .image-glow{

        width:120px;

        height:120px;

        filter:blur(30px);

    }

    .featured-ribbon{

        top:8px;

        left:8px;

        padding:6px 12px;

        font-size:.65rem;

        border-radius:30px;

    }

    /*=========================================
        PRODUCT INFO
    =========================================*/

    .product-category{

        padding:7px 14px;

        font-size:.72rem;

        margin-bottom:14px;

    }

    .product-title{

        max-width:260px;

        font-size:1.25rem;

        line-height:1.35;

        margin-bottom:14px;

    }

    .product-short-description{

        max-width:260px;

        font-size:.85rem;

        line-height:1.7;

        margin-bottom:22px;

    }

    
    /*=========================================
        BUTTONS
    =========================================*/

    .action-buttons{

        max-width:280px;

        gap:10px;

    }

    .action-buttons .btn{

        min-height:46px;

        padding:12px 16px;

        font-size:.85rem;

    }

    /*=========================================
        OVERVIEW
    =========================================*/

    .overview-content{

        padding:18px;

    }

    /*=========================================
        SPECIFICATION TABLE
    =========================================*/

    .specification-table th,

    .specification-table td{

        padding:10px;

        font-size:.8rem;

    }

    /*=========================================
        FEATURES
    =========================================*/

    .feature-box,

    .benefit-card{

        padding:20px 15px;

    }

    .feature-icon,

    .benefit-icon{

        width:58px;

        height:58px;

    }

    .feature-icon i,

    .benefit-icon i{

        font-size:1.4rem;

    }

    /*=========================================
        GALLERY
    =========================================*/

    .gallery-image{

        height:160px;

    }

    /*=========================================
        RELATED PRODUCTS
    =========================================*/

    .related-product-image{

        height:150px;

    }

    .related-product-content{

        padding:16px;

    }

    /*=========================================
        CTA
    =========================================*/

    .cta-card{

        padding:22px 16px;

    }

}
/*=========================================================
    GOOGLE TRANSLATE SUPPORT
=========================================================*/

.goog-te-banner-frame.skiptranslate{

    display:none !important;

}

body{

    top:0 !important;

}

.skiptranslate iframe{

    display:none !important;

}


/*=========================================================
    SMOOTH SCROLL
=========================================================*/

html{

    scroll-behavior:smooth;

}


/*=========================================================
    SCROLLBAR
=========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:var(--dark);

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}


/*=========================================================
    TEXT SELECTION
=========================================================*/

::selection{

    background:var(--primary);

    color:#000;

}


/*=========================================================
    IMAGE
=========================================================*/

img{

    display:block;

    max-width:100%;

}


/*=========================================================
    BUTTONS
=========================================================*/

.btn{

    transition:var(--transition);

}

.btn:focus{

    box-shadow:none;

}


/*=========================================================
    UTILITIES
=========================================================*/

.text-gradient{

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--secondary)

    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    background-clip:text;

}

.glass-card{

    background:var(--glass);

    border:1px solid var(--border);

    backdrop-filter:blur(18px);

    border-radius:var(--radius);

}

.shadow-hover{

    transition:var(--transition);

}

.shadow-hover:hover{

    box-shadow:0 20px 45px rgba(0,212,255,.18);

}


/*=========================================================
    END OF PRODUCT DETAILS CSS
=========================================================*/