

/* =========================
   ROOT
========================= */

:root{
    --body-bg:#F8F8F8;
    --title:#222;
    --text:#333;
    --accent:#2e3192;
    --border:#e5e5e5;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Open Sans",Arial,sans-serif;
    background:var(--body-bg);
    color:var(--text);
    font-size:14px;
    line-height:1.65;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    color:var(--text);
    text-decoration:none;
}

.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* =========================
   HERO
========================= */

.hero{
    background:#fff;
    padding:24px 0 30px;
    text-align:center;
    border-bottom:1px solid #eee;
}

.hero h1{
    font-size:28px;
    line-height:1.3;
    color:var(--title);
    margin-bottom:16px;
    font-weight:700;
}

.hero p{
    max-width:780px;
    margin:0 auto 24px;
    font-size:15px;
    color:#555;
}

.hero img{
    margin:24px auto 0;
    max-height:300px;
    object-fit:cover;
}

/* =========================
   BUTTON
========================= */

.btn{
    display:inline-block;
    background:#000;
    color:#fff!important;
    padding:12px 28px;
    border-radius:2px;
    font-weight:600;
    font-size:14px;
    border:1px solid #000;
}

.btn:hover{
    background:#333;
}

.btn-outline{
    background:#fff;
    color:#000!important;
}

/* =========================
   INTRO
========================= */

.intro{
    background:#fff;
    border-bottom:1px solid #eee;
    padding:36px 0;
}

.intro p{
    font-size:15px;
    color:#444;
}

/* =========================
   GENERAL
========================= */

section{
    padding:32px 0;
}

section h2{
    font-size:23px;
    color:var(--title);
    margin-bottom:12px;
    font-weight:700;
}

.lead{
    max-width:820px;
    margin-bottom:28px;
    color:#555;
    font-size:15px;
}

/* =========================
   DRONE MODELS
========================= */

.models{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.model{
    border:1px solid var(--border);
    border-radius:4px;
    padding:20px;
    background:#fff;
}

.model:hover{
    box-shadow:0 4px 16px rgba(0,0,0,.08);
}

.model img{
    width:100%;
    border-radius:4px;
    margin-bottom:14px;
    background:#f1f1f1;
}

.model h3{
    font-size:16px;
    margin-bottom:8px;
    color:var(--title);
}

.model p{
    font-size:13px;
    color:#555;
    margin-bottom:12px;
}

.model .link{
    font-size:13px;
    font-weight:600;
    color:var(--accent);
}

/* =========================
   SPECIFICATION TABLE
========================= */

.eft-specs-section{
    width:100%;
    padding:20px 0 28px !important;
    background:transparent;
    border:0;
}

.eft-specs-section .container{
    width:100%;
}

.eft-specs-title{
    margin:0 0 0px 0 !important;
    padding:0 !important;
    font-size:22px !important;
    line-height:1.3 !important;
    color:#222;
    font-weight:700;
}

.eft-specs-box{
    width:100%;
    max-width:100%;
    margin:0;
    padding:0;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:4px;
    overflow:hidden;
}

.eft-specs-table{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    border-collapse:collapse !important;
    border-spacing:0 !important;
    table-layout:fixed;
}

.eft-specs-table tbody{
    width:100%;
    margin:0;
    padding:0;
    border:0 !important;
}

.eft-specs-table tr{
    width:100%;
    margin:0;
    padding:0;
    border:0 !important;
}

.eft-specs-table td{
    margin:0 !important;
    padding:12px 16px !important;
    height:auto;
    font-size:14px;
    line-height:1.5;
    vertical-align:middle;
    border:0 !important;
    border-bottom:1px solid #e5e5e5 !important;
}

.eft-specs-table td:first-child{
    width:40% !important;
    color:#222;
    font-weight:700;
    border-right:1px solid #e5e5e5 !important;
}

.eft-specs-table td:last-child{
    width:60% !important;
    color:#444;
}

.eft-specs-table tr:last-child td{
    border-bottom:0 !important;
}

/* =========================
   FAQ
========================= */

.eft-faq-section{
    padding-top:18px;
    padding-bottom:4px;
}

.eft-faq{
    width:100%;
}

.eft-faq-item{
    border-bottom:1px solid #e5e5e5;
    padding:16px 0;
}

.eft-faq-item:last-child{
    border-bottom:0;
}

.eft-faq-item h3{
    font-size:16px;
    font-weight:700;
    color:var(--title);
}

.eft-faq-item p{
    margin-top:8px;
    font-size:14px;
    color:#555;
}

/* =========================
   CTA
========================= */

.eft-cta{
    text-align:center;
    padding:32px 20px;
}

.eft-cta h2{
    text-align:center;
}

/* =========================
   VIDEO
========================= */

.eft-video{
    text-align:center;
    margin:0 auto;
}

.eft-video iframe{
    max-width:100%;
}

/* =========================
   PRODUCT SECTION
========================= */

.eft-product-section{
    max-width:1400px;
    margin:28px auto 20px;
    padding:0 15px;
    font-family:Arial,Helvetica,sans-serif;
    position:relative;
}

.eft-product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/* =========================
   PRODUCT CARD
========================= */

.eft-card{
    background:#fff;
    border:1px solid #eee;
    overflow:hidden;
    position:relative;
    display:flex;
    flex-direction:column;
    min-width:0;
    transition:transform .35s,box-shadow .35s;
}

.eft-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.eft-link{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:10;
}

/* =========================
   PRODUCT IMAGE
========================= */

.eft-image{
    height:300px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    flex-shrink:0;
}

.eft-image img{
    width:100%;
    height:100%;
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    transition:transform .35s;
}

.eft-card:hover .eft-image img{
    transform:scale(1.06);
}

/* =========================
   PRODUCT TITLE
========================= */

.eft-title{
    padding:10px 18px 0;
    font-size:15px;
    line-height:21px;
    color:#333;
    height:73px;
    min-height:73px;
    overflow:hidden;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
}

/* =========================
   PRODUCT PRICE
========================= */

.eft-price{
    padding:8px 18px 16px;
    margin-top:auto;
    font-size:24px;
    font-weight:400;
    color:#CC0000;
    line-height:30px;
    min-height:54px;
}

/* =========================
   RELATED
========================= */

.related{
    background:#fff;
    border-top:0!important;
    margin-top:0!important;
    padding-top:12px!important;
    padding-bottom:20px!important;
}

.related .container{
    text-align:center;
}

.related h2{
    text-align:center;
    margin-bottom:10px;
}

.related a{
    color:#007cff;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .container{
        padding:0 15px;
    }

    .hero{
        padding:28px 0 25px;
    }

    .hero h1{
        font-size:22px;
    }

    .hero p{
        font-size:14px;
        margin-bottom:20px;
    }

    .intro{
        padding:28px 0;
    }

    section{
        padding:26px 0;
    }

    .models{
        grid-template-columns:1fr;
        gap:18px;
    }

    .model{
        padding:15px;
    }

    /* MOBILE SPECIFICATIONS */

    .eft-specs-section{
        padding:26px 0 !important;
    }

    .eft-specs-title{
        margin:0 0 8px 0 !important;
        font-size:22px !important;
        line-height:1.3 !important;
    }

    .eft-specs-table td{
        padding:10px 12px !important;
        font-size:13px;
        line-height:1.5;
    }

    .eft-specs-table td:first-child{
        width:40%;
    }

    .eft-specs-table td:last-child{
        width:60%;
    }

    .eft-faq-item{
        padding:14px 0;
    }

    .eft-product-section{
        margin:22px auto 12px;
        padding:0 10px;
    }

    .eft-product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .eft-image{
        height:180px;
        padding:10px;
    }

    .eft-title{
        padding:8px 12px 0;
        font-size:14px;
        line-height:20px;
        height:68px;
        min-height:68px;
        -webkit-line-clamp:3;
    }

    .eft-price{
        padding:7px 12px 12px;
        font-size:18px;
        line-height:24px;
        min-height:43px;
    }

    .eft-video iframe{
        width:100%;
        height:auto;
        aspect-ratio:16/9;
    }

    .related{
        padding-top:8px!important;
    }

}

