/*========================
TOP STRIP
========================*/

:root{

    --primary-color:#d7bb73;
    --secondary-color:#1f2937;
    --text-color:#222;

}

.hd-top-strip{
    background: var(--primary-color);
    height:42px;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hd-marquee{
    width:100%;
    overflow:hidden;
}

.hd-track{

    display:inline-flex;
    align-items:center;
    white-space:nowrap;
    animation:hdmarquee 30s linear infinite;
}

.hd-track span{

    padding:0 18px;
    font-size:15px;
    font-weight:600;
    color:#222;
}

.dot{

    font-size:18px;
    padding:0;
}

@keyframes hdmarquee{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/*========================
HEADER
========================*/

.hd-header{

    background: var(--secondary-color);
    position:sticky;
    top:0;
    z-index:999;
}

.hd-logo{

    font-size:34px;
    font-weight:700;
    color:#fff !important;
}

.hd-logo span{

    color: var(--primary-color);
}

.navbar-nav{

    gap:10px;
}

.navbar-nav .nav-link{

    color:#fff !important;
    font-weight:600;
    padding:20px 16px !important;
    transition:.3s;
}

.navbar-nav .nav-link:hover{

    color: var(--primary-color) !important;
}

.hd-icons{

    gap:25px;
}

.hd-icons a{

    color:#fff;
    font-size:23px;
    text-decoration:none;
    transition:.3s;
}

.hd-icons a:hover{

    color: var(--primary-color);
}

.hd-cart-count{

    position:absolute;
    top:-8px;
    right:-10px;

    width:18px;
    height:18px;

    background:#fff;
    color:#000;

    border-radius:50%;

    font-size:11px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:bold;
}

/*========================
MOBILE
========================*/

@media(max-width:1199px){

.navbar-collapse{

    background:#1f2937;
    padding:15px;
}

.navbar-nav .nav-link{

    padding:12px 0 !important;
}

.hd-icons{

    margin-top:15px;
}

}

@media(max-width:576px){

.hd-top-strip{

    height:36px;
}

.hd-track span{

    font-size:13px;
}

.hd-logo{

    font-size:28px;
}

}

/* category section  */

/*==============================
CATEGORY SECTION
==============================*/

.hd-category{

    background:#fff;
    border-bottom:1px solid #ececec;

}

.hd-category-scroll{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:25px;

}

.hd-category-item{

    width:20%;
    text-align:center;
    text-decoration:none;
    color:#333;

}

.hd-category-img{

    width:170px;
    height:170px;

    margin:auto;

    border-radius:50%;
    border:1px solid #ececec;

    background:#f4f4f4;

    overflow:hidden;

    transition:.35s;

    display:flex;
    align-items:center;
    justify-content:center;

}

.hd-category-img img{

    width:100%;
    height:100%;
    object-fit:contain;

    transition:.35s;

}

.hd-category-item:hover .hd-category-img{

    transform:translateY(-8px);
    box-shadow:0 12px 35px rgba(0,0,0,.15);

}

.hd-category-item:hover img{

    transform:scale(1.08);

}

.hd-category-item h6{

    margin-top:18px;

    font-size:20px;

    color:#5b4021;

    font-weight:600;

    font-family:Georgia, serif;

    line-height:1.4;

}

/*==============================
TABLET
==============================*/

@media(max-width:991px){

.hd-category-scroll{

    overflow-x:auto;

    justify-content:flex-start;

    gap:20px;

    padding-bottom:10px;

    scrollbar-width:none;

}

.hd-category-scroll::-webkit-scrollbar{

    display:none;

}

.hd-category-item{

    min-width:180px;

}

.hd-category-img{

    width:150px;
    height:150px;

}

.hd-category-item h6{

    font-size:18px;

}

}

/*==============================
MOBILE
==============================*/

@media(max-width:576px){

.hd-category{

    padding:25px 0;

}

.hd-category-item{

    min-width:150px;

}

.hd-category-img{

    width:120px;
    height:120px;

}

.hd-category-item h6{

    font-size:15px;
    margin-top:12px;

}

}


/*=========================
HERO
=========================*/

.hd-hero{

    margin-bottom:40px;

}

.hd-hero .carousel-item{

    height:600px;

    position:relative;

}

.hd-hero img{

    width:100%;
    height:650px;

    object-fit:cover;

}

.hd-hero .carousel-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.20);

}

.carousel-caption{

    left:8%;
    right:auto;

    top:50%;

    bottom:auto;

    transform:translateY(-50%);

    text-align:left;

    max-width:600px;

}

.hd-tag{

    display:inline-block;

    background:#ffffff;

    color:#c59b30;

    padding:8px 22px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:18px;

}

.carousel-caption h1{

    font-size:64px;

    font-weight:800;

    color:#fff;

    line-height:1.1;

    margin-bottom:20px;

}

.carousel-caption h1 span{

    color:#f3c23d;

}

.carousel-caption p{

    color:#fff;

    font-size:18px;

    margin-bottom:35px;

    max-width:520px;

}

.hd-btn{

    background:#d4a017;

    color:#fff;

    padding:15px 40px;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

}

.hd-btn:hover{

    background:#b88400;
    color:#fff;

}

.carousel-indicators{

    bottom:30px;

}

.carousel-indicators button{

    width:12px !important;

    height:12px !important;

    border-radius:50%;

}

@media(max-width:992px){

.hd-hero .carousel-item,
.hd-hero img{

    height:500px;

}

.carousel-caption{

    left:6%;
    max-width:450px;

}

.carousel-caption h1{

    font-size:42px;

}

}

@media(max-width:768px){

.hd-hero .carousel-item,
.hd-hero img{

    height:400px;

}

.carousel-caption{

    left:5%;
    right:5%;
}

.carousel-caption h1{

    font-size:30px;

}

.carousel-caption p{

    font-size:15px;

}

.hd-btn{

    padding:12px 28px;

}

}

@media(max-width:576px){

.hd-hero .carousel-item,
.hd-hero img{

    height:320px;

}

.carousel-caption{

    text-align:center;

    left:10%;
    right:10%;

}

.hd-tag{

    font-size:12px;

}

.carousel-caption h1{

    font-size:24px;

}

.carousel-caption p{

    display:none;

}

}


/*=============================
BEST SELLER
=============================*/

.hd-title{

    font-size:42px;

    font-weight:700;

}

.hd-title::after{

    content:"";

    display:block;

    width:70px;

    height:3px;

    background:#d4a017;

    margin:12px auto;

}

.hd-product-card{

    border:1px solid #eee;

    overflow:hidden;

    transition:.35s;

    background:#fff;

    position:relative;

}

.hd-product-card:hover{

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    transform:translateY(-8px);

}

/* IMAGE */

.hd-product-image{

    position:relative;

    overflow:hidden;

}

.hd-product-image img{

    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;

    transition:.5s;

}

.img-two{

    position:absolute;

    inset:0;

    opacity:0;

}

.hd-product-card:hover .img-two{

    opacity:1;

    transform:scale(1.05);

}

.hd-product-card:hover .img-one{

    opacity:0;

}

/* SALE */

.hd-sale{

    position:absolute;

    top:15px;

    left:15px;

    background:#d4a017;

    color:#fff;

    padding:6px 12px;

    font-size:13px;

    border-radius:30px;

    z-index:5;

}

/* ICONS */

.hd-product-icons{

    position:absolute;

    right:15px;

    top:50%;

    transform:translateY(-50%);

    display:flex;

    flex-direction:column;

    gap:10px;

    opacity:0;

    transition:.4s;

    z-index:10;

}

.hd-product-card:hover .hd-product-icons{

    opacity:1;

    right:20px;

}

.hd-product-icons a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#333;

    text-decoration:none;

    transition:.3s;

}

.hd-product-icons a:hover{

    background:#d4a017;

    color:#fff;

}

/* CONTENT */

.hd-product-content{

    padding:20px;

    text-align:center;

}

.hd-product-content h5{

    font-size:20px;

    margin-bottom:12px;

}

.hd-rating{

    color:#ffb400;

    margin-bottom:10px;

}

.hd-rating span{

    color:#666;

}

.hd-price{

    margin-bottom:18px;

}

.hd-price del{

    color:#888;

    margin-right:10px;

}

.hd-price strong{

    color:#c0392b;

    font-size:22px;

}

.hd-cart-btn{

    width:100%;

    background:#1f2937;

    color:#fff;

    border-radius:40px;

    padding:12px;

    transition:.3s;

}

.hd-cart-btn:hover{

    background:#d4a017;

    color:#fff;

}

@media(max-width:767px){

.hd-title{

    font-size:30px;

}

}



/*==========================================
WATCH & BUY SECTION
==========================================*/

.hd-watch-buy{
    padding:70px 0;
    background:#fff;
    position:relative;
}

.hd-watch-heading{
    margin-bottom:45px;
}

.hd-watch-heading h2{
    font-size:42px;
    font-weight:700;
    color:#3a2f28;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin:0;
}

/*==========================================
SCROLL CONTAINER
==========================================*/

.hd-watch-scroll{

    display:flex;

    gap:22px;

    overflow-x:auto;

    overflow-y:hidden;

    scroll-snap-type:x mandatory;

    scroll-behavior:smooth;

    padding-bottom:18px;

    -webkit-overflow-scrolling:touch;

}

/* Hide scrollbar Firefox */

.hd-watch-scroll{

    scrollbar-width:thin;

    scrollbar-color:#8d3151 #e6e6e6;

}

/* Chrome */

.hd-watch-scroll::-webkit-scrollbar{

    height:8px;

}

.hd-watch-scroll::-webkit-scrollbar-track{

    background:#ececec;

    border-radius:50px;

}

.hd-watch-scroll::-webkit-scrollbar-thumb{

    background:#8d3151;

    border-radius:50px;

}

.hd-watch-scroll::-webkit-scrollbar-thumb:hover{

    background:#6f2340;

}

/*==========================================
CARD
==========================================*/

.hd-watch-card{

    flex:0 0 300px;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    border:1px solid #ececec;

    box-shadow:0 6px 18px rgba(0,0,0,.08);

    transition:.35s;

    scroll-snap-align:start;

}

.hd-watch-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

/*==========================================
VIDEO
==========================================*/

.hd-video{

    position:relative;

    aspect-ratio:16/16;

    overflow:hidden;

    background:#f6f6f6;

}

.hd-video img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.hd-watch-card:hover .hd-video img{

    transform:scale(1.05);

}

/*==========================================
PLAY BUTTON
==========================================*/

.hd-play{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:82px;

    height:82px;

    border-radius:50%;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(8px);

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    transition:.3s;

}

.hd-play i{

    font-size:34px;

    color:#4f4f4f;

    margin-left:4px;

}

.hd-watch-card:hover .hd-play{

    transform:translate(-50%,-50%) scale(1.08);

}

/*==========================================
MUTE BUTTON
==========================================*/

.hd-mute{

    position:absolute;

    top:14px;

    right:14px;

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(0,0,0,.55);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:15px;

}

/*==========================================
PRODUCT THUMB
==========================================*/

.hd-thumb{

    width:60px;

    height:60px;

    margin:-30px auto 15px;

    border-radius:12px;

    overflow:hidden;

    border:3px solid #fff;

    box-shadow:0 4px 10px rgba(0,0,0,.15);

    position:relative;

    z-index:10;

    background:#fff;

}

.hd-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/*==========================================
NAV BUTTONS
==========================================*/

.hd-watch-nav{

    position:absolute;

    top:82px;

    right:45px;

    display:flex;

    gap:12px;

    z-index:20;

}

.hd-watch-nav button{

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:#fff;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

    transition:.3s;

}

.hd-watch-nav button:hover{

    background:#8d3151;

    color:#fff;

}

.hd-watch-nav i{

    font-size:20px;

}

/*==========================================
CONTENT
==========================================*/

.hd-content{
    text-align:center;
    padding:0 20px 22px;
}

.hd-content h4{
    font-size:18px;
    font-weight:500;
    line-height:1.45;
    color:#2f2f2f;
    min-height:56px;
    margin-bottom:15px;
    transition:.3s;
}

.hd-watch-card:hover .hd-content h4{
    color:#8d3151;
}

/*==========================================
PRICE
==========================================*/

.hd-price{
    margin-bottom:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.hd-price .new{
    font-size:20px;
    font-weight:700;
    color:#963b5b;
}

.hd-price del{
    color:#888;
    font-size:15px;
}

/*==========================================
SAVE TAG
==========================================*/

.hd-save{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border-radius:5px;

    background:#8d3151;

    color:#fff;

    font-size:13px;

    font-weight:700;

    letter-spacing:.5px;

    transition:.3s;

}

.hd-watch-card:hover .hd-save{

    background:#d4a017;

}

/*==========================================
SMOOTH EFFECTS
==========================================*/

.hd-watch-card,
.hd-play,
.hd-thumb,
.hd-save,
.hd-content h4{

    transition:.35s ease;

}

.hd-watch-card:hover .hd-thumb{

    transform:translateY(-4px);

}

/*==========================================
5 CARDS ON LARGE SCREEN
==========================================*/

@media(min-width:1600px){

    .hd-watch-card{

        flex:0 0 calc((100% - 88px)/5);

    }

}

/*==========================================
LAPTOP
==========================================*/

@media(max-width:1399px){

    .hd-watch-card{

        flex:0 0 280px;

    }

}

/*==========================================
TABLET
==========================================*/

@media(max-width:991px){

    .hd-watch-buy{

        padding:55px 0;

    }

    .hd-watch-heading h2{

        font-size:34px;

    }

    .hd-watch-card{

        flex:0 0 260px;

    }

    .hd-watch-nav{

        right:20px;

        top:70px;

    }

}

/*==========================================
MOBILE
==========================================*/

@media(max-width:767px){

    .hd-watch-heading{

        margin-bottom:30px;

    }

    .hd-watch-heading h2{

        font-size:28px;

    }

    .hd-watch-card{

        flex:0 0 230px;

    }

    .hd-content{

        padding:0 15px 18px;

    }

    .hd-content h4{

        font-size:15px;

        min-height:auto;

    }

    .hd-price .new{

        font-size:17px;

    }

    .hd-price del{

        font-size:13px;

    }

    .hd-save{

        padding:7px 14px;

        font-size:12px;

    }

    .hd-play{

        width:68px;

        height:68px;

    }

    .hd-play i{

        font-size:28px;

    }

    .hd-mute{

        width:36px;

        height:36px;

        font-size:13px;

    }

    .hd-watch-nav{

        position:static;

        justify-content:center;

        margin-bottom:20px;

    }

}

/*==========================================
OPTIONAL - HIDE SCROLLBAR
==========================================*/

.hd-watch-scroll{

    -ms-overflow-style:none;

    scrollbar-width:none;

}

.hd-watch-scroll::-webkit-scrollbar{

    display:none;

}


/*==========================
INSTAGRAM SECTION
===========================*/

.hd-instagram{
    background:#fff;
}

.hd-instagram-title h2{
    font-size:42px;
    font-weight:600;
    color:#3b3028;
    font-family:Georgia, serif;
}

.hd-insta-item{
    display:block;
    position:relative;
    overflow:hidden;
    aspect-ratio:1/1;
}

.hd-insta-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.hd-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.4s;
}

.hd-overlay i{
    color:#fff;
    font-size:42px;
    transform:scale(.5);
    transition:.35s;
}

.hd-insta-item:hover img{
    transform:scale(1.12);
}

.hd-insta-item:hover .hd-overlay{
    opacity:1;
}

.hd-insta-item:hover .hd-overlay i{
    transform:scale(1);
}

@media(max-width:991px){

    .hd-instagram-title h2{
        font-size:34px;
    }

}

@media(max-width:767px){

    .hd-instagram-title h2{
        font-size:28px;
    }

}


/*=========================================
HD FOOTER
=========================================*/

.hd-footer{
    background:#1f2b3d;
    color:#ffffff;
    padding:80px 0 35px;
    position:relative;
}

.hd-footer a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.hd-footer a:hover{
    color:#d4a017;
}

/*=========================================
FOOTER TITLE
=========================================*/

.hd-footer-widget h4{
    font-size:18px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:28px;
    letter-spacing:1px;
}

.hd-footer-widget h5{
    font-size:18px;
    font-weight:600;
    margin-bottom:18px;
}

.hd-footer-widget p{
    font-size:15px;
    line-height:1.8;
    color:#d8dce5;
    margin-bottom:18px;
}

/*=========================================
LINKS
=========================================*/

.hd-footer-widget ul{
    padding:0;
    margin:0;
    list-style:none;
}

.hd-footer-widget ul li{
    margin-bottom:16px;
}

.hd-footer-widget ul li:last-child{
    margin-bottom:0;
}

.hd-footer-widget ul li a{
    font-size:15px;
    color:#ffffff;
    position:relative;
    display:inline-block;
}

.hd-footer-widget ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    background:#d4a017;
    transition:.35s;
}

.hd-footer-widget ul li a:hover::after{
    width:100%;
}

/*=========================================
NEWSLETTER
=========================================*/

.hd-news-text{
    margin-bottom:22px;
}

.hd-newsletter{
    display:flex;
    border:1px solid rgba(255,255,255,.18);
    border-radius:8px;
    overflow:hidden;
    background:rgba(255,255,255,.03);
}

.hd-newsletter input{
    flex:1;
    height:60px;
    border:none;
    background:transparent;
    color:#fff;
    padding:0 22px;
    font-size:16px;
    outline:none;
}

.hd-newsletter input::placeholder{
    color:#b9c0cb;
}

.hd-newsletter button{
    width:65px;
    border:none;
    background:transparent;
    color:#fff;
    font-size:26px;
    transition:.35s;
    cursor:pointer;
}

.hd-newsletter button:hover{
    background:#d4a017;
    color:#1f2b3d;
}

/*=========================================
SOCIAL ICONS
=========================================*/

.hd-social{
    display:flex;
    gap:14px;
    margin-top:28px;
}

.hd-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.20);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
    transition:.35s;
}

.hd-social a:hover{
    background:#d4a017;
    color:#1f2b3d;
    border-color:#d4a017;
    transform:translateY(-4px);
}

/*=========================================
DIVIDER
=========================================*/

.hd-footer-line{
    border-color:rgba(255,255,255,.12);
    margin:30px 0 35px;
}

/*=========================================
COPYRIGHT
=========================================*/

.hd-copy{
    color:#d0d6df;
    font-size:16px;
    margin:0;
}

/*=========================================
PAYMENT ICONS
=========================================*/

.hd-payment-icons{
    display:flex;
    justify-content:flex-end;
    flex-wrap:wrap;
    gap:10px;
}

.hd-payment-icons img{
    height:32px;
    width:auto;
    background:#fff;
    padding:4px;
    border-radius:4px;
    transition:.3s;
}

.hd-payment-icons img:hover{
    transform:translateY(-4px);
}

/*=========================================
WHATSAPP BUTTON
=========================================*/

.hd-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff !important;
    font-size:34px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:9999;
    transition:.35s;
}

.hd-whatsapp:hover{
    transform:scale(1.1);
    background:#1ebe5d;
}

/*=========================================
LARGE DESKTOP
=========================================*/

@media (min-width:1400px){

    .hd-footer .container{
        max-width:1320px;
    }

}

/*=========================================
LAPTOP
=========================================*/

@media (max-width:1199px){

    .hd-footer{
        padding:70px 0 30px;
    }

    .hd-footer-widget h4{
        font-size:20px;
    }

    .hd-footer-widget h5{
        font-size:17px;
    }

    .hd-footer-widget p,
    .hd-footer-widget ul li a{
        font-size:15px;
    }

}

/*=========================================
TABLET
=========================================*/

@media (max-width:991px){

    .hd-footer{
        padding:60px 0 25px;
    }

    .hd-footer-widget{
        margin-bottom:15px;
    }

    .hd-footer-widget h4{
        margin-bottom:20px;
        font-size:19px;
    }

    .hd-footer-widget ul li{
        margin-bottom:12px;
    }

    .hd-newsletter{
        margin-top:15px;
    }

    .hd-footer-line{
        margin:40px 0 25px;
    }

    .hd-copy{
        text-align:center;
        margin-bottom:18px;
    }

    .hd-payment-icons{
        justify-content:center;
    }

}

/*=========================================
MOBILE
=========================================*/

@media (max-width:767px){

    .hd-footer{
        padding:50px 0 20px;
        text-align:center;
    }

    .hd-footer-widget{
        margin-bottom:35px;
    }

    .hd-footer-widget h4{
        font-size:18px;
        margin-bottom:18px;
    }

    .hd-footer-widget h5{
        font-size:16px;
    }

    .hd-footer-widget p{
        font-size:15px;
        line-height:1.7;
    }

    .hd-footer-widget ul li{
        margin-bottom:10px;
    }

    .hd-footer-widget ul li a{
        font-size:15px;
    }

    .hd-newsletter{
        margin:20px auto 0;
        max-width:100%;
    }

    .hd-newsletter input{
        height:54px;
        font-size:15px;
    }

    .hd-newsletter button{
        width:55px;
        font-size:22px;
    }

    .hd-social{
        justify-content:center;
        margin-top:22px;
    }

    .hd-payment-icons{
        justify-content:center;
        gap:8px;
    }

    .hd-payment-icons img{
        height:28px;
    }

    .hd-copy{
        font-size:14px;
        margin-bottom:15px;
    }

}

/*=========================================
SMALL MOBILE
=========================================*/

@media (max-width:575px){

    .hd-footer{
        padding:45px 0 15px;
    }

    .hd-footer-widget h4{
        font-size:17px;
    }

    .hd-footer-widget p,
    .hd-footer-widget ul li a{
        font-size:14px;
    }

    .hd-newsletter input{
        padding:0 15px;
    }

    .hd-payment-icons img{
        height:24px;
    }

}

/*=========================================
WHATSAPP
=========================================*/

@media (max-width:767px){

    .hd-whatsapp{

        width:58px;

        height:58px;

        right:18px;

        bottom:18px;

        font-size:30px;

    }

}

/*=========================================
HOVER EFFECTS
=========================================*/

.hd-footer-widget ul li a,
.hd-social a,
.hd-payment-icons img,
.hd-newsletter button,
.hd-whatsapp{

    transition:all .35s ease;

}

/*=========================================
FOCUS
=========================================*/

.hd-newsletter input:focus{

    background:rgba(255,255,255,.05);

}

.hd-newsletter{

    transition:.3s;

}

.hd-newsletter:focus-within{

    border-color:#d4a017;

    box-shadow:0 0 0 3px rgba(212,164,23,.15);

}

/*=========================
WHATSAPP PULSE
=========================*/

.hd-whatsapp{

    animation:hdFloat 3s infinite;

}

.hd-whatsapp-pulse{

    animation:hdPulse .8s;

}

@keyframes hdPulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.18);

    }

    100%{

        transform:scale(1);

    }

}

@keyframes hdFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-6px);

    }

    100%{

        transform:translateY(0);

    }

}