.offer {
    width: 100%;
    margin-bottom: 10px;
    padding: 20px;
    box-sizing: border-box;
    
    .gallery {
        position: relative;
        width: 100%;
        aspect-ratio: 3 / 4;
        border-radius: 7px;
        overflow: hidden;
        background: #eee;
    }
    
    .gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .price-pill {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 3;
        background-color: #FFFC;
        backdrop-filter: blur(8px);
        padding: 8px 14px;
        border-radius: 7px;
        font-size: 15px;
        font-weight: 600;
        color: #222;
        box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    }
    
    .gallery .icon-btn {
        position: absolute;
        z-index: 3;
        width: 36px;
        height: 36px;
        border: none;
        border-radius: 50%;
        background: #FFFC;
        backdrop-filter: blur(8px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        -webkit-tap-highlight-color: transparent;
    }
    
    .gallery .icon-btn:active {
        filter: brightness(0.96);
    }
    
    .gallery .icon-btn svg {
        display: block;
        width: 22px;
        height: 22px;
    }
    
    .gallery .icon-btn.share {
        bottom: 10px;
        left: 10px;
    }
    
    .gallery .icon-btn.share svg {
        transform: translateX(-1px);
    }
    
    .heart {
        position: absolute;
        bottom: 10px;
        right: 10px;
        z-index: 3;
        width: 36px;
        height: 36px;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: #FFFC;
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0,0,0,0.12);
        -webkit-tap-highlight-color: transparent;
    }
    
    .heart img {
        width: 22px;
        height: 22px;
        display: block;
        object-fit: contain;
    }
    
    .heart:active {
        filter: brightness(0.96);
    }
    
    .ski-in-out-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 3;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #FFFC;
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.12);
        pointer-events: none;
    }
    
    .ski-in-out-badge img {
        width: 22px;
        height: 22px;
        display: block;
        object-fit: contain;
    }
    
    .gallery .dots {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        z-index: 2;
        pointer-events: none;
    }
    
    .gallery .dots-dot {
        display: block;
        width: 12px;
        height: 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
        transition: width 0.28s ease, background 0.2s ease;
        flex-shrink: 0;
    }
    
    .gallery .dots-dot--active {
        width: 25px;
        background: rgba(255, 255, 255, 0.92);
    }
    
    .info {
        display: block;
        text-decoration: none;
        color: #717171;
        margin-top: 12px;
    }
    
    .info > div {
        display: flex;
        align-items: center;
        gap: 6px;
        justify-content: space-between;
    }
    
    .info .star {
        font-size: 14px;
        color: var(--red);
        font-weight: 700;
    }
    
    .info h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
        color: #000;
    }
    
    .info h4 sup {
        font-size: 0.68em;
        font-weight: 600;
        letter-spacing: 0.03em;
        vertical-align: super;
        margin-left: 0.2em;
    }
    
    .info p {
        margin: 0;
        margin-top: 3px;
        font-size: 14px;
        color: #717171;
        line-height: 1.3;
    }
}