.inspiration-section {
    position: relative;
    padding: 0 30px;
    margin: 35px 0 60px 0;
    border-radius: 10px;
    background: #f8f8f8;
    font-family: 'Montserrat', sans-serif;
}

/* Wrapper */
.inspiration-wrapper {
    position: relative;
    width: 100%;
    max-height: 650px !important;
    border-radius: 5px;
    overflow: hidden;
}

/* Image */
.inspiration-image {
    width: 100%;
    height: 550px;          /* fixed frame */
    object-position: center 80%;
    object-fit: cover;      /* crop high-res images properly */
    display: block;
}

/* Bottom Blur Overlay */
.inspiration-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    backdrop-filter: blur(1px);
    background: rgba(0,0,0,0.25);
    pointer-events: none;     /* prevents blocking clicks */
    z-index: 1;
}

.hotspot {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;      /* above overlay */
    transition: transform 0.25s ease;
}

/* Inner white circle */
.hotspot::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
}

/* Horizontal line */
.hotspot::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background: black;
}

/* Vertical line */
.hotspot span {
    position: absolute;
    width: 2px;
    height: 10px;
    background: black;
}

/* Hover scale */
.hotspot:hover {
    transform: scale(1.1);
}

.hotspot-info {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
}

.hotspot-info h4 {
    font-size: 16px;
    margin: 0 0 5px;
    color: #111;
}

.hotspot-info p {
    font-size: 13px;
    margin: 0 0 4px;
    color: #666;
}

.hotspot-info small {
    font-size: 12px;
    color: #999;
}

/* Show detail on hover */
.hotspot:hover .hotspot-info {
    opacity: 1;
    visibility: visible;
}

.product-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-content {
    background: white;
    padding: 40px;
    width: 380px;
    border-radius: 10px;
    position: relative;
    text-align: left;
    animation: fadeIn 0.3s ease;
}

.popup-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.popup-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.popup-content span {
    font-size: 13px;
    color: #999;
    display: block;
    margin-bottom: 20px;
}

.popup-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #d0a04f;
    color: white;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.popup-btn:hover {
    background: #333;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 26px;
    background: #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
}
.close-popup:hover {
    background: black;
    color: white;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hotspot1{
    top: 47%;
    left: 25%;
}

.hotspot2{
    top: 47%;
    left: 71%;
}

.hotspot3{
    top: 80%;
    left: 55%;
}

.hotspot4{
    top: 30%;
    left: 50%;
}
.discover-btn{
    display: none;
}
@media (max-width: 768px) {
    .inspiration-image{
        height: 250px;
    }

    .inspiration-section{
        padding: 0 20px;
        margin: 25px 0 20px 0;
    }
    .discover-btn {
        display: block;
        position: absolute;
        left: 50%;
        bottom: 35px;
        width: 70%;
        transform: translateX(-50%);
        padding: 8px 10px;
        border: 2px solid white;
        color: white;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        letter-spacing: 1px;
        z-index: 20;
    }

    /* .discover-btn {
        backdrop-filter: blur(2px);
        background: rgba(0,0,0,0.3);
        transition: all 0.3s ease;
    } */

    .discover-btn:hover {
        background: white;
        color: black;
    }

    .hotspot{
        display: none;
    }
}   