/* Product UI Hotspot Section */
:root {
    --uiCardBg: #fff;
    --uiCardText: #333333;
    --uiPin: #ffffff;
    /* inner dot */
    --uiPinRing: rgba(255, 255, 255, .32);
    /* outer ring */
    --uiHeadGrey: #7E7E80;
}

.ui_hotspot_section {
    background: #F6F6F6;
    padding: 50px 0 0 0;
}

.ui_hotspot_header {
    margin-bottom: 24px;
}

.ui_hotspot_header .section_title {
    font-family: "Playfair Display", serif;
}

.ui_hotspot_sub {
    color: #4D4D4D;
    font-size: 16px;
    line-height: 21px;
    margin-top: 10px;
}

.ui_hotspot_media {
    position: relative;
}

.ui_hotspot_media picture img {
    display: block;
    width: 100%;
    height: auto;
}

/* Pins */
.ui_hotspot_pins {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ui_pin {
    --size: 12px;
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: var(--uiPin);
    border: 0;
    box-shadow: 0 0 0 10px var(--uiPinRing);
    pointer-events: auto;
    cursor: pointer;
    transition: box-shadow .25s, transform .2s;
}

/* inner dot (kept crisp) */
.ui_pin:after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--uiPin);
}

/* pulsing soft glow */
.ui_pin:before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .40);
    animation: uiPulse 1.8s ease-out infinite;
}

.ui_pin:hover {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, .42);
}

.ui_pin.is-active {
    transform: translate(-50%, -50%) scale(1.06);
}

.ui_pin.is-active:before {
    animation-duration: 1.2s;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .55);
}

@keyframes uiPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .40);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* tiny passive pins for decorative alignment */
.ui_pin--tiny {
    --size: 10px;
    opacity: .9;
    pointer-events: none;
}

.ui_pin--tiny:before {
    animation-duration: 2.2s;
    opacity: .8;
}

/* Cards (desktop absolute) */
.ui_hotspot_cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ui_card {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    background: var(--uiCardBg);
    color: var(--uiCardText);
    width: 200px;
    pointer-events: auto;
    border: 1px solid #E7E7E7;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
    opacity: 0;
    transition: opacity .25s, transform .25s;
}

.ui_card {
    display: none;
}

.ui_card.is-active {
    display: block;
    opacity: 1;
}

.ui_card_media {
    padding: 10px;
}

.ui_card_media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.ui_card_body {
    padding: 0 16px 16px 16px;
}

.ui_card_title {
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    position: relative;
}

.ui_card_title:after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--brandBg);
    margin-top: 8px;
}

.ui_card_title span {
    font-weight: 600;
    color: var(--brandColor);
}

.ui_card_text {
    font-size: 13px;
    line-height: 18px;
    color: #474749;
}

/* Mobile panel */
.ui_hotspot_mobile_panel {
    display: none;
}

@media only screen and (max-width: 767px) {
    .ui_hotspot_section {
        padding: 30px 0 0 0;
    }

    .ui_hotspot_cards {
        display: none;
    }

    .ui_hotspot_mobile_panel {
        display: block;
        padding: 16px;
    }

    .ui_hotspot_mobile_panel .ui_card {
        position: static;
        transform: none;
        width: 100%;
        display: block;
        margin-top: 12px;
    }

    /* .ui_hotspot_mobile_panel .ui_card_media{height:150px;} */
    .ui_pin {
        --size: 10px;
    }

    .ui_hotspot_sub {
        font-size: 14px;
        margin-top: 5px;
    }
}

/* Collage */
.collage_section {
    padding: 50px 0;
}

.collage_header_row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
    gap: 25px;
    align-items: center;
}

.collage_header_row .section_title {
    font-family: "Playfair Display", serif;
    line-height: 1.2;
}

.collage_left {
    width: 280px;
}

.collage_right {
    width: 45%;
    padding-left: 20px;
}

.collage_right p {
    font-size: 16px;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 1.5;
}

.collage_grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
    justify-content: center;
}

.collageblockone {
    width: 33.33%;
}

.collage_item {
    padding: 0 8px;
    margin-bottom: 16px;
}


@media screen and (max-width:1400px) {

    .collage_right p {
        font-size: 15px;
    }
}

@media screen and (max-width:1400px) {

    .collageblockone {
        width: 50%;
    }
}


@media only screen and (max-width: 767px) {
    .collage_section {
        padding: 30px 0;
    }

    .collage_left,
    .collage_right {
        width: 100%;
        padding-left: 0;
    }

    .collage_right p {
        font-size: 14px;
    }

    .collage_header_row {
        gap: 15px;
    }

    .collageblockone {
        width: 100%;
        text-align: center;
    }

    .collageblockone img {
        width: 100%;
    }

    .collage_item {
        padding: 0;
    }

}