.collections-page{
    width:95%;
    margin:40px auto;
}

.collections-layout{
    display:grid;
    grid-template-columns:110px 1fr;
    gap:55px;
}

.sidebar{
    padding-top:20px;
}

.back-link{
    color:#7a6a4a;
    text-decoration:none;
    font-size:18px;
}

.sidebar-title{
    margin:18px 0 30px;

    font-size:16px;

    font-family:"Cormorant Garamond", serif;

    font-weight:400;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#a59687;
}
.collection-item{
    display:flex;
    gap:18px;
    padding:14px 0;
    cursor:pointer;
}
.collection-item:hover{

    color:#8b6f4e;

    transform:translateX(6px);

    transition:.25s;

}

.collection-number{

    width:32px;

    color:#b79f82;

    font-size:13px;

    font-weight:400;

    letter-spacing:2px;

}

.collection-title{

    font-size:16px;

    color:#7f6d58;

    font-weight:400;

    letter-spacing:.5px;

}

.content{

    min-height:700px;

    display:flex;

    align-items:flex-start;

    padding-top:0;

    margin-top:-40px;

}
.collection-card{

    background:#F3EBDD;

    border-radius:30px;

    padding:40px;

    box-shadow:0 15px 40px rgba(120,90,40,.08);
    border:1px solid #E7DCC8;

}

.collection-card h2{

    font-size:42px;

    margin-bottom:15px;

    font-family:"Cormorant Garamond",serif;

}

.intro{

    font-size:14px;

    color:#666;

    margin-bottom:20px;

}

.main-photo{

    width:52%;

    max-width:650px;

    border-radius:20px;

    display:block;

    cursor:zoom-in;

    transition:all .35s ease;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}
.main-photo:hover{

    transform:scale(1.025);

    box-shadow:0 22px 45px rgba(0,0,0,.18);

}
.collection-note{
    font-family:"Cormorant Garamond", serif;
    font-size:30px;
    font-style:italic;
    font-weight:400;
    color:#9d8a78;
    line-height:1.25;
    letter-spacing:.3px;
    margin-bottom:24px;
}

.hero{

    display:flex;

    align-items:flex-start;

    gap:28px;

}

.hero-text{
    flex:1;
    max-width:520px;
    padding-top:10px;
}

.story-preview{
    margin-top:24px;
    font-family:"Inter", sans-serif;
    font-size:18px;
    line-height:1.95;
    font-weight:300;
    color:#847a70;
}


.main-photo{

    width:470px;

    border-radius:20px;

    flex-shrink:0;

}
.lightbox{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.88);

    justify-content:center;

    align-items:center;

    z-index:9999;

    cursor:zoom-out;

}

.lightbox img{

    max-width:90%;

    max-height:90%;

    border-radius:18px;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.close{

    position:absolute;

    top:30px;

    right:40px;

    color:white;

    font-size:50px;

    cursor:pointer;

    font-weight:300;

}
/* ---------- Lightbox ---------- */

.lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(35,30,20,.82);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.lightbox-image{
    max-width:85vw;
    max-height:85vh;
    border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
    animation: zoom .25s ease;
}

.close{
    position:absolute;
    top:35px;
    right:45px;
    color:#d6b97c;
    font-size:48px;
    cursor:pointer;
    transition:.25s;
}

.close:hover{
    color:#d8bf8a;
}
@keyframes zoom{

    from{

        transform:scale(.9);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}
html[lang="he"] .hero-text{
    text-align:right;
}

html[lang="he"] .story-preview{
    text-align:right;
}

html[lang="he"] .collection-note{
    text-align:right;
}