@import url("https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Luckiest+Guy&family=Macondo&family=Smooch+Sans:wght@100..900&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;


}

#categories-v1 {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Kanit", serif;
    --background-color: #000;
    --color: #fff;
    font-family: "Kanit", serif;
}

#categories-v1 .outer-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    background: var(--background-color);
    height: 85vh;
}

#categories-v1 .inner-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    flex-direction: column;
    color: var(--color);
}

#categories-v1 .inner-text h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#categories-v1 .inner-text h1 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--color);
}

#categories-v1 .inner-circles-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 90%;
}

#categories-v1 .product-circle {
    width: fit-content;
    height: 70px;
    padding: 10px 50px;
    min-width: 180px;
    border-radius: 40px;
    background: var(--color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--background-color);
    font-size: 30px;
    overflow: hidden;
    position: relative;
}

#categories-v1 .product-circle img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 990px) {
    #categories-v1 .inner-text h1 {
        font-size: 3rem;
    }

    #categories-v1 .product-circle {
        height: 58px;
        padding: 3px 55px;
        font-size: 16px;
    }
}

@media screen and (max-width: 770px) {
    #categories-v1 .product-circle {
        height: 44px;
        padding: 2px 44px;
        min-width: 128px;
    }

    #categories-v1 .inner-text h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    #categories-v1 .inner-text h1 {
        text-align: center;
        font-size: 2rem;
        line-height: 1;
    }

    #categories-v1 .product-circle {
        height: 30px;
        padding: 2px 29px;
        min-width: 100px;
    }

    #categories-v1 .inner-circles-container {
        width: 110%;
    }
}


.categoires-main-box-style .categories-top-search-header {
    background: url('../images/bg.png');
    border-radius: 10px;
}

.categoires-main-box-style .categories-top-search-header .left-content h4 {
    color: #1455b3;
    text-transform: uppercase;
}

.categoires-main-box-style .categories-top-search-header .left-content p {
    color: #1455b3;
}

.categoires-main-box-style .categories-top-search-header .right-content input {
    border: none;
    border-top: 1px solid #dae1e7;
    border-left: 1px solid #dae1e7;
    border-bottom: 1px solid #dae1e7;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 0.625rem 1rem;
    outline: none;
    margin-right: -3px;
    width: 165px;
}

.categoires-main-box-style .categories-top-search-header .right-content input:focus {
    outline: 1px solid #1b7fed80;
}

.categoires-main-box-style .categories-top-search-header .right-content .search-btn-style {
    background-color: #1455b3;
    color: white;
    border: 1px solid #1455b3;
    padding: 10px 20px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}


.categoires-main-box-style .categories-main-section-container-box-style-set {
    display: grid;
    grid-gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    padding: 20px 13px;
}

.categoires-main-box-style .categories-main-section-container-box-style-set .categories-div-container-set {
    background: #fff;
    opacity: 1;
    overflow: hidden;
    height: 100%;
    display: block;
    filter: drop-shadow(0px 0px 15px rgba(20, 85, 172, 0.05));
    padding: 10px;
    text-align: center;
    font-size: 13px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    color: black;
    text-decoration: none;
    transition: 0.5s;
}

.categoires-main-box-style .categories-main-section-container-box-style-set .categories-div-container-set:hover {
    color: #1455b3;
}

.categoires-main-box-style .categories-main-section-container-box-style-set .categories-div-container-set:hover img {
    transform: scale(1.1);
}

.categoires-main-box-style .categories-main-section-container-box-style-set .categories-div-container-set img {
    transition: all ease 0.5s;
    width: 60px;
    height: 60px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    clip-path: circle(50%);
}

.categoires-main-box-style .categories-main-section-container-box-style-set .categories-div-container-set div {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}


@media(max-width:767px) {
    .categoires-main-box-style .categories-top-search-header {
        flex-direction: column;
        align-items: start !important;
    }

    .categoires-main-box-style .categories-top-search-header .left-content {
        margin-bottom: 10px;
    }
}






#v3-category .categoires-main-row-box-slider-style {
    box-shadow: 0px 12px 24px -4px rgba(27, 127, 237, 0.05),
        0px 0px 2px rgba(27, 127, 237, 0.1);
    border-radius: 10px;
    background-color: white;
    font-family: "Kanit", serif;
}

#v3-category .categoires-main-row-box-slider-style .view-all-btn-link-style {
    color: #1455ac;
    font-size: 14px;
    font-weight: 600;
}

#v3-category .categoires-main-row-box-slider-style .category-headin-style-set h4 {
    font-size: 20px;
}

#v3-category .categoires-main-row-box-slider-style .category-link-style-main-sect-box-s {
    text-decoration: none;
}

#v3-category .categoires-main-row-box-slider-style .category-link-style-main-sect-box-s .__img {
    height: 100px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.0509803922);
}

#v3-category .categoires-main-row-box-slider-style .category-link-style-main-sect-box-s .__img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all ease 0.5s;
}

#v3-category .categoires-main-row-box-slider-style .category-link-style-main-sect-box-s:hover .__img img {
    transform: scale(0.88);
}

#v3-category .categoires-main-row-box-slider-style .category-link-style-main-sect-box-s p {
    color: black;
    transition: 0.5s;
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

#v3-category .categoires-main-row-box-slider-style .category-link-style-main-sect-box-s:hover p {
    color: #1455ac;
}

#v3-category .categoires-main-row-box-slider-style .category-slider {
    position: relative;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

#v3-category .categoires-main-row-box-slider-style .category-slider::-webkit-scrollbar {
    display: none;
}

#v3-category .categoires-main-row-box-slider-style .category-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#v3-category .categoires-main-row-box-slider-style .category-item {
    min-width: 96px;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
}


.slider-product-box-section .owl-dots {
    display: none;
}


.slider-product-box-section .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #edebe9;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.slider-product-box-section .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #edebe9;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.slider-product-box-section .product-box {
    position: relative;
    height: 450px;
    text-decoration: none;
    color: white;
    display: inline-block;
    border-radius: 1rem;
    width: 100%;
    background-color: #fafafa;
}

.slider-product-box-section .overlay-style {

    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.253);
    border-radius: 1rem;
    z-index: 2;
}

.slider-product-box-section .inner-img-style {
    border-radius: 1rem;
    overflow: hidden;
}

.slider-product-box-section .inner-img-style img {
    border-radius: 1rem;
    transition: 0.3s;
    z-index: 3;
}

.slider-product-box-section .product-box:hover .inner-img-style img {
    transform: scale(1.2, 1.2);
}




.slider-product-box-section .content-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    padding: 15px 20px;
    width: 100%;
}

.slider-product-box-section .arrow-btn-style-set svg {
    transition: 0.3s;
}

.slider-product-box-section .product-box:hover .arrow-btn-style-set svg {
    transform: rotate(90deg);
}






.slider-product-box-section .content-inner-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    padding: 15px 20px;
    width: 100%;
    color: black;
}

.slider-product-box-section .content-inner-1 .arrow-btn-style-set svg {
    transition: 0.3s;
}

.slider-product-box-section .content-inner-1 .slider-product-box-section .product-box:hover .arrow-btn-style-set svg {
    transform: rotate(90deg);
}

.slider-product-box-section .top-p-main-img {
    border-radius: 1rem;
    overflow: hidden;
    height: 355px;
}





.slider-product-box-section .line-bar-style-hover {
    height: 2px;
    width: 0;
    background-color: white;
    transition: 0.3s;
}

.slider-product-box-section .product-box:hover .line-bar-style-hover {
    width: 100%;
}


.slider-product-box-section .content-inner-1 .line-bar-style-hover {
    height: 2px;
    width: 0;
    background-color: black;
    transition: 0.3s;
}

.slider-product-box-section .product-box:hover .line-bar-style-hover {
    width: 100%;
}


.shop-categories-box-section h2 {
    font-weight: 400;
}


.shop-categories-box-section .inner-categories-box {
    text-decoration: none;
    color: white;
    position: relative;
    height: 408px;
    display: inline-block;

}

.shop-categories-box-section .inner-categories-box .img-container-box {
    overflow: hidden;
    height: 100%;
}

.shop-categories-box-section .inner-categories-box h4 {
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    z-index: 2;
}

.shop-categories-box-section .inner-categories-box .main-image {
    transition: 0.3s;

}

.shop-categories-box-section .inner-categories-box:hover .main-image {
    transform: scale(1.1, 1.1);

}


.overlay-style {
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.253);
    width: 100%;
    height: 100%;
    opacity: 0.2;
    transition: 0.3s;

}

.shop-categories-box-section .inner-categories-box:hover .overlay-style {
    opacity: 1;
}

.shop-by-categories-section .top-heading h2 {
    font-size: 30px;
    font-weight: bold;
}


.shop-by-categories-section .top-heading a {
    font-weight: 500;

    color: black;

}

.box-style-set .img-style {
    width: 100px;
    height: 100px;
    border-radius: 50%;

}

.box-style-set .img-style img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.box-style-set .heading-style {
    font-size: 15px;
}

.border-cont-style-set {
    /* border: 1px solid #e5e5e5; */

}

.box-set {
    border: 1px solid #e5e5e5;
}