/* =========================
   BODY
========================= */

body{
    background: #eef2f7;
}

header{
    position: relative !important;
    z-index: 99999 !important;
    background: white !important;
}

.top-header{
    position: relative !important;
    z-index: 99999 !important;
}


/* =========================
   HERO SECTION
========================= */

.tamratej-hero{
    position: relative;
    width: 100%;
    min-height: 88vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 110px 7%;
}

.tamratej-banner-image{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
}

.tamratej-hero-content{
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #0f172a;
    animation: heroText 1.2s ease;
}

.tamratej-hero-content h1{
    font-size: 64px;
    line-height: 1.15;
    margin-bottom: 28px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.tamratej-hero-content p{
    font-size: 19px;
    line-height: 2;
    color: #0f172a;
    margin-bottom: 38px;
}



/* =========================
   HERO TAGS
========================= */

.hero-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-tags span{
    background: rgba(63, 54, 54, 0.092);
    border: 1px solid rgba(255,255,255,0.16);
    padding: 14px 22px;
    border-radius: 50px;
    backdrop-filter: blur(7px);
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-tags span:hover{
    transform: translateY(-4px);
    background: rgba(255,255,255,0.22);
}



/* =========================
   GENERAL SECTION
========================= */

.tamratej-section{
    padding: 80px 7%;
}

.tamratej-section:nth-child(even){
    background: #f8fafc;
}

.tamratej-section:nth-child(odd){
    background: #eef2f7;
}



/* =========================
   SECTION TITLE
========================= */

.section-heading{
    text-align: center;
    margin-bottom: 55px;
}

.section-heading h2{
    font-size: 44px;
    color: #0f172a;
    font-family: 'Cinzel', serif;
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}

.section-heading h2::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 95px;
    height: 3px;
    background: linear-gradient(
        to right,
        #b88919,
        #d4af37,
        #f4dc93
    );
    border-radius: 20px;
}



/* =========================
   ABOUT CARD
========================= */

.content-card{
    background: white;
    padding: 55px;
    border-radius: 30px;
    line-height: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.content-card p{
    font-size: 17px;
    color: #374151;
    margin-bottom: 20px;
}



/* =========================
   FEATURES
========================= */

.features-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

.feature-box{
    background: white;
    border-radius: 26px;
    padding: 42px 32px;
    text-align: center;
    transition: 0.35s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.feature-box:hover{
    transform: translateY(-10px);
    border-color: #d4af37;
}

.feature-box i{
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 24px;
}

.feature-box p{
    font-size: 17px;
    line-height: 1.9;
    color: #374151;
}



/* =========================
   HOW TO USE
========================= */

/* =========================
   HOW TO USE
========================= */

.steps-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}
.step-box{
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    border: 1px solid #e5e7eb;

    display: flex;
    flex-direction: column;
}

.step-box:hover{
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.10);
}

.step-box img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    background: #f8fafc;
    padding: 20px;
}

.step-content{
    padding: 20px;
    text-align: center;
    flex-grow: 1;
}

.step-content span{
    display: inline-block;
    background: linear-gradient(
        to right,
        #d4af37,
        #f4dc93
    );
    color: #0f172a;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
    font-size: 14px;
}

.step-content p{
    color: #374151;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width: 900px){

    .steps-container{
        grid-template-columns: 1fr;
    }

    .step-box{
        max-width: 420px;
        margin: auto;
    }

}

@media(max-width: 600px){

    .step-box img{
        height: 150px;
    }

    .step-content{
        padding: 16px;
    }

    .step-content p{
        font-size: 14px;
    }

}


/* =========================
   SUITABLE FOR
========================= */

.suitable-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

.suitable-box{
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.suitable-box:hover{
    transform: translateY(-8px);
    border-color: #d4af37;
}

.suitable-box i{
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 24px;
}

.suitable-box h3{
    font-size: 24px;
    margin-bottom: 16px;
    color: #0f172a;
    font-family: 'Cinzel', serif;
}

.suitable-box p{
    color: #475569;
    line-height: 1.9;
}



/* =========================
   PRODUCT DETAILS
========================= */

.details-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px;
}

.details-card-box{
    background: white;
    border-radius: 26px;
    padding: 38px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.details-card-box:hover{
    transform: translateY(-7px);
}

.details-icon{
    min-width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(to bottom right,#d4af37,#f4dc93);
    display: flex;
    align-items: center;
    justify-content: center;
}

.details-icon i{
    font-size: 28px;
    color: #0f172a;
}

.details-card-box h3{
    font-size: 24px;
    margin-bottom: 12px;
    color: #0f172a;
    font-family: 'Cinzel', serif;
}

.details-card-box p{
    color: #475569;
    line-height: 1.9;
}



/* =========================
   SAFETY
========================= */

.safety-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px;
}

.safety-item{
    background: white;
    border-radius: 26px;
    padding: 38px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.safety-item:hover{
    transform: translateY(-7px);
}

.safety-item i{
    font-size: 30px;
    color: #d4af37;
    margin-top: 5px;
}

.safety-item h3{
    font-size: 23px;
    margin-bottom: 12px;
    color: #0f172a;
    font-family: 'Cinzel', serif;
}

.safety-item p{
    color: #475569;
    line-height: 1.9;
}



/* =========================
   CTA SECTION
========================= */

.bottom-cta{
    background: linear-gradient(
        to right,
        #0f172a,
        #1e293b
    );
    padding: 110px 7%;
    text-align: center;
    color: white;
}

.bottom-cta h2{
    font-size: 46px;
    line-height: 1.5;
    margin-bottom: 42px;
    font-family: 'Cinzel', serif;
}

.cta-buttons{
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.chat-btn,
.hero-btn{
    padding: 17px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.chat-btn{
    background: #25D366;
    color: white;
}

.hero-btn{
    background: #d4af37;
    color: #0f172a;
}

.chat-btn:hover,
.hero-btn:hover{
    transform: translateY(-5px);
}



/* =========================
   ANIMATION
========================= */

@keyframes heroText{

    from{
        opacity: 0;
        transform: translateX(-70px);
    }

    to{
        opacity: 1;
        transform: translateX(0);
    }

}



/* =========================
   RESPONSIVE
========================= */

@media(max-width: 1100px){

    .features-grid,
    .suitable-grid,
    .details-card{
        grid-template-columns: 1fr 1fr;
    }

    .tamratej-hero-content h1{
        font-size: 50px;
    }

}

@media(max-width: 800px){

    .steps-container{
        grid-template-columns: 1fr;
    }

}

@media(max-width:700px){

    .tamratej-hero{
        position: relative;
        width: 100%;
        min-height: 65vw;
        overflow: hidden;
        display: flex;
        align-items: center;
        padding: 0 5%;
    }

    .tamratej-banner-image{
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-overlay{
        position:absolute;
        inset:0;
        background:rgba(0,0,0,.55);
    }

    .tamratej-hero-content{
        position: relative;
        z-index: 2;
        max-width: 48%;
    }

    .tamratej-hero-content h1{
        font-size:18px;
        line-height:1.25;
        margin-bottom:10px;
    }

    .tamratej-hero-content p{
        display:none;
    }

    .hero-tags{
        gap:5px;
    }

    .hero-tags span{
    padding:5px 8px;
    font-size:8px;
}

    

    .features-grid,
    .suitable-grid,
    .details-grid,
    .safety-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:34px;
    }

    .bottom-cta{
        padding:85px 7%;
    }

    .bottom-cta h2{
        font-size:34px;
    }
}
/* =========================
   CHAT BUTTONS
========================= */

.tamratej-chat-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 70px;
}

.tamratej-chat-btn a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.35s ease;
    border: none;
}



/* =========================
   WHATSAPP BUTTON
========================= */

.tamratej-chat-btn a:first-child{
    background: #0f172a;
    color: white;
    box-shadow: 0 10px 25px rgba(37,211,102,0.22);
}

.tamratej-chat-btn a:first-child:hover{
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(37,211,102,0.32);
}



/* =========================
   BULK ORDER BUTTON
========================= */

.tamratej-chat-btn a:last-child{
    background: linear-gradient(to right,
    #b88919,
    #d4af37);
    color: #0f172a;
    box-shadow: 0 10px 25px rgba(212,175,55,0.22);
}

.tamratej-chat-btn a:last-child:hover{
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(212,175,55,0.32);
}



/* =========================
   ICONS
========================= */

.tamratej-chat-btn i{
    font-size: 18px;
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width: 700px){

    .tamratej-chat-btn{
        flex-direction: column;
    }

    .tamratej-chat-btn a{
        width: 100%;
    }

}

/* =========================
   HOW TO USE
========================= */

/* =========================
   HOW TO USE
========================= */

.steps-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.step-box{
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    border: 1px solid #e5e7eb;

    display: flex;
    flex-direction: column;
}

.step-box:hover{
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.10);
}

.step-box img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    background: #f8fafc;
    padding: 20px;
}

.step-content{
    padding: 20px;
    text-align: center;
    flex-grow: 1;
}
.step-content span{
    display: inline-block;
    background: linear-gradient(
        to right,
        #d4af37,
        #f4dc93
    );
    color: #0f172a;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
    font-size: 14px;
}

.step-content p{
    color: #374151;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

@media(max-width: 1000px){

    .steps-container{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 700px){

    .steps-container{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-box{
        max-width: 420px;
        margin: 0 auto;
    }

    .step-box img{
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain;
        padding: 20px;
    }

}