.elementor-5333 .elementor-element.elementor-element-a0692bd{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-around;--padding-top:3%;--padding-bottom:3%;--padding-left:3%;--padding-right:3%;}.elementor-5333 .elementor-element.elementor-element-a0692bd:not(.elementor-motion-effects-element-type-background), .elementor-5333 .elementor-element.elementor-element-a0692bd > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FDFBF9;}@media(max-width:1366px){.elementor-5333 .elementor-element.elementor-element-a0692bd{--padding-top:3%;--padding-bottom:3%;--padding-left:3%;--padding-right:3%;}}@media(max-width:1024px){.elementor-5333 .elementor-element.elementor-element-a0692bd{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}}@media(min-width:2400px){.elementor-5333 .elementor-element.elementor-element-a0692bd{--margin-top:0%;--margin-bottom:0%;--margin-left:0%;--margin-right:0%;--padding-top:3%;--padding-bottom:3%;--padding-left:3%;--padding-right:3%;}}/* Start custom CSS for html, class: .elementor-element-fcfd889 */.christmas-cards-container {
    display: flex;
    gap: 24px;
    padding: 0;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

.christmas-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26, 60, 52, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    flex: 1;
    min-width: 0;
    border: 1px solid #E8E4E0;
}

.christmas-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(26, 60, 52, 0.12);
    border-color: #D97D79;
}

.card-image-wrapper {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #F8EAE9 0%, #FCF5F4 100%);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.christmas-card:hover .card-image {
    transform: scale(1.08);
}

.card-content {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    min-width: 0;
}

.card-title {
    color: #1A3C34;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-subtitle {
    color: #7A7A7A;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1A3C34;
    color: #FDFBF9;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 4px;
}

.christmas-card:hover .card-button {
    background: #D97D79;
}

/* Tablet & Mobile - simple text links */
@media (max-width: 1024px) {
    .christmas-cards-container {
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
    }

    .christmas-card {
        all: unset;
        display: block;
        padding: 8px 0;
        text-decoration: none;
    }

    .christmas-card:hover,
    .christmas-card:active {
        all: unset;
        display: block;
        padding: 8px 0;
        text-decoration: none;
    }

    .card-image-wrapper,
    .card-subtitle,
    .card-button {
        display: none;
    }

    .card-content {
        all: unset;
    }

    .card-title {
        all: unset;
        display: block;
    }
}/* End custom CSS */