.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}
.lightbox.active {
    display: flex;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}
.lightbox-close:hover {
    color: #F5BB00;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    z-index: 10000;
    user-select: none;
}
.lightbox-nav:hover {
    color: #F5BB00;
}
.lightbox-prev {
    left: 20px;
}
.lightbox-next {
    right: 20px;
}
.look11-gallery__image {
    cursor: pointer;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.look11-gallery__item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.look11-gallery__grid {
    display: block !important;
    columns: 2 !important;
    column-gap: 6px !important;
    grid-template-columns: none !important;
}
.look11-gallery__item {
    break-inside: avoid;
    margin-bottom: 6px;
}
.look11-gallery__image {
    width: 100%;
    height: auto;
    display: block;
}
.contact-cards {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    font-family: var(--font-subheading-family);
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.contact-card span {
    font-weight: 600;
    font-size: 16px;
}
.contact-card--whatsapp {
    background: #25D366;
    color: white;
}
.contact-card--whatsapp svg {
    fill: white;
}
.contact-card--phone {
    background: #F5BB00;
    color: white;
}
.contact-card--phone svg {
    stroke: white;
}
.contact-card--email {
    background: #30B68B;
    color: white;
}
.contact-card--email svg {
    stroke: white;
}
.contact-card--location {
    background: #216869;

    .contact-card__label, .contact-card__text {
        color: white;
    }
}
.contact-card--location svg {
    stroke: #fff;
}
.contact-card__icon {
    width: 28px;
    height: 28px;
}
.contact-card__label {
    font-weight: 600;
    font-size: 14px;
    display: block;
    color: #333;
}
.contact-card__text {
    font-size: 14px;
    color: #666;
}
social-links {
    display: flex;
    justify-content: center;
}
.socialCollection__container {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}
.socialCollection__icon {
    z-index: 11;
}
.socialCollection__icon a {
    display: flex;
    column-gap: 6px;
    align-items: center;
}
.socialCollection__icon .socialCollection__label {
    color: #216869;
}
.socialCollection__icon svg path {
    stroke: var(--color-group3);
    fill: none;
}
.socialCollection__container.variant__white {
    flex-direction: row;
    column-gap: 10px;
}
.socialCollection__container.variant__white .socialCollection__label {
    color: #fff;
}
.socialCollection__container.variant__white svg path {
    stroke: #fff;
}
