@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #161616;
    --secondary-color: #010203;
    --third-color: #000000;
    --bg-white: #fff;
    --jost: "Jost", sans-serif;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Jost", sans-serif;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
a {
    text-decoration: none;
    color: var(--third-color);
}

body {
    overflow-x: hidden;
    font-family: "Jost", sans-serif;
}
.min-h-100{
    min-height: 100vh;
}
/*--- header-starts ---*/

header 
{
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--secondary-color);
    transition: 0.3s ease;
    z-index: 999;
    margin-bottom: 0
}
header:hover{
    background: var(--secondary-color) !important;
}
.homepage header{
    position: fixed;
    background: transparent;
} 
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1920px;
    margin: 0 auto;
}
.cartlistbody:first-child {
    display: block;
}

.cartlistbody {
    display: none;
}

.sidecart-qtantity-handle
{
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-right: 15px;
    padding: 8px;
    border: 1px solid;
    user-select: none;  
}
.sidecart-qtantity-handle .updatequantitybox{
    cursor: pointer;
}

header:hover .logo,
header:hover .nav-links a,
header:hover .icons i,
header:hover .hamburger {
    /* color: black; */
}

.logo {
    width: 150px;
}

.navbar .logo img {
    width: 100px;
}

nav {
    flex: 1;
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px       ;
    /* border: 2px solid red; */
    margin: 0;
}

.nav-links li {
    list-style: none;
    position: relative;
}

.nav-links li:hover a {
    color: var(--secondary-color);
}

.nav-links a {
    text-decoration: none;
    color: var(--bs-white);
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
    transition: 0.3s;

    letter-spacing: .8px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    left: 50%;
    bottom: 0;
    background: var(--bg-white);
    transform: translateX(-50%);
    transition: 0.4s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-color);
    min-width: 150px;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.dropdown a {
    padding: 8px 15px;
    color: var(--third-color);
}

.nav-links li:hover .dropdown {
    display: flex;
}

.search-profile {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

.search-profile .search-div {
    /* border: 2px solid red; */
    position: relative;
}

.search-profile .search-div i {
    font-size: 20px;
    position: absolute;
    top: 2px;
    right: 10px;
    color: var(--secondary-color);
    cursor: pointer;
}

.search-bar {
    padding: 5px 10px;
    border-radius: 20px;
    border: none;
    outline: 1px solid var(--third-color);
    background-color: var(--primary-color);
}

.icons {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.icons i {
    font-size: 18px;
    cursor: pointer;
    color: var(--bg-white);
}
.icons .cart-icon
{
    position: relative;
}
.icons .cart-icon .icon-header-noti{
    position: absolute;
    width: 23px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    right: -16px;
    top: -50%;
    font-size: 10px;
}
.profile-box {
    position: absolute;
    width: 150px;
    top: 50px;
    right: 0;
    background-color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    border-radius: 8px;
}

.profile-box a {
    padding: 8px 16px;
    text-decoration: none;
    border: none;
    background: var(--primary-color);
    color: var(--bg-white);
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    justify-content: center;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    text-align: end;
}
.searchBox form
{
    position: relative;
    display: flex;
    height: 32px;
    width: 100%;
    max-width: 266px;
}
.searchBox form span
{
    position: absolute;
    height: 1px;
    bottom: 0;
    width: 0;
    right: 0;
    transition: 1s;
    background: var(--bg-white);
}
.searchBox form:hover span,
.searchBox form:has(input:focus) span
{
    width: 100%;
}
.searchBox form input
{
    position: relative;
    background: var(--secondary-color);
    width: 100%;
    outline: none;
    border: none;
    height: 100%;
    padding: 2px 9px;
    padding-right: 42px;
    color: var(--bg-white);
}
.homepage .searchBox form input
{
    background: transparent;
}
.searchBox form input::placeholder
{
    color: transparent;
    transition: 1s;
}
.searchBox form:hover input::placeholder,
.searchBox form:has(input:focus) input::placeholder
{
    color: inherit;
}
.searchBox form .searchtoggle{
    position: absolute;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
}
/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: var(--secondary-color);
    padding: 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: 0.4s ease;
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--bg-white);
    font-size: 1rem;
    text-decoration: none;
}

.mobile-dropdown {
    display: none;
    flex-direction: column;
    padding-left: 15px;
    padding-block: 10px;
    gap: 8px;
    box-shadow: 0px 0px 2px #9b09099f;
    border-radius: 8px;
}

.has-dropdown.open .mobile-dropdown {
    display: flex;
}

.mobile-icons {
    display: flex;
    flex-direction: column;
    gap: 13px;
    align-items: start;
    margin: 10px 10px;
}

.mobile-icons .icons .profile-box {
    display: flex;
    top: 80px;
    left: 0px;
    padding: 0px;
    border: 2px solid var(--third-color);
    gap: 2px;
    background-color: var(--third-color);
    width: 200px;
}

.mobile-icons .icons .profile-box a:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.mobile-icons .cart-pro {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
}

.mobile-icons .search-div {
    /* border: 2px solid red; */
    position: relative;
    width: 100%;
}

.mobile-icons .search-div input {
    width: 100%;
}

.mobile-icons .search-div i {
    font-size: 20px;
    position: absolute;
    top: 2px;
    right: 10px;
    color: rgba(0, 0, 0, 0.326);
    cursor: pointer;
}

#closeMenu {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
    text-align: right;
    margin-bottom: 1rem;
}


.nav-links li a:is(:hover, .active)::after {
    width: 100%;
}

.nav-links.active {
    display: flex;
}

.nav-links li a {
    color: var(--bg-white) !important;
    text-transform: uppercase;
}

.mobile-menu a.active {
    color: var(--bg-white);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1075px) {

    .search-profile,.nav-links{
        display: none;
    }
    
    .hamburger {
        display: flex;
        justify-content: end;
    }
}


/* Optional: Push page content down */
body.homepage {
    padding-top: 0 !important;
}

/*--- header-ends ---*/
.bread-crumb a {
    color: #000000;
}

/*--- main-starts ---*/

main {
    /* border: 5px solid green; */
    max-width: 1920px;
    margin: 0 auto;
    margin-top: -12px;
}

main .banner-section {
    position: relative;
    /* aspect-ratio: 1700/1000; */
    height: 103dvh;
    padding: 30px 0;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}

main .banner-section .animate--zoom-in {
    /* content: ''; */
    position: absolute;
    inset: 0;
    background: linear-gradient(#0000, #0000), var(--bg);
    background-attachment: fixed;
    -webkit-background-attachment:fixed;
    background-size: calc(var(--zoom-in-ratio));
    transition: 0.2s linear;
    background-position: center center;
    /* filter: blur(10px); */
    /* background-repeat: no-repeat; */
}

/* main .banner-section img {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
} */

main .banner-section .animate--zoom-in {
    /* --zoom-in-ratio: 1; */

}

main .banner-section .text-btn {
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
}

.section :is(h1, h2, h3),
main .banner-section .text-btn p,
.featured-section h2 {
    color: var(--primary-color);
    font-weight: 800;
    text-shadow: 0 0 2px #212121cf;
    letter-spacing: .32px;
    text-shadow: 1px 1px #fff;
    text-transform: capitalize;
}
.featured-section{
    background: #000 !important;
}
.featured-section h2
{
    font-weight: 500;
}
main .banner-section .text-btn a:not(.section-link) {
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    color: var(--primary-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    overflow: hidden;
    cursor: pointer;
    transition: color 0.4s ease;
    z-index: 1;

    text-shadow: 1px 1px #fff;
}

main .banner-section .text-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: var(--primary-color);
    z-index: -1;
    transition: width 0.4s ease;
}

main .banner-section .text-btn a:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

main .banner-section .text-btn a:hover {
    color: var(--third-color);
}

@media(max-width:768px) {
    main .mobile_banner .banner-section{
        position: sticky;
        height: 100dvh;
        overflow: hidden;
        top: 0;
        padding: 0;
    }

    main .banner-section .parallax-img {
        position: absolute;
        top: 0;
        transform: scale(1);
        width: 100%;
        height: 100dvh;
        will-change: transform;
        transition: 0.8s;
        min-height: 100dvh;
        object-fit: cover;
    }
    .zoom-img {
        transition: transform 0.1s linear;
    }
    main .banner-section .text-btn p {
        font-size: 20px;
    }

    main .banner-section .text-btn a {
        font-size: 12px;
    }
}

/*--- first-sec-start ---*/

/*--- first-sec-ends ---*/


/*--- shop-page-starts ---*/
.product-page .product-img-thumbnail {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.product-page .product-img-thumbnail .thumbnail {
    transition: 0.4s;
    cursor: pointer;
    border: 1px solid var(--third-color);
    border-radius: 10px;
    overflow: hidden;
}

.product-page .product-img-thumbnail .thumbnail.active {
    opacity: 0.6;
    border: 1px solid var(--secondary-color);
}
@media(max-width:768px) {
    .product-page .product-img-thumbnail {
        flex-direction: row;
        justify-content: center;
        padding: 1rem 0;
        overflow-x: auto;
        gap: 0.6rem;
    }
    .product-page .product-img-thumbnail .thumbnail{
        min-width: 30px;
        border-radius: 50%;
        width: 30px;
        aspect-ratio: 1;
    }
}
.product-page .price {
    font-size: 1.2rem;
    font-weight: 600;
}

.product-page .price .mrp {
    text-decoration: line-through;
    color: #ccc;
}

.product-page .price .save {
    position: relative;
    display: inline-block;
    background: var(--third-color);
    padding: 0 1rem;
    color: #fff;
    /* justify-content: center; */
    /* align-items: end; */
}
.cart-table:not(:last-child){
    border-bottom: 1px solid #bbb;
}
.product-page .quantitiy-box>div,
.cart-table .quantitiy-box>div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 132px;
    height: 52px;
    border: 2px solid var(--secondary-color);
}

.product-page .quantitiy-box>div>input,
.cart-table .quantitiy-box>div>input {
    flex: 1;
    width: 40px;
    border: none;
    pointer-events: none;
    text-align: center;
}

.product-page .quantitiy-box>div>span,
.cart-table .quantitiy-box>div>span {
    position: relative;
    min-width: 45px;
    aspect-ratio: 1;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}
.removeproductbtn
{
    cursor: pointer;
}
.removeproductbtn:hover{
    color: var(--bs-danger);
}
.product-page .position-sticky{
    position: sticky;
    top: 1rem;
}

.product-page .bullet-icons
{
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}
.product-page .bullet-icons img{
    min-width: 80px;
    width: 80px;aspect-ratio: 1;
    object-fit: contain;
}


@media(max-width:768px) {
    .product-page .bullet-icons img{
        flex-grow: 1;
        max-width: 30px;
    }
}
.product__details__pic__slider .item img{
    aspect-ratio: 1 !important;
    object-fit: contain;
}
.product__details__pic__slider .owl-dots
{
    display: none;
}
.product__details__pic__slider .owl-nav button
{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    text-align: center;
    background: #010203 !important;
    color: #fff !important;
    padding: 3px 0px !important;
    transition: .3s;
}
.product__details__pic__slider .owl-nav button.owl-next{
    right: 0;
    left: auto;
}
.product__details__pic__slider .owl-nav button:hover{
    background: #fff !important;
    color: #010203 !important;
}
.keywords{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.keywords span
{
    padding-right: 14px;
    border-right: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}
.keywords span:last-child{
    border: none;
}
.addtocart-quantity 
{
    display: flex;
    gap: 10px;
}
.size-wrapper label{
    background: #fff;
    color:#1e1e1e;
    
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
    padding: 4px 15px;
    border-radius: 6px;
    border: 1px solid rgba(30, 30, 30, .1);
    margin: 10px 0;
}
.size-wrapper label input 
{
    opacity: 0;
    appearance: none;
}

.size-wrapper label:has(input:checked) {
    background: #1e1e1e;
    color: #fff;
}

.accordion-button:focus{
    box-shadow: none !important;
}
.accordion-button:not(.collapsed)::after{
    filter: invert(1);
}
/* END */
/* PRODUCT CARD */
.product .card .wishlist-remove-btn {
    position: absolute;
    top: -3px;
    right: 5px;
    color: var(--secondary-color) !important;
    font-size: 18px;
    margin: 0;
    padding: 0;
}

.product .card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 0;
}

.product .card .img-box
{
    position: relative;
    transition: 0.4s;
    overflow: hidden;
    aspect-ratio: 1;
}

.product .card img 
{
    max-width: 100%;
    display: block;
    aspect-ratio: 1;
    transition: 0.4s;
    object-fit: cover;
    position: absolute;
    top: 0;
}
.product .card:hover .img-box:has(.second-img) img:nth-child(2){
    opacity: 0;
}
.product .card:hover .img-box img
{
    transform: scale(1.1);
}
.shop {
    max-width: 1920px;
    margin: 0 auto;
    height: 100%;
    /* background-color: #980d0d; */
    margin-top: -12px;
    padding: 20px 30px;
    /* border: 2px solid red; */
}

.shop .new-arrivals {
    display: flex;
    flex-direction: column;
    gap: 3px;
    display: flex;
    padding: 15px 0;
}

.shop .new-arrivals h1 {

    font-weight: 700;
    color: var(--secondary-color);
}

.shop .new-arrivals .btn {
    /* border: 2px solid orange; */
    display: flex;
    justify-content: center;
}

.btn,
.shop .new-arrivals .btn .see-more {
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    color: var(--secondary-color);
    border-radius: 0;
    background: transparent;
    border: 2px solid var(--secondary-color);
    overflow: hidden;
    cursor: pointer;
    transition: color 0.4s ease;
    z-index: 1;

}

.btn::before,
.shop .new-arrivals .btn .see-more::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: var(--secondary-color);
    z-index: -1;
    transition: width 0.4s ease;
}

.btn:hover::before,
.shop .new-arrivals .btn .see-more:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.btn:is(:hover,:active:focus),
.shop .new-arrivals .btn .see-more:hover {
    color: var(--bg-white);
    background: unset;
    border-color: var(--secondary-color) !important;
    box-shadow: none !important;
}

.product-carousel .card,
.female-carousel .card {
    background: var(--primary-color);
    border-radius: 5px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    margin: 0px;
    border: 1px solid #8e161633;
    transition: .3s;
}

.product-carousel .img-box,
.female-carousel .img-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-carousel .img-box img,
.female-carousel .img-box img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    height: auto;
    display: block;
    transition: transform 1s ease;
}

.product-carousel .card:hover .img-box img,
.female-carousel .card:hover .img-box img {
    transform: scale(1.1);
    /* Food hover effect */
}
.product-carousel .info,
.product .card .info,
.female-carousel .info {
    padding: 15px 0;
    text-align: center;
    height: 100%;
}

.product-carousel .info h4,
.product .card .info h4,
.female-carousel .info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--secondary-color);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}

.product-carousel .info p,
.product .card .info p,
.female-carousel .info p {
    margin: 5px 0 0;
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 12px;
}
@media (max-width:992px) {
    .product-carousel .info p,
    .product .card .info p,
    .female-carousel .info p {
        flex-direction: column;
        gap: 1px;
    }
}
.product-carousel .info span.mrp,
.product .card .info span.mrp,
.female-carousel .info span.mrp {
    color: #666;
    text-decoration: line-through;
}

.product-carousel .info h4{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}


.product-carousel-1 .card {
    background: var(--primary-color);
    border-radius: 5px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    margin: 0px;
    border: 1px solid #8e161633;
    transition: .3s;
}

.product-carousel-1 .img-box {
    width: 100%;
    overflow: hidden;
}

.product-carousel-1 .img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s ease;
}

.product-carousel-1 .card:hover .img-box img {
    transform: scale(1.1);
    /* Food hover effect */
}

.product-carousel-1 .info {
    background: #f5f5f5;
    padding: 15px;
    text-align: center;
}

.product-carousel-1 .info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.product-carousel-1 .info p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

.grid-list-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--col), 1fr);
    gap: 1rem;
}

.grid-list-container.col4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-list-container.col3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-list-container.col2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-list-container.col1 {
    grid-template-columns: repeat(1, 1fr);
}

.toolbar-item {
    display: block;
    position: relative;
    z-index: 2;
    font-size: 0;
    letter-spacing: 0;
}

.toolbar-item .toolbar-icon {
    display: inline-block;
    vertical-align: middle;
    width: 26px;
    height: 26px;
    padding: 3px;
    border: 1px solid #333;
    opacity: .5;
}

.toolbar-item .toolbar-icon.active {
    opacity: 1;
}

.toolbar-item .toolbar-icon.grid-2 {
    width: 19px;
}

.toolbar-item .toolbar-icon.grid-4 {
    width: 33px;
}


.toolbar-item .toolbar-icon .icon {
    width: 20px;
    height: 100%;
}

.toolbar-item .toolbar-icon.grid-5,
.toolbar-item .toolbar-icon.grid-4,
.toolbar-item .toolbar-icon.grid-3 {
    /* display: none; */
}

.toolbar-item .toolbar-icon.active {
    background-color: var(--bg-white);
}

.toolbar-item .toolbar-icon+.toolbar-icon {
    margin-left: 5px;
}

.toolbar-item .toolbar-icon.icon-mode {
    position: relative;
    cursor: pointer;
}

.toolbar-item .toolbar-icon:before {
    width: 4px;
    height: 18px;
}

.toolbar-item .toolbar-icon.icon-mode:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    background-color: #333;
}

.toolbar-item .toolbar-icon.icon-mode.active:before {
    background-color: #333;
}

.toolbar-item .toolbar-icon.icon-mode-list:before {
    width: 18px;
    height: 4px;
    box-shadow: 0 7px 0 #333, 0 14px 0 #333;
}

.toolbar-item .toolbar-icon.icon-mode-list.active:before {
    box-shadow: 0 7px 0 #333, 0 14px 0 #333;
}

.toolbar-item .toolbar-icon.grid-2:before {
    box-shadow: 7px 0 0 #333
}

.toolbar-item .toolbar-icon.grid-3:before {
    box-shadow: 7px 0 0 #333, 14px 0 0 #333;
}

.toolbar-item .toolbar-icon.grid-4:before {
    box-shadow: 7px 0 0 #333, 14px 0 0 #333, 21px 0 0 #333;
}

.toolbar-col .toolbar-item {
    display: inline-block;
    vertical-align: middle;
}

@media(max-width:540px) {
    .grid-list-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px) {

    .shop .new-arrivals h1 {
        font-size: 22px;
    }

    .shop {
        padding: 20px 10px;

    }

    .shop .new-arrivals .btn .see-more {
        font-size: 13px;
        padding: 5px 10px;

    }
}

/*--- shop-page-ends ---*/

/*--- about-starts-here ---*/

.about {
    /* border: 2px solid red; */
    max-width: 1920px;
    margin: 0 auto;
}

.about .banner {
    width: 100%;
    height: 80vh;
    background-image: url(../img/about/about-banner-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 0px 30px;
}

.about .banner .text {
    /* border: 2px solid red; */
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.about .banner .text h1 {
    color: var(--primary-color);
    font-size: 50px;

    font-weight: 600;
}

.about .banner .text p {
    color: var(--primary-color);

    font-size: 20px;
    letter-spacing: .40px;
    text-align: center;
}

.about .banner .text a {
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    color: var(--primary-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    overflow: hidden;
    cursor: pointer;
    transition: color 0.4s ease;
    z-index: 1;

}

.about .banner .text a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: #f8eedf27;
    z-index: -1;
    transition: width 0.4s ease;
}

.about .banner .text a:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.about .banner .text a:hover {
    color: var(--primary-color);
}

.about .banner a img {
    width: 150px;
    animation: banner-logo 2s infinite alternate;


}

@keyframes banner-logo {
    0% {
        filter: brightness(1.5);
    }

    100% {
        filter: brightness(.8);
    }
}

.about .animation-text {
    width: 100%;
    overflow: hidden;
    background: #fff8f0;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
}

.about .animation-text .marquee-wrapper {
    display: flex;
    width: max-content;
    white-space: nowrap;
}

.about .animation-text .marquee-wrapper .marquee-text {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
    /* Space between loops */
    color: #222;
}

.about .animation-text .marquee-wrapper .marquee-text img {
    width: 100px;
}

.about .scroll-section {
    /* border: 2px solid red; */
    padding: 30px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.about .scroll-section .first-img {
    position: relative;
    width: 40%;
    height: 80%;
    height: auto;
    overflow: hidden;
}

.about .scroll-section .first-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Black sliding overlay */
.about .scroll-section .first-img .overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    transition: left 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

/* Centered text inside the overlay */
.about .scroll-section .first-img .overlay-text {
    color: white;
    font-size: 1.5rem;

    letter-spacing: .33px;
    text-align: center;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}

/* Hover effect */
.about .scroll-section .first-img:hover .overlay {
    left: 0;
}

.about .scroll-section .first-img:hover .overlay-text {
    opacity: 1;
    transform: scale(1);
}




.about .scroll-section .second-img {
    /* border: 2px solid rgb(0, 0, 128); */
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .scroll-section .second-img .img {
    /* border: 5px solid rgb(0, 128, 23); */
    overflow: hidden;
    width: 80%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .scroll-section .second-img img {
    width: 100%;
    height: 100%;
}


.about .scroll-section .second-img {
    position: relative;
    width: 40%;
    height: 80%;
    height: auto;
    overflow: hidden;
}

.about .scroll-section .second-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Black sliding overlay */
.about .scroll-section .second-img .overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    transition: left 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

/* Centered text inside the overlay */
.about .scroll-section .second-img .overlay-text {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}

/* Hover effect */
.about .scroll-section .second-img:hover .overlay {
    left: 0;
}

.about .scroll-section .second-img:hover .overlay-text {
    opacity: 1;
    transform: scale(1);
}

.about .scroll-section .first-img img,
.about .scroll-section .second-img img {
    clip-path: inset(0% 0% 0% 0%);
    transition: clip-path 1s ease;
}

/*--- text-in-about-starts ---*/

.about .text-section {
    padding: 10px 20px;
    padding-top: 80px;
    background-color: #f5f5f5;
}

.about .text-section .text-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1220px;
    margin: 0 auto;
    align-items: flex-start;
    /* border: 2px solid olive; */
    gap: 40px;
}

.about .text-section .text-container .text-heading {
    flex: 1 1 30%;
}

.about .text-section .text-container .text-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;

    color: #333;
}

.about .text-section .text-content {
    flex: 1 1 65%;
}

.about .text-section .text-content p {
    font-size: 1.1rem;

    line-height: 1.8;
    text-align: justify;
    color: #555;
}



.testimonial-section {
    width: 100%;
    padding: 30px 0;
    background: #f5f5f5;
}

.testimonial-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px;
    /* border: 3px solid rgb(0, 15, 128); */
}

.testimonial-item .testimonial-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* border: 3px solid green; */
    width: 60%;
}

.testimonial-img {
    flex: 50% 50% 50%;
}

.testimonial-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.testimonial-text {
    flex: 1 1 50%;
    padding: 20px;
}

.testimonial-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.testimonial-text p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
    text-align: justify;
    width: 100%;
    /* border: 2px solid red; */
}

.testimonial-text h4 {
    font-weight: bold;
    color: #555;
}

/* Responsive */

@media (max-width: 1650px) {
    .testimonial-item .testimonial-content {
        width: 80%;
    }
}

@media (max-width: 1400px) {
    .testimonial-item .testimonial-content {
        width: 100%;
    }
}

@media (max-width: 820px) {

    .about .text-section {
        padding: 30px 20px;
    }


    .testimonial-section {
        padding: 10px 0;
    }

    .testimonial-item {
        padding: 10px 10px;
    }

    .testimonial-item .testimonial-content {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .testimonial-item {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-text {
        padding: 10px 0;
    }
}



/* Responsive */
@media(max-width:1222px) {
    .about .text-section .text-container .text-heading h2 {
        font-size: 1.8rem;
    }
}

@media(max-width:910px) {
    .about .text-section .text-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .about .text-section .text-container {
        flex-direction: column;
    }

    .about .text-section .text-container .text-heading,
    .about .text-section .text-content {
        flex: 1 1 100%;
    }

    .about .text-section .text-container .text-heading .text-heading h2 {
        font-size: 2rem;
    }

    .about .text-section .text-content p {
        font-size: 1rem;
    }
}

/*--- text-in-about-end ---*/



@media(max-width:780px) {
    .about .banner .text h1 {
        font-size: 30px;
    }

    .about .banner .text p {
        font-size: 16px;
    }
}

@media(max-width:700px) {

    .about .scroll-section .first-img {
        width: 50%;
        height: 100%;
    }

    .about .scroll-section .second-img {
        width: 50%;
        height: 100%;
    }
}

@media(max-width:500px) {

    .about .banner {
        padding: 0px 10px;
    }

    .about .banner .text h1 {
        font-size: 25px;
    }

    .about .banner .text p {
        font-size: 13px;
    }

    .about .animation-text .marquee-wrapper .marquee-text {
        font-size: 14px;
        color: var(--third-color);
    }

    .about .scroll-section {
        flex-direction: column;
        gap: 20px;
        padding: 30px 10px;
    }

    .about .scroll-section .first-img {
        width: 90%;
        height: 100%;
    }

    .about .scroll-section .second-img {
        width: 90%;
        height: 100%;
    }
}

@media(max-width:375px) {

    .about .banner .text h1 {
        font-size: 20px;
    }

    .about .banner .text p {
        font-size: 12px;
    }

    .about .animation-text .marquee-wrapper .marquee-text img {
        width: 60px;
    }
}

/*--- about-ends-here ---*/

/*--- contact-page-starts ---*/
form .form-control
{
    border-radius: 0;
}
form .form-control:is(:focus,:active)
{
    box-shadow: none !important;
    border-color: var(--primary-color) !important;
}
form .form-control:is(:user-invalid){
    border-color: #f00;
}
/*--- contact-page-ends ---*/

.female-cat {
    margin: 0 auto;
    max-width: 1920px;
    padding: 10px 30px;
    background-color: #f5f5f5;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: #f5f5f5;
    padding: 10px 00px;
    border-radius: 12px;
    margin-bottom: 0px;
}

.header h1 {
    font-size: 35px;
    color: #222;

    font-weight: 700;
    color: var(--secondary-color);
}

.price-filter {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-select {
    padding: 10px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 15px;

    cursor: pointer;
    transition: 0.3s;
}

.price-select:hover {
    border-color: var(--secondary-color);
    background-color: #fff;
    color: var(--secondary-color);
}

.selected-price {
    margin-top: 10px;
    font-size: 15px;
    color: var(--secondary-color);
}


.female-cat .new-arrivals .female-carousel {
    padding: 20px 0px;
}


@media (max-width: 600px) {

    .price-filter {
        align-items: flex-start;
        margin-top: 20px;
    }

    .header h1 {
        font-size: 25px;
    }
}

@media (max-width: 500px) {
    .female-cat {
        padding: 10px 10px;
    }

    .price-select {
        font-size: 13px;
    }

    .female-cat .new-arrivals .female-carousel {
        padding: 10px 0px;
    }
}

@media (max-width: 420px) {

    .header {
        padding: 0;
    }

    .header h1 {
        font-size: 20px;
    }

    .female-cat {
        padding: 10px 10px;
    }

    .price-select {
        padding: 8px 10px;
        font-size: 12px;

    }

    .price-select {
        font-size: 12px;
    }
}

/*--- categories-page-starts ---*/



/*--- profile-starts ---*/

.profile-section {
    width: 100%;
    padding: 80px 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.profile-container {
    width: 100%;
    max-width: 800px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item label {
    font-weight: bold;
    color: #555;
    display: block;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1.05rem;
    color: #333;
    margin: 0;
}

.profile-info input,
.profile-info textarea,
.wishlist ul li input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}


.wishlist {
    margin-top: 20px;
    border-radius: 10px;
    padding: 10px 0px;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.14);
}

.wishlist h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    padding: 10px 30px;
}

.wishlist ul {
    list-style-type: disc;
    padding-left: 20px;
    list-style: none;
    /* border: 2px solid green;  */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wishlist ul li {
    margin-bottom: 10px;
    color: #222;
    font-size: 1rem;
    /* border: 2px solid rgb(15, 0, 128);  */
    display: flex;
    justify-content: space-around;
}


.wishlist ul li .card {
    background: var(--primary-color);
    width: 30%;
    border-radius: 5px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    margin: 0px;
    border: 1px solid #8e161633;
    transition: .3s;
}

.wishlist ul li .card .img-box {
    width: 100%;
    overflow: hidden;
}

.wishlist ul li .card .img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s ease;
}

.wishlist ul li .card:hover .img-box img {
    transform: scale(1.1);
    /* Food hover effect */
}

.wishlist ul li .info {
    background: #f5f5f5;
    padding: 5px 5px;
    text-align: center;
}

.wishlist ul li .info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.wishlist ul li .info p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

@media (max-width: 730px) {
    .wishlist ul li .card {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .profile-container {
        padding: 25px 15px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .wishlist h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 450px) {
    .wishlist ul li .card {
        width: 47%;
    }

    .wishlist ul {
        padding: 0px;
    }

    .wishlist ul li .info h4 {
        font-size: 13px;
    }

    .wishlist ul li .info p {
        font-size: 12px;
    }

}

/*--- profile-ends ---*/


/*--- log-in-form-starts ---*/


.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    outline: none;
    border: none;
}

.form-group input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
    border: none;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.login-btn {
    width: 100%;
    padding: 12px;
    border: 2px solid transparent;
    background-color: var(--secondary-color);
    color: white;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background-color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
}

.showpassword {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #333;
}

.showpassword {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #333;
}

@media (max-width: 500px) {
    .login-container {
        padding: 30px 20px;
    }
}



.thank-you {
    /* border: 5px solid red; */
    max-width: 1920px;
    height: 90dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    padding: 30px 0px;
}

.thank-you .thankyou-container {
    text-align: center;
    /* border: 5px solid red; */
    background: #fff0ea;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

.thank-you .thankyou-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #b4574f;
}

.thank-you .thankyou-container p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 5px;

}

.thank-you .thankyou-container p strong {
    font-weight: 700;
    color: #222;

}

.thank-you .thankyou-container .shop-btn {
    display: inline-block;
    background-color: #b4574f;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    opacity: 1;
}

.thank-you .thankyou-container .shop-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}



.customer-id-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    /* border: 2px solid green; */
    margin-top: 20px;
}

.customer-id-box p {
    margin-top: 30px;
    padding: 0;
    margin-bottom: 0;

}

.copy-wrapper {
    background-color: #fff;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

#customerId {
    font-weight: bold;
    color: #333;
    user-select: text;
}

.copy-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 600;
}

.copy-btn:hover {
    background-color: var(--bg-white);
}

.copy-msg {
    position: absolute;
    right: -70px;
    opacity: 0;
    color: green;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

@media(max-width:600px) {

    .thank-you {

        height: auto;
    }

    .thank-you .thankyou-container h1 {
        font-family: 'Playfair Display', serif;
        font-size: 25px;
        margin-bottom: 10px;
    }

    .thank-you .thankyou-container p {
        font-size: 17px;
    }

    .thank-you .thankyou-container .shop-btn {
        padding: 12px 20px;
        font-size: 13px;

    }
}

/*--- footer-starts ---*/
.footer {
    background-color: var(--primary-color);
    font-size: 15px;
    color: var(--bg-white);
}

.footer h2,
.footer h3,
.footer h4 {
    font-size: 16px;
    color: var(--secondary-color);

}

.footer ul li 
{
    padding: 0;
    margin: 0 0 10px 0;
}
.footer ul li a{
    text-transform: uppercase;
}

.footer a,
.footer p {
    color: rgba(var(--inverse-color-rgb), 0.6);
    transition: .4s;
    text-decoration: none;

}

.footer a:hover {
    /* color: var(--secondary-color); */
    letter-spacing: 2px;
}

.footer a .badge {
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}

.footer a:hover .badge {
    background-color: rgba(var(--bs-primary-rgb), 1);
    color: var(--bs-white);
}

.footer .quick-contact i {
    color: var(--inverse-color);
}

.footer .credits {
    font-size: 13.5px;
}
#newslatterform
{
    position: relative;
}
#newslatterform input{
    border-radius: 10px;
    background: #ffffff12;
    padding: 16px 20px;
    padding-right: 56px;
    height: auto;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    width: 100%;
    border: none;
    outline: none;
}
#newslatterform button
{
    position: absolute;
    right: 4px;
    bottom: 4px;
    top: 5px;
    width: 46px;
    border: none;
    outline: none;
    background: #fff;
    border-radius: 8px;
}
#newslatterform button svg{
    fill:var(--primary-color);
}
/* CHECK OUT FORM */
#checkoutform :is(input,select) {
    position: relative;
    border: 1px solid var(--bs-border-color);
    padding: 10px 15px;
    border-radius: 0;
}

#checkoutform .paymentmodecheck {
    position: relative;
    border: 1px solid var(--secondary-color);
    cursor: pointer;
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    user-select: none;
    align-items: center;
    height: 46px;
}

#checkoutform .paymentmodecheck:has(input:checked) {
    background: var(--secondary-color);
    color: #fff;
}

#checkoutform .paymentmodecheck input {
    appearance: none;
    border: none;
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
}

.newarrivals-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/newarrivals.webp);
    background-position: center;
    /* background-attachment: fixed; */
    background-size: cover;
    min-height: 50dvh;
    animation: movebg 30s linear infinite;
}

@keyframes movebg {

    0%,
    100% {
        background-position: 100px -60px;
    }

    50% {
        background-position: -100px -60px;
    }
}

.newarrivals-section::before {
    content: '';
    inset: 03px;
    background: #fff4;
    position: absolute;
    backdrop-filter: blur(4px);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.newarrivals-section .btn {
    background: #000000;
    color: var(--bs-white);
    border-color: var(--bg-white);
}

.reivew-section .review-text p {
    white-space: pre-line;
}

.rate-wrapper {
    user-select: none;
}

.rate-wrapper i {
    cursor: pointer;
}

.fixed-btn a {
    position: fixed;
    bottom: 4rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    z-index: 9999;
    display: flex;
    color: var(--bg-white);
    font-size: 1.4rem;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.fixed-btn a.whatsapp {
    background: var(--bs-success);
}


.home-video video {
    position: relative;
    width: 100%;
    height: 100dvh;
    object-fit: cover;
    background: var(--primary-color);
}

/* PROFILE CSS */
.profile-wrapper .profile-head
{
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}
.profile-wrapper .profile-head p{
    word-break: break-word;
}
.profile-wrapper .profile-head img{
    width: 100px;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}
.profile-wrapper .profile-sidebar-menu{
    list-style: none;
    padding-left: 0;
}
.profile-wrapper .profile-sidebar-menu li:last-child a{
    text-align: center;
}
.profile-wrapper .profile-sidebar-menu li a
{
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--bg-white);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-weight: 600;
    transition: .3s;
    margin-bottom: 10px;
}
.profile-wrapper .profile-sidebar-menu li.active a,
.profile-wrapper .profile-sidebar-menu li a:hover
{
    border-color: var(--bg-white);
}
/* PROFILE CSS */

/* popmodal */
.popmodal
{
    border: 12px;
    background: #eee;
    display: inline-block;
    visibility: hidden;
    display: none;
    opacity: 0;
    transition: 0.4s;
}
.popmodal.show
{
    opacity: 1;
    display: inline-block;
    visibility: visible;
}
.popmodal.err{
    background: #ff000040;
    color: #ff0000;
}
.popmodal.scs{
    background: #156d004f;
    color: #156d00;
}
/* popmodal */