
    @import url('https://fonts.googleapis.com/css2?family=Poppins: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&display=swap');

:root{

    --spanish-gray: hsl(0, 0%, 60%);
    --sonic-silver: hsl(0, 0%, 47%);
    --eerie-black: hsl(0, 0%, 13%);
    --salmon-pink: hsl(352.8, 46.6%, 45.5%);
    --sandy-brown: hsl(29, 90%, 65%);
    --bittersweet: hsl(0, 100%, 70%);
    --ocean-green: hsl(152, 51%, 52%);
    --davys-gray: hsl(0, 0%, 33%);
    --cultured: hsl(0, 0%, 93%);
    --white: hsl(0, 100%, 100%);
    --onyx: hsl(0, 0%, 27%);

    --fs-1: 1.563rem;
    --fs-2: 1.375rem;
    --fs-3: 1.25rem;
    --fs-4: 1.125rem;
    --fs-5: 1rem;
    --fs-6: .938rem;
    --fs-7: .875rem;
    --fs-8: .813rem;
    --fs-9: .75rem;
    --fs-10: .688rem;
    --fs-11: .625rem;

    --weight-300: 300;
    --weight-400: 400;
    --weight-500: 500;
    --weight-600: 600;
    --weight-700: 700;

    --border-radius-medium: 10px;
    --border-radius-small: 5px;

    --transition-timing: .2s ease;
      --job-card-padding: 1em;
      --job-card-radius: 0.5em;
      --color-gray: #e2ebf6;
      --color-dark-gray: #c4d1e1;
      --job-radio-border-width: 2px;
      --job-radio-size: 1.5em;
}


*, ::before, ::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* text-decoration: none; */
    list-style: none;
}

button{
    background: none;
    font: inherit;
    border: none;
    cursor: pointer;
}

a { text-decoration: none; }

img, ion-icon, button, a { display: block; }

span { display: inline-block; }

html {
    font-family: "Poppins", sans-serif;
    overscroll-behavior: contain;
}

input{
    display: block;
    width: 100%;
    font: inherit;
}

input::placeholder { font: inherit; }

body { 
    background: var(--white);
    /* padding-bottom: 60px; */
}


    body::-webkit-scrollbar { width: 15px; }

    body::-webkit-scrollbar-track {
        background: var(--white);
        border-left: 1px solid var(--cultured);
    }

    body::-webkit-scrollbar-thumb {
        background: hsl(0, 0%, 80%);
        border: 3px solid var(--white);
        border-radius: 10px;
    }

        body::-webkit-scrollbar-thumb:hover { background: hsl(0, 0%, 70%); }

.container {
  padding: 0 15px;
  margin-bottom: 30px !important;
}


.has-scrollbar { padding-bottom: 5px; }

    .has-scrollbar::-webkit-scrollbar {
        width: 12px;
        height: 12px;
    }

    .has-scrollbar::-webkit-scrollbar-thumb {
        background: transparent;
        border: 3px solid var(--white);
        border-radius: 20px;
    }

        .has-scrollbar:hover::-webkit-scrollbar-thumb { background: hsl(0, 0%, 90%); }
        .has-scrollbar::-webkit-scrollbar-thumb:hover { background: hsl(0, 0%, 80%); }

.title {
    color: var(--eerie-black);
    font-size: var(--fs-5);
    font-weight: var(--weight-600);
    letter-spacing: .4px;
    text-transform: capitalize;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--cultured);
    margin-bottom: 10px;
}

/*MAIN*/

.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: hsla(0, 0%, 0%, .5);
    opacity: 0;
    pointer-events: none;
    z-index: 15;
    transition: .5s ease;
}

    .overlay.active{
        opacity: 1;
        pointer-events: all;
    }

.modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: hsla(0, 0%, 0%, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10;
    animation: popup 1s ease-in-out 5s forwards;
} 

    @keyframes popup{
        0% {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        100% {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
        }
    }

    .modal.closed { display: none; }

    .modal-close-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

.newsletter-img { display: none; }

.modal-content {
    position: relative;
    max-width: 350px;
    margin: 20px;
    background: var(--white);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    z-index: 2;
    animation: scaleUp .5s ease-in-out 5s forwards;
}

    @keyframes scaleUp {
        0% { transform: scale(.9); }
        100% { transform: scale(1); }
    }

.modal-close-btn{
	position: absolute;
	top: 15px;
	right: 15px;
	background: var(--salmon-pink);
	padding: 5px;
	border-radius: var(--border-radius-small);
	height: 35px;
}

.modal-close-btn:hover { opacity: .9; }

.newsletter {
    padding: 50px 30px;
    text-align: center;
}

.newsletter-header { margin-bottom: 20px; }

.newsletter-title {
    color: var(--onyx);
    font-size: var(--fs-3);
    font-weight: var(--weight-600);
    margin-bottom: 10px;
}

.newsletter-desc {
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    line-height: 1.6;
}

.email-field {
    font-size: var(--fs-7);
    padding: 8px 16px;
    border-radius: var(--border-radius-small);
    border: 1px solid var(--cultured);
    margin-bottom: 16px;
}

.btn-newsletter {
    background: var(--eerie-black);
    color: var(--white);
    font-size: var(--fs-7);
    font-weight: var(--weight-600);
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: var(--border-radius-small);
    margin: auto;
    transition: var(--transition-timing);
}

   .btn-newsletter:hover { background: var(--salmon-pink); } 

.notification-toast {
    position: fixed;
    bottom: 80px;
    left: 20px;
    right: 20px;
    background: var(--white);
    max-width: 300px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: var(--border-radius-medium);
    box-shadow: 0 5px 20px hsla(0, 0%, 0%, .15);
    transform: translateX(calc(-100% - 40px));
    transition: .5s ease-in-out;
    z-index: 5;
    /*animation: slideInOut 10s ease-in-out infinite;*/
}

    @keyframes slideInOut {
        0%, 45%, 100% {
            transform: translateX(calc(-100% - 40px));
            opacity: 0;
            visibility: hidden;
        }

        50%, 95% {
            transform: translateX(0);
            opacity: 1;
            visibility: visible;
        }
    }

    .notification-toast.closed { display: none; }

.toast-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--sonic-silver);
}

    .toast-close-btn ion-icon { --ionicon-stroke-wifth: 50px; }

.toast-banner {
    width: 70px;
    height: 70px;
    border: 1px solid var(--cultured);
    border-radius: var(--border-radius-small);
}

.toast-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.toast-detail {
    width: calc(100% - 80px);
    padding-right: 10px;
}

.toast-message {
    font-size: var(--fs-10);
    color: var(--sonic-silver);
    margin-bottom: 8px;
}

.toast-title {
    font-size: var(--fs-7);
    font-weight: var(--weight-500);
    color: var(--onyx);
}

.toast-meta {
    font-size: var(--fs-10);
    color: var(--sonic-silver);
}

/*HEADER*/

.header-top, .header-user-actions, .desktop-navigation-menu { display: none; }

.header-main {
    padding: 20px 0;
    border-bottom: 1px solid var(--cultured);
}

.header-logo { margin-bottom: 20px; }
    .header-logo img { margin: auto; }

.header-search-container { position: relative; }

    .header-search-container .search-field {
        color: var(--onyx);
        padding: 10px 15px;
        padding-right: 50px;
        border: 1px solid var(--cultured);
        border-radius: var(--border-radius-medium);
    }

        .search-field::-webkit-search-cancel-button { display: none; }

.search-btn {
    position: absolute;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
    color: var(--onyx);
    font-size: 18px;
    padding: 8px 15px;
    transition: color var(--transition-timing);
}

    .search-btn:hover { color: var(--salmon-pink); }

.mobile-bottom-navigation {
    background: var(--white);
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5px 0;
    box-shadow: 0 0 10px hsla(0, 0%, 0%, .25);
    z-index: 5;
}

    .mobile-bottom-navigation .action-btn {
        position: relative;
        font-size: 26px;
        color: var(--eerie-black);
        padding: 10px;
    }

    .mobile-bottom-navigation .count {
        background: var(--bittersweet);
        color: var(--white);
        position: absolute;
        top: 0;
        right: 0;
        font-size: 12px;
        font-weight: var(--weight-500);
        line-height: 1;
        padding: 2px 4px;
        border-radius: 20px;
    }

.mobile-navigation-menu {
    background: var(--white);
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    padding: 20px;
    box-shadow: 0 0 10px hsla(0, 0%, 0%, .1);
    overflow-y: scroll;
    overscroll-behavior: contain;
    visibility: hidden;
    transition: .5s ease;
    z-index: 20;
}

    .mobile-navigation-menu.active {
        left: 0;
        visibility: visible;
    } 

.menu-top {
    padding-bottom: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--cultured);
}

    .menu-top .menu-title {
        color: var(--salmon-pink);
        font-size: var(--fs-4);
        font-weight: var(--weight-600);
    }

.menu-close-btn {
    color: var(--eerie-black);
    font-size: 22px;
}

    .menu-close-btn ion-icon { --ionicon-stroke-width: 50px; }

.menu-category .accordion-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-category .submenu-category-list { margin-left: 10px; }

.mobile-menu-category-list { margin-bottom: 30px; }

    .mobile-menu-category-list .menu-category { border-bottom: 1px solid var(--cultured); }

    .mobile-menu-category-list .menu-title {
        color: var(--onyx);
        font-size: var(--fs-6);
        font-weight: var(--weight-500);
        padding: 12px 0;
    }

.accordion-menu > div { font-size: 14px; }

.accordion-menu ion-icon {
    color: var(--onyx);
    --ionicon-stroke-width: 90px;
}

.accordion-menu.active .add-icon, .accordion-menu .remove-icon { display: none; }
.accordion-menu .add-icon, .accordion-menu.active .remove-icon { display: block; }

.submenu-title {
    padding: 6px 0;
    font-size: var(--fs-6);
    color: var(--sonic-silver);
    font-weight: var(--weight-300);
}

    .submenu-title:hover { color: var(--davys-gray); }

.submenu-category-list {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: .5s ease-in-out;
}

    .submenu-category-list.active {
        max-height: 144px;
        visibility: visible;
    }

.menu-bottom .submenu-category-list { 
    margin-bottom: 20px;
    border: 1px solid var(--cultured);
    border-radius: var(--border-radius-medium);
    padding: 0 15px;
    margin-left: 0;
    box-shadow: 0 0 10px hsla(0, 0%, 0%, .05); 
}

.menu-bottom .menu-category { border-bottom: none; }

.menu-bottom .menu-title {
    font-size: var(--fs-4);
    font-weight: var(--weight-500);
    color: var(--eerie-black);
    padding: 12px 0;
}

.menu-bottom .submenu-category:not(:last-child) { border-bottom: 1px solid var(--cultured); }

.accordion-menu.active .caret-back { transform: rotate(-0.25turn); }

.menu-social-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .menu-social-container .social-link {
        background: var(--cultured);
        color: var(--eerie-black);
        font-size: 20px;
        padding: 10px;
        border-radius: var(--border-radius-medium);
    }

/*BANNER*/

.banner { margin: 30px 0; }

.slider-container {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--border-radius-medium);
    overflow: auto hidden;
    scroll-snap-type: inline mandatory;
    overscroll-behavior-inline: contain;
}

.slider-item {
    position: relative;
    min-width: 100%;
    max-height: 450px;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    scroll-snap-align: start;
}

    .slider-item .banner-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right;
    }

.banner-content {
    background: hsla(0, 0%, 100%, .5);
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    padding: 20px 25px;
    border-radius: var(--border-radius-medium);
}

.banner-subtitle {
    color: var(--salmon-pink);
    font-size: var(--fs-7);
    font-weight: var(--weight-500);
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.banner-title {
    color: var(--eerie-black);
    font-size: var(--fs-1);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}

.banner-text { display: none; }

.banner-btn {
    background: var(--salmon-pink);
    color: var(--white);
    width: max-content;
    font-size: var(--fs-7);
    font-weight: var(--weight-600);
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--border-radius-medium);
    transition: var(--transition-timing);
}

.banner-btn:hover { 
    background: var(--eerie-black); 
}


.viewall-btn {
	background: var(--salmon-pink);
	color: var(--white);
	width: max-content;
	font-size: var(--fs-11);
	font-weight: var(--weight-600);
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: var(--border-radius-medium);
	transition: var(--transition-timing);
	display: inline-block;
}

.viewall-btn:hover {
	background: var(--eerie-black);
}

.viewall-btn {
	--fs-11: .875rem;
}

@media (min-width: 480px) {
  .viewall-btn {
    padding: 7px 20px;
  }
}


/*CATEGORY*/

.category { margin-bottom: 30px; }

.category-item-container {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: auto hidden;
    scroll-snap-type: inline mandatory;
    overscroll-behavior-inline: contain;
}

.category-item {
	/* min-width: 100%; */
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px;
	border: 1px solid var(--cultured);
	border-radius: var(--border-radius-medium);
	scroll-snap-align: start;
}

.category-img-box {
    background: var(--cultured);
    border: 1px solid hsl(0, 0%, 80%);
    padding: 10px;
    border-radius: var(--border-radius-small);
}

.category-content-box { width: 100%; }

.category-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.category-item-title {
    color: var(--eerie-black);
    font-size: var(--fs-9);
    font-weight: var(--weight-600);
    text-transform: uppercase;
}

.category-item-amount {
    color: var(--sonic-silver);
    font-size: var(--fs-11);
}

.category-btn {
    color: var(--salmon-pink);
    font-size: var(--fs-9);
    font-weight: var(--weight-500);
    text-transform: capitalize;
}

/*SIDEBAR*/

.sidebar {
    background: var(--white);
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    padding: 30px;
    overflow-y: scroll;
    overscroll-behavior: contain;
    visibility: hidden;
    transition: .5s ease;
    z-index: 20;
}

    .sidebar.active {
        left: 0;
        visibility: visible;
    }

    .sidebar .menu-title-flex {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sidebar .menu-title {
        font-size: var(--fs-5);
        color: var(--sonic-silver);
        font-weight: var(--weight-500);
    }

    .sidebar .product-name { text-transform: capitalize; }

    .sidebar .showcase-heading {
        font-size: var(--fs-5);
        font-weight: var(--weight-600);
        color: var(--onyx);
        text-transform: uppercase;
        letter-spacing: .8px;
        margin-bottom: 15px;
    }

    .sidebar .showcase {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .sidebar .showcase:not(:last-child) { margin-bottom: 15px; }

    .sidebar .showcase-img { border-radius: var(--border-radius-small); }

    .sidebar .showcase-content { width: calc(100% - 90px); }

    .sidebar .showcase-title {
        color: var(--onyx);
        font-size: var(--fs-7);
        font-weight: var(--weight-400);
        text-transform: capitalize;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        letter-spacing: .5px;
    }

    .sidebar .showcase-rating {
        display: flex;
        align-items: center;
        color: var(--sandy-brown);
        font-size: 13px;
        padding: 4px 0;
    }

    .sidebar .price-box {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .sidebar .price-box del {
            color: var(--sonic-silver);
            font-size: 13px;
        }

        .sidebar .price-box .price {
            font-size: var(--fs-7);
            font-weight: var(--weight-600);
            color: var(--davys-gray);
        }

.sidebar-category {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--cultured);
}

.sidebar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.sidebar-title {
    color: var(--onyx);
    font-size: var(--fs-5);
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: var(--weight-600);
}

.sidebar-close-btn {
    color: var(--eerie-black);
    font-size: 22px;
    font-weight: var(--weight-600);
}

    .sidebar-close-btn ion-icon { --ionic-stroke-width: 50px; }

.sidebar-accordion-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
}

    .sidebar-accordion-menu ion-icon {
        color: var(--sonic-silver);
        font-size: 14px;
        --ionicon-stroke-width: 70px;
    }

.sidebar-submenu-category-list {
    border-top: 1px solid var(--cultured);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: .5s ease-in-out;
}

    .sidebar-submenu-category-list.active {
        padding: 13px 0 8px;
        max-height: 122px;
        visibility: visible;
    }

.sidebar-submenu-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    padding: 2px 0;
}

    .sidebar-submenu-title:hover { color: var(--eerie-black); }

.sidebar-accordion-menu.active .add-icon, .sidebar-accordion-menu .remove-icon { display: none; }
.sidebar-accordion-menu .add-icon, .sidebar-accordion-menu.active .remove-icon { 
    display: block;
    color: var(--sonic-silver);
    }

/*PRODUCT MINIMAL*/

.product-minimal { margin-bottom: 30px; }

    .product-minimal .product-showcase { margin-bottom: 10px; } 

    .product-minimal .showcase-wrapper {
        display: flex;
        align-items: center;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
    }

    .product-minimal .showcase-container {
        min-width: 100%;
        padding: 0 5px;
        scroll-snap-align: start;
    }

    .product-minimal .showcase {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
        border: 1px solid var(--cultured);
        padding: 15px;
        border-radius: var(--border-radius-medium);
    }

        .product-minimal .showcase:not(:last-child) { margin-bottom: 15px; }

    .product-minimal .showcase-content {width: calc(100% - 85px); }

    .product-minimal .showcase-title {
        color: var(--eerie-black);
        font-size: var(--fs-7);
        font-weight: var(--weight-600);
        text-transform: capitalize;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 2px;
    }

    .product-minimal .showcase-category {
        width: max-content;
        color: var(--davys-gray);
        font-size: var(--fs-8);
        text-transform: capitalize;
        margin-bottom: 3px;
    }

        .product-minimal .showcase-category:hover { color: var(--salmon-pink); }

    .product-minimal .price-box {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .product-minimal .price-box del {
            font-size: var(--fs-9);
            color: var(--sonic-silver);
        }

    .product-minimal .price {
        font-size: var(--fs-7);
        font-weight: var(--weight-700);
        color: var(--salmon-pink);
    }

/*PRODUCTS FEATURED*/

.product-featured { margin-bottom: 30px; }

    .product-featured .showcase-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
    }

    .product-featured .showcase-container{
        min-width: 100%;
        padding: 30px;
        border: 1px solid var(--cultured);
        border-radius: var(--border-radius-medium);
        scroll-snap-align: start;
    }

    .product-featured .showcase-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-featured .showcase-content { margin-top: 30px; }

    .product-featured .showcase-rating {
        color: var(--sandy-brown);
        display: flex;
        align-items: center;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .product-featured .showcase-title {
        font-size: var(--fs-7);
        color: var(--eerie-black);
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        text-transform: uppercase;
        margin-bottom: 3px;
    }

    .product-featured .showcase-desc {
        color: var(--sonic-silver);
        font-size: var(--fs-7);
        font-weight: var(--weight-300);
        text-align: justify;
        margin-bottom: 10px;
    }

    .product-featured .price-box {
        font-size: var(--fs-3);
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
    }

    .product-featured .price {
        color: var(--salmon-pink);
        font-weight: var(--weight-700);
    }

    .product-featured del {
        color: var(--sonic-silver);
        font-weight: var(--weight-300);
    }

    .product-featured .add-cart-btn {
        background: var(--salmon-pink);
        padding: 8px 15px;
        color: var(--white);
        font-size: var(--fs-9);
        font-weight: var(--weight-700);
        text-transform: uppercase;
        border-radius: var(--border-radius-medium);
        margin-bottom: 15px;
        transition: var(--transition-timing);
    }

        .product-featured .add-cart-btn:hover { 
            background: var(--eerie-black);
            color: var(--white);
        }

    .product-featured .showcase-status { margin-bottom: 15px; }

        .product-featured .showcase-status .wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--eerie-black);
            font-size: var(--fs-9);
            font-weight: var(--weight-400);
            text-transform: uppercase;
            margin-bottom: 10px;
        }

    .product-featured .showcase-status-bar {
        background: var(--cultured);
        position: relative;
        height: 10px;
        border-radius: 5px;
    }

        .product-featured .showcase-status-bar::before {
            position: absolute;
            content: '';
            top: 3px;
            left: 3px;
            height: 4px;
            width: 33.33%;
            background: var(--salmon-pink);
            border-radius: 4px;
        }

    .product-featured .countdown-desc {
        color: var(--eerie-black);
        font-size: var(--fs-9);
        font-weight: var(--weight-600);
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .product-featured .countdown {
        display: flex;
        gap: 5px;
    }

    .product-featured .countdown-content {
        padding: 5px;
        background: var(--cultured);
        border-radius: var(--border-radius-medium);
        text-align: center;
    }

    .product-featured .display-number {
        color: var(--eerie-black);
        font-size: var(--fs-5);
        font-weight: var(--weight-500);
        min-width: 40px;
    }

    .product-featured .display-text {
        color: var(--davys-gray);
        font-size: var(--fs-11);
    }

/*PRODUCT-GRID*/


.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
    
    .product-grid .showcase {
        /* max-width: 300px; */
        border: 1px solid var(--cultured);
        border-radius: var(--border-radius-medium);
        overflow: hidden;
        transition: var(--transition-timing);
    }

        .product-grid .showcase:hover { box-shadow: 0 0 10px hsla(0, 0%, 0%, .1); }

    .product-grid .showcase-banner { position: relative; }

        .product-grid .image-container {
            width: 250px;
            height: 300px;
            display: flex;
            align-items: center;    /* Vertical centering */
            justify-content: center;/* Horizontal centering */
            background-color: #f0f0f0; /* Optional: background fill */
            overflow: hidden;       /* Prevent overflow */
        }
        
        .product-grid .product-img {
            width: 100%;
            height: 100%;
            object-fit: contain;     /* Show full image without crop */
            transition: var(--transition-timing);
            max-height: 300px;
        }

        .product-grid .product-img.default {
            position: relative;
            z-index: 1;
        }

        .product-grid .product-img.hover {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
            opacity: 0;
        }

            .product-grid .showcase:hover .product-img.hover { opacity: 1; }
            .product-grid .showcase:hover .product-img.default { opacity: 0; }
            .product-grid .showcase:hover .product-img { transform: scale(1.1); }

    .product-grid .showcase-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--ocean-green);
        font-size: var(--fs-8);
        font-weight: var(--weight-500);
        color: var(--white);
        padding: 0 8px;
        border-radius: var(--border-radius-small);
        z-index: 3;
    }

        .product-grid .showcase-badge.angle{
            top: 8px;
            left: -29px;
            transform: rotate(-45deg);
            text-transform: uppercase;
            font-size: 11px;
            padding: 5px 40px;
        }

        .product-grid .showcase-badge.black { background: var(--eerie-black); }
        .product-grid .showcase-badge.pink { background: var(--salmon-pink); }

    .product-grid .showcase-actions {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 20px;
        z-index: 3;
    }
    .product-grid .showcase-actions svg {
      height: 24px;
      width: 24px;
      display: block
    }

    .product-grid .btn-action {
        background: var(--white);
        color: var(--sonic-silver);
        margin-bottom: 5px;
        border: 1px solid var(--cultured);
        padding: 5px;
        border-radius: var(--border-radius-small);
        transition: var(--transition-timing);
    }

        .product-grid .btn-action:hover {
            background: var(--eerie-black);
            color: var(--white);
            border-color: var(--eerie-black);
        }

    .product-grid .showcase-content { padding: 15px 20px 0; }

    .product-grid .showcase-category {
        color: var(--salmon-pink);
        font-size: var(--fs-9);
        font-weight: var(--weight-500);
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .product-grid .showcase-title {
        color: var(--sonic-silver);
        font-size: var(--fs-8);
        font-weight: var(--weight-300);
        text-transform: capitalize;
        letter-spacing: 1px;
        margin-bottom: 10px;
        transition: var(--transition-timing);
    }

    .product-grid .showcase-title:hover { color: var(--eerie-black); }

    .product-grid .showcase-rating {
        display: flex;
        color: var(--sandy-brown);
        margin-bottom: 10px;
    }

    .product-grid .price-box {
        display: flex;
        gap: 10px;
        font-size: var(--fs-7);
        color: var(--eerie-black);
        margin-bottom: 10px;
    }

    .product-grid .price { font-weight: var(--weight-700); }
    .product-grid del { color: var(--sonic-silver); }

/*TESTIMONIAL*/

.testimonial-box { margin-bottom: 50px; }

.testimonial-card {
    padding: 30px 20px;
    border: 1px solid var(--cultured);
    border-radius: var(--border-radius-medium);
    text-align: center;
    margin-bottom: 25px;
}

.testimonial-banner {
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
}

.testimonial-name {
    font-weight: var(--weight-700);
    text-transform: uppercase;
    color: var(--sonic-silver);
    margin-bottom: 5px;
}

.testimonial-title {
    color: var(--onyx);
    font-size: var(--fs-7);
    margin-bottom: 15px;
}

.quotation-img {
    margin: auto;
    margin-bottom: 10px;
}

.testimonial-desc {
    margin: auto;
    color: var(--sonic-silver);
    font-size: var(--fs-7);
}

/*CTA CONTAINER*/

.cta-container {
    position: relative;
    aspect-ratio: 5 / 6;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    margin-bottom: 25px;
}

.cta-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    background: hsla(0, 0%, 100%, .7);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    padding: 15px 20px;
    text-align: center;
    border-radius: var(--border-radius-small);
}

    .cta-content .discount {
        background: var(--eerie-black);
        color: var(--white);
        font-size: var(--fs-11);
        font-weight: var(--weight-600);
        text-transform: uppercase;
        width: max-content;
        margin: auto;
        padding: 0 5px;
        border-radius: var(--border-radius-small);
        margin-bottom: 5px;
    }

.cta-title {
    color: var(--onyx);
    font-size: var(--fs-5);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.cta-text {
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    margin-bottom: 5px;
}

.cta-btn {
    font-size: var(--fs-9);
    color: var(--sonic-silver);
    text-transform: uppercase;
    font-weight: var(--weight-700);
    margin: auto;
}

/*SERVICE CONTAINER*/

.service-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 15px;
    border: 1px solid var(--cultured);
    border-radius: var(--border-radius-medium);
}

.service-item {
    min-width: 190px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-icon {
    font-size: 35px;
    color: var(--salmon-pink);
    transition: var(--transition-timing);
}

    .service-icon ion-icon { --ionicon-stroke-wisth: 25px; }
    .service-item:hover .service-icon { color: var(--eerie-black); }

.service-title {
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    font-weight: var(--weight-600);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.service-desc {
    color: var(--sonic-silver);
    font-size: var(--fs-9);
}

/*BLOG*/
.blog-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 1rem;
  padding: 1rem;
}

.blog-card {
  overflow: hidden;
  box-shadow: 0px 2px 20px #d7dfe2;
  background: white;
  border-radius: 0.5rem;
  position: relative;
  width: 250px;
  transition: 250ms all ease-in-out;
  cursor: pointer;
}

.blog-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 2px 40px #d7dfe2;
}

.show-alt-img {
    display: inline-block;
    background-color: #f0f0f0;
    text-align: center;
}


.blog-img, .show-alt-img {
  position: absolute;
  object-fit: object;
  height: 14rem;
  width: 100%;
}

.blog-tag {
  font-size: 0.8rem;
  font-weight: bold;
  color: white;
  padding: 0.5rem 1.3rem 0.5rem 1rem;
  text-transform: uppercase;
  position: absolute;
  z-index: 1;
  top: 1rem;
  border-radius: 0 2rem 2rem 0;
}

.popular { background: #ef257a; }
.technology { background: #651fff; }
.psychology { background: #e85808; }

.blog-card-body {
  margin: 15rem 1rem 1rem 1rem;
}

.blog-hashtag {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4d97b2;
}

.blog-title {
  line-height: 1.8rem;
  margin: 1rem 0 0.5rem;
}

.blog-description {
  color: #616b74;
  font-size: 0.9rem;
}

.blog-card-profile {
  display: flex;
  margin-top: 2rem;
  align-items: center;
}

.blog-profile {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.blog-card-profile-info {
  margin-left: 1rem;
}

.blog-profile-name {
  font-size: 1rem;
}

.profile-followers {
  color: #616b74;
  font-size: 0.9rem;
}
.blog-meta {
    padding: 10px;
    color: var(--sonic-silver);
    font-size: var(--fs-7);
}

/* ===== Mobile (Up to 600px) ===== */
@media (max-width: 600px) {
  .blog-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .blog-card {
    width: 90%;
  }

  .blog-img, .show-alt-img {
    height: 10rem;
  }

  .blog-card-body {
    margin: 12rem 1rem 1rem 1rem;
  }

  .blog-title {
    font-size: 1.05rem;
  }

  .blog-profile {
    width: 50px;
    height: 50px;
  }
}



/* ===== Improved Small Tablet (600px to 800px) ===== */
@media (min-width: 600px) and (max-width: 800px) {

  .blog-wrapper {
    justify-content: left;
    gap: 1.2rem;
  }

  .blog-card {
    width: 46%; /* 2 per row */
    border-radius: 0.6rem;
  }

  .blog-card:hover {
    transform: scale(1.03);
    box-shadow: 0px 4px 25px rgba(0,0,0,0.12);
  }

  .blog-img,.show-alt-img {
    height: 11rem;
  }

  .blog-card-body {
    margin: 13rem 1rem 1rem 1rem;
  }

  .blog-title {
    font-size: 1.1rem;
  }

  .blog-description {
    font-size: 0.85rem;
  }

  .blog-profile {
    width: 52px;
    height: 52px;
  }
}



/* ===== Large Tablet (800px to 992px) ===== */
@media (min-width: 800px) and (max-width: 992px) {

  .blog-wrapper {
    justify-content: left;
    gap: 1.5rem;
  }

  .blog-card {
    width: 30%; /* slightly bigger three columns */
  }

  .blog-img, .show-alt-img {
    height: 13rem;
  }

  .blog-card-body {
    margin: 14rem 1rem 1rem 1rem;
  }

  .blog-title {
    font-size: 1.15rem;
  }
}

/* ===== Desktop (>992px) ===== */
@media (min-width: 992px) {
  .blog-wrapper {
    justify-content: left;
  }

  .blog-card {
    width: 300px; /* original size */
  }
}

/*FOOTER*/

footer {
    background: var(--eerie-black);
    padding: 30px 0;
}

.footer-category {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--onyx);
}

.footer-category-title {
    color: var(--salmon-pink);
    font-size: var(--fs-6);
    font-weight: var(--weight-600);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-category-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
    row-gap: 3px;
    margin-bottom: 15px;
}

.category-box-title {
    color: var(--spanish-gray);
    font-size: var(--fs-8);
    font-weight: var(--weight-600);
    text-transform: uppercase;
}

.footer-category-link {
    position: relative;
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    text-transform: capitalize;
    transition: var(--transition-timing);
}

    .footer-category-link:hover { color: var(--spanish-gray); }

    .footer-category-link:not(:last-child)::after {
        position: absolute;
        content: '';
        top: 3px;
        right: -10px;
        background: var(--sonic-silver);
        width: 1px;
        height: 15px;
    }

.footer-nav {
    border-bottom: 1px solid var(--onyx);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

    .footer-nav .nav-title {
        position: relative;
        color: var(--white);
        font-size: var(--fs-7);
        text-transform: uppercase;
        margin-bottom: 15px;
        padding-bottom: 5px;
    }

        .footer-nav .nav-title::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            background: var(--salmon-pink);
            width: 60px;
            height: 1px;
        }

    .footer-nav .social-link {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }

.footer-nav-list:not(:last-child) { margin-bottom: 20px; }

.footer-nav-item { padding: 3px 0; }

    .footer-nav-link, .footer-nav-item .content {
        width: max-content;
        color: var(--sonic-silver);
        font-size: var(--fs-7);
        text-transform: capitalize;
        transition: var(--transition-timing);
    }

        .footer-nav-link:hover { color: var(--salmon-pink); }
        
        .footer-nav-item.flex {
        	display: flex;
        	gap: 10px;
        	align-items: center;
        }

        .footer-nav-item .content {
            font-style: normal;
            margin-bottom: 5px;
        }

        .footer-nav-item .icon-box {
            color: var(--sonic-silver);
            font-size: 25px;
        }

            .footer-nav-item .icon-box ion-icon { --ionicon-stroke-width: 30px; }

.social-link .footer-nav-link { font-size: 25px; }

.footer-bottom {
    margin-bottom: 50px;
    text-align: center;
}

.payment-img {
    max-width: 335px;
    width: 100%;
    margin: auto;
    margin-bottom: 15px;
}

.copyright {
    color: var(--sonic-silver);
    font-size: var(--fs-8);
    font-weight: var(--weight-500);
    text-transform: capitalize;
    letter-spacing: 1.2px;
}

    .copyright a {
        display: inline;
        color: inherit;
    }


/*WISHLIST*/

.wishlist_heart {
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: transparent;
  animation: beat_off 300ms forwards;
}
.wishlist_heart svg {
  height: 100%;
  width: 100%;
  stroke: #EF2B7C;
}
.wishlist_heart._active {
  color: #EF2B7C;
  animation: beat_on 400ms forwards;
}

@keyframes beat_on {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(0.5);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes beat_off {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}







/*MEDIA QUERIES*/

@media (min-width: 480px) {
    :root { --fs-1: 1.875rem; }

    .header-top {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--cultured);
    }

    .header-social-container, .header-top-actions { display: none; }

    .header-alert-news { 
        color: var(--sonic-silver);
        font-size: var(--fs-9);
        text-transform: uppercase;
    }

        .header-alert-news b { font-weight: var(--weight-500); }

    .header-main { padding: 25px 0; }

    .mobile-bottom-navigation {
        border-top-left-radius: var(--border-radius-medium);
        border-top-right-radius: var(--border-radius-medium);
    }

    .slider-item { aspect-ratio: 5 / 3;}

    .banner-content {
        top: 50%;
        right: auto;
        bottom: auto;
        transform: translateY(-50%);
        max-width: 320px;
    }

    .banner-subtitle { --fs-7: 1rem; }

.banner-text {
    display: block;
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    font-weight: var(--weight-500);
    margin-bottom: 10px;
}

.banner-text b { font-size: var(--fs-2); }

.banner-btn { padding: 7px 20px; }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .cta-content { padding: 40px; }

        .cta-content .discount {
            --fs-11: .875rem;
            padding: 5px 10px;
        }

    .cta-title { --fs-5: 1.5rem; }
    .cta-text { --fs-7: 1rem; }
    .cta-btn { --fs-9: 1rem; }

    .copyright { --fs-8: .875rem; }
}

@media (min-width: 570px){
    .header-top .container, .header-main .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-logo { margin-bottom: 0; }

    .header-top-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .header-top-actions select {
            border: none;
            display: block;
            min-width: 80px;
            padding: 5px 0;
            font: inherit;
            color: var(--sonic-silver);
            font-size: var(--fs-8);
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition-timing);
        }

            .header-top-actions select:hover { color: var(--eerie-black); }

    .header-search-container { min-width: 300px; }

    .slider-item { aspect-ratio: 4 / 2; }

    .banner-content { background: none; }

    .category-item-container { gap: 30px; }

    .category-item { min-width: calc(50% - 15px); }

    .product-minimal .showcase-container { min-width: 50%; }

    .product-featured .showcase-img {
        max-width: 450px;
        margin: auto;
    }

    .product-featured .countdown { gap: 20px; }

    .cta-container { aspect-ratio: 6 / 5; }

}

@media (min-width: 768px){
    :root { --fs-1: 2.375rem; }

    html { font-size: 17px; }

    .container {
        max-width: 750px;
        margin: auto;
    }

    .modal-content {
        display: flex;
        align-items: center;
        max-width: 750px;
        width: fit-content;
    }

    .newsletter-img { display: block; }

    .newsletter { text-align: left; }

    .header-main .container { gap: 80px; }

    .header-search-container { flex-grow: 1; }

    .slider-item { 
        aspect-ratio: auto;
        height: 350px;
    }

    .banner-content { max-width: 380px; }

    .banner-subtitle { --fs-7: 1.25rem; }
    .banner-text { --fs-7: 1.25rem; }
        .banner-text b { --fs-2: 1.875rem; }

    .banner-btn { --fs-11: .75rem; }

    .category-img-box { padding: 20px; }

    .product-minimal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

        .product-minimal .product-showcase {
            min-width: calc(50% - 10px);
            width: calc(50% - 10px);
        }

        .product-minimal .showcase-container { min-width: 100%; }

    .product-featured .showcase {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .product-featured .showcase-img { max-width: fit-content; }

    .product-featured .showcase-content {
        margin-top: 0;
        min-width: calc(100% - 345px);
    }

    .footer-nav .container {
        display: flex;
        flex-wrap: wrap;
        row-gap: 50px;
        column-gap: 20px;
    }

    .footer-nav-list {
        min-width: calc(33.33% - 15px);
        width: calc(33.33% - 15px);
        flex-grow: 1;
    }

    .footer-nav-list:not(:last-child) { margin-bottom: 0; }
}

@media (min-width: 1024px){

    :root{
        --fs-1: 2.625rem;
        --fs-2: 1.125rem;
    }

    .container { max-width: 980px; }

    .notification-toast { bottom: 30px; }

    .header-social-container{
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .header-social-container .social-link {
    	/* padding: 5px; */
    	background: hsl(0, 0%, 95%);
    	border-radius: var(--border-radius-small);
    	color: var(--sonic-silver);
    	transition: var(--transition-timing);
    	width: 25px;
    	height: 25px;
    }


    .header-social-container .social-link svg:hover {
        background: var(--salmon-pink);
            fill: var(--white);
        }
        
    .header-user-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .header-user-actions .action-btn {
            position: relative;
            font-size: 35px;
            color: var(--onyx);
            padding: 5px;
        }

        .header-user-actions .count {
            position: absolute;
            top: -2px;
            right: -3px;
            background: var(--bittersweet);
            color: var(--white);
            font-size: 12px;
            font-weight: var(--weight-500);
            line-height: 1;
            padding: 2px 4px;
            border-radius: 20px;
        }

    .desktop-navigation-menu { display: block; }

    .desktop-menu-category-list {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

        .desktop-menu-category-list .menu-category:not(:nth-child(2)) { position: relative; }

            .desktop-menu-category-list .menu-category > .menu-title {
                position: relative;
                color: var(--onyx);
                font-size: var(--fs-7);
                font-weight: var(--weight-600);
                text-transform: uppercase;
                padding: 15px 0;
                transition: var(--transition-timing);
            }

                .desktop-menu-category-list .menu-category > .menu-title:hover { color: var(--salmon-pink); }

                .desktop-menu-category-list .menu-category > .menu-title::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 2px;
                    background: var(--salmon-pink);
                    transform: scaleX(0);
                    transform-origin: left;
                    transition: var(--transition-timing);
                }

                    .desktop-menu-category-list .menu-category > .menu-title:hover::after { transform: scaleX(1); }

                .desktop-menu-category-list .menu-category:hover > .dropdown-panel {
                    transform: translateY(0);
                    opacity: 1;
                    visibility: visible;
                    pointer-events: all;
                }

                .desktop-menu-category-list .menu-category:hover > .dropdown-list {
                    transform: translateY(0);
                    opacity: 1;
                    visibility: visible;
                    pointer-events: all;
                }

    .dropdown-panel {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        padding: 30px;
        border: 1px solid var(--cultured);
        box-shadow: 0 3px 5px hsla(0, 0%, 0%, .1 );
        border-radius: var(--border-radius-medium);
        transform: translateY(50px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: var(--transition-timing);
        z-index: 5;
    }

    .dropdown-panel-list .menu-title a {
        color: var(--onyx);
        font-size: var(--fs-7);
        font-weight: var(--weight-600);
        padding-bottom: 10px;
        border-bottom: 1px solid var(--cultured);
        margin-bottom: 10px;
    }


    .panel-list-item a {
        color: var(--sonic-silver);
        font-size: var(--fs-7);
        text-transform: capitalize;
        transition: var(--transition-timing);
    }

        .panel-list-item a:hover { color: var(--salmon-pink); }

        .panel-list-item:not(:last-child) a { padding: 4px 0; }
        
        .panel-list-item:last-child {margin-top: 20px; }

    .panel-list-item img {
        width: 100%;
        height: auto;
        border-radius: var(--border-radius-small);
    }

    .dropdown-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 200px;
        background: var(--white);
        padding: 20px 0;
        border-radius: var(--border-radius-medium);
        border: 1px solid var(--cultured);
        box-shadow: 0 3px 3px hsla(0, 0%, 0%, .1 );
        transform: translateY(50px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: var(--transition-timing);
        z-index: 5;
    }

        .dropdown-list .dropdown-item a {
            color: var(--sonic-silver);
            font-size: var(--fs-7);
            text-transform: capitalize;
            padding: 4px 20px;
            transition: var(--transition-timing);
        }

            .dropdown-list .dropdown-item a:hover { color: var(--salmon-pink);}

        .mobile-bottom-navigation { display: none; }

    .banner { margin-top: 0; }

    .slider-item { height: 360px; }

    .banner-content {
        left: 75px;
        max-width: 400px;
    }

    .banner-subtitle { --fs-7: 1.625rem; }
    .banner-text { --fs-7: 1.625rem; }
    .banner-btn { --fs-11: .875rem; }

    .category-item { min-width: calc(33.33% - 20px); }
    .category-img-box { padding: 10px; }

    .product-container .container {
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .sidebar {
        --fs-5: .941rem;
        position: sticky;
        top: 30px;
        left: 0;
        padding: 0px;
        min-width: calc(25% - 15px);
        /* margin-bottom: 30px; */
        visibility: visible;
        overflow-y: auto;
        overscroll-behavior: auto;
        z-index: 0;
    }

    .sidebar-category {
        padding: 20px;
        margin-bottom: 30px;
        border: 1px solid var(--cultured);
        border-radius: var(--border-radius-medium);
    }

    .sidebar-close-btn { display: none; }

    .product-box { min-width: calc(75% - 15px); }

    .product-minimal { margin-bottom: 20px; }

        .product-minimal .product-showcase {
            min-width: calc(33.33% - 14px);
            width: calc(33.33% - 14px);
            flex-grow: 1;
        }

        .product-minimal .showcase-wrapper { gap: 10px; }
        .product-minimal .showcase-container { padding: 2px; }

    .product-featured .countdown-content { padding: 5px 10px; }

    .product-grid {
        margin-bottom: 10px;
        grid-template-columns: repeat(3, 1fr);
        
    }

    .testimonials-box {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        gap: 30px;
    }

    .testimonial-card {margin-bottom: 0; }

    .testimonial, .cta-container {
        min-width: calc(50% - 15px);
        width: calc(50% - 15px);
        margin-bottom: 0;
    }

    .service { width: 100%; }
    .service-container { gap: 0; }

    .service-item {
        flex-direction: column;
        text-align: center;
        min-width: 20%;
    }

    .footer-nav-list {
        min-width: calc(20% - 16px);
        width: calc(20% - 16px);
    }

    .footer-nav-list:last-child { display: none; }

    .footer-bottom { margin-bottom: 0; }
}

@media (min-width: 1200px){
    .container {max-width: 1200px; }

    .desktop-menu-category-list { gap: 45px; }

    .slider-item:last-child .banner-img { object-position: top; }

    .category-item { min-width: calc(25% - 22.5px); }
    .category-item-title { --fs-9: .824rem; }

    .product-featured .showcase > div { min-width: calc(50% - 10px); }
    .product-featured .display-number { --fs-5: 1.125rem; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }

    .testimonial, .service {
        min-width: calc(25% - 20px);
        width: calc(25% - 20px);
    }

    .cta-container {
        min-width: calc(50% - 20px);
        width: calc(50% - 20px);
        aspect-ratio: unset;
    }

    .service-container {
        justify-content: flex-start;
        gap: 16px;
        padding: 30px;
    }

    .service-item {
        flex-direction: row;
        text-align: left;
    }


    footer {padding-top: 50px; }

    .footer-category {
        margin-bottom: 50px;
        padding-bottom: 35px;
    }

    .footer-nav { padding-bottom: 50px; }
}

@media (min-width: 1400px){

    html { font-size: 18px; }

    .container { max-width: 1350px; }

    .banner-content {
        left: 110px;
        max-width: 460px;
    }
}




/*View Property Start*/
    .tsecti.active {
        left: 0;
        visibility: visible;
    }

    .tsecti .menu-title-flex {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .tsecti .menu-title {
        font-size: var(--fs-5);
        color: var(--sonic-silver);
        font-weight: var(--weight-500);
    }

    .tsecti .product-name { text-transform: capitalize; }

    .tsecti .showcase-heading {
        font-size: var(--fs-5);
        font-weight: var(--weight-600);
        color: var(--onyx);
        text-transform: uppercase;
        letter-spacing: .8px;
        margin-bottom: 15px;
    }

    .tsecti .showcase {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .tsecti .showcase:not(:last-child) { margin-bottom: 15px; }

    .tsecti .showcase-img { border-radius: var(--border-radius-small); }

    .tsecti .showcase-content { width: calc(100% - 90px); }

    .tsecti .showcase-title {
        color: var(--onyx);
        font-size: var(--fs-7);
        font-weight: var(--weight-400);
        text-transform: capitalize;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        letter-spacing: .5px;
    }

    .tsecti .showcase-rating {
        display: flex;
        align-items: center;
        color: var(--sandy-brown);
        font-size: 13px;
        padding: 4px 0;
    }

    .tsecti .price-box {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .tsecti .price-box del {
            color: var(--sonic-silver);
            font-size: 13px;
        }

        .tsecti .price-box .price {
            font-size: var(--fs-7);
            font-weight: var(--weight-600);
            color: var(--davys-gray);
        }

.tsecti-category {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--cultured);
}

.tsecti-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tsecti-title {
    color: var(--onyx);
    font-size: var(--fs-5);
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: var(--weight-600);
}

.tsecti-close-btn {
    color: var(--eerie-black);
    font-size: 22px;
    font-weight: var(--weight-600);
}

    .tsecti-close-btn ion-icon { --ionic-stroke-width: 50px; }

.tsecti-accordion-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
}

    .tsecti-accordion-menu ion-icon {
        color: var(--sonic-silver);
        font-size: 14px;
        --ionicon-stroke-width: 70px;
    }

.tsecti-submenu-category-list {
    border-top: 1px solid var(--cultured);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: .5s ease-in-out;
}

    .tsecti-submenu-category-list.active {
        padding: 13px 0 8px;
        max-height: 122px;
        visibility: visible;
    }

.tsecti-submenu-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    padding: 2px 0;
}

    .tsecti-submenu-title:hover { color: var(--eerie-black); }

.tsecti-accordion-menu.active .add-icon, .tsecti-accordion-menu .remove-icon { display: none; }
.tsecti-accordion-menu .add-icon, .tsecti-accordion-menu.active .remove-icon { display: block; }


.card {
    background-color: #fff;
    padding: 14px;
    border: none
}
#lightSlider li{}

.demo {
    width: 100%
}
.viewimg {
    display: block;
    height: auto;
    width: 100%
}

/*! lightslider - v1.1.5 - 2015-10-31
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */
/*! lightslider - v1.1.3 - 2015-04-14
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */
/** /!!! core css Should not edit !!!/**/ 

.lSSlideOuter {
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.lightSlider:before, .lightSlider:after {
    content: " ";
    display: table;
}
.lightSlider {
    overflow: hidden;
    margin: 0;
}
.lSSlideWrapper {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.lSSlideWrapper > .lightSlider:after {
    clear: both;
}
.lSSlideWrapper .lSSlide {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all 1s;
    -webkit-transition-property: -webkit-transform,height;
    -moz-transition-property: -moz-transform,height;
    transition-property: transform,height;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade {
    position: relative;
}
.lSSlideWrapper .lSFade > * {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 9;
    margin-right: 0;
    width: 100%;
}
.lSSlideWrapper.usingCss .lSFade > * {
    opacity: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade > *.active {
    z-index: 10;
}
.lSSlideWrapper.usingCss .lSFade > *.active {
    opacity: 1;
}
/** /!!! End of core css Should not edit !!!/**/

/* Pager */
.lSSlideOuter .lSPager.lSpg {
    margin: 10px 0 0;
    padding: 0;
    text-align: center;
}
.lSSlideOuter .lSPager.lSpg > li {
    cursor: pointer;
    display: inline-block;
    padding: 0 5px;
}
.lSSlideOuter .lSPager.lSpg > li a {
    background-color: #222222;
    border-radius: 30px;
    display: inline-block;
    height: 8px;
    overflow: hidden;
    text-indent: -999em;
    width: 8px;
    position: relative;
    z-index: 99;
    -webkit-transition: all 0.5s linear 0s;
    transition: all 0.5s linear 0s;
}
.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
    background-color: #428bca;
}
.lSSlideOuter .media {
    opacity: 0.8;
}
.lSSlideOuter .media.active {
    opacity: 1;
}
/* End of pager */

/** Gallery */
.lSSlideOuter .lSPager.lSGallery {
    list-style: none outside none;
    padding-left: 0;
    margin: 0;
    overflow: hidden;
    transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.lSSlideOuter .lSPager.lSGallery li {
    overflow: hidden;
    -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
    transition: border-radius 0.12s linear 0s 0.35s linear 0s;
}
.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
    border-radius: 5px;
}
.lSSlideOuter .lSPager.lSGallery img {
    display: block;
    max-height: 100px;
    height: auto;
    max-width: 100%;
}
.lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
    content: " ";
    display: table;
}
.lSSlideOuter .lSPager.lSGallery:after {
    clear: both;
}
/* End of Gallery*/

/* slider actions */
.lSAction > a {
    width: 32px;
    display: block;
    top: 50%;
    height: 32px;
    background-image: url('../img/controls.png');
    cursor: pointer;
    position: absolute;
    z-index: 99;
    margin-top: -16px;
    opacity: 0.5;
    -webkit-transition: opacity 0.35s linear 0s;
    transition: opacity 0.35s linear 0s;
}
.lSAction > a:hover {
    opacity: 1;
}
.lSAction > .lSPrev {
    background-position: 0 0;
    left: 10px;
}
.lSAction > .lSNext {
    background-position: -32px 0;
    right: 10px;
}
.lSAction > a.disabled {
    pointer-events: none;
}
.cS-hidden {
    height: 1px;
    opacity: 0;
    filter: alpha(opacity=0);
    overflow: hidden;
}


/* vertical */
.lSSlideOuter.vertical {
    position: relative;
}
.lSSlideOuter.vertical.noPager {
    padding-right: 0px !important;
}
.lSSlideOuter.vertical .lSGallery {
    position: absolute !important;
    right: 0;
    top: 0;
}
.lSSlideOuter.vertical .lightSlider > * {
    width: 100% !important;
    max-width: none !important;
}

/* vertical controlls */
.lSSlideOuter.vertical .lSAction > a {
    left: 50%;
    margin-left: -14px;
    margin-top: 0;
}
.lSSlideOuter.vertical .lSAction > .lSNext {
    background-position: 31px -31px;
    bottom: 10px;
    top: auto;
}
.lSSlideOuter.vertical .lSAction > .lSPrev {
    background-position: 0 -31px;
    bottom: auto;
    top: 10px;
}
/* vertical */


/* Rtl */
.lSSlideOuter.lSrtl {
    direction: rtl;
}
.lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
    padding-left: 0;
    list-style: none outside none;
}
.lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
    padding-right: 0;
}
.lSSlideOuter .lightSlider > *,  .lSSlideOuter .lSGallery li {
    float: left;
}
.lSSlideOuter.lSrtl .lightSlider > *,  .lSSlideOuter.lSrtl .lSGallery li {
    float: right !important;
}
/* Rtl */

@-webkit-keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@-webkit-keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
@keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
.lSSlideOuter .rightEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}
.lSSlideOuter .leftEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .rightEnd {
    -webkit-animation: topEnd 0.3s;
    animation: topEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .leftEnd {
    -webkit-animation: bottomEnd 0.3s;
    animation: bottomEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .rightEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .leftEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}
/*/  GRab cursor */
.lightSlider.lsGrab > * {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lightSlider.lsGrabbing > * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}


@media (min-width: 1024px){

    :root{
        --fs-1: 2.625rem;
        --fs-2: 1.125rem;
    }

    .tsecti {
        --fs-5: .941rem;

        position: sticky;
        top: 30px;
        left: 0;
        padding: 0px;
        min-width: calc(50% - 15px);
        margin-bottom: 30px;
        visibility: visible;
        overflow-y: auto;
        overscroll-behavior: auto;
        z-index: 0;
    }

    .tsecti-category {
        padding: 20px;
        margin-bottom: 30px;
        border: 1px solid var(--cultured);
        border-radius: var(--border-radius-medium);
    }

    .tsecti-close-btn { display: none; }
    .my-box { min-width: calc(50% - 15px); }
}





@media (min-width:576px) {

.tsecti {
	background: var(--white);
	/* position: fixed; */
	/* top: 0; */
	/* bottom: 0; */
	width: 100%;
	max-width: 320px;
	padding: 30px;
	/* overflow-y: scroll; */
	overscroll-behavior: contain;
	/* visibility: visible; */
	transition: .5s ease;
	z-index: 20;
}
}

    .inbuttons {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .inbuttons .action-btn {
            position: relative;
            font-size: 35px;
            color: var(--onyx);
            padding: 5px;
        }

        .inbuttons .count {
            position: absolute;
            top: -2px;
            right: -3px;
            background: var(--bittersweet);
            color: var(--white);
            font-size: 12px;
            font-weight: var(--weight-500);
            line-height: 1;
            padding: 2px 4px;
            border-radius: 20px;
        }
        /* Media query for small screens */
        @media (max-width: 600px) {
            .inbuttons {
                display: block !important;
            }
            .psections {
                width: 100% !important;
            }
        }
        .pro_label {
        	background: #f8bebe;
        	padding: 5px;
        	color: #111;
        	font-size: 0.75rem;
        	font-weight: 700;
        	text-transform: uppercase;
        	border-radius: var(--border-radius-medium);
        	margin-bottom: 5px;
        	transition: var(--transition-timing);
        }
         .ratingbox .datebox {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--eerie-black);
            font-size: var(--fs-9);
            font-weight: var(--weight-400);
            text-transform: uppercase;
        }
        
        .descbox_name {
        	color: var(--eerie-black);
        	font-size: var(--fs-5);
        	font-weight: var(--weight-600);
        	letter-spacing: .4px;
        	text-transform: capitalize;
        	padding-bottom: 10px;
        	border-bottom: 1px solid var(--cultured);
        	/* margin-bottom: 10px; */
        }
        
        .descbox {
          border: 1px solid #ccc;
          border-collapse: collapse;
          margin: 0;
          padding: 0;
          width: 100%;
          table-layout: fixed;
        }
        
        .descbox caption {
          font-size: 1.5em;
          margin: .5em 0 .75em;
        }
        
        .descbox tr {
          background-color: #f8f8f8;
          border: 1px solid #ddd;
          padding: .35em;
        }
        
        .descbox th,
        .descbox td {
          padding: .625em;
          text-align: left;
        }
        
        .descbox th {
          font-size: .85em;
          letter-spacing: .1em;
          text-transform: uppercase;
        }

        /* STYLE C */
        
        .clickbox.style-c {
          display: inline-block;
          position: relative;
          padding-left: 30px;
          cursor: pointer;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none;
        }
        .clickbox.style-c input {
          position: absolute;
          opacity: 0;
          cursor: pointer;
          height: 0;
          width: 0;
        }
        .clickbox.style-c input:checked ~ .clickbox__checkmark {
          background-color: #f7cb15;
        }
        .clickbox.style-c input:checked ~ .clickbox__checkmark:after {
          opacity: 1;
        }
        .clickbox.style-c:hover input ~ .clickbox__checkmark {
          background-color: #eee;
        }
        .clickbox.style-c:hover input:checked ~ .clickbox__checkmark {
          background-color: #f7cb15;
        }
        .clickbox.style-c .clickbox__checkmark {
          position: absolute;
          top: 2px;
          left: 0;
          height: 20px;
          width: 20px;
          background-color: #eee;
          transition: background-color 0.25s ease;
          border-radius: 4px;
        }
        .clickbox.style-c .clickbox__checkmark:after {
          content: "";
          position: absolute;
          left: 8px;
          top: 4px;
          width: 5px;
          height: 10px;
          border: solid #333;
          border-width: 0 2px 2px 0;
          transform: rotate(45deg);
          opacity: 0;
          transition: opacity 0.25s ease;
        }
        .clickbox.style-c .clickbox__body {
          color: #333;
          line-height: 1.4;
          font-size: 16px;
        }
        
/*View Property End*/


/* Login Page Start */

.logform-img { display: none; }

.logform-content {
    margin: 20px;
    background: var(--white);
    border-radius: var(--border-radius-medium);
    z-index: 2;
}


.logform-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--salmon-pink);
    color: var(--white);
    font-size: 16px;
    padding: 5px;
    border-radius: var(--border-radius-small);
}

.logform-close-btn:hover { opacity: .9; }


.logform-header { margin-bottom: 20px; }

.logform-htitle {
    color: var(--onyx);
    font-size: var(--fs-3);
    font-weight: var(--weight-600);
    margin-bottom: 10px;
}

.logform-footer { 
    margin-bottom: 20px;
    text-align: left;
}

.logform-ftitle {
	color: var(--onyx);
	font-size: var(--fs-7);
	font-weight: var(--weight-600);
}

.logform-hdesc {
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    line-height: 1.6;
}

.logform-fdesc {
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    line-height: 1.6;
}

.log-field {
    padding: 8px 16px;
    border-radius: var(--border-radius-small);
    border: 1px solid var(--cultured);
    margin-bottom: 16px;

    font-family: inherit;   /* inherit from parent */
    font-size: 1rem;        /* fallback or replace var(--fs-7) */
    color: inherit;
    width: 100%;
    box-sizing: border-box;
}

/* Specifically for textarea */
textarea.log-field {
    resize: vertical; /* allow vertical resize */
    min-height: 80px; /* optional: set a min height */
    line-height: 1.4;
}

.log-field[readonly] {
    background-color: #ebebeb;
    cursor: default;
}

.log-field[readonly]:focus {
  outline: none;
}
.btn-logform {
    background: var(--eerie-black);
    color: var(--white);
    font-size: var(--fs-7);
    font-weight: var(--weight-600);
    padding: 10px 15px;
    border-radius: var(--border-radius-small);
    margin-bottom: 20px;
}

.btn-logform:hover { background: var(--salmon-pink); } 


@media (min-width: 768px){
      .logform-content {
        display: flex;
        align-items: center;
        width: fit-content;
    }
    .logform-img { display: block; }

    .logform { 
        text-align: left;
        min-width: 750px;
    }
}

/* Login Page End */

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


.rate-star {
  width: 1em;
  height: 1em;
  fill: #ccc;
  transition: all 0.3s;
  pointer-events: none;
}
.star-check {
  fill: #fc0;
}

.inbox-btn {
	background: var(--salmon-pink);
	padding: 8px 15px;
	color: var(--white);
	font-size: var(--fs-9);
	font-weight: var(--weight-700);
	text-transform: uppercase;
	border-radius: var(--border-radius-medium);
	margin-bottom: 15px;
	text-align: center;
}

.inbox-btn:hover {
  background: var(--eerie-black);
  color: var(--white);
}

/* Post/Update Property */

.inbuttons .psections .image {
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding-top: 1rem;
  object-position: left;
}
.psections {
	margin-bottom: 20px;
	width: 50%;
}
.psections select {
	border: none;
	display: block;
	min-width: 80px;
	text-transform: uppercase;
	cursor: pointer;
	width: 100%;
	padding: 8px 16px;
	border-radius: var(--border-radius-small);
	border: 1px solid var(--cultured);
	margin-bottom: 16px;
	background-color: white;
}

.psections textarea {
	display: block;
	min-width: 80px;
	cursor: pointer;
	width: 100%;
	padding: 8px 16px;
	border-radius: var(--border-radius-small);
	border: 1px solid var(--cultured);
	margin-bottom: 16px;
}
@media (min-width: 1024px){
    .inbuttons .psections .image {
    	height: 15rem;
    	width: 15rem;
    	object-fit: contain;
    	padding-top: 1rem;
    	object-position: left;
    }
}

.chatbot__button {
  position: fixed;
  bottom: 80px;
  right: 40px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #aa3e4b;
  color: #f3f7f8;
  border: none;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  z-index:5;
}
.chatbot__button span {
  position: absolute;
}
.show-chatbot .chatbot__button span:first-child,
.chatbot__button span:last-child {
  opacity: 0;
}
.show-chatbot .chatbot__button span:last-child {
  opacity: 1;
}
.chatbot {
  position: fixed;
  bottom: 140px;
  right: 40px;
  width: 500px;
  background-color: #f3f7f8;
  border-radius: 15px;
  box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1) 0 32px 64px -48px rgba(0, 0, 0, 0.5);
  transform: scale(0.5);
  transition: transform 0.3s ease;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.show-chatbot .chatbot {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 5;
}
.chatbot__header {
  position: relative;
  background-color: #aa3e4b;
  text-align: center;
  padding: 16px 0;
}
.chatbot__header span {
  display: none;
  position: absolute;
  top: 50%;
  right: 20px;
  color: #202020;
  transform: translateY(-50%);
  cursor: pointer;
}
.chatbox__title {
  font-size: 1.4rem;
  color: #f3f7f8;
}
.chatbot__box {
	/* height: 510px; */
	overflow-y: auto;
	padding: 30px 20px 100px;
}
.chatbot__chat {
  display: flex;
}
.message-body p {
	/* max-width: 75%; */
	font-size: 0.95rem;
	white-space: pre-wrap;
	border-radius: 10px 10px 0 10px;
	padding: 12px 16px;
}

.time-messages p {
  color: #202020;
  background: #bdc3c7;
  border-radius: 10px 10px 10px 0;
}

.outgoing {
  justify-content: flex-end;
  margin: 20px 0;
}
.incoming {
  margin: 20px 0;
}
.chatbot__input-box {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  gap: 5px;
  align-items: center;
  border-top: 1px solid #aa3e4b;
  background: #f3f7f8;
  padding: 5px 20px;
}
.chatbot__textarea {
  width: 100%;
  min-height: 55px;
  max-height: 180px;
  font-size: 0.95rem;
  padding: 16px 15px 16px 0;
  color: #202020;
  border: none;
  outline: none;
  resize: none;
  background: transparent;
}
.chatbot__textarea::placeholder {
  font-family: 'Poppins', sans-serif;
}
.chatbot__input-box span {
  font-size: 1.75rem;
  color: #202020;
  cursor: pointer;
  visibility: hidden;
}
.chatbot__textarea:valid ~ span {
  visibility: visible;
}

@media (max-width: 490px) {
  .chatbot {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  .chatbot__box {
    height: 90%;
  }
  .chatbot__header span {
    display: inline;
  }
}
.chatbot__submit {
  fill: #f4f4f4;
  height: 22px;
  width: 22px;
  transition: fill 0.2s ease;
  cursor: pointer;
}
.chatbot__submit:hover {
  fill: #f4f4f4;
}

.chatbot__sending {
  fill: #aa3e4b;
  height: 22px;
  width: 22px;
  transition: fill 0.2s ease;
  cursor: pointer;
}
.chatbot__sending:hover {
  fill: #aa3e4b;
}


.chatbot__header:hover {
  background-color: #c48990;
}
.chatbot__close-button {
  fill: #fff;
}
.chatbot__close-button.icon-speech {
  width: 20px;
  display: none;
}
.chatbot--closed .chatbot__close-button.icon-speech {
  display: block;
}
.chatbot__close-button.icon-close {
  width: 14px;
}
.chatbot--closed .chatbot__close-button.icon-close {
  display: none;
}
.loader {
  margin-bottom: -2px;
  text-align: center;
  opacity: 0.3;
}

.loader__dot {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  margin: 0 1px;
  background: black;
  border-radius: 50px;
  -webkit-animation: loader 0.45s infinite alternate;
          animation: loader 0.45s infinite alternate;
}
.loader__dot:nth-of-type(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.loader__dot:nth-of-type(3) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}

@-webkit-keyframes loader {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}

@keyframes loader {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
    margin-top: 10px;
    margin-bottom: 0;
  }
  to {
    opacity: 1;
    margin-top: 0;
    margin-bottom: 10px;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
    margin-top: 10px;
    margin-bottom: 0;
  }
  to {
    opacity: 1;
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.messages-box {
	max-height: 32rem;
	overflow-y: auto;
}
.message-img {
	margin: 0 10px 7px 0;
}
.icon-avatar{
    width: 32px;
	height: 32px;
    
}

.item{
  text-align:center;
  margin-right: 10px;
} 

.messages-in {
  color: #202020;
  background: #bdc3c7;
  border-radius: 10px 10px 10px 0;
}
.messages-out {
  color: #202020;
  background: #ecddc9;
  border-radius: 10px 10px 10px 0;
}
.messages-error {
  color: #721c24;
  background: #f8d7da;
}
.loader {
	display: none;
		}

.stop-scrolling {
            height: 100%;
            overflow: hidden;
        }


/* vendor-form */

.vendor-form-container {
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vendor-form-container h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
font-family: 'DM Sans';
}

.vendor-form-container1 label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.uregister-container label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.vendor-form-container input[type="submit"] {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.vendor-form-container input[type="submit"]:hover {
  background-color: #0056b3;
}

@media (max-width: 600px) {
  .vendor-form-container {
    padding: 20px;
    margin: 20px 10px;
  }
}
.success-message {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 10px;
  margin: 10px auto 20px;
  text-align: center;
  border-radius: 6px;
  width: 100%;
}
.log-field[readonly] {
    background-color: #ebebeb;
    cursor: default;
}

.log-field[readonly]:focus {
  outline: none;
}
/* Container for the file input and preview */
.upload-container {
  margin-top: 15px;
  max-width: 200px;
  font-family: Arial, sans-serif;
}

/* Label styling */
.upload-container label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}

/* File input styling */
#profile_photo {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

/* Image preview styling */
#photoPreview {
  display: block;
  max-width: 100%;
  max-height: 150px;
  border-radius: 8px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.showcase-content .active {
	background-color: #28a745;
	font-size: var(--fs-9);
	display: inline;
	padding: 3px;
	color: #ffff;
	border-radius: 5px;
	text-transform: capitalize;
}
.showcase-content .inactive {
	background-color: #6c757d;
	font-size: var(--fs-9);
	display: inline;
	padding: 3px;
	color: #ffff;
	border-radius: 5px;
	text-transform: capitalize;
}

.showcase-content .Approved {
	background-color: #28a745;
	font-size: var(--fs-9);
	display: inline;
	padding: 3px;
	color: #ffff;
	border-radius: 5px;
	text-transform: capitalize;
}
.showcase-content .Pending {
	background-color: #6c757d;
	font-size: var(--fs-9);
	display: inline;
	padding: 3px;
	color: #ffff;
	border-radius: 5px;
	text-transform: capitalize;
}

.showcase-content .Rejected {
	background-color: #e2141496;
	font-size: var(--fs-9);
	display: inline;
	padding: 3px;
	color: #ffff;
	border-radius: 5px;
	text-transform: capitalize;
}


/* User Profile Dashboard*/


.profile_container {
    /* max-width: 400px; */
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    /* border-radius: 10px; */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
}
  .user-details {
    position: relative;
    padding: 0;
  }

  .user-image img {
    border-radius: 50%;
    height: 100px;
    display: inline;
}

.user-details .user-image {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}


.user-info-blockRE {
    position: absolute;
    top: 55px;
    width: 100%;
    padding-top: 35px;
    /* background: #EAEAEA; */
    /* z-index: 0; */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

 .user-heading {
    width: 100%;
    text-align: center;
    margin: 10px 0 0;
    line-height: 1.42857143;
    color: #333;
}


  .user-heading h3 {
    margin: 5px 0;
    font-size: 24px;
  }




.user-info-block .navigation {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #428BCA;
    border-top: 1px solid #428BCA;
}

  .navigation li {
    flex: 1;
    text-align: center;
  }

  .navigation li a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #333;
    cursor: pointer;
  }

  .navigation li.active a {
    background: #428BCA;
    color: #fff;
  }

 .user-body {
    text-align: center;
    padding: 10px;
    margin: auto;
}

  .tab-content > div {
    display: none;
  }

  .tab-content > .active {
    display: block;
  }

  .tab-content h4 {
    margin: 10px 0;
    color: #333;
  }

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}
  /* Simple icon alternatives (using Unicode) */
  .icon-user::before {
    content: "👤";
  }
  .icon-cog::before {
    content: "⚙️";
  }
  .icon-envelope::before {
    content: "✉️";
  }
  .icon-calendar::before {
    content: "📅";
  }
  
  
/* Button */
 .btn-register-as {
     display: inline-block;
     padding: 12px 24px;
     background-color: #007bff;
     color: white;
     border-radius: 6px;
     text-decoration: none;
     font-weight: 500;
     margin-top: 20px;
     box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
     transition: background-color 0.3s ease, transform 0.2s ease;
}
 .btn-register-as:hover {
     background-color: #0056b3;
     transform: translateY(-1px);
}

/* Status */
 .status-message {
     grid-column: span 2;
     font-size: 14px;
     font-weight: 600;
     display: inline-block;
     padding: 10px 18px;
     border-radius: 30px;
     margin-top: 10px;
     max-width: fit-content;
     transition: all 0.3s ease;
}
 .status-pending {
     background-color: #fff3cd;
     color: #856404;
     border: 1px solid #ffc107;
}
 .status-approved {
     background-color: #d4edda;
     color: #155724;
     border: 1px solid #28a745;
}
/* Empty state */
 .empty-profile-box {
     display: flex;
     flex-direction: column;
     align-items: center;
     margin-top: 20px;
}
 .notice-message {
     background-color: #fff0f0;
     border-left: 4px solid #dc3545;
     padding: 14px 20px;
     border-radius: 8px;
     font-size: 15px;
     color: #b02a37;
     margin-bottom: 15px;
     max-width: 400px;
     text-align: center;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}


/* ChatBot Chatting */

  .chatbot__toggle-buttons {
     display: flex;
     gap: 8px;
     margin-left: 5px;
     margin-right: 12px;
}
 .chat-toggle-button {
     padding: 4px 10px;
     font-size: 12px;
     background-color: #eee;
     border: 1px solid #ccc;
     border-radius: 4px;
     cursor: pointer;
     user-select: none;
     transition: background-color 0.2s ease;
}
 .chat-toggle-button.active {
     background-color: #007bff;
     color: white;
     border-color: #007bff;
}
 #admin-messages-box {
     height: 300px;
    /* or whatever you want */
     overflow-y: auto;
}
/* Typing indicator bubble */
 .chatbot__chat.typing-indicator {
     display: flex;
    /* align avatar + message horizontally */
     align-items: center;
     width: fit-content;
    /* shrink to content */
    /* avoid being too wide */
     padding: 4px 8px;
     border-radius: 8px;
     margin: 4px 0;
}
 .chatbot {
     height: 550px;
}
 .outgoing {
     justify-content: flex-end;
     margin: 20px 0;
     text-align: right;
}
 .typing-indicator {
     float: left;
     clear: both;
}
 .typing-indicator .message-body {
     display: flex;
     align-items: center;
    /* vertical center */
     justify-content: flex-start;
    /* force text to left */
     padding: 0;
}
 .typing-indicator .messages-in {
     margin: 0;
     display: flex;
     align-items: center;
     gap: 6px;
    /* space between text and dots */
     justify-content: flex-start;
    /* left-align text and dots */
     white-space: nowrap;
    /* prevent wrapping if you want a single line */
}
 .typing-indicator .dot-container {
     display: flex;
    /* horizontal layout */
     gap: 4px;
    /* space between dots */
     align-items: center;
}
 .typing-indicator .dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background-color: currentColor;
     opacity: 0.3;
     animation: blink 1.4s infinite both;
}
 .typing-indicator .dot:nth-child(1) {
     animation-delay: 0s;
}
 .typing-indicator .dot:nth-child(2) {
     animation-delay: 0.2s;
}
 .typing-indicator .dot:nth-child(3) {
     animation-delay: 0.4s;
}
 @keyframes blink {
     0%, 80%, 100% {
         opacity: 0.3;
    }
     40% {
         opacity: 1;
    }
}
 #chat-disclaimer {
     border-radius: 6px;
     text-align: center;
     line-height: 1.4;
     white-space: nowrap;
     position: absolute;
     left: 1%;
     bottom: 90px;
     font-size: 12px;
     color: #666;
     display: none;
}
 .bttn-wait {
     background-color: #ffc107;
     padding: 6px;
     border: none;
     margin-left: 8px;
     cursor: pointer;
     border-radius: 4px;
    /* Optional: for nicer look */
     color: #000;
    /* Optional: button text color */
}
 #contact-us {
     background-color: #007bff;
     padding: 6px;
     border: none;
     color: white;
     cursor: pointer;
     margin-top: 8px;
     border-radius: 6px;
}
 .chatbot__textarea {
     width: 100%;
     min-height: 55px;
     max-height: 180px;
     overflow-y: hidden;
    /* overflow-x: hidden;
     */
     font-size: 0.95rem;
     padding: 16px 15px 16px 0;
     color: #202020;
     border: none;
     outline: none;
     resize: none;
     background: transparent;
}
 .feedback-message {
     background: #f1f1f1;
     padding: 10px;
     border-radius: 6px;
     margin-bottom: 8px;
     display: inline-block;
}
 .chatbot__box {
     height: 350px;
     overflow-y: auto;
     padding: 30px 20px 100px;
}
 .stars {
     display: flex;
     cursor: pointer;
     font-size: 30px;
}
 .star {
     color: gray;
    /* default empty star */
     transition: color 0.3s;
}
 .star.active {
     color: gold;
    /* yellow when selected */
}
/* in your CSS file, e.g., chatbot_style.css */
 .chatbot-login-btn {
     padding: 6px 14px;
    /* medium size */
     background-color: #ff4500;
     color: #fff;
     font-weight: bold;
     border-radius: 6px;
     font-size: 14px;
     text-decoration: none;
     display: inline-block;
    /* prevent full width */
     transition: background-color 0.3s ease;
}
 .chatbot-login-btn:hover {
     background-color: #e03e00;
    /* slightly darker on hover */
}

.chatbot__suggestions {
  padding: 10px;
  border-top: 1px solid #eee;
  background: #fafafa;
  text-align: left;
}

.suggest-btn {
  background-color: #eaeaea;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  margin: 5px 8px 5px 0;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease;
}

.suggest-btn:hover {
  background-color: #d6d6d6;
}
.suggest-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}



.bot-section-title {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
}

.bot-property-card {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.bot-property-name {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 5px;
}

.bot-property-type,
.bot-property-address,
.bot-property-price,
.bot-property-details,
.bot-property-amenities,
.bot-nearby-locations {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.bot-property-type{
    text-transform: uppercase;
}

.bot-property-amenities {
    color: #444;
}

.bot-property-image {
    max-width: 300px;
    border-radius: 5px;
    margin-top: 10px;
}

.bot-results-note {
    font-size: 13px;
    color: #888;
}
.nearby-locations {
    background-color: #f0f4f8;
    padding: 12px 15px;
    border-left: 4px solid #3498db;
    border-radius: 5px;
    margin-top: 12px;
    font-size: 14px;
    color: #333;
}

.nearby-title {
    font-weight: bold;
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.nearby-item {
    margin-bottom: 6px;
}

.output { font-size: 16px;color: green; }

/* Term and Conditions*/

/* Base style for the Terms and Conditions text */
  .tnc {
    display: flex;
    flex-wrap: wrap;              /* Allows wrapping on small screens */
    align-items: center;
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  /* Styling the links */
  .tnc a {
    color: #007BFF;
    padding: 2px 4px;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .tnc a:hover {
    text-decoration: underline;
  }

  /* Responsive font scaling */
  @media (max-width: 600px) {
    .tnc {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 400px) {
    .tnc {
      font-size: 0.9rem;
    }
  }
  
   .ot_timer {
    display: inline-block;
    font-weight: 500;
    color: #34495e;
    transition: all 0.3s ease;
  }
  
  /* Crop images */
 #cropArea {
    display: none;
    position: fixed;
    top: 0; left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%; height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
  }
  #cropContainer {
    position: relative;
    display: inline-block;
    max-width: 90%;
    max-height: 70%;
    user-select: none;
    margin-bottom:200px;
  }
  #cropImage {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    user-select: none;
    pointer-events: none;
  }
  #cropBox {
    border: 2px dashed red;
    position: absolute;
    box-sizing: border-box;
    cursor: default;
    background: rgba(255, 0, 0, 0.1);
    touch-action: none;
  }
  .resize-handle {
    position: absolute;
    background: red;
    border: 1px solid #fff;
    box-sizing: border-box;
    width: 12px;
    height: 24px;
    z-index: 10;
    touch-action: none;
  }
  .resize-handle.left, .resize-handle.right {
    top: 50%;
    margin-top: -12px;
    width: 12px;
    height: 24px;
    cursor: ew-resize;
  }
  .resize-handle.top, .resize-handle.bottom {
    left: 50%;
    margin-left: -12px;
    width: 24px;
    height: 12px;
    cursor: ns-resize;
  }
  .resize-handle.left { left: -6px; }
  .resize-handle.right { right: -6px; }
  .resize-handle.top { top: -6px; }
  .resize-handle.bottom { bottom: -6px; }
  #cropButtons {
    margin-top: 10px;
    text-align: right;
  }
  button {
    margin-left: 5px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
  }
  img.preview {
    max-width: 150px;
    display: none;
    margin-top: 5px;
  }  
#cropButtons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 20px;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.4);
  z-index: 10000;
}


#cropButtons button {
  padding: 10px 18px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  background-color: #2d89ef;
  color: white;
  transition: background-color 0.3s ease;
  z-index:500;
}

#cropButtons button:hover {
  background-color: #1b64c1;
}

#cropButtons button:active {
  background-color: #154a91;
}

#cropButtons button:first-child {
  background-color: #ccc;
  color: #333;
}

#cropButtons button:first-child:hover {
  background-color: #bbb;
}

#cropButtons button:first-child:active {
  background-color: #999;
}
/* login-container */
.login-container {
 overflow: hidden;
}

/* u_menu tabs */
.u_menu {
  display: flex;
  justify-content: center;
}
.u_menu a {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  text-decoration: none;
  font-weight: 600;
  color: #aaa; /* inactive text color */
  transition: all 0.3s ease;
  cursor: pointer;
}
.u_menu a:hover {
  color: hsl(0, 0%, 27%);
}

.u_menu a.active {
    color: hsl(0, 0%, 27%);
    background-color: rgb(5 5 5 / 10%);
    font-weight: 700;
    border-radius: 8px; /* adds rounded corners */
}

/* Forms wrapper */
.ulogin-wrapper {
  display: flex;
  width: 200%; /* two forms side by side */
  transition: none;
}

.ulogin-wrapper.animate-slide {
  transition: transform 0.5s ease;
}

/* Each form section */
.form-section {
  width: 50%; /* exactly half of ulogin-wrapper */
  padding: 30px;
  box-sizing: border-box;
}



/* Container for input fields */
.ulogin-container {
  position: relative;
  margin: 20px 0;
}

/* Floating label styling */
.ulogin-container label {
  position: absolute;
  left: 10px;
  top: 10px;
  color: #777;
  background: #fff;
  padding: 0 5px;
  pointer-events: none;
  transition: 0.2s ease all;
}

/* Floating label animation */
.ulogin-container .log-field:focus + label,
.ulogin-container .log-field:not(:placeholder-shown) + label {
  top: -8px;
  left: 8px;
  font-size: 12px;
  color: #787878;
}

/* Password container and toggle button */
.upassword-container {
  position: relative;
}

.utoggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  display: none; /* Hidden by default, can show via JS */
}
.encrypt-text {
    margin-top: -15px;
    text-align: right;
    font-size: 12px;
    color: #555;
}
@media (max-width: 480px) {
  .encrypt-text {
    font-size: 10px;
  }
}
/* Career Section */
.career {
    margin-top: 20px;
    margin-bottom: 20px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.career .career_con {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.career-item {
  position: relative;
  width: 100%;
  background-color: #ccc; /* fallback block color */
  background-image: url("images/placeholder.jpg"); /* optional placeholder image */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.career-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(100%);
  display: block;
}

/* --- Career Content (Bottom Center Overlay) --- */
.career {
  width: 100%;
}

.career_con {
  max-width: 1200px;
  margin: 0 auto;
}

.career-item {
  position: relative;
  width: 100%;
}

.career-img {
  width: 100%;
  height: auto;
  object-fit: contain; /* keeps full image visible */
  display: block;
}

/* --- Center button at bottom OVER the image --- */
.career-content {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Button styling */
.career-btn {
    background: #c16b24;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(255,255,255,0.6); }
  50% { transform: scale(1.07); box-shadow: 0 0 15px rgba(255,255,255,0.9); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(255,255,255,0.6); }
}


/* Medium screens */
@media (max-width: 768px) {
  .career-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
}

/* Small screens (phones) */
@media (max-width: 480px) {
  .career-btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 5px;
  }
}

.career_header {
    border: none;
    display: block;
    min-width: 80px;
    padding: 5px 0;
    font: inherit;
    color: var(--sonic-silver);
    font-size: var(--fs-8);
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-timing);
}

/* ---------- CAREER SECTION ---------- */

/* ---------- TWO-COLUMN LAYOUT ---------- */
.job-container {
    margin-top: 40px;
  display: grid;
  grid-template-columns: 1.5fr 3.5fr; /* Left 40%, Right 60% */
  gap: 2rem;
  align-items: start;
}

/* Mobile: stack sections */
@media (max-width: 800px) {
  .job-container {
    grid-template-columns: 1fr; /* full width stacked */
  }
}

/* ---------- LEFT SECTION: SLIDER ---------- */
.job-grid {
  display: grid;
  grid-template-columns: 1fr; 
  gap: var(--job-card-padding);
  max-width: 50em;

  /* Make sticky */
  position: sticky;
  top: 1.5rem;
}

/* Slider mode for mobile */
@media (max-width: 800px) {
  .job-grid {
    position: static;  /* disable sticky on mobile */
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 var(--job-card-padding);
    gap: var(--job-card-padding);
    padding-bottom: 1em;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .job-card {
    flex: 0 0 70%;
    max-width: 70%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .job-grid::-webkit-scrollbar {
    display: none;
  }
}

/* ---------- job-card STYLING ---------- */
.job-card {
  background-color: #fff;
  border-radius: var(--job-card-radius);
  position: relative;
}

.job-card:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}

.job-radio {
  position: absolute;
  right: calc(var(--job-card-padding) + var(--job-radio-border-width));
  top: calc(var(--job-card-padding) + var(--job-radio-border-width));
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .job-radio {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    border: var(--job-radio-border-width) solid var(--color-gray);
    border-radius: 50%;
    cursor: pointer;
    height: var(--job-radio-size);
    width: var(--job-radio-size);
    transition: 0.2s;
    position: absolute;
  }
  .job-radio:checked {
    background: var(--salmon-pink);
    border-color: var(--salmon-pink);
  }
  .job-radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 25%;
    width: 0.375rem;
    height: 0.75rem;
    border: var(--job-radio-border-width) solid #fff;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg) translate(-50%, -50%);
  }
}

.job-details {
    justify-content: center;
    align-items: center;
    height: 140px;
    border: var(--job-radio-border-width) solid var(--color-gray);
    border-radius: var(--job-card-radius);
    padding: var(--job-card-padding);
    display: flex;
    flex-direction: column;
}

.job-radio:checked ~ .job-details {
  border-color: var(--salmon-pink);
}


.job-type {
    text-align: center;
    color: var(--onyx);
    font-size: var(--fs-3);
    font-weight: var(--weight-600);
}


.job-exp  {
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    line-height: 1.6;
    margin: 0.5rem 0;
}

.hidden-visually {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.job-info-box {
  max-width: 60em;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.job-info-box.active {
  display: block;
}

.cright-section {
  background: white;
  padding: 1.5rem;
  border-radius: var(--job-card-radius);
  border: 2px solid var(--color-gray);
}
    .career-heading {
      font-size: 2rem;
       font-weight: var(--weight-600);
      color: var(--onyx);
      text-align: center;
      padding-bottom: 0.5rem;
      margin-bottom: 1.5rem;
      border-bottom: 2px solid #e2ebf6; /* Light border to match your theme */
    }
    .career-desc {
        color: var(--sonic-silver);
        font-size: var(--fs-7);
        line-height: 1.6;
    }

.job-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
  }

  .job-table th, .job-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
  }

  .job-table th {
    background-color: #f5f5f5;
    color: #333;
  }

  .job-table tr:nth-child(even) {
    background-color: #fafafa;
  }

  .job-table tr:hover {
    background-color: #f1f1f1;
  }

  .job-table td {
    letter-spacing: 1px;
    line-height: 20px;
    color: var(--sonic-silver);
    font-size: 14px;
    }

  .job-table td:first-child {
    font-weight: var(--weight-600);
    color: var(--onyx);
  }

  .job-table th[colspan="2"] {
    text-align: center;
    font-size: 16px;
    font-weight: var(--weight-600);
    background-color: #dcdcdc;
    color: #333;
  }
  .jd-section {
    width: 100%;
    box-sizing: border-box;
}

