@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@400;600&display=swap');

.ts-wrapper-876f3f4c {
    background-color: #23201D;
    padding: 80px 20px;
    color: #D8D0C3;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}
.ts-container-876f3f4c {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}
.ts-left-876f3f4c, .ts-right-876f3f4c {
    flex: 1 1 45%;
    min-width: 300px;
}
.ts-image-wrapper-876f3f4c {
    position: relative;
    border-radius: 24px;
}
.ts-main-image-876f3f4c {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: transform 0.5s ease;
}
.ts-wrapper-876f3f4c.is-visible .ts-main-image-876f3f4c {
    transform: scale(1.02);
}
.ts-floating-cards-876f3f4c {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
}
.ts-card-876f3f4c {
    background: rgba(35, 32, 29, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #C8A86B;
    padding: 15px 25px;
    border-radius: 12px;
    color: #F5F1E8;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.ts-wrapper-876f3f4c.is-visible .ts-card-876f3f4c {
    opacity: 1;
    transform: translateY(0);
}
.ts-wrapper-876f3f4c.is-visible .ts-card-876f3f4c:nth-child(1) { transition-delay: 0.1s; }
.ts-wrapper-876f3f4c.is-visible .ts-card-876f3f4c:nth-child(2) { transition-delay: 0.2s; }
.ts-wrapper-876f3f4c.is-visible .ts-card-876f3f4c:nth-child(3) { transition-delay: 0.3s; }

.ts-card-876f3f4c:hover {
    transform: translateY(-5px) !important;
}
.ts-card-876f3f4c span {
    color: #C8A86B;
    margin-right: 8px;
}

.ts-label-876f3f4c {
    font-size: 14px;
    letter-spacing: 3px;
    color: #C8A86B;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.ts-heading-876f3f4c {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: #F5F1E8;
    margin: 0 0 20px 0;
    line-height: 1.1;
}
.ts-subheading-876f3f4c {
    font-size: 18px;
    line-height: 1.8;
    color: #D8D0C3;
    margin-bottom: 40px;
}

.ts-blocks-876f3f4c {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.ts-block-876f3f4c {
    border-top: 1px solid #C8A86B;
    padding-top: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
}
.ts-wrapper-876f3f4c.is-visible .ts-block-876f3f4c {
    opacity: 1;
    transform: translateX(0);
}
.ts-wrapper-876f3f4c.is-visible .ts-block-876f3f4c:nth-child(1) { transition-delay: 0.2s; }
.ts-wrapper-876f3f4c.is-visible .ts-block-876f3f4c:nth-child(2) { transition-delay: 0.3s; }
.ts-wrapper-876f3f4c.is-visible .ts-block-876f3f4c:nth-child(3) { transition-delay: 0.4s; }
.ts-wrapper-876f3f4c.is-visible .ts-block-876f3f4c:nth-child(4) { transition-delay: 0.5s; }

.ts-block-876f3f4c h3 {
    font-size: 22px;
    font-weight: 600;
    color: #C8A86B;
    margin: 0 0 10px 0;
}
.ts-block-876f3f4c p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .ts-heading-876f3f4c { font-size: 34px; }
    .ts-floating-cards-876f3f4c {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 20px;
        justify-content: center;
    }
    .ts-card-876f3f4c {
        padding: 10px 15px;
        font-size: 12px;
    }
}