/*-- Use For Custom Styling --*/

/* ===========================================================
   Shop the look — pulzáló hotspotok + termék popup
   Demó kiegészítés · Conen DIGITAL Studio
   (minden más stílus az eredeti sablonból jön)
   =========================================================== */

.shop-look{
    position: relative;
    padding: 200px 0 120px;
    background-color: #ffffff;
    overflow: hidden;
}
.shop-look #look-circle{
    position: absolute;
    width: 260px;
    height: 260px;
    left: -90px;
    top: 90px;
    opacity: .12;
}
.look-row{ margin-top: 70px; }

.look-panel{
    position: relative;
    max-width: 470px;
    margin: 0 auto 30px;
    background-color: #f4f2ef;
    overflow: hidden;
}
.look-panel img{
    display: block;
    width: 100%;
    height: auto;
}
.look-caption{
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 22px 26px;
    background: linear-gradient(to top, rgba(33,33,33,.82), rgba(33,33,33,0));
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    letter-spacing: .5px;
    text-align: left;
    pointer-events: none;
}
.look-caption b{ font-weight: 600; }
.look-caption span{ display: block; font-size: 13px; opacity: .8; margin-top: 3px; }

/* --- A pulzáló pontok --- */
.hotspot{
    position: absolute;
    width: 46px;
    height: 46px;
    margin: -23px 0 0 -23px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hotspot .dot{
    position: relative;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #c84c4c;
    box-shadow: 0 0 0 3px rgba(255,255,255,.85);
    transition: transform .3s ease;
}
.hotspot .dot::after{
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    width: 15px; height: 15px;
    margin: -7.5px 0 0 -7.5px;
    border-radius: 50%;
    background-color: rgba(200,76,76,.55);
    animation: lookPulse 2.2s ease-out infinite;
}
.hotspot:hover .dot,
.hotspot:focus .dot{ transform: scale(1.25); }
.hotspot:focus{ outline: none; }
.hotspot:focus-visible{ outline: 2px solid #c84c4c; outline-offset: 4px; }

@keyframes lookPulse{
    0%   { transform: scale(.7); opacity: .9; }
    70%  { transform: scale(2.6); opacity: 0; }
    100% { transform: scale(2.6); opacity: 0; }
}
/* Egymás után induljanak, hogy ne egyszerre lüktessenek */
.hotspot:nth-of-type(2) .dot::after{ animation-delay: .35s; }
.hotspot:nth-of-type(3) .dot::after{ animation-delay: .7s; }
.hotspot:nth-of-type(4) .dot::after{ animation-delay: 1.05s; }
.hotspot:nth-of-type(5) .dot::after{ animation-delay: 1.4s; }
.hotspot:nth-of-type(6) .dot::after{ animation-delay: 1.75s; }

.look-hint{
    margin-top: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #606060;
}
.look-hint b{ color: #c14545; font-weight: 600; }

/* --- Termék popup --- */
.look-modal{
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}
.look-modal.is-open{ opacity: 1; visibility: visible; }
.look-modal__backdrop{
    position: absolute;
    inset: 0;
    background-color: rgba(33,33,33,.74);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    cursor: pointer;
}
.look-modal__box{
    position: relative;
    width: 100%;
    max-width: 900px;
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 50px 90px -40px rgba(0,0,0,.55);
    transform: translateY(18px) scale(.98);
    transition: transform .45s cubic-bezier(.19,1,.22,1);
}
.look-modal.is-open .look-modal__box{ transform: none; }
.look-modal__media{
    background-color: #f4f2ef;
    min-height: 380px;
}
.look-modal__media img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.look-modal__body{
    padding: 46px 42px 38px;
    display: flex;
    flex-direction: column;
}
.look-modal__cat{
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #c14545;
}
.look-modal__body h3{
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #212121;
    margin: 12px 0 14px;
    line-height: 1.2;
}
.look-modal__body p{
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #606060;
    margin: 0;
}
.look-modal__foot{
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid #ececec;
}
.look-modal__price{
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #212121;
}
.look-modal__close{
    position: absolute;
    top: 0; right: 0;
    width: 46px; height: 46px;
    border: 0;
    background-color: rgba(33,33,33,.05);
    color: #212121;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: background-color .3s ease, color .3s ease;
}
.look-modal__close:hover{ background-color: #c84c4c; color: #fff; }
body.look-open{ overflow: hidden; }

/* --- Demó jelvény --- */
.demo-badge{
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px 11px 14px;
    background-color: rgba(33,33,33,.92);
    color: #fff;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 12.8px;
    letter-spacing: .2px;
    text-decoration: none;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,.5);
    transition: transform .4s ease, background-color .3s ease;
}
.demo-badge:hover{ transform: translateY(-3px); background-color: #212121; color: #fff; text-decoration: none; }
.demo-badge .demo-dot{
    width: 8px; height: 8px;
    border-radius: 50%;
    background-color: #c84c4c;
    box-shadow: 0 0 0 4px rgba(200,76,76,.25);
    animation: demoPulse 2.4s infinite;
}
.demo-badge strong{ font-weight: 700; }
@keyframes demoPulse{
    0%,100%{ box-shadow: 0 0 0 3px rgba(200,76,76,.3); }
    50%    { box-shadow: 0 0 0 8px rgba(200,76,76,0); }
}

@media (max-width: 991px){
    .shop-look{ padding: 130px 0 80px; }
    .look-panel{ margin: 0 0 30px; }
    .look-modal{ padding: 12px; }
    .look-modal__box{
        grid-template-columns: 1fr;
        max-height: 92vh;
        overflow-y: auto;
    }
    .look-modal__media{ min-height: 0; aspect-ratio: 4/3; }
    .look-modal__body{ padding: 30px 24px 26px; }
    .look-modal__body h3{ font-size: 24px; }
    .look-modal__close{ top: 0; right: 0; }
}
@media (max-width: 767px){
    .demo-badge{ left: 12px; bottom: 12px; font-size: 11.4px; padding: 9px 14px; }
}
