:root{
    --bg-dark: #5d4427;
    --bg-light: #c9a678;
}

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

.ei-title{
    font-size: 30px;
    font-weight: 100;
}
.ei-subtitle{
    color: var(--black);
    font-size: 20px;
}
.ei-category-subtitle {
    color: var(--black);
    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:hover{
    background: transparent;
}

.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: #181818;
}
.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-contact-page .ei-button {
    width: fit-content;
    background: var(--black);
    margin-left: auto;
}
.ei-contact-page .ei-button:hover{
    background: var(--black);
}
.ei-contact-page .ei-button:hover span{
    color: var(--white);

}


/*Stacking Cards*/
.ei-cards-wrapper {
    padding: 0 0 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ei-card {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto;
}
.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;
    line-height: 1.2;
}
.ei-subtext {
    font-size: 16px;
    color: var(--white);
    margin-top: 5px;
    line-height: 1.5;
    font-weight: 100;
}
.ei-number {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}
.ei-cards-content{
    text-align: center;
    line-height: 25px;
}
.ei-cards-content h2{
    line-height: 1.2;
}
/* 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: italic;
    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;
}

.news-card-content a {
    font-weight: 200;
    margin-top: 15px;
    display: inline-block;
}

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

.ei-about-us, .ei-pt-100{
    padding-top: 100px;
}
.ei-about-us, .ei-contact-page{background: var(--bg-light);}
.ei-about-us .ei-container, .ei-contact-page .ei-container{background: var(--bg-light); color: #000;}
.ei-about-desc p{color: #000;}
.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{
    padding-top: 100px;
    padding-bottom: 50px;
}
.ei-shop-page{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-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: var(--black);
    text-decoration: none;
    font-weight: 600;
}

.ei-contact-page-info a:hover {
    text-decoration: underline;
}
.ei-about-desc h3, .ei-common-desc h3{
    color: var(--black);
    font-weight: 500 !important;
}


/*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.7;
    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;
}
.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: var(--black);
    border: 1px solid var(--black);
    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;
    padding: 30px 0;
    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;
}.ei-images-cards {
    display: grid;
    grid-template-columns: repeat( 3, 1fr);
    gap: 5px;
}

.ei-image-card-wrapper {
    position: relative;
}

.ei-image-card-wrapper image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  
}

/* Tablet */
@media (max-width: 900px) {
    .ei-images-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .ei-images-cards {
        grid-template-columns: 1fr;
    }
}

/*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;
}










.sec-after-hero h2{
    text-transform: uppercase;
}
.home-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.home-banner-content .item img{width: 1400px;}
.home-banner-content .item {position: relative;}
.home-banner-content .item .item-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    text-align: center;
    background: rgb(229 229 229 / 40%);
    padding: 10px 20px;
    border-radius: 6px;
}
.home-banner-content .item .item-inner h3{
    text-transform: uppercase;
    color: var(--black);
}


.om-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 40px;
}

.om-item img {
    width: 150px;
    height: 140px;
}

.om-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.om-content h2 {
    text-align: center;
}

.sec-outlast-minardi {
    padding: 40px 0;
}

.sec-cat-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 30px; 
}

.ei-home-cat video {
  width: 100%;
  height: auto;
  display: block;
}
.ei-home-cat a {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--white);
    font-family: var(--font-gotham);
    font-weight: 200;
    background-color: var(--black);
    padding: 10px 15px;
    border-radius: 4px;
    transition: all .3s;
    display: inline-block;
    border: 1px solid var(--black);
}
.ei-home-cat a:hover{background-color: transparent; color: var(--black);}


.calzini-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}
.calzini-card{
    position: relative;
}
.cc-inner {
    position: absolute;
    bottom: 0;
    background: rgb(0 0 0 / 25%);
    color: white;
    padding: 15px;
    border-radius: 0;
    max-width: 100%;
    text-align: center;
    width: 100%;
}

.section-gap {
    padding: 30px 0;
}

.calzini-btn {
    background-color: #000;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    transition: all .3s;
    text-decoration: none;
}
.calzini-btn:visited{color: #fff;}
.calzini-btn:hover{
    background-color: var(--iron);
    color: #fff;
}

.calzini-item .item-title{
    font-size: 25px;
    color: var(--white) !important;
}
.calzini-item .item-subtitle{
    font-size: 16px;
    color: var(--white) !important;
}

.calzini-item {
    background: #000;
    color: #fff;
    padding: 15px;
    border-radius: 0;
    max-width: 100%;
    text-align: left;
    width: 100%;
}

.cz-product-cards {
    display: grid;
    grid-template-columns: repeat( 5, 1fr );
    gap: 30px 25px;
}
.cz-product-card figure {
    width: 238px;
    height: 317px;
    position: relative;
    margin: 0;
}

.cz-product-card figure img {
    position: absolute;
    left: 0;
    top: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.owl-carousel .owl-item img{outline: 3px solid transparent; outline-offset: 2px ;}
.cz-product-card h4 {
    font-size: 12px;
    text-transform: uppercase;
    margin: 30px 0 15px 0;
}
.cz-product-card h2 {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 25px 0;
}
.cz-product-card a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 200;
}

.front-about {
    position: relative;
    background-image: url('/wp-content/uploads/2025/10/cards-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.front-about .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55); 
    z-index: 1;
}

.front-about .front-desc {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    font-weight: 200;
}
.front-desc .calzini-btn {
    background: transparent;
    border: 0.5px solid #ddd;
    padding: 10px 20px;
}
.cz-cat-cards {
    display: grid;
    grid-template-columns: repeat( 4, 1fr );
    gap: 20px;
}


.cz-cat-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    height: 360px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.cz-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s ease;
}

.cz-cat-card:hover .cz-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.cz-cat-card h4 {
    position: relative;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    z-index: 2;
    padding: 15px;
    margin: 0;
}


.calzini-confidence {
    display: grid;
    grid-template-columns: repeat( 2, 1fr);
    gap: 5px;
    background-color: #c9a678;
}

.cz-conf-step {
    max-height: 400px;
    position: relative;
    overflow: hidden;
    padding-bottom: 145%;
}

.cz-conf-step img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.sec-full-gallery {
    padding: 70px 0;
    position: relative;
    background: #c9a678;
    overflow: hidden;
}

/* Content Wrapper */
.sfg-content {
    position: relative;
    z-index: 1;
}

/* Overlapping Boxes Container */
.overlapping-boxes {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 550px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Content Box (Left Box with Text) */
.content-box {
    position: relative;
    background: #f9f6f3;
    padding: 70px 60px;
    width: 45%;
    max-width: 560px;
    z-index: 2;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.content-box h2 {
    font-size: 38px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 35px;
    line-height: 1.35;
    position: relative;
    padding-bottom: 20px;
}

.content-box h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #c9a678;
}

.content-box p {
    font-size: 16px;
    line-height: 1.85;
    color: #333;
    margin-bottom: 35px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.learn-more .arrow {
    margin-left: 10px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #c9a678;
}

.learn-more:hover .arrow {
    transform: translateX(5px);
}

/* Image Box (Right Box with Image) */
.image-box {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 65%;
    max-width: 800px;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ====================================== */
/* SECTION 2: FUSION GALLERY (IMAGE LEFT, TEXT RIGHT) */
/* Default Spacing: 70px (Large Devices) */
/* ====================================== */

.sec-fusion-gallery {
    padding: 70px 0;
    position: relative;
    background: #5d4427;
    overflow: hidden;
}

/* Overlapping Boxes Container - Reverse Layout */
.overlapping-boxes-reverse {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 550px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Image Box (Left Side) */
.image-box-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 65%;
    max-width: 800px;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.image-box-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Content Box (Right Side - Overlapping) */
.content-box-right {
    position: relative;
    background: #f9f6f3;
    padding: 70px 60px;
    width: 45%;
    max-width: 560px;
    z-index: 2;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.content-box-right h2 {
    font-size: 38px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 35px;
    line-height: 1.35;
    position: relative;
    padding-bottom: 20px;
}

.content-box-right h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #5d4427;
}

.content-box-right p {
    font-size: 16px;
    line-height: 1.85;
    color: #333;
    margin-bottom: 35px;
}

.content-box-right .learn-more {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.content-box-right .learn-more .arrow {
    margin-left: 10px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.content-box-right .learn-more:hover {
    color: #5d4427;
}

.content-box-right .learn-more:hover .arrow {
    transform: translateX(5px);
}

/* ====================================== */
/* SECTION 3: BLOG POSTS (2-COLUMN GRID) */
/* Default Spacing: 70px (Large Devices) */
/* ====================================== */

.sec-blog-posts {
    padding: 70px 0;
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
}

/* Blog Content Container */
.blog-content {
    position: relative;
    z-index: 1;
}

/* Blog Title */
.blog-title {
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.blog-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 2px;
    background: #1a1a1a;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Blog Image */
.blog-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

/* Blog Card Content */
.blog-card-content {
    padding: 30px;
}

.blog-card-content h3 {
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Blog Footer */
.blog-footer {
    text-align: center;
}

.view-more {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-more .arrow {
    margin-left: 10px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.view-more:hover {
    color: #fff;
}

.view-more:hover .arrow {
    transform: translateX(5px);
}
.calzani-btn-sec, .sec-cz-videos {background: var(--bg-light);}
.sec-about{background: var(--bg-dark);}

/* ====================================== */
/* SECTION 4: NEWS (3-COLUMN GRID WITH OVERLAYS) */
/* Default Spacing: 70px (Large Devices) */
/* ====================================== */

.sec-news {
    padding: 70px 0;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
}

/* News Content Container */
.news-content {
    position: relative;
    z-index: 1;
}

/* News Title */
.news-title {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.news-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 2px;
    background: #fff;
}

/* News Grid - 3 Columns */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

/* News Card */
.news-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* News Image Wrapper with Overlay */
.news-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image-wrapper img {
    transform: scale(1.05);
}

/* News Overlay Text on Image */
.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.news-overlay-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: uppercase;
}

.news-overlay-text {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.news-script {
    font-family: 'Brush Script MT', cursive;
    font-weight: 400;
    text-transform: none;
    font-size: 42px;
}

/* News Card Content */
.news-card-content {
    padding: 25px;
}

.news-card-content h3 {
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* News Footer */
.news-footer {
    text-align: center;
}

/* ====================================== */
/* SECTION 5: NEWSLETTER (EMAIL SIGNUP FORM) */
/* Default Spacing: 70px (Large Devices) */
/* ====================================== */

.sec-newsletter {
    padding: 70px 0;
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
}

/* Newsletter Content Container */
.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Newsletter Title */
.newsletter-title {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 2px;
}

.newsletter-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 2px;
    background: #fff;
}

/* Newsletter Description */
.newsletter-description {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 40px;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 650px;
    margin: 0 auto;
}

/* Newsletter Input */
.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    font-size: 15px;
    border: 1px solid #ddd;
    background: #ffffff;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-input:focus {
    border-color: #c9a678;
}

/* Newsletter Button */
.newsletter-button {
    padding: 18px 50px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    background: #b39b6d;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: capitalize;
}

.newsletter-button:hover {
    background: #a08a5c;
}

.sec-difference {background: var(--bg-dark);}
.sec-difference > * , .sec-difference .ei-subtitle {color: #fff !important;}

.sec-slider-slick .ei-container {max-width: 800px; margin: 0 auto;}
.sec-slider-slick{background: var(--bg-light);}

.cz-products-sec{background: var(--bg-light)}
.animated-video-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr );
    align-items: stretch;
}
.avc-card {
    position: relative;
    padding-bottom: 56%;
    height: 500px;
}

.avc-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ei-hero {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    padding-bottom: 56%;
}

video#ei-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content a {
    display: block;
    padding-top: 20px;
    color: #000;
    font-weight: 200;
}

.cz-title{font-size: 20px;font-weight: 200;}


.attributes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .attribute {
    margin-bottom: 20px;
  }

  .attribute h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #3a2a2a;
  }

  .bar {
    position: relative;
    height: 5px;
    background: #f1f1f1;
    border-radius: 3px;
    overflow: hidden;
  }

  .bar-fill {
    position: absolute;
    height: 100%;
    background: #222;
    border-radius: 3px;
  }

  .labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #6d4c4c;
    margin-top: 6px;
  }

  button.aicon_link{position: absolute; bottom: 100px;}