body {
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Poppins font base */
body {
    font-family: 'Poppins', sans-serif;
}

/* Font weights */
.font-light {
    font-weight: 300;
    /* Light */
}

.font-regular {
    font-weight: 400;
    /* Regular */
}

.font-medium {
    font-weight: 500;
    /* Medium */
}

.font-semibold {
    font-weight: 600;
    /* Semi-Bold */
}

.font-bold {
    font-weight: 700;
    /* Bold */
}

/* Font sizes */
.font-small {
    font-size: 0.8rem;
    /* Small */
}

.font-medium {
    font-size: 1rem;
    /* Medium (default) */
}

.font-large {
    font-size: 1.25rem;
    /* Large */
}

.font-xlarge {
    font-size: 1.5rem;
    /* Extra Large */
}

/* css from header */
.page-footer .footer.content .block.newsletter {
    display: none;
}

.block-search.block-swissup-ajaxsearch.inline.shown .actions .action.close {
    display: none;
}

.page-footer {
    padding-top: 50px;
}

/* category page */
.cms-categories .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.cms-categories .category-grid .category-item {
    text-align: center;
    border: 1px solid #eee;
    padding: 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
}
.cms-categories .category-grid .category-item:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.cms-categories .category-grid .category-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.cms-categories .category-grid .category-name {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #444;
}
.cms-categories .no-categories {
    text-align: center;
    color: #777;
    font-style: italic;
}

 h1.page-title {
    margin-left: 15px;
    margin-right: 15px;
}

/* Shared styles for Privacy Policy and Terms & Conditions */
.cms-privacy-policy .container,
.cms-terms-and-conditions .container {
    max-width: 62.91%;
    margin: 30px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
}

.cms-privacy-policy h1,
.cms-terms-and-conditions h1 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
    color: #000;
}

.cms-privacy-policy summary,
.cms-terms-and-conditions summary {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
    color: #000;
}

.cms-privacy-policy summary::after,
.cms-terms-and-conditions summary::after {
    content: "▼";
    font-size: 16px;
    margin-left: 8px;
    /* Small space between text and arrow */
    transition: transform 0.3s ease;
}

.cms-privacy-policy details[open] summary::after,
.cms-terms-and-conditions details[open] summary::after {
    content: "▲";
}

.cms-privacy-policy .section,
.cms-terms-and-conditions .section {
    margin-bottom: 30px;
}

.cms-privacy-policy details,
.cms-terms-and-conditions details {
    background: #f1f1f1;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.cms-privacy-policy details:hover,
.cms-terms-and-conditions details:hover {
    background: #eaeaea;
}

.cms-privacy-policy p,
.cms-privacy-policy li,
.cms-terms-and-conditions p,
.cms-terms-and-conditions li {
    margin: 10px 0;
    font-size: 18px;
}

.cms-privacy-policy ul,
.cms-terms-and-conditions ul {
    padding-left: 20px;
}

.cms-privacy-policy a,
.cms-terms-and-conditions a {
    color: #2980b9;
    text-decoration: none;
}

.cms-privacy-policy a:hover,
.cms-terms-and-conditions a:hover {
    text-decoration: underline;
}

/* .main-category-section {
    padding: 20px;
}

.main-category-section .main-category-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.main-category-section .pagebuilder-column {
    flex: 1;
    max-width: 33.3333%;
}

.main-category-section .mart,
.main-category-section .rent,
.main-category-section .real {
    border-radius: 15px;
    overflow: hidden;
    padding: 10px;
    background-color: #fff;
}

.main-category-section .mart img,
.main-category-section .rent img,
.main-category-section .real img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.main-category-section #html-body [data-pb-style=L9TF1WI]>.easybanner-banner {
    width: 100%;
    height: auto;
    padding: 0;
}

@media (max-width: 768px) {
    .main-category-section {
        padding: 0px;
    }

    .main-category-section .mart,
    .main-category-section .rent,
    .main-category-section .real {
        padding: 5px;
    }
} */



.page-footer,
.footer.content .links>li,
.page-footer .footer-toolbar-bottom,
.page-footer .footer-toolbar-bottom a {
    background: #000;
}

.header.content .logo img,
.cms-index-index .page-header .logo img.logo-alt {
    width: 90px;
}

/* footer  */
.page-footer .footer.content .footer.links>li div.h4,
.col-md-3.footer-contacts div.h4 {
    color: #fff;
}


/*feature  Section wrapper */
.cms-home .feature-section {
    background: #FAF7EF;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Each feature card */
.cms-home .feature-section .feature-img-text-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.8s ease,
        box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    height: 100%;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    will-change: transform, opacity;
    margin: 15px;
}

/* when visible */
.cms-home .feature-section .feature-img-text-wrapper.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* hover effect */
.cms-home .feature-section .feature-img-text-wrapper:hover {
    transform: translateY(-8px) scale(1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* image */
.cms-home .feature-section .feature-img-text-wrapper img {
    max-width: 80px !important;
    margin-bottom: 20px;
}

/* text */
.cms-home .feature-section .feature-img-text-wrapper p {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
}


.col-md-3.footer-contacts span {
    color: #848484;
}

.opc-block-summary {
    padding: 22px 31.5px !important;
}

.main-category-section {
    padding: 0;
}

.cms-home .products-grid .product-item {
    text-align: center !important;
}

.cms-home .product-item-photo img,
.cms-home .product-image-container {
    width: 100% !important;
}

/* ---home-categoried Section Background --- */
.cms-home .home-categories {
    background: #FAF7EF;
    padding: 40px 20px;
}

/* --- Grid Wrapper --- */
.cms-home .home-categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

.cms-home .home-categories-wrapper .pagebuilder-column.content-img-wrapper {
    margin: 15px;
}

/* --- Each Grid Box --- */
.cms-home .home-categories-wrapper .pagebuilder-column {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px 70px;
    /* space for button */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.cms-home .home-categories .pagebuilder-button-primary:hover {
    background: #fff !important;
    border: 2px solid #000;
    color: #000 !important;
}

.cms-home .home-categories .pagebuilder-button-primary:hover span {
    color: #000 !important;
}

.cms-home .home-categories-wrapper .pagebuilder-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* --- Image --- */
.cms-home .home-categories-wrapper .content-img-wrapper figure {
    margin: 0 0 20px 0 !important;
    padding: 0;
    border: none !important;
    background: none !important;
}

.cms-home .home-categories-wrapper .content-img-wrapper img {
    max-width: 140px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --- Button Full Width --- */
.cms-home .home-categories .pagebuilder-button-primary {
    background: #000 !important;
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 20px;
    border-radius: 20px;
    /* same as card bottom */
    border: 1px solid #bbb;
    margin: 0;
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

/*   SPOTLIGHT SECTION STYLING    */
.cms-home .spotlight-section {
    background-color: black;
    padding: 40px 20px;
    text-align: left;
    color: #fff;
    opacity: 0;
    /* hidden initially */
    transform: translateX(-80px);
    /* slide in from left */
    transition: all 1s ease-out;
}

.cms-home .spotlight-section.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.cms-home .spotlight-section .easybanner-banner {
    height: 100%;
}

.cms-home .spotlight-section .section-subheading {
    font-size: 1.1em;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
    opacity: 0.8;
    color: #fff;
}

.cms-home .spotlight-section .spotlight-section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.cms-home .spotlight-section .section-heading {
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: bold;
    color: #fff;
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease-out;
}

.cms-home .spotlight-section.animate-in .section-heading {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
    /* delay for smooth staggered effect */
}

.cms-home .spotlight-section h2.section-heading::after {
    content: none;
}

/* GRID */
.cms-home .spotlight-section .image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.cms-home .spotlight-section .grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.cms-home .spotlight-section .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.cms-home .spotlight-section .grid-item:hover img {
    transform: scale(1.03);
}

/* GRID AREAS */
.cms-home .spotlight-section .large-left {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.cms-home .spotlight-section .top-right {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

.cms-home .spotlight-section .bottom-right-1 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.cms-home .spotlight-section .bottom-right-2 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* OVERLAY */
.cms-home .spotlight-section .overlay {
    position: absolute;
    bottom: 10%;
    left: 5%;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
    line-height: 0.9;
    text-align: left;
    padding: 10px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-out;
}

.cms-home .spotlight-section.animate-in .overlay {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
    /* comes after heading */
}

.cms-home .spotlight-section .overlay h1 {
    font-size: 5vw;
    margin: 0;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
}

.cms-home .spotlight-section .overlay p {
    font-size: 2.5vw;
    margin: 0;
    font-style: italic;
    font-weight: 600;
    line-height: 1;
}

/* header style*/
body:not(.cms-home) .minicart-wrapper .action.showcart .text,
body:not(.cms-home) .minicart-wrapper .action.showcart.active .text,
body:not(.cms-home) .page-header .block-search .label,
body:not(.cms-home) .nav-toggle {
    filter: invert(1);
}

.page-header .header.wrapper {
    background: #000;
}

@media (max-width: 600px) {

    .cms-home .column.main .products-grid .product-item:nth-child(n) {
        margin: 0;
    }

    .block-viewed-products-grid .products-grid .product-item {
        width: calc((100% - 2%) / 2) !important;
    }

    .cms-home .home-categories {
        overflow: visible;
    }

    .cms-home .home-categories-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding-bottom: 10px;
    }

    .cms-home .home-categories-wrapper .pagebuilder-column {
        flex: 0 0 65%;
        flex-wrap: nowrap !important;
    }

    .cms-home .home-categories .pagebuilder-column-line {
        flex-wrap: nowrap;
    }

    .cms-home .logo-text {
        font-size: 36px !important;
    }
}

@media (min-width: 601px) and (max-width: 767px) {
    .cms-home .home-categories-wrapper .pagebuilder-column {
        flex: 40%;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {

    .cms-privacy-policy .container,
    .cms-terms-and-conditions .container {
        padding: 15px;
        max-width: 91%;
    }

    .cms-privacy-policy h1,
    .cms-terms-and-conditions h1 {
        font-size: 24px;
    }

    .cms-privacy-policy summary,
    .cms-terms-and-conditions summary {
        font-size: 18px;
    }

    .cms-privacy-policy p,
    .cms-privacy-policy li,
    .cms-terms-and-conditions p,
    .cms-terms-and-conditions li {
        font-size: 16px;
    }

    .cms-home .feature-section .feature-img-text-wrapper {
        min-height: 250px;
    }

    .cms-home-page-categories-products-text span {

        font-size: 27px !important;
    }

    .checkout-index-index .nav-sections,
    .checkout-index-index .nav-toggle {
        display: block;
    }

    .checkout-index-index .logo {
        margin: 0 0 10px 42px;
    }

    .cms-home .spotlight-section {
        padding: 20px 10px;
    }

    .cms-home .spotlight-section .section-heading {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .cms-home .spotlight-section .image-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
        aspect-ratio: unset;
    }

    .cms-home .spotlight-section .grid-item {
        height: 50vw;
        max-height: 300px;
    }

    .cms-home .spotlight-section .overlay h1 {
        font-size: 12vw;
    }

    .cms-home .spotlight-section .overlay p {
        font-size: 6vw;
    }
  
    h1.page-title {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    .catalog-category-view .page-main .breadcrumbs {
        margin-top:10px;
    }
    .checkout-index-index .nav-sections {
        display: block;f
    }

    .page-header .header.content {
        padding: 15px 10px;
        justify-content: start;
    }

    .page-header .block-search {
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .block-search.block-swissup-ajaxsearch.inline.shown .field.search {
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .block-search.block-swissup-ajaxsearch.inline.shown .actions .action.close {
        display: none;
    }

    /* Target the 'control inactive' div to set its background */
    .control.inactive {
        background: transparent;
        flex-grow: 1;
    }

    /* Style the input field to be the primary visual component */
    .form.minisearch .input-text {
        border-radius: 25px;
        padding: 12px 20px 12px 40px;
        border: 1px solid #ccc;
        flex-grow: 1;
        background-color: #fff;
    }

    .block-search .control {
        background: transparent;
    }
     
    .header.content .logo img, .cms-index-index .page-header .logo img.logo-alt
    {
        width: 125px;
    }
  
    body:not(.cms-home) .page-header div.wishlist .icon,
    body:not(.cms-home) .page-header .customer .icon {
        filter: invert(1);
    }


}

@media (min-width: 1024px) {
    .cms-home .feature-section .feature-img-text-wrapper {
        min-height: 400px;
    }
    
    .cms-index-index.luxury-fullscreen-slider .page-header {
    	position: initial;
    }
  
    .cms-index-index.luxury-fullscreen-slider .page-header .header.wrapper {
        background: #000;
    }
  
    .cms-index-index.luxury-fullscreen-slider .nav-sections:not(.is_stuck) .navigation:not(.navpro-theme-dark) .level0>.level-top {
        color: #000;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
     .cms-home .feature-section .feature-img-text-wrapper {
        min-height: 450px;
    }
  
    h1.page-title {
        font-size: 30px;
    }
}
