@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: 'Montserrat', sans-serif;*/
    font-family: 'Poppins', sans-serif;
}
/*html {
    font-size: 15px;
}*/
/*:root {    
    --primary: {{ primary }};
    --secondary: {{ secondary  }};
    --primary-light: {{ primary_light }};
    --secondary-light: {{ secondary_light }};
    --heading-text: {{ heading }};
    --dark: {{ dark }};
    --primary-tone: {{ primary_tone }};
    --secondary-tone: {{ secondary_tone }};
    --dark-text: {{ dark_text }};
    --normal-text: #897b76;
    --light-ash: #eee;
    --light-text: #ffffff;
}*/

:root {
    --primary: #3a86ff;
    --secondary: #ffbe0b;
    --primary-light: #39CAFF;
    --secondary-light: #6DB2E7;
    --third: #3EB53F;
    --dark: #000e14;
    --primary-tone: #897b76;
    --secondary-tone: #768489;
    --dark-text: #000e14;
    --normal-text: #595959;
    --normal-text-darker: #595959;
    --light-ash: #eee;
    --light-text: #ffffff;
}

a {
    text-decoration: none;
}
p {
    color: var(--normal-text);
    font-size: 15px;
    line-height: 26px;
}
li {
    list-style: none;
    font-size: 15px;
    line-height: 26px;
    color: var(--normal-text);

}
button {
    outline: none;
    border: none;
}

.container {
    width: 85%;
    margin: auto;
}
.relative {
    position: relative;
}
.text-center {
    text-align: center;
}
.text-white {
    color: white !important;
}
.img-fluid {
    display: block;
    width: 100%;
}
.mx-auto {
    margin: auto;
}
.secondary-text {
    color: var(--secondary);
}
.primary-text {
    color: var(--primary);
}
.round-small {
    border-radius: 5px;
}
.round-medium {
    border-radius: 15px;
}
.round-large {
    border-radius: 25px;
}


/* grid and flex */
.grid-center-y {
    place-items: center;
}
.grid-2-in-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
}
.grid-2-in-1-ratio-2-to-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-ratio-1-to-5 {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-ratio-1-to-5-wrap {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-column-gap: 20px;
}

.grid-2-in-1-ratio-3-to-1 {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-ratio-3-to-1-wrap {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-column-gap: 20px;
}

.grid-2-in-1-ratio-5-to-1 {
    display: grid;
    grid-template-columns: 5fr 1fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-ratio-5-to-1-wrap {
    display: grid;
    grid-template-columns: 5fr 1fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-member-contact-display-select {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-column-gap: 10px;
/*    justify-items: center;*/
}
.grid-2-in-1-ratio-2-to-1-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 10px;
}

.grid-3-in-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
}

.grid-3-in-1-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
}

.grid-4-in-1-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 30px;
}

/* input container */
@media(max-width: 450px) {

    .grid-2-in-1-wrap, .grid-2-in-1-ratio-2-to-1-wrap, .grid-3-in-1-wrap, .grid-2-in-1-ratio-3-to-1-wrap, .grid-4-in-1-wrap, .grid-2-in-1-ratio-1-to-5-wrap, .grid-2-in-1-ratio-5-to-1-wrap {
        grid-template-columns: 1fr;
        /*grid-column-gap: 50px;*/
        grid-row-gap: 5px;
    }
}



.container {
    width: 90%;
    margin: 0 auto;
}

@media(min-width: 1300px) {
    .container {
        width: 1100px;
    }
}
.emphasize {
    color: #39CAFF;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
}
/* Navbar Styles (from previous code, abbreviated) */
.navbar {
    background-color: #fff;
    /*padding: 15px 0;*/
    /*position: sticky;
    top: 0;
    z-index: 1000;*/
    height: 70px;
    border-bottom: 1px solid #ddd;
}

.navbar .container {
    /*max-width: 1200px; /* use container to set this */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: inherit;
}

.logo {
    color: #000;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.logo img {
    width: 150px;

}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
} 

.nav-links a {
    display: block;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    padding: 0px 15px;
    height: 50px;
    line-height: 50px;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.search {
    display: flex;
    align-content: center;
    border-radius: 50%;
/*    background-color: #EDCFFF;*/
}
.nav-links a.search svg path {
    stroke: #555;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(3px);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    top: 100%;
    left: 0;
}


.dropdown-content a {
    display: block;
    padding: 0px 16px;
    color: #000;
    font-size: 14px;
    overflow: hidden;

}

.dropdown-content a:hover {
    overflow: hidden;
    background-color: #000;
    color: #ccc;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.mobile-search {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
/*    background-color: #EDCFFF;*/

}
.mobile-search svg pah {
    stroke: #555;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: #555;
    cursor: pointer;
}

@media (max-width: 768px) {
    .logo img {
        width: 100px;
    }
    .hamburger {
        display: block;
    }
    .mobile-search {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: none;
    }
    .nav-links.active {
        display: flex;
        gap: 0;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 0 20px;
    }

    
    .nav-links a:hover {
        opacity: 0.5;
    }

    .nav-links a.search {
        display: none;
    }


    .dropdown-content {
        position: static;
        background-color: #eee;
        padding-left: 1rem;
        box-shadow: none;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }
}

.section {
    padding: 60px 0;
}
.section {
    padding: 60px 0;
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') 
                center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-in;
    color: #eee;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    /*background-color: #2e5a8a;*/
    background-color: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 25px;
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--primary-light);
    transform: scale(1.05);
}

/* swiper */

.swiper-button-prev, .swiper-button-next {
    padding: 10px;
/*    background-color: rgba(255, 255, 255, 0.8);*/
}


/* Search Properties Section */
.search-properties {
    padding: 60px 0px;
    background-color: #fff;
    text-align: center;
}

.search-properties h2 {
    font-size: 36px;
    font-weight: 700;
    color: #444;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.search-properties p.subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeIn 1.2s ease-in;
}

.search-form select, .search-form button, .search-form input {
    padding: 15px;
    font-size: 13px;
    border: 1px solid #d1d5db;
    border-radius: 25px;
    outline: none;
    flex: 1;
    max-width: 200px;
}

.search-form select {
    background-color: #f5f5f5;
    color: #333;
}

.search-form button {
    background-color: var(--primary);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-form button:hover {
    background-color: #444;
}

.search-form input {
    max-width: 80%;
}

.search-status {
    animation: fadeIn 1.2s ease-in;
    margin-top: 3rem;
}
.search-status button {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #000;
}


/* one line form */
.one-liner-form {
    max-width: 100%;
    /*background: black;*/
    margin-bottom: 1rem;
    display: flex;
    flex-grow: 1;
    justify-content: flex-start;
}
.one-liner-form .input-field {
    width:  calc(100% - 70px);
    /*background: red;*/
}
.one-liner-form .input-field input {
    height: 100%;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    color: black;
    letter-spacing: 1px; 
    border: 1px solid #000;
    border-right: 1px solid #fff;
    border-radius: 25px 0 0 25px;

}
.one-liner-form .button-box {
    width: 70px;
}
.one-liner-form .input-field .input-container {
    margin-bottom: 0;
}
.one-liner-form .button-box button {
    width: 100%;
    display: block;
    border-radius: 0 25px 25px 0;
    height: 100%;
    cursor: pointer;
    background: var(--primary);
    color: white;
}
@media(max-width: 450px) {
    .one-liner-form .input-field {

    }
    
}

/* How swapping works */

.how-swap-works {
    padding: 60px 0px;
    background-color: #fff;
    text-align: center;
}

.how-swap-works h2 {
    font-size: 36px;
    font-weight: 700;
    color: #444;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.swap-carousel {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding: 1rem;
    margin-bottom: 2rem;
}

.swap-step {
    flex: 0 0 20%;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 10px;
    padding: 1rem 0;
/*    text-align: center;*/
}
.swap-step img {
    max-width: 70px;
}

.swap-step p {
    font-size: 12px;
}



@media(max-width: 450px) {
    .swap-step {
        flex: 0 0 40%;
    }
    section h2 {
        font-size: 18px;
    }
}

.clamp-box {
    overflow: hidden;
}

.line-clamp-1, .line-clamp-2 {
    overflow: hidden;
    margin-bottom: 5px;
    color: var(--dark);
    word-spacing: 1px;
    display: -webkit-box;
    -webkit-box-orient: vertical;  
}
.line-clamp-1 {
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
    height: 35px;
}
.clamp-one-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.clamp-two-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
    height: 35px;
}

/* Featured Listings Section */
.featured-listings {
    padding: 60px 0px;
    background-color: #f5f5f5;
    text-align: center;
}

.featured-listings h2 {
    font-size: 36px;
    font-weight: 700;
    color: #444;
    margin-bottom: 20px;
}

.featured-listings p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.listings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin: 0 auto;
}

.listing-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.listing-card img {
    width: 100%;
/*    height: 200px;*/
    object-fit: cover;
}

.listing-info {
    padding: 20px;
/*    background-color: beige;*/
    text-align: left;
    position: relative;
}

.listing-info h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    color: #444;
    margin-bottom: 10px;
}

.listing-info p {
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
}

.listing-info .price {
    font-size: 14px;
    font-weight: bold;
    color: #444;
    margin-bottom: 5px;
}

.listing-info .rating {
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.listing-info .cta-button {
    display: none;
/*    display: inline-block;*/
    padding: 10px 20px;
    font-size: 12px;
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.listing-info .cta-button:hover {
    opacity: 0.8;
/*    background-color: black !important;*/
    color: #fff;
}

.listing-card:hover .cta-button {
    display: inline-block;
}

.listing-card .product-condition {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: orange;
    color: #fff;
    padding: 5px;
    font-size: 12px;
    border-radius: 5px;
}
.listing-card .add-to-wishlist {
    position: absolute;
    top: -25px;
    right: 15px;
    background-color: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 12px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.listing-card .add-to-wishlist svg path {
    stroke: white;
}
.listing-card .add-to-wishlist:hover {
    transform: scale(1.05);
    opacity: 0.7;
}


.chat-on-whatsapp {
    position: fixed;
    bottom: 150px;
    right: 30px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 12px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chat-on-whatsapp svg path {
    fill: #25D366;
}
.chat-on-whatsapp:hover {
    transform: scale(1.05);
    opacity: 0.7;
}


/* Testimonials Section */
.testimonials {
    padding: 60px 0px;
    background-color: #fff;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    color: #444;
    margin-bottom: 20px;
}

.testimonials p.subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #f5f5f5;
    /*background-color: #EDCFFF;*/
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    animation: fadeIn 1s ease-in;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p.quote {
    font-size: 14px;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .client-name {
    font-size: 18px;
    font-weight: 600;
    color: #444;
}

.testimonial-card .client-title {
    font-size: 14px;
    color: #555;
}

/* About Us Section */
.about-us {
    padding: 60px 0px;
    background-color: #f5f5f5;
    text-align: center;
}

.about-us h2 {
    font-size: 36px;
    font-weight: 700;
    color: #555;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.about-us p.subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.2s ease-in;
}

.about-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    animation: fadeIn 1.4s ease-in;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.6s ease-in;
}

/* Company Section */
.company-section {
    padding: 60px 0px;
/*    background-color: #F5F5F5;*/
    background-color: white;
    text-align: center;
}

.company-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #555;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.company-section .subtitle {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    animation: fadeIn 1.2s ease-in;
}

.company-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}

.mission, .vision {
    text-align: left;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.4s ease-in;
}

.mission h3, .vision h3 {
    font-size: 24px;
    color: #555;
    margin-bottom: 15px;
}

.mission p, .vision p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.goals {
    text-align: left;
}

.goals h3 {
    font-size: 24px;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.goals-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
/*    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
    gap: 20px;
}

.goal-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-light);
    transition: transform 0.3s;
    animation: fadeIn 1.6s ease-in;
}

.goal-card:hover {
    transform: translateY(-5px);
}

.goal-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.company-cta {
    margin-top: 40px;
    text-align: center;
}

.company-cta a {
    padding: 15px 30px;
    background-color: #590484;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 25px;
    transition: transform 0.3s, background-color 0.3s;
}

.company-cta a:hover {
    background-color: #6A1B9A;
    transform: scale(1.05);
}

/* Team Members Section */
.team-section {
    padding: 60px 0px;
    background-color: #fff;
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #555;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.team-section .subtitle {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    animation: fadeIn 1.2s ease-in;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background-color: #F5F5F5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 1.4s ease-in;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    color: #590484;
    margin-bottom: 5px;
}

.team-info .role {
    font-size: 16px;
    color: #7B1FA2;
    margin-bottom: 10px;
}

.team-info p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.team-info .social-links a {
    font-size: 18px;
    color: #000;
    margin: 0 10px;
    transition: color 0.3s;
}

.team-info .social-links a:hover {
    color: #AB47BC;
}

.team-cta {
    margin-top: 40px;
}

.team-cta a {
    padding: 15px 30px;
    background-color: #590484;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s;
}

.team-cta a:hover {
    background-color: #6A1B9A;
    transform: scale(1.05);
}


/* Contact Section */
.contact-section {
    padding: 60px 0px;
    background-color: #F5F5F5;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #555;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
    gap: 40px;
    margin-bottom: 40px;
}

.contact-form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.2s ease-in;
}

.contact-form-container h3 {
    font-size: 24px;
    color: #555;
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 1rem;
    font-size: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    width: 100%;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7B1FA2;
    box-shadow: 0 0 5px rgba(123, 31, 162, 0.3);
}

/*.contact-form button {
    padding: 12px;
    font-size: 16px;
    background-color: #7B1FA2;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-form button:hover {
    background-color: #AB47BC;
    transform: scale(1.05);
}*/

.contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.4s ease-in;
}

.contact-info h3 {
    font-size: 24px;
    color: #555;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.contact-info a {
    color: #7B1FA2;
    text-decoration: none;
}

.contact-info a:hover {
    color: #AB47BC;
}

.contact-info .social-links {
    margin-top: 15px;
}

.contact-info .social-links a {
    font-size: 20px;
    color: #E0E0E0;
    margin: 0 10px;
    transition: color 0.3s;
}

.contact-info .social-links a:hover {
    color: #AB47BC;
}

.contact-map {
    grid-column: 1 / -1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.6s ease-in;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Blog Section */
.blog-section {
    padding: 60px 0px;
    background-color: #F5F5F5;
    text-align: center;
}

.blog-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #555;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.blog-section .subtitle {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    animation: fadeIn 1.2s ease-in;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 1.4s ease-in;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
/*    border-radius: 15px;*/
}

.blog-info {
    padding: 20px;
    text-align: left;
}

.blog-info .date {
    font-size: 12px;
    color: #7B1FA2;
    margin-bottom: 10px;
}

.blog-info h3 {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.blog-info p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-info a {
    font-size: 14px;
    color: #7B1FA2;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.blog-info a:hover {
    color: #AB47BC;
}

.blog-section {
    padding: 60px 0px;
}
article {
    background-color: white;
    padding: 1rem;
}
article .blog-title {
    font-size: 36px;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}
article .post-info {
    color: #777;
    font-size: 14px;
}
article .excerpt {
    font-size: 18px;
    margin-bottom: 1rem;
}
article pre {
    background: #444;
    color: #eee;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}
article blockquote {
    border-left: 5px solid #444;
    padding-left: 1rem;
    font-size: 18px;
    color: #444;
    margin-bottom: 1rem;
    /*font-family: cursive;*/
}
article p {
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 16px;
}
article ul li {
    list-style-type: disc;
    margin-left: 2rem;
}
article ol li {
    list-style-type: roman;
    margin-left: 2rem;
}

@media(max-width: 450px) {
    article .blog-title {
        font-size: 18px;
    }
}


/* Contact Card */
.contact-card {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 1.6s ease-in;
}

.contact-card h3 {
    font-size: 24px;
    color: #590484;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.contact-card a {
    padding: 12px 30px;
    background-color: #7B1FA2;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-card a:hover {
    background-color: #AB47BC;
    transform: scale(1.05);
}


/* Footer Section */
.footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
{#     max-width: 1200px; #}
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p, .footer-column a {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.footer-column a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-links a {
    font-size: 16px;
    margin-right: 15px;
    color: #d1d5db;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    align-content: center;
    padding-top: 40px;
    border-top: 1px solid #555;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d5db;
}


/* Modal  */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*padding: 15px;*/
    overflow-y: auto;
    overflow-x: hidden;
    outline: none;
    background: rgba(255,255,255,0.5);
    /*background: rgba(0,0,0,0.9);*/
    /*box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);*/
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);


    /* background: rgba(var(--modal-bg), 0.4); */
    /*opacity: 0.4;*/
    /*transition: transform 0.8s ease-out;*/
    transition: all 0.5s ease;

}
.fade {
    transition: opacity 0.15s linear;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    /*transform: translate(0, -50px); */
}
@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none; 
    } 
}

.modal-content-full-screen {
  width: 100%;
  min-height: 100%;
}
.modal-content {
    padding: 0 1rem;
    padding-bottom: 20px;
    background: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

}


.modal-content-full {
    height: 100%;
}
.modal-content-lg {
    width: 980px;
}
.modal-content-medium {
    width: 700px;
}

.modal-content-small {
    width: 380px;
}
.modal-body {
    padding-bottom: 30px;
    padding-right: 20px;
    overflow-y: auto;
    max-height: 70vh;
    -ms-overflow-style: none;
    /*scrollbar-width: none;*/
    scrollbar-width: thin;
    padding-top: 1rem;
    max-height: 80vh;
}
.modal-body::-webkit-scrollbar {
    width: 8px; /* or any other value */
}
.modal-body::-moz-scrollbar {
    width: 8px; /* or any other value */
}

@media (max-width: 1080px) {
    .modal-content-lg {
        width: 800px;
    }

}
@media (max-width: 810px) {
    .modal-content-lg, .modal-content-medium {
        width: 95%;
    }

}

@media (max-width: 440px) {

    .modal-content-lg, .modal-content-medium, .modal-content-small {
        width: 95%;
    }
    
}

.modal-dialog-top {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.modal-dialog-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*max-height: 80vh;
    justify-content: center;
    align-items: center;*/
}

.modal-dialog-bottom {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 0;
}
.underlined {
    border-bottom: 1px solid #ccc;    
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.modal-header h3 {
    font-weight: normal;
}
.modal .close {
    font-size: 32px;
    line-height: inherit;
    font-weight: bold;
    cursor: pointer;
    /*color: var(--dark-text);*/
    /*border-radius: 25px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal .close:hover {
    color: #000;
}
.modal-header .close svg {
    width: 16px;
    height: 16px;
    z-index: 999999;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 810px) {
    .listings-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .listing-info .cta-button {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 16px;
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    .listings-grid {
        grid-template-columns: 1fr 1fr;
    }
    .search-properties h2, .featured-listings h2, .testimonials h2, .about-us h2 {
        font-size: 28px;
    }
    .search-form {
        /*flex-direction: column;*/
        gap: 10px;
    }
    .search-form select, .search-form button {
        /*min-width: 100%;*/
    }

    .search-form button {
        min-width: 100%;
        margin-top: 1rem;
    }

    .featured-listings h2 {
        font-size: 28px;
    }
    .listings-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .about-content {
        flex-direction: column;
        gap: 20px;
    }
    .about-text {
        text-align: center;
    }

    .company-section h2 {
        font-size: 28px;
    }
    .mission h3, .vision h3, .goals h3 {
        font-size: 20px;
    }
    .company-content {
        gap: 20px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .contact-section h2 {
        font-size: 28px;
    }
    .contact-content {
/*        grid-template-columns: 1fr;*/
/*        gap: 20px;*/
    }
    .contact-map iframe {
        height: 300px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-card {
        padding: 20px;
        margin: 20px;
    }
}

@media (max-width: 450px) {
    .listings-grid {
        grid-template-columns: 1fr;
    }
}

/* spinners */
.spinner {

    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1999;
    background: url(../images/__Iphone-spinner-1.gif) center no-repeat rgba(255, 255, 255, 1);
}

.page-loader-spinner {

    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1999;
    background: url(../images/page-loader-spinner.gif) center no-repeat rgba(255, 255, 255, 1);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    font-size: 12px;

}

.pagination button {
    margin: 5px;
}
.pagination a {
    display: inline-block;
    padding: 5px;
    border-radius: 5px;
    background: #eee;
    cursor: pointer;
    align-content: center;
    text-align: center;
    margin: 0 10px;
}
.pagination button.active {
    background-color: var(--primary);
}


.notification-icon {
    position: absolute;
{#     background-color: var(--primary); #}
    background-color: orange;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    line-height: 20px;
    padding: 0px;
    text-align: center;
    width: 20px;
    height: 20px;
    top: 5px;
    right: 0px;
}
/*product page*/
.product-page-second-section {
    margin-top: 3rem;
}
.product-container {
    display: flex;
    column-gap: 30px;
    justify-content: space-between;
}
.product-container > div {
    width: 50%;
}
.product-details p {
    font-size: 14px;
    margin-bottom: 0.5rem;
}
.product-section {
    padding: 5px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
}
.product-details .product-name {
    font-size: 30px;
    line-height: 1.1;
    font
    color: #000;
    margin: 0;
}
.product-price-container {

}

.product-price-container .price {
    font-size: 1.4rem;
    color: #000;
    font-weight: bold;

}

.product-price-container del.old-price {
    font-size: 10px;
    color: #444;
    font-weight: bold;
}
.product-links {
    margin-top: 1.5rem;
    /*max-width: 450px;*/
}
.product-links button, .product-links a{
    margin-top: 1rem;
    display: block;
    width: 100%;
    text-align: center;
}

.product-links .chat {
    display: flex;
    align-self: center;
    justify-content: center;
    column-gap: 10px;
    width: 100%;
    background-color: white;
    color: seagreen;
    border: 1px solid seagreen;
    margin-bottom: 1rem;
}
.product-links .cta-button svg path {
    fill: seagreen;
}

.nav-tabs {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

.nav-tabs li {
  flex-grow: 1;
  text-align: center;
  list-style-type: none;

}

.nav-tabs li a {
  display: block;
  padding: 10px;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav-tabs li:first-child {
    padding-left: 0px;
    color: red;
}
.nav-tabs li a.active {
  border-bottom: 2px solid #000;
}
.tab-content .tab-pane {
  display: none;
  padding: 20px 0;
}

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

.review:first-child {
    border: none;
    margin-top: 0px;
    padding-top: 0px;
}
.review {
    border-top: 1px solid #ccc;
    margin-top: 10px;
    padding-top: 10px;
}
.review p {
    margin-top: 5px;
}
.review .rating {
    font-size: 12px;
}
.rating {
    font-size: 12px;
}
.rating span {
    color: var(--primary);
}
.rating a {
    color: black;
    text-decoration: underline;
}
.review .comment {
    font-size: 15px;
}

.product-page-description {
    white-space: pre-wrap;
    font-size: 14px;
}

.product-page-specification {
    width: 100%;
/*    white-space: wrap;*/
}
.product-page-specification th {
    font-size: 15px;
    text-align: left;
    height: 60px;
    border-bottom: 1px solid #ddd;
    background-color: #eee;
}
.product-page-specification td {
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    height: 40px;
}
.product-page-specification th, .product-page-specification td {
    padding: 10px;
}
@media(max-width: 810px) {
    .product-container {
        flex-wrap: wrap;
    }
    .product-container > div {
        width: 100%;
    }
    .product-section {
        padding: 0px;
        margin-bottom: 0.7rem;
    }
    .product-details .product-name {
        font-size: 20px;
        margin-top: 1rem;
        padding: 10px 0;
    }
    .product-details .rating {
        font-size: 12px;
    }
    .product-price-container .price {
        font-size: 18px;
    }

    .product-page-description {
        font-size: 13px;
    }
    

}
@media(max-width: 450px) {
    .product-section {
        padding: 0;
        margin-bottom: 0.5rem;
    }
    .nav-tabs li a {
        font-size: 12px;
    }
    .review .comment {
        font-size: 13px;
    }
    .product-details .product-name {
        font-size: 18px;
        margin-top: 1rem;
        padding: 10px 0;
    }
    .product-details .rating {
        font-size: 12px;
    }
    .product-price-container .price {
        font-size: 16px;
    }
    

    .product-page-specification th {
        font-size: 14px;
        height: 50px;
    }
    .product-page-specification td {
        font-size: 13px;
        height: 30px;
    }
}

.product-details .promo-special {
    background-color: var(--secondary);
    color: var(--white-text);
    padding: 4px 15px;
    margin-right: 5px;
    font-size: 14px;
    border-radius: 5px;
}

.load-more-btn {
    max-width: 200px;
    display: block;
    margin: 30px auto;
    text-align: center;
    border: none;
    outline: none;
    padding: 15px 20px;
    background-color: var(--primary);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white-text);
    cursor: pointer;
}

.load-more-btn:hover {
    background-color: darkorange;
}

.attribute-group {
    margin-bottom: 1rem;
}
.attribute-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.attribute-select {
    font-size: 0.8rem;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    border-radius: 20px;
    width: 100%;
    background-color: white;
    cursor: pointer;
}
.attribute-select:hover {
    background-color: #eee;
}
.variation-details {
    background-color: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 11px;
}
.variation-details p {
    font-size: 12px;
}
.hidden {
    display: none !important;
}
.variation-details .cta-button {
    display: block;
    width: 100%;
}


/* Table */
table {
    width: 100%;
    white-space: nowrap;
}
.table {
    border-radius: 15px;
    border-top: 2px solid var(--btn-bg-hover);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #212529;
    /*border: 2px solid var(--border-lighter);*/
    border-collapse: collapse;
{#     background: red !important; #}
}
.table table {
    width: 100%;
    white-space: nowrap;
}

.table th,
.table td {
    text-align: left;
    padding: 0.75rem;
    vertical-align: top;
    border: none;
}
.table td {
    border-top: 1px solid var(--light-text);
}
.table thead {
    border-radius: 10px;
    background-color: var(--light-theme);
}
.table thead th, .table thead th label {
    color: #a64dff;
    font-weight: 600;
    vertical-align: bottom;
    /*border-bottom: 2px solid var(--border-lighter);*/
}
.table thead th label {
    padding: 0px;
    margin: 0px;
}
/*.table tbody+tbody {
    border-top: 2px solid var(--border-lighter);
}*/


.table th {
    color: var(--dark-text);
    font-size: 13px;
}

.table td {
    color: var(--font-semidark);
    font-size: 13px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(var(--table-striped-bg), 0.05);
}
/*.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}*/
@media (max-width: 430px) {
    .table {
        padding: 5px;
    }

}
/* // table */


/* store */

.ecommerce-product-box {
/*    padding: 10px;*/
    background-color: white;
}
.ecommerce-product-box-header {
    background-color: #eee;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ecommerce-product-box-body {
    padding: 10px 0px;
}
.feature-title {
    font-size: 18px;
/*    margin-bottom: 20px;*/
}
.view-more {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    cursor: pointer;
}
.store-slide-feature {
    display: flex;
    column-gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0 10px;
{#     background-color: red; #}
}
.store-slide-feature .slide-item {
    width: 180px;
    padding: 5px;
    position: relative;
}
.store-slide-feature .slide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.slide-item .product-condition {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: orange;
    color: #fff;
    padding: 5px;
    font-size: 12px;
    border-radius: 5px;
}
.store-switch-slide-feature {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.store-slide-feature::-webkit-scrollbar  {
    display: none;
}

.store-item {
    position: relative;
}
.store-switch-slide-feature .slide-item {
    margin-bottom: 1.5rem;
    width: 24%;

}
.prev, .next {
    color: #fff;
    z-index: 1;
    font-size: 28px;
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
{#     display: none; #}
}
.prev {
    left: 0;
}
.next {
    right: 0;
}
.ss {
    display: none;
}

.store-switch-slide-feature:hover .prev, .store-switch-slide-feature:hover .next {
    display: block;
}

.store-item a {
    color: black;
}
.store img {
    border-radius: 10px;
    width: 100%;
}
.slide-item .info {
    padding: 0 5px;
}
.slide-item .info .line-clamp-1 {
    margin-bottom: 0;
}
.slide-item .info h3 {
    font-size: 0.8rem;
}
.slide-item .info p {
    font-size: 0.7rem;
}
.store-promo {
    height: 30px;
    line-height: 30px;
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: var(--light-bg);
    border-radius: 10px;
}
.store-promo .promo {
    font-size: 12px;
    font-weight: 500;
    margin-left: 10px;
    padding-right: 10px;
}
.store-promo button {
    font-size: 10px;
    font-weight: 600;
    /* margin-left: 10px; */
    /* padding-right: 10px; */
    border: none;
    background: transparent;
    cursor: pointer;
}
@media (max-width: 450px) {
    .feature-title {
        font-size: 14px;
    }
    .feature-title + a {
        font-size: 12px;
    }
}
/* // store */



/* cart things */
.grid-2-in-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-ratio-1-to-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: 20px;
}
.cart-item {
    display: flex;
    margin-bottom: 1rem;
    padding: 1.5rem 10px;
    border-radius: 15px;
    border: 1px solid #ddd;
}
.cart-left {
    flex: 0 0 20.00%;
    max-width: 20%;
/*    padding-left: 10px;*/
/*    padding-right: 10px;*/
}
.cart-right {
    flex: 0 0 80.00%;
    max-width: 80%;
    padding-left: 10px;
    position: relative;
}
.cart-item-image {
/*    padding: 10px;*/
}
.promo-special {
    background-color: var(--secondary);
    color: var(--white-text);
    padding: 4px 15px;
    margin-right: 5px;
    font-size: 12px;
    border-radius: 5px;
}
.cart-item-name {
    margin-bottom: 1rem;
}
.cart-item-name h3 {
    font-size: 0.9rem;
    color: #000;
}
.cart-item-name a {
    color: #000;
    text-decoration: underline;
}
.cart-item-others {
    font-size: 12px;
}
.cart-item-price {
    margin-bottom: 10px;
    font-weight: 600;
}
.cart-item-price .money {
    font-size: 13px;
}
.price-del {
    font-size: 11px;
    color: #777;
}
.cart-item-quantity {
    display: inline;
    margin-right: 10px;
    font-size: 12px;
    margin-bottom: 1.5rem;
}
.increase-quantity-btn, .decrease-quantity-btn {
    color: var(--dark-text);
    font-weight: bold;
    background-color: white;
    border: 1px solid black;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
}
.increase-quantity-btn {
    margin-right: 10px;
}
.increase-quantity-btn:hover, .decrease-quantity-btn:hover {
    background-color: #ddd;
}
.cart-quantity-value {
    padding: 5px;
}

.remove-cart-item {
    position: absolute;
    bottom: 5px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    color: black;
    background-color: var(--light-bg);
    cursor: pointer;
    text-decoration: underline;
}

.remove-cart-item:hover {
    color: #444;
}

.cart-border-bottom {
    border-bottom: 2px solid #eee;
}
.cart-border-top {
    border-top: 2px solid #eee;
}
.cart-item-total {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    background-color: #f4f9fa;

}
.cart-item-total p, .cart-item-total h3 {
    margin-bottom: 10px;
}

.cart-item-total p {
    font-size: 12px;
}

.cart-item-total .sub-total p {
    font-size: 14px;
    font-weight: 500;
}

.add-to-cart-btn, .image-preview-btn {
/*    max-width: 150px;*/
    display: inline;
/*    margin: auto;*/
    text-align: center;
    border: none;
    outline: none;
    padding: 15px 10px;
    background-color: var(--primary);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white-text);
    cursor: pointer;
}
.add-to-cart-btn:hover {
    background-color: tomato;
}
.variation-details td {
    font-size: 13px;
    padding: 7px 8px;
}
.variation-details .add-to-cart-btn {
    font-weight: 500;
/*    background-color: #444;*/
    display: block;
}
.checkout-btn {
    display: block;
    margin: auto;
    text-align: center;
/*    vertical-align: bottom;*/
    border: none;
    outline: none;
    padding: 10px 20px;
    background-color: var(--primary);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}
.order-btn {
/*    max-width: 200px;*/
    display: inline-block;
/*    margin: auto;*/
    text-align: center;
/*    vertical-align: bottom;*/
    border: none;
    outline: none;
    padding: 5px 10px;
    margin-left: 10px;
    background-color: var(--primary);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}
.address-container {
    padding: 1rem;
}

.cart-address, .cart-shipping-fee {
    font-size: 12px;
    color: #555;
}
.address-action {
    text-align: right;
    float: right;
}
.image-preview-btn {
    display: inline-block;
}
@media(max-width: 1080px) {
    .cart-item-total p {
        line-height: 16px;
        font-size: 11px;
    }
    .cart-item-total .sub-total p {
        font-size: 13px;
    }
}
@media (max-width: 450px) {
    .cart-item-container {
        margin-bottom: 100px;
    }
    .cart-item-total {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        margin: 0;
        border-radius: 20px 20px 0 0;
        background-color: #444;
    }
    .cart-item-total p {
        color: #ddd;
    }
    
    .checkout-btn, .cart-item-total p {
        font-size: 12px;
    }
    
}


/* alert */

.alert {
    /*display: none;*/
    position: fixed;
    top: 0;
    right: -350px;
/*    min-width: 350px;*/
    width: 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
    min-height: 50px;
    /*line-height: 50px;*/
    background: white;
    color: var(--dark-text);
    font-weight: bold;
    font-size: 12px;
    /*text-align: center;*/
    z-index: 2000;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.05);
    /*transition: width 2s ease;*/
    transition: all 0.5s ease;

}
.alert .close-alert {
/*    padding: 8px;*/
    font-size: 20px;
/*    border-radius: 15px;*/
    cursor: pointer;
}
.alert-flex {
    display: flex;
    height: inherit;
}
.alert-flex div:first-child {
    width: calc(100% - 50px);
    padding: 10px;
    text-align: left;
}
.alert-flex div:last-child {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
}
.alert-flex div:last-child span {
    color: black;
    cursor: pointer;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error, .alert-failed {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* // alert */

