.ei-container{
    max-width: 1400px;
    padding: 0 15px;
    margin: 0 auto;
    overflow-x: hidden !important;
    overflow: hidden !important;
}

.ei-title{
    font-size: 48px;
    font-weight: 100;
}
.ei-subtitle{
    color: var(--brown);
    font-size: 20px;
}
.ei-category-subtitle {
    color: var(--brown);
    font-size: 14px;
}

.ei-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 120px;
    height: 50px;
    background: #444;
    border: none;
    border-radius: 50px;
    padding: 0 10px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.4s ease-in-out;
}

.ei-button::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #ddd;
    transition: transform 0.4s ease-in-out;
    transform: translateX(100%);
    border-radius: 50px;
}

.ei-button:hover{
    background: transparent;
}
.ei-button:hover::before {
    transform: translateX(0%);
}

.ei-button span {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease-in-out;
}

.ei-button:hover span {
    color: var(--black);
}
.ei-hero-buttons .ei-button:hover span {
    color: #000000;
}
.ei-hero-buttons .ei-button {
    font-family: var(--font-gotham) !important;
    font-weight: 200;
}

.ei-arrow {
    position: relative;
    z-index: 1;
    background: #ddd;
    color: #000000;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background 0.4s ease-in-out;
}


.ei-hero-buttons .ei-arrow{
    width: 50px;
    height: 50px;
    right: -10px;
}
.ei-hero-buttons .ei-arrow svg {
    transform: rotate(90deg);
}
.ei-button.magazine svg, .ei-button.sixreason svg {
    transform: rotate(-45deg) !important;
}
.ei-hero-buttons .ei-button{
    background: #ffffff70;
}
.ei-hero-buttons a:hover .ei-hero-buttons a span{
    color: #000000;
}

/* Certification Section */
.ei-certifications {
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ei-certifications-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 150px 0px;
}

.ei-certifications-logo {
    max-width: 150px;
}

.ei-certifications-text {
    font-size: 48px;
    font-style: italic;
    color: var(--white);
}

/* Partners Logo */
.ei-partners {
    background: #5e5656;
}
.ei-partners-wrapper{
    padding-top: 50px;
    padding-bottom: 100px;
}
.ei-partners-content {
    text-align: center;
}

.ei-partners-content h2 {
    font-size: 48px;
    font-style: italic;
    color: var(--white);
}

.ei-partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-top: 45px;
}
.ei-partners-logos svg path {
    fill: #AF9C64;
}

/* Map Wrapper */
.ei-map-wrapper {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ei-map-wrapper .ei-button{
    width: 250px;
    margin-bottom: 30px;
}
.ei-map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 15px;
}

/* Contact Form */
.ei-contact-form, .ei-category-cards{
    background-color: var(--white)fff82;
    background-blend-mode: overlay;
}
.ei-contact-wrapper{
    padding: 50px 0;
}
.ei-main-contact-form {
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    width: 600px;
}
.ei-cm-content{
    text-align: center;
}
.ei-main-contact-form .ei-form-row {
    display: flex;
    gap: 15px;
}
.ei-main-contact-form .ei-form-group {
    margin-bottom: 15px;
    flex: 1;
}
.ei-main-contact-form .ei-input, .ei-textarea, .ei-select {
    width: 100%;
    padding: 15px;
    background-color: var(--white);
    border-radius: 10px;
}
.ei-main-contact-form .ei-textarea {
    height: 100px;
    resize: none;
}
.ei-main-contact-form .ei-button {
    width: 100%;
    background: var(--brown);
}


/*Stacking Cards*/
.ei-cards-wrapper {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ei-card {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid #ddd;
    padding: 10px;
}
.ei-card img {
    width: 100%;
    display: block;
    min-height: 320px;
}
.ei-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgb(0 0 0 / 25%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    max-width: 70%;
}
.ei-card .ei-title{
    font-size: 30px;
}
.ei-subtext {
    font-size: 16px;
    color: var(--white);
    margin-top: 5px;
    line-height: 1.5;
}
.ei-number {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 80px;
    color: var(--brown);
    font-style: italic;
}
.ei-cards-content{
    text-align: center;
    line-height: 25px;
}
.ei-cards-content h2{
    line-height: 30px;
}
/* Category Cards */
.ei-category-cards{
    padding: 50px 0;
}
.ei-category-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.ei-category-card {
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    padding: 15px;
}

#ei-cat-video {
    min-height: 400px;
    width: 100%; 
    object-fit: cover;
    border-radius: 12px;
}

.ei-category-card img {
    width: 100%;
    min-height: 400px;
    max-height: 400px;
    border-radius: 12px;
    transition: opacity 1s ease-in-out;
    opacity: 1;
    object-fit: cover;
}

.ei-category-title {
    font-size: 28px;
    font-style: normal;
    margin: 10px 0;
    font-weight: 100;
}
.ei-overlay-wrapper{
    position: relative;
}

.ei-cat-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #00000080;
    border-radius: 5px;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    visibility: hidden;
}
.ei-category-card:hover .ei-cat-overlay{
    visibility: visible;
    transition: .3s;
}
.ei-cat-overlay p{
    color: var(--white);
    font-size: 14px;
    text-align: center;
    padding: 10px;
}

/* Our Mission */
.ei-our-mission .ei-container {
    padding: 50px 0;
}

.ei-mission-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0px 10px;
}

.ei-mission-col {
    width: 50%;
}

.ei-mission-img{
    border-radius: 15px;
}
.ei-mission-wrapper .ei-button{
    width: 150px;
}



/********************
===> About Us Page 
********************/

.ei-about-us, .ei-pt-100{
    padding-top: 100px;
}
.ei-about-content{
    text-align: center;
    margin-bottom: 50px;
}
.ei-about-content img{
    border-radius: 5px;
}
.ei-about-desc, .ei-common-desc {color: #304c5d;}
.ei-about-lifetime{
    color: #304c5d;
    font-style: italic;
}
h3.ei-about-lifetime{
    font-style: normal;
}
.ei-about-desc, .ei-common-desc p, .ei-about-desc, .ei-common-desc li{
    font-style: normal;
}
/********************
===> Contact Page 
********************/

.ei-contact-page, .ei-shop-page{
    padding-top: 100px;
    padding-bottom: 50px;
}
.ei-title.ei-cp-title{
    text-align: center;
}
.ei-contact-page-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.ei-contact-page-form {
    display: flex;
    flex-direction: column;
}
.ei-contact-page-form .ei-button{
    width: 100%;
}

.ei-contact-page-form-group {
    margin-bottom: 15px;
}

.ei-contact-page-form-group label {
    font-weight: 200;
    display: block;
    margin-bottom: 5px;
    color: #444;
    font-family: var(--font-raleway) !important;
}

.ei-contact-page-input, 
.ei-contact-page-textarea {
    width: 100%;
    padding: 10px !important;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

.ei-contact-page-input:focus, 
.ei-contact-page-textarea:focus {
    border-color: #B6A486;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.ei-contact-page-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Contact Information Section */
.ei-contact-page-info {
    margin-top: 30px;
    text-align: center;
}

.ei-contact-page-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.ei-contact-page-info p {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
}

.ei-contact-page-info a {
    color: #B6A486;
    text-decoration: none;
    font-weight: 600;
}

.ei-contact-page-info a:hover {
    text-decoration: underline;
}


/*Signle Page*/

.el-single-blog-wrapper{
    padding-top: 100px;
}
.ei-single-post {
    margin: 50px auto;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
.ei-single-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}
.ei-single-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.ei-single-thumbnail img {
    border-radius: 8px;
    margin-bottom: 20px;
}
.ei-single-content {
    font-size: 18px;
    line-height: 1.2;
    color: #333;
}
.ei-single-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.ei-single-navigation a {
    text-decoration: none;
    font-weight: bold;
    color:rgb(176 154 100);
}
.ei-related-posts {
    margin-top: 50px;
}
.ei-related-posts h3 {
    font-size: 24px;
    margin-bottom: 20px;
}
.ei-related-list {
    display: flex;
    gap: 20px;
}
.ei-related-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}
.ei-single-content li{
    font-style: italic;
    padding: 5px 0;
}
.el-single-blog-wrapper ul {
    margin-left: 0;
}

/*History Page*/
.ei-history{
    padding-bottom: 50px;
}
.ei-common-headline {
    font-size: 30px;
}
.history-row.hs-order {
    flex-direction: row-reverse;
}
.ei-common-headline, .ei-common-headlines{
    color:#304c5d;
}
.el-history-year{
    color:rgb(176 154 100);
    font-size: 30px;
}
a.ei-download-elitness {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    background: var(--brown);
    padding: 10px;
    border-radius: 5px;
    transition: 1s all;
    letter-spacing: 1px;
    border: 1px solid transparent;
}
a.ei-download-elitness:hover {
    color: var(--white);
    background: transparent;
    border-color: var(--white);
}
.el-history-group-head{
    color: #304c5d;
    font-size: 25px;
    text-transform: capitalize;
}
.el-history-group-description{
    font-style: italic;
}
.history-first-col, .history-second-col{
    width: 50%;
}
.history-second-col{
    background: transparent;
}
.ei-history-img{
    border-radius: 4px;
}

.ei-common-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
.ei-common-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
}
.ei-common-hero-title {
    font-size: 45px;
    font-weight: 100;
    letter-spacing: 2px;
    margin-bottom: 0;
}
.ei-common-hero-btn, .ei-6reason-btn {
    color: var(--white) !important;
    border: 1px solid var(--white);
    padding: 10px 20px;
    margin-top: 30px;
    border-radius: 5px;
    text-decoration: none;
}
.ei-common-hero-btn.ei-cc-btn{
    margin-top: 0;
}
.ei-common-hero-btn, .ei-6reason-btn, .ei-download-elitness, .ei-collection-button{
    font-family: var(--font-gotham) !important;
    font-weight: 200 !important;
}
.ei-common-hero-btn:hover, .ei-6reason-btn:hover{
    background-color: rgb(176 154 100);
    border: 1px solid rgb(176 154 100);
    color: var(--white) !important;
}
.ei-common-hero-btn:visited, .ei-6reason-btn:visited{
    color: var(--white) !important;
}
.ei-blog-inner-img {
    text-align: center;
}




.timeline {
    position: relative;
    width: 100%;
    margin: 50px auto;
}

/* Vertical Line */
.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #a58b60;
    transform: translateX(-50%);
    z-index: 1;
}
.history-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    z-index: 2;
}
/* Timeline Circle */
.timeline-circle {
    position: absolute;
    left: 50%;
    width: 44px;
    height: 44px;
    background: #a58b60;
    border-radius: 100px;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    overflow: visible;
    z-index: 10;
}
.timeline-circle:first-child, .timeline-circle:last-child{
    background-color: #fff;
}
.timeline-circle::after {
    content: "";
    background-image: url('../assets/img/icon-slider-smaller_on.svg');
    width: 44px;
    height: 44px;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
}
.timeline-circle:first-of-type::after, .timeline-circle:last-of-type::after{
    display: none;
}

.timeline-circle:first-of-type::before,
.timeline-circle:last-of-type::before {
    content: "";
    display: block;
    width: 44px;
    height: 44px;
    background-image: url('../assets/img/bullet-top.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(-90deg);
}

.timeline-circle:first-of-type::before{
    margin-top: 15px;
}
.timeline-circle:last-of-type::before{
    margin-top: -15px;
}


/*Magazine Page*/

.ei-mz-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: auto;
    padding: 100px 0;
}

.ei-mz-card {
    background: white;
    border: 1px solid #b29f7e;
    padding: 40px 15px;
    text-align: left;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ei-mz-date {
    color: #b29f7e;
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 10px;
    text-decoration: underline;
}

.ei-mz-title {
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 10px;
}

.ei-mz-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.ei-mz-btn, .ei-mz-btn:visited  {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #b29f7e;
    color: #b29f7e;
    text-decoration: none;
    font-weight: 200;
    border-radius: 3px;
    transition: 0.3s;
    width: fit-content;
}

.ei-mz-btn:hover{
    background: #b29f7e;
    color: white;
}
.ei-magazine-desc{
    padding-top: 100px;
}


/* 6 Reasons Template */

#ei-6-reasons-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;

    /* Default background */
    background-image: var(--current-bg, url('/wp-content/uploads/2025/03/Anais-6r.jpg'));
    transition: background-image 1s ease-in-out;

    /* Extra layer for smooth fading */
    --current-bg: url('/wp-content/uploads/2025/03/Anais-6r.jpg');
    --next-bg: none;
}

#ei-6-reasons-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--next-bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* When changing background */
#ei-6-reasons-banner.fade-bg::before {
    opacity: 1;
}

.ei-6reason-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    margin: auto;
}

.ei-6reason-card {
    text-align: center;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.ei-6reason-card:hover {
    transform: translateY(-5px);
}

.ei-6reason-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
}

.ei-6reason-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(160, 130, 75, 0.8);
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

.ei-6reason-title {
    font-size: 16px;
    font-style: italic;
    color: #a0824b;
    margin: 10px 0;
    padding: 10px;
    border-top: 2px solid #ddd;
}
/* Sections for 6 Reason */
.ei-6r-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.ei-6r-container {
    display: flex;
    align-items: center;
    margin: auto;
    gap: 40px;
    padding: 40px 0;
}
.ei-6r-image-wrapper.ei-6r-order {
    order: 2;
}

.ei-6r-image-wrapper {
    position: relative;
    flex: 1;
    cursor: pointer;
}

.ei-6r-image {
    width: 100%;
    padding-top: 60%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
}
.ei-6r-image:hover {
    filter: grayscale(100%);
}

.ei-6r-number {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #fff, #a0824b);
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    z-index: 1;
}

.ei-6r-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.ei-6r-play-button:hover {
    background: rgba(255, 255, 255, 1);
}

.ei-6r-content {
    flex: 1;
    text-align: left;
}

.ei-6r-title {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.ei-6r-subtitle {
    font-size: 18px;
    color: #a0824b;
    margin-bottom: 15px;
}

.ei-6r-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ei-6r-learn-more {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #a0824b;
    color: #a0824b;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    display: none;
}

.ei-6r-learn-more:hover {
    background: #a0824b;
    color: white;
}

/* 6 Reasons Video Popup*/

.ei-6r-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.ei-6r-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
}

.ei-6r-modal video {
    width: 100%;
    height: auto;
}

.ei-6r-close {
    position: absolute;
    top: -25px;
    right: -30px;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
}

/* WorkShop Page */
.ei-workshop-container {
    position: relative;
    width: 100%;
    height: 100vh;
}
.ei-workshop-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.ei-workshop-image.active {
    opacity: 1;
}
.ei-workshop-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}
.ei-workshop-title {
    font-size: 2rem;
    margin-bottom: 20px;
}
.ei-workshop-btn {
    padding: 10px 20px;
    background: white;
    color: black;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.ei-workshop-buttons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.ei-workshop-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    cursor: pointer;
}
.ei-workshop-button.active {
    background-color: white;
}
.ei-ws-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.ei-ws-popup video {
    width: 80%;
    max-width: 800px;
}
.ei-ws-popup-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}


/* Collections Inner */
.cinner-section{
    padding: 50px 0;
}
.ei-cinner-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}
.ei-container.ei-in-collection{
    text-align: center;
}
.ei-cinner-first-col, .ei-cinner-second-col {
    flex: 1;
}
.ei-cinner-second-col img{
    transition: transform 0.9s ease;
}
.ei-cinner-second-col img:hover{
    transform: scale(1.1);
}
.ei-cinner-first-col.ei-cc-order {
    order: 1;
}
.ei-cinner-card {
    border: 1px solid #b89c6a; 
    padding: 20px;
    width: 100%; 
    text-align: left;
    color: #5a4a36;
    background: #fff;
}

.ei-cinner-subtitle {
    font-style: italic;
    color: #b89c6a;
    margin-top: 0;
}

.ei-cinner-title {
    font-size: 22px;
    color: #5a4a36;
    margin: 10px 0;
}

.ei-cinner-description {
    font-size: 14px;
    color: #5a4a36;
    margin-bottom: 20px;
}

.ei-cinner-button {
    border: 1px solid #b89c6a;
    padding: 8px 15px;
    background: transparent;
    color: #b89c6a;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.ei-cinner-button:hover{
    background: #b89c6a;
    color: var(--white) !important;
}
.ei-cinner-button:visited {
    color: #b89c6a;
}
.ei-cinner-second-col img{
    border-radius: 3px;
}

.ei-ci-center{
    padding: 30px 0;
    text-align: center;
}
.yt-collection-intro-img, .hp-collection-intro-img, .cc-intro-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    border-radius: 100%;
}

.hp-collection-intro-img{
    border-radius: 5px;
}

.ei-toggle-btn {
    background-color: var(--brown);
    color: var(--white);
    border: 1px solid var(--brown);
    padding: 10px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    margin-bottom: 20px;
  }
  
  .ei-toggle-btn:hover {
    background-color: transparent;
    border-color: var(--black);
    color: var(--black);
  }
  
  .ei-features-list {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }
  .ei-features-list ul{
    margin-left: 20px;
    padding-left: 0;
  }
  
  .ei-features-list.expanded {
    max-height: 500px;
  }
  ul.hospitality-logos {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 0;
    padding-left: 0;
}
.hospitality-logos img {
    height: 55px;
    width: 300px;
}


    /* Step Slider */
    
  
  .ei-btn-horizontal-wrapper {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding: 20px 0 10px;
    max-width: 600px;
    margin: 40px auto 0;
    position: relative;
  }

  .ei-btn-horizontal {
    text-align: center;
    flex: 1;
    text-decoration: none;
    color: #888;
    cursor: pointer;
  }

  .ei-btn-horizontal-title {
    display: block;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    color: inherit;
  }

  .ei-btn-horizontal-subtitle {
    display: block;
    font-style: italic;
    font-size: 12px;
    color: inherit;
    margin-top: 10px;
  }

  .ei-btn-horizontal.active .ei-btn-horizontal-title {
    color: #2e5d2e; 
  }

  .ei-btn-horizontal.active .ei-btn-horizontal-subtitle {
    color: #a18c5f; 
  }

  .ei-btn-horizontal-bar {
    height: 2px;
    background-color: #a18c5f;
    width: 25%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
  }


  /* Beds Lightbox */
  .ei-beds-lightbox-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    gap: 40px;
    padding-bottom: 50px;
}

  .ei-beds-lightbox-content a span {
    width: 300px;
    height: 300px;
    display: inline-block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
}

    .lcl_fade_oc.lcl_pre_show #lcl_overlay,
    .lcl_fade_oc.lcl_pre_show #lcl_window,
    .lcl_fade_oc.lcl_is_closing #lcl_overlay,
    .lcl_fade_oc.lcl_is_closing #lcl_window {
        opacity: 0 !important;
    }
    .lcl_fade_oc.lcl_is_closing #lcl_overlay {
        -webkit-transition-delay: .15s !important; 
	transition-delay: .15s !important;
}

.lcl_icon {
    font-family: 'lc_lightbox' !important;
}

.ei-blog-video iframe{
    width: 100% !important;
    height: 500px !important;
}

.ei-single-content.ei-news h2, .ei-single-content.ei-news h3, .ei-news-inner-content h2, .ei-news-inner-content h3{ color: #a39161 !important;}
.ei-news-inner-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.ei-news-inner-flex > *{
    flex: 1;
}
.ei-news-inner-img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.ei-news-inner-img img {
    border-radius: 5px;
}

.ei-news-inner-content:not(.ei-news-order) {
    order: 2;
}

.ei-news-inner-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ei-news-inner-img img, .ei-news-inner-img-event img {
    border: 10px solid #ddd;
    border-radius: 100%;
}

.eie-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  text-align: center;
  text-transform: uppercase;
}

.eie-line {
  flex: 1;
  border: none;
  border-top: 1px solid #999;
  margin: 0 20px;
}

.eie-title-content h2 {
  margin: 0;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 2px;
}

.eie-title-content p {
  font-size: 14px;
  font-style: italic;
  color: #a8904c; 
  margin: 5px 0 0;
}
.eie-form-wrapper {
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Georgia', serif;
  color: #333;
}

.eie-form {
  width: 100%;
}

.eie-form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.eie-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.eie-form-group label {
  font-size: 14px;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.eie-form-group input[type="text"],
.eie-form-group input[type="email"] {
  border: none;
  border-bottom: 1px solid #d4b06a;
  padding: 5px 0;
  font-size: 14px;
  background: transparent;
  outline: none;
}

.eie-radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.eie-radio-group input[type="radio"] {
  margin-right: 5px;
  /* accent-color: #d4b06a; */
}

.eie-required-note {
  font-size: 12px;
  font-style: italic;
  margin-top: 20px;
  color: #333;
}

.dttp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.eie-submit-btn {
  color: #b9984e;
  background-color: var(--white);
  border: 1px solid #b9984e;
  font-size: 16px;
  padding: 10px 30px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.eie-submit-btn:hover {
  background-color: #b9984e;
  color: var(--white);
}
.eie-form-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.ei-news-inner-img-event {
    padding: 0 15px;
}
.ei-news-center-image{
    display: flex;
    justify-content: center;
    align-items: center;
}

.ei-partners-logos img {
    width: 120px;
}
.ei-footer-info {
    line-height: 1.5;
}


.eic-btn {
    color: var(--white);
    background-color: var(--brown);
    text-decoration: none;
    border: 1px solid var(--brown);
    padding: 5px 10px;
    line-height: normal;
    margin-top: 20px;
    display: block;
    width: fit-content;
    border-radius: 5px;
}


.eic-btn:hover{background-color: #000000; border-color: #000000; color: #fff;}
table img {
    width: 50px;
}
.table-bordered, 
.table-bordered td, 
.table-bordered th {
    border: 1px solid #d1d1d1;
    border-collapse: collapse;
    padding: 8px;
}








.cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
 
.product-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card__image {
    height: auto;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 15px;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__info {
    padding: 20px;
}

.product-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333333;
    line-height: 1.4;
}

.product-card__description {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 20px;
}

.product-card__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.product-card__price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brown);
}

.product-card__btn {
    background-color: var(--brown);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    line-height:normal;
    text-decoration: none;
}

.product-card__btn:hover {
    background-color: #000;
    color: #fff;
}

.product-card__btn:visited{
  color: #ffffff;
}
.product-card__price del{display: none !important;}

@media (max-width: 1024px) {
  .cont {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .cont {
    grid-template-columns: repeat(1, 1fr);
  }
.product-card__image{height: auto; width: 100%;}

}

@media (max-width: 480px) {
    .shop-cat-wrap ul li a{font-size: 18px;}
    .cont {
        max-width: 100%;
    }

    .product-card__title {
        font-size: 1.3rem;
    }

    .product-card__description {
        font-size: 0.8rem;
    }

    .product-card__price {
        font-size: 1.1rem;
    }

    .product-card__btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
@media (max-width: 375px) {
    .shop-cat-wrap ul li a{font-size: 16px;}
}

.ei-shop-page-wrapper{margin-bottom: 40px; }
.ei-shop-page-wrapper .ei-title.ei-cp-title{font-weight: 600 !important;}

.shop-cat-wrap ul {
    margin: 0;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
    gap: 20px;
    white-space: nowrap;
}

.shop-cat-wrap ul li {
    list-style: none;
}

.shop-cat-wrap ul li a {
    text-decoration: none;
    font-weight: 200;
    color: #000;
    font-size: 20px;
    outline: none;
    padding: 10px 5px;
    line-height: normal;
    display: block;
    border-radius: 4px;
    border: 1px solid #000;
    outline: none;
    
}

.shop-cat-wrap ul li.active a {
    border-color: green;
    background: green;
}
.shop-cat-wrap ul li.active a{
    color: #fff;
}
.shop-cat-wrap ul li:hover{
    cursor: pointer;
    background: green;
}
.shop-cat-wrap ul li:hover a{
    color: #fff;
    border-color: green;
}
.sec-shop-cat.section-gap{
    margin-top: 50px;
}

/* Full-page overlay */
#ei-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.36); /* Light dark background */
    display: none; /* Hidden normally */
    justify-content: center;
    align-items: center;
    z-index: 99999;

}

/* Loader spinner */
#ei-overlay .ei-loader {
    width: 45px;
    height: 45px;
    border: 4px solid #ddd;
    border-top-color: #014718ff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.ei-category-card a:visited{color: var(--black);}

.ei-category-card a:hover {color: var(--white);}

button.aicon_link{bottom: 165px !important;}