.elementor-2202 .elementor-element.elementor-element-32ed8d0{--display:flex;--margin-top:-40px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-e56be84 *//*======================================
CoffeeMasterHub Calculator - Part 1
======================================*/

#cmh-caffeine-calculator{
    max-width:1200px;
    margin:40px auto;
    padding:20px;
    font-family:inherit;
}


/* Header */

.cmh-header{
    text-align:center;
    margin-bottom:40px;
}

.cmh-badge{
    display:inline-block;
    padding:8px 18px;
    background:#FFF4E5;
    color:#8B5A2B;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}

.cmh-header h1{
    font-size:46px;
    line-height:1.2;
    color:#3E2C1C;
    margin-bottom:15px;
}

.cmh-header p{
    max-width:760px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
    color:#666;
}



/* Main Card */

.cmh-card{
    background:#fff;
    border-radius:22px;
    padding:40px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}



/* Grid */

.cmh-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}



/* Fields */

.cmh-field label{
    display:block;
    font-weight:700;
    color:#3E2C1C;
    margin-bottom:8px;
}

.cmh-field input,
.cmh-field select{
    width:100%;
    height:52px;
    padding:0 16px;
    border:1px solid #DDD;
    border-radius:12px;
    font-size:16px;
    background:#fff;
    transition:.3s;
    box-sizing:border-box;
}

.cmh-field input:focus,
.cmh-field select:focus{
    outline:none;
    border-color:#8B5A2B;
    box-shadow:0 0 0 3px rgba(139,90,43,.12);
}



/* Weight */

.cmh-inline{
    display:flex;
    gap:10px;
}

.cmh-inline input{
    flex:1;
}

.cmh-inline select{
    width:90px;
}
/*======================================
Buttons
======================================*/

.cmh-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:35px;
}

.cmh-buttons button{
    border:none;
    padding:15px 35px;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

#calculateBtn{
    background:#8B5A2B;
    color:#fff;
}

#calculateBtn:hover{
    background:#6F451F;
    transform:translateY(-2px);
}

#resetBtn{
    background:#ECECEC;
    color:#333;
}

#resetBtn:hover{
    background:#DDDDDD;
}



/*======================================
Result Card
======================================*/

.cmh-result{
    margin-top:35px;
    background:#fff;
    padding:35px;
    border-radius:22px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.cmh-result h2{
    text-align:center;
    color:#3E2C1C;
    margin-bottom:30px;
}



/* Result Boxes */

.cmh-result-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.cmh-box{
    background:#F8F5F1;
    border-radius:16px;
    padding:22px;
    text-align:center;
}

.cmh-box span{
    display:block;
    color:#777;
    font-size:14px;
    margin-bottom:8px;
}

.cmh-box strong{
    font-size:34px;
    font-weight:700;
    color:#8B5A2B;
}



/*======================================
Progress Bar
======================================*/

.cmh-progress{
    margin-top:35px;
}

.cmh-progress-bar{
    width:100%;
    height:20px;
    background:#E6E6E6;
    border-radius:30px;
    overflow:hidden;
}

.cmh-progress-fill{
    width:0%;
    height:100%;
    border-radius:30px;
    background:linear-gradient(90deg,#2EAD45,#F5A300,#E52B2B);
    transition:width .5s ease;
}

#progressText{
    margin-top:16px;
    text-align:center;
    font-size:16px;
    font-weight:700;
    color:#222;
}



/*======================================
Recommendation Box
======================================*/

.cmh-recommendation{
    margin-top:28px;
    padding:22px 26px;
    background:#FFF7E5;
    border-left:5px solid #7A4A24;
    border-radius:16px;
    font-size:18px;
    font-weight:600;
    color:#2D2D2D;
    line-height:1.7;
}
/*======================================
Table Card
======================================*/

.cmh-table-card{
    margin-top:40px;
    background:#fff;
    padding:35px;
    border-radius:22px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    overflow-x:auto;
}

.cmh-table-card h2{
    color:#3E2C1C;
    margin-bottom:25px;
    font-size:30px;
}

.cmh-table-card table{
    width:100%;
    border-collapse:collapse;
}

.cmh-table-card thead{
    background:#8B5A2B;
}

.cmh-table-card th{
    color:#fff;
    padding:16px;
    text-align:left;
    font-size:16px;
    font-weight:700;
}

.cmh-table-card td{
    padding:16px;
    border-bottom:1px solid #ECECEC;
    color:#555;
}

.cmh-table-card tbody tr:nth-child(even){
    background:#FCFAF7;
}

.cmh-table-card tbody tr:hover{
    background:#F7F1EA;
}




/*======================================
FAQ Section
======================================*/

.cmh-faq{
    margin-top:45px;
}

.cmh-faq h2{
    text-align:center;
    color:#3E2C1C;
    margin-bottom:30px;
}

.faq-item{
    background:#fff;
    padding:25px;
    border-radius:18px;
    margin-bottom:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.faq-item h3{
    color:#3E2C1C;
    margin-bottom:12px;
    font-size:22px;
}

.faq-item p{
    color:#666;
    line-height:1.8;
    margin:0;
}




/*======================================
Disclaimer
======================================*/

.cmh-disclaimer{
    margin-top:35px;
    background:#FFF7E5;
    border-left:5px solid #8B5A2B;
    padding:22px 24px;
    border-radius:16px;
    color:#444;
    line-height:1.8;
}




/*======================================
Content Section
======================================*/

.cmh-content{
    margin-top:45px;
    background:#fff;
    padding:40px;
    border-radius:22px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.cmh-content h2{
    color:#3E2C1C;
    margin:35px 0 15px;
    font-size:30px;
}

.cmh-content h2:first-child{
    margin-top:0;
}

.cmh-content p{
    color:#555;
    font-size:17px;
    line-height:1.9;
    margin-bottom:18px;
}

.cmh-content ul,
.cmh-content ol{
    padding-left:24px;
    margin-bottom:20px;
}

.cmh-content li{
    color:#555;
    margin-bottom:10px;
    line-height:1.8;
}

.cmh-content a{
    color:#8B5A2B;
    font-weight:600;
    text-decoration:none;
}

.cmh-content a:hover{
    text-decoration:underline;
}
/*======================================
Tablet Responsive
======================================*/

@media (max-width:991px){

    .cmh-grid{
        grid-template-columns:1fr;
    }

    .cmh-result-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cmh-header h1{
        font-size:38px;
    }

    .cmh-card,
    .cmh-result,
    .cmh-table-card,
    .cmh-content{
        padding:30px;
    }

}



/*======================================
Mobile Responsive
======================================*/

@media (max-width:768px){

    #cmh-caffeine-calculator{
        margin:20px auto;
        padding:15px;
    }

    .cmh-header{
        margin-bottom:30px;
    }

    .cmh-header h1{
        font-size:30px;
    }

    .cmh-header p{
        font-size:16px;
        line-height:1.7;
    }

    .cmh-card,
    .cmh-result,
    .cmh-table-card,
    .cmh-content{
        padding:22px;
        border-radius:18px;
    }

    .cmh-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .cmh-inline{
        flex-direction:column;
    }

    .cmh-inline select{
        width:100%;
    }

    .cmh-buttons{
        flex-direction:column;
    }

    .cmh-buttons button{
        width:100%;
    }

    .cmh-result-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .cmh-box{
        padding:18px 12px;
    }

    .cmh-box strong{
        font-size:24px;
    }

    .cmh-box span{
        font-size:13px;
    }

    .cmh-table-card{
        overflow-x:auto;
    }

    .cmh-table-card table{
        min-width:600px;
    }

    .faq-item{
        padding:20px;
    }

    .faq-item h3{
        font-size:19px;
    }

    .cmh-content h2{
        font-size:26px;
    }

    .cmh-content p,
    .cmh-content li{
        font-size:16px;
    }

}



/*======================================
Small Mobile
======================================*/

@media (max-width:480px){

    .cmh-header h1{
        font-size:26px;
    }

    .cmh-badge{
        font-size:13px;
        padding:7px 15px;
    }

    .cmh-result-grid{
        grid-template-columns:1fr;
    }

    .cmh-box{
        padding:18px;
    }

    .cmh-box strong{
        font-size:22px;
    }

    .cmh-table-card th,
    .cmh-table-card td{
        padding:12px;
        font-size:14px;
    }

    .cmh-content{
        padding:20px;
    }

    .cmh-content h2{
        font-size:22px;
    }

}



/*======================================
Smooth Scroll
======================================*/

#result{
    scroll-margin-top:100px;
}

html{
    scroll-behavior:smooth;
}/* End custom CSS */