/*=========================================
            MENU PAGE
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#050505;
    color:#fff;
    font-family:'Poppins',sans-serif;
}

/*=========================================
            SECTION
=========================================*/

.bb-shelf-section{
    padding:100px 0;
    background:#050505;
}

.bb-category{
    text-align:center;
    font-size:48px;
    font-weight:700;
    margin-bottom:70px;
    color:#fff;
    letter-spacing:2px;
}

/*=========================================
            GRID
=========================================*/

.bb-shelf{
    width:100%;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:45px 25px;
}

/*=========================================
            CARD
=========================================*/

.bb-bottle{

    position:relative;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    text-align:center;

    padding:25px 20px;

    border-radius:20px;

    background:#0b0b0b;

    transition:.4s;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.05);

}

/* Orange Glow */

.bb-bottle::before{

    content:"";

    position:absolute;

    top:-120px;
    left:50%;

    transform:translateX(-50%);

    width:220px;
    height:220px;

    background:radial-gradient(circle,
    rgba(255,90,47,.30),
    transparent 70%);

    transition:.5s;

}

.bb-bottle:hover{

    transform:translateY(-10px);

    border-color:#ff5a2f;

    box-shadow:
    0 20px 40px rgba(0,0,0,.45);

}

.bb-bottle:hover::before{

    transform:translateX(-50%) scale(1.2);

}

/*=========================================
            IMAGE
=========================================*/

.bb-bottle img{

    width:180px;
    height:180px;

    object-fit:cover;

    display:block;

    margin:auto;

    border-radius:15px;

    transition:.45s;

    position:relative;
    z-index:2;

}

.bb-bottle:hover img{

    transform:scale(1.08);

}

/*=========================================
            NAME
=========================================*/

.bb-bottle h4{

    margin-top:22px;

    font-size:17px;

    font-weight:600;

    line-height:1.5;

    color:#fff;

    text-transform:uppercase;

    letter-spacing:.8px;

    min-height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;
    z-index:2;

}

/*=========================================
            NEW BADGE
=========================================*/

.new-tag{

    position:absolute;

    top:18px;
    right:18px;

    background:#ff5a2f;

    color:#fff;

    padding:6px 14px;

    border-radius:30px;

    font-size:11px;

    font-weight:700;

    letter-spacing:1px;

    z-index:10;

}

/*=========================================
            RESPONSIVE
=========================================*/

/* Large Desktop */

@media(max-width:1400px){

.bb-shelf{

grid-template-columns:repeat(4,1fr);

}

}

/* Laptop */

@media(max-width:1100px){

.bb-shelf{

grid-template-columns:repeat(3,1fr);

}

}

/* Tablet */

@media(max-width:768px){

.bb-category{

font-size:36px;

margin-bottom:50px;

}

.bb-shelf{

grid-template-columns:repeat(2,1fr);

gap:30px 20px;

}

.bb-bottle{

padding:20px;

}

.bb-bottle img{

width:160px;
height:160px;

}

.bb-bottle h4{

font-size:15px;

min-height:45px;

}

}

/* Mobile */

@media(max-width:500px){

.bb-shelf{

grid-template-columns:1fr;

}

.bb-bottle{

max-width:320px;

margin:auto;

}

.bb-bottle img{

width:220px;
height:220px;

}

.bb-category{

font-size:30px;

}

}