.page-title{
    
    width: 100%;
    padding: 0px 0px;
    position: relative;
    overflow: hidden;
}
.page-title .bg{
   height: 180px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    z-index: -2;
}
.page-title-text{
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    animation: fade 0.4s ease;
    font-family: "futura-pt", sans-serif;

   
}
.page-title-text h1{
    font-weight: 300;
    font-size: 1.5rem;
}
.page-title-text h2{
    font-size: 1.2rem;
    color: red;
    font-weight: 300;
}
.border{
    width: 50px;
    border-bottom:1px solid var(--text-color) ;
    margin-bottom: 50px;
    animation: fade 0.4s ease;
}
@keyframes fade {
    0%{
        opacity: 0;
        transform: translateY(5px);
    }
    100%{
        opacity: 1;
    }
    
}
/**/
.category-menu-grid{
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap: 2px;
}
.category-grid-item{
    
    overflow: hidden;
    
    
    text-decoration: none;
    color: var(--text-color);
    font-size: small;
    font-family: "futura-pt", sans-serif;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cate-link-text{
    /*background-color: rgba(0, 0, 0, 0.7);*/
    color: var(--text-color);
    z-index: 10;
    text-align: center;
    text-decoration: none;
    display: block;
    border-bottom: #666666 1px solid;
    padding: 10px 10px;
}


/**/
.item-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2px;
    
}
.grid-item{
    background-color: #fafafa;
    width: 100%;
    display: block;
    text-decoration: none;
    color: var(--text-color);
    font-size: small;
    font-weight: 500;
    line-height: 1rem;
}
.grid-item-info{
    padding: 10px 0;
    position: relative;
}
.grid-item-name{
    font-family: "futura-pt", sans-serif;
    font-weight: 300;
    
}
.grid-item-img{
    width: 100%;
    
    object-fit: cover;
}
.grid-item-price{
    padding-top: 10px;
    font-weight: 400;
    display: flex;
    gap: 10px;
    font-family: "futura-pt", sans-serif;
}
.grid-item-dis{
    color: red;
    
}

.add-cart-icon{
    position: absolute;
    top: -10px;
    right: 10px;
    transform: translateY(-100%);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
   
    padding: 10px;
    border: solid #ddd 1px;
}
.purchase-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.sold-out{
    color: red;
    padding-top: 10px;
    font-family: "futura-pt", sans-serif;
}
.otoku{
    margin-left: 10px;
    display: none;
}

.mag-head-desc{
    font-size: x-small;
    padding: 10px 30px;
    padding-bottom: 10px;
    background-color: rgb(239, 246, 239);
}