/****************************************** 
    Banner CSS Start 
******************************************/

.bnr-img {
    width: 100%;
}

.bnr-con {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}

.bnr-txt {
    position: relative;
    width: 50%;
}

.bnr-txt h1 {
    font-family: 'myfirstfont-SemiBold';
    font-size: 66px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--main-color);
}

.bnr-txt p {
    width: 70%;
    margin-bottom: 50px;
    color: var(--txt-color);
}

.bnr-txt::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 940px;
    height: 600px;
    background: radial-gradient(#ffffff96, transparent 90%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(15px);
}

/******************************************
    Banner CSS End 
******************************************/

/****************************************** 
    Product CSS Start 
******************************************/

/* Card */

.product-card {
    width: 100%;
    position: relative;
    text-align: center;
}

.product-card .product-image {
    position: relative;
    z-index: 1;
    margin-bottom: -150px;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    transition: 0.4s ease-in-out;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Box */

.card-body {
    background: var(--main-light-color);
    border: 1px solid #E9E0C4;
    border-radius: 18px;
    padding: 180px 18px 25px;
    position: relative;
    overflow: hidden;
    transition: 0.45s var(--ease-premium);
}

.product-card:hover .card-body {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lift);
    border-color: transparent;
}

.card-body::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #F5C64A, transparent 45%, transparent 60%, var(--main-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity .45s ease;
    pointer-events: none;
}

.product-card:hover .card-body::before {
    opacity: 1;
}

/* Heart */

.card-top {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wishlist, .view {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--main-color);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    font-size: 15px;
}

.wishlist:hover, .view:hover {
    background: var(--main-color);
    color: #fff;
    transform: scale(1.08);
}

/* Bottom */

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.product-bottom .main-btn {
    padding: 8px 18px;
    font-size: 16px;
}

.title {
    font-size: 20px;
    font-family: 'myfirstfont-SemiBold';
    color: #222;
    line-height: 1.2;
    text-align: left;
}

.product-shape1 {
    position: absolute;
    top: 0;
    right: 0;
}

.product-shape2 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.product-txt .heading {
    margin-bottom: 40px;
}

/******************************************
    Product CSS End 
******************************************/

/****************************************** 
    Nature CSS Start 
******************************************/

.nature-head .heading {
    margin-bottom: 50px;
}

.nature-box {
    background: #E9364C;
    border: 1px solid #D8273D;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all ease-in-out 0.4s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.nature-box::after {
    content: "";
    position: absolute;
    width:100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(rgba(255,255,255,.18), transparent 70%);
    top: -120px;
    left: -120px;
    transform: scale(0);
    transition: all ease-in-out 0.4s;
}

.nature-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 60px rgba(0,0,0,.28);
}

.nature-box:hover::after {
    transform: scale(1.5);
}

.nature-box::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.466), transparent);
    opacity: 0;
    transition: all ease-in-out 0.4s;
}

.nature-box:hover::before {
    opacity: 1;
    animation: borderMove 4s linear infinite;
}

@keyframes borderMove {

    0% {
        background-position:0%;
    }

    100% {
        background-position:400%;
    }

}

.nature-img {
    width: 120px;
    height: 120px;
    background: #DB3549;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    position: relative;
    transition: all ease-in-out 0.4s;
}

.nature-box:hover .nature-img {
    background: var(--main-color);
}

.nature-img::after {
    content: '';
    position: absolute;
    border: 2px dashed var(--white-color);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: orbitRotate 12s linear infinite;
    left: 0%;
    top: 0%;
    opacity: 0;
}

.nature-box:hover .nature-img::after {
    opacity: 1;
}

@keyframes orbitRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.nature-img img {
    width: 60px;
    transition: all ease-in-out 0.4s;
}

.nature-box:hover .nature-img img {
    transform: scale(1.05);
}

.nature-txt h3 {
    font-size: 22px;
    color: #fff;
    font-family: 'myfirstfont-Medium';
    margin-bottom: 10px;
}

.nature-txt p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
}

/******************************************
    Nature CSS End 
******************************************/

/****************************************** 
    Enquiry CSS Start 
******************************************/

.enquire-sec {
    padding: 50px 0;
}

.enquir-txt .heading {
    margin-bottom: 0;
}

.enquire-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
}

.enquire-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enquire-img::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, #E2D13C 5%, #fff0);
}

/******************************************
    Enquiry CSS End 
******************************************/

/****************************************** 
    Customer CSS Start 
******************************************/

/* Add Button */

.add-btn {
    width: 120px;
    height: 40px;
    border: none;
    border-radius: 50px;
    background: var(--main-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.35s;
    box-shadow: 0 8px 20px rgba(239, 61, 79, 0.3);
}

.add-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(239, 61, 79, 0.4);
}

.qty-box {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 120px;
    height: 40px;
    background: var(--main-color);
    border-radius: 50px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(239, 61, 79, 0.3);
    animation: pop 0.35s ease;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.qty {
    font-size: 16px;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

@keyframes pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.product-slider {
    padding-bottom: 60px;
    padding-top: 20px;
}

.product-slider .swiper-pagination-bullet {
    width: 10px;
    height: 5px;
    background: var(--main-color);
    opacity: 1;
    border-radius: 10px;
}

.product-slider .swiper-pagination-bullet-active {
    width: 35px;
    height: 5px;
    background: var(--main-dark-color);
    opacity: 1;
}

/******************************************
    Customer CSS End 
******************************************/

/****************************************** 
    Range CSS Start 
******************************************/

.range-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.range-head {
    margin-bottom: 50px;
}

.range-box img {
    width: 100%;
}

.range-box::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(0deg, rgba(34, 27, 20, .92), rgba(34, 27, 20, 0));
    z-index: 1;
}

.range-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.range-txt h3 {
    color: var(--white-color);
    font-size: 22px;
    font-family: 'myfirstfont-SemiBold';
    line-height: 1.2;
}

.range-txt span {
    font-size: 22px;
    line-height: 1;
    transition: 0.4s ease;
    color: var(--white-color);
    font-family: 'myfirstfont-SemiBold';
    opacity: 0;
}

.range-box:hover .range-txt span {
    opacity: 1;
}

/******************************************
    Range CSS End 
******************************************/

/****************************************** 
    Humble CSS Start 
******************************************/

.humble-txt .inner-para {
    width: 90%;
}

.humble-shape {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.5;
    mix-blend-mode: darken;
}

/******************************************
    Humble CSS End 
******************************************/

/****************************************** 
    Post CSS Start 
******************************************/

.post-box .instagram-media {
    width: 100% !important;
    min-width: auto !important;
}

.post-slider {
    padding-bottom: 50px;
}

.post-slider .swiper-pagination-bullet {
    width: 10px;
    height: 5px;
    background: var(--main-color);
    opacity: 1;
    border-radius: 10px;
}

.post-slider .swiper-pagination-bullet-active {
    width: 35px;
    height: 5px;
    background: var(--main-dark-color);
    opacity: 1;
}

.humble-txt {
    margin-bottom: 50px;
}

.post-box {
    width: 100%;
}

.post-img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.post-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 25px;
    color: #ffffff4a;
}

/******************************************
    Post CSS End 
******************************************/

/****************************************** 
    Review CSS Start 
******************************************/

.review-card {
    width: 100%;
    max-width: 100%;
    background: #F2EFD2;
    border: 1px solid #D2CFB0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.review-content {
    padding: 24px;
}

.review-content .review-head {
    font-family: 'mysecondfont-SemiBold';
}

.review-content p {
    color: var(--txt-color);
}

.review-footer {
    background: var(--main-dark-color);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
}

.user {
    display: flex;
    align-items: center;
    gap: 6px;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: var(--main-dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
}

.user-info h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.rating {
    text-align: right;
}

.google {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 14px;
    margin-bottom: 4px;
}

.google img {
    width: 18px;
}

.stars {
    color: #ffd54a;
    font-size: 15px;
    letter-spacing: 2px;
}

.score {
    font-size: 15px;
    /* margin-right: 4px; */
}

.review-slider {
    padding-bottom: 60px;
    padding-top: 10px;
}

.review-slider .swiper-pagination-bullet {
    width: 10px;
    height: 5px;
    background: var(--main-color);
    opacity: 1;
    border-radius: 10px;
}

.review-slider .swiper-pagination-bullet-active {
    width: 35px;
    height: 5px;
    background: var(--main-dark-color);
    opacity: 1;
}

.review-top-head {
    margin-bottom: 40px;
}

/******************************************
    Review CSS End 
******************************************/

/****************************************** 
    Blog CSS Start 
******************************************/

.blog-sec {
    background: #FDFCF2;
}

.blog-shape {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.blog-head {
    margin-bottom: 40px;
}

.blog-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: var(--main-color);
}

.blog-img {
    aspect-ratio: 500/291;
    overflow: hidden;
}

.blog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}

.blog-box {
    position: relative;
    width: 100%;
    z-index: 2;
    padding: 25px;
}

.blog-box h3 {
    font-family: 'myfirstfont-Regular';
    color: var(--white-color);
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.blog-box p {
    color: var(--white-color);
    font-size: 16px;
    line-height: 22px;
}

.blog-btn p {
    margin-top: 20px;
    transition: all ease-in-out 0.4s;
    font-family: 'mysecondfont-SemiBold';
}

.blog-btn p:hover {
    letter-spacing: 1px;
}

/******************************************
    Blog CSS End 
******************************************/

/******************************************
    Responsive Start
******************************************/

@media (max-width: 1600px) {

    .bnr-txt h1 {
        font-size: 60px;
        line-height: 70px;
    }

    .title, .nature-txt h3, .range-txt h3, .blog-box h3 {
        font-size: 20px;
    }

    .product-bottom .main-btn, .add-btn, .qty, .blog-box p, .nature-txt p {
        font-size: 14px;
    }
    
}

@media (max-width: 1440px) {

    .bnr-txt h1 {
        font-size: 55px;
        line-height: 65px;
    }

    .bnr-txt p {
        width: 80%;
    }

    .title, .nature-txt h3, .range-txt h3, .blog-box h3 {
        font-size: 18px;
    }

    .nature-box {
        padding: 25px;
    }

    .score {
        font-size: 14px;
    }

    .avatar {
        font-size: 16px;
    }

    .add-btn, .qty-box {
        width: 100px;
        height: 35px;
    }

    .product-card .product-image {
        margin-bottom: -100px;
    }

    .card-body {
        padding: 120px 15px 20px;
    }
    
}

@media (max-width: 1399px) {

    .bnr-txt h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .title, .nature-txt h3, .range-txt h3, .blog-box h3 {
        font-size: 16px;
    }

    .product-bottom .main-btn, .add-btn, .qty, .blog-box p, .nature-txt p {
        font-size: 13px;
    }
    
}

@media (max-width: 1199px) {

    .bnr-txt h1 {
        font-size: 45px;
        line-height: 55px;
        margin-bottom: 10px;
    }

    .bnr-txt p {
        width: 87%;
        margin-bottom: 30px;
    }

    .bnr-txt h1 {
        font-size: 40px;
        line-height: 50px;
    }
    
}

@media (max-width: 991px) {

    .bnr-txt h1 {
        font-size: 35px;
        line-height: 45px;
    }

    .enquir-txt .heading {
        margin-bottom: 20px;
    }

    .enquire-sec {
        padding: 30px 0;
    }

    .bnr-img {
        width: 100%;
        aspect-ratio: 2 / 1;
        object-fit: cover;
    }
    
}

@media (max-width: 767px) {

    .bnr-img {
        width: 100%;
        aspect-ratio: auto;
        object-fit: cover;
    }

    .bnr-con {
        position: relative;
        top: auto;
        transform: none;
        left: 0;
        width: 100%;
        background: var(--main-dark-color);
        padding: 50px 0;
    }

    .bnr-txt::after {
        display: none;
    }

    .bnr-txt {
        width: 100%;
    }

    .bnr-txt h1 {
        font-size: 30px;
        line-height: 40px;
        color: #fff;
    }

    .bnr-txt p {
        color: #fff;
        width: 100%;
    }

    .enquire-img {
        position: relative;
        margin-top: 30px;
    }

    .enquire-sec {
        padding-bottom: 0;
    }

    .enquir-btn {
        display: flex;
        justify-content: center;
    }

}

@media (max-width: 575px) {



}