/* =========================================
   GLOBAL FIX
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    overflow-x:hidden;
    width:100%;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 15px;
}

/* =========================================
   HERO SECTION
========================================= */

.tihero-slider-wrap{
    position:relative;
    width:100%;
    overflow:hidden;
    border-radius:0 0 40px 40px;
    background:#000;
}

.tihero-slider{
    position:relative;
    width:100%;
    height:auto;
}

.tihero-slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    visibility:hidden;
    transition:.7s ease;
}

.tihero-slide.active{
    opacity:1;
    visibility:visible;
    position:relative;
}

.tihero-bg-image{
    width:100%;
    height:100%;
}

.tihero-bg-image img{
    width:100%;
    height:auto;
    object-fit:cover;
}

/* CONTENT */

.tihero-content{
    position:absolute;
    left:7%;
    top:50%;
    transform:translateY(-50%);
    z-index:5;
    max-width:500px;
}

.tihero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.tibtn-primary,
.tibtn-outline{
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.tibtn-primary{
    background:linear-gradient(135deg,#f5d08c,#c89a47);
    color:#111;
    font-weight:600;
}

.tibtn-outline{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
}

/* NAV DOTS */

.tihero-nav{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:20px;
    z-index:20;
    display:flex;
    gap:10px;
}

.tihero-nav span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.4);
    cursor:pointer;
    transition:.3s;
}

.tihero-nav span.active{
    width:35px;
    border-radius:20px;
    background:#d4af37;
}

/* =========================================
   CATEGORY SECTION
========================================= */

.tio-cat-section{
    padding:60px 0;
    background:linear-gradient(180deg,#ede2cb,#a0a0a0);
}

.tio-cat-heading{
    text-align:center;
    margin-bottom:40px;
}

.tio-cat-heading h2{
    font-size:48px;
    color:#c69b48;
}

.tio-cat-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.tio-cat-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    height:340px;
}

.tio-cat-card img,
.tio-cat-card picture img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.tio-cat-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
}

.tio-cat-content{
    position:absolute;
    left:20px;
    right:20px;
    bottom:20px;
    z-index:5;
}

.tio-cat-content h3{
    color:#fff;
    font-size:28px;
    margin-bottom:12px;
}

.tio-hover-btn{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    padding:12px 16px;
    border-radius:16px;
    backdrop-filter:blur(8px);
}

.tio-hover-btn span{
    color:#fff;
    font-size:12px;
    letter-spacing:1px;
}

.ti-arrow{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#d4af37;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-style:normal;
}

/* =========================================
   ABOUT SECTION
========================================= */

.TiOro-about-section{
    padding:70px 0;
    background:linear-gradient(to bottom,#fff,#dfc89c);
}

.TiOro-about-image{
    width:100%;
    border-radius:24px;
}

.TiOro-about-content h2{
    font-size:48px;
    color:#c69b48;
    margin-bottom:20px;
}

.TiOro-about-content p{
    font-size:16px;
    line-height:1.8;
    color:#666;
}

.TiOro-about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.TiOro-feature-box{
    background:#fff;
    border-radius:16px;
    padding:15px;
    text-align:center;
    font-size:14px;
}

/* =========================================
   BRAND SECTION
========================================= */

.TiOro-brand-section{
    padding:60px 0;
    overflow:hidden;
    background:linear-gradient(to bottom,#fff,#c3b192);
}

.TiOro-brand-heading{
    text-align:center;
    margin-bottom:35px;
}

.TiOro-brand-heading h2{
    font-size:42px;
    color:#c69b48;
}

.TiOro-brand-marquee{
    overflow:hidden;
}

.TiOro-brand-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:brandmove 25s linear infinite;
}

@keyframes brandmove{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

.TiOro-brand-item{
    min-width:220px;
    height:120px;
}

.TiOro-brand-front,
.TiOro-brand-back{
    width:100%;
    height:100%;
    border-radius:24px;
}

/* =========================================
   NEWSLETTER
========================================= */

.TiOro-newsletter-section{
    padding:60px 0;
    background:linear-gradient(180deg,#ede2cb,#a0a0a0);
}

.TiOro-newsletter-box{
    background:#fff;
    border-radius:30px;
    padding:40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
}

.TiOro-news-content h2{
    font-size:40px;
    color:#c69b48;
}

.TiOro-news-form{
    display:flex;
    background:#fff;
    border-radius:60px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,.08);
}

.TiOro-news-form input{
    border:none;
    outline:none;
    padding:0 20px;
    height:58px;
    width:320px;
}

.TiOro-news-form button{
    border:none;
    padding:0 30px;
    background:linear-gradient(135deg,#f5d08c,#c89a47);
    font-weight:600;
    cursor:pointer;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .tio-cat-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .TiOro-about-content{
        margin-top:40px;
        text-align:center;
    }

    .TiOro-newsletter-box{
        flex-direction:column;
        text-align:center;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    .tihero-slider-wrap{
        border-radius:0 0 20px 20px;
    }

    .tihero-content{
        left:20px;
        right:20px;
        max-width:100%;
    }

    .tihero-buttons{
        flex-direction:column;
    }

    .tibtn-primary,
    .tibtn-outline{
        width:100%;
        text-align:center;
    }

    .tio-cat-grid{
        grid-template-columns:1fr;
    }

    .tio-cat-heading h2,
    .TiOro-about-content h2,
    .TiOro-brand-heading h2,
    .TiOro-news-content h2{
        font-size:30px;
    }

    .tio-cat-card{
        height:280px;
    }

    .TiOro-about-features{
        grid-template-columns:1fr;
    }

    .TiOro-news-form{
        flex-direction:column;
        border-radius:20px;
    }

    .TiOro-news-form input{
        width:100%;
        text-align:center;
    }

    .TiOro-news-form button{
        width:100%;
        height:52px;
    }

    .TiOro-brand-item{
        min-width:160px;
        height:90px;
    }

}

/* =========================================
   EXTRA FIXES
========================================= */

.row{
    margin-left:0 !important;
    margin-right:0 !important;
}

[class*="col-"]{
    padding-left:12px;
    padding-right:12px;
}

section{
    overflow:hidden;
}