@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Poppins:wght@300;400;500;600&family=Mulish:wght@300;400;500&display=swap');

.ryse-section-container {
    padding: 20px 30px;
    background: #fff;
}

.ryse-section-header {
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:30px;
}

.ryse-section-header-badge {
  color: #9D8E58;
  font-size: 16px;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
}

.ryse-heading .ryse-section-header-title {
    margin:0;
    margin-top: 25px;
    font-size:48px;
    font-weight:300;
    color:#222;
    line-height:22px;
    font-family: 'Cormorant Garamond', serif;
}

.ryse-heading span {
    display:block;
    font-size:36px;
    font-style:italic;
    font-family: 'Cormorant Garamond', serif;
    color:#222;
}

.ryse-section-description {
    max-width: 50%;
    font-family: 'Poppins', sans-serif;
}
/* Grid */

.ryse-product-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
}


/* Card */

.ryse-product-card {
    background:#fff;
    border:1px solid #ececec;
    border-radius:12px;
    overflow:hidden;
    transition:all .35s ease;
}

.ryse-product-card:hover {
    /* transform:translateY(-6px); */
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}


/* Image */

.ryse-image {
    position:relative;
    width:100%;
    height:220px;
    overflow:hidden;
    border-radius:12px 12px 0 0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
}

.ryse-image img {
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    transition:transform .4s ease;
}

/* Badge */

.ryse-badge {
    position:absolute;
    top:12px;
    left:12px;
    /* background:#bf9334; */
    color:#FFFFFF;
    padding:5px 12px;
    border-radius:20px;
    font-size:10px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    z-index:20;
}


.ryse-badge.badge-yellow {
    background: #9D8E58;
    color: #FFFFFF;
}

.ryse-badge.badge-red {
    background: #C0392B;
    color: #FFFFFF;
}

.ryse-badge.badge-default {
    background: #9D8E58;
    color: #FFFFFF;
}


/* Wishlist */

.ryse-product-card .wishlist {
    position:absolute;
    top:12px;
    right:12px;
    width:34px;
    height:34px;
    background:#fff;
    border: none;
    border-radius:20%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#444;
    z-index:100;
    transition:.3s;
    box-shadow:0 2px 8px rgba(0,0,0,.12);
}

.ryse-product-card .wishlist svg {
    width:16px;
    height:16px;
}

.ryse-product-card .wishlist:hover {
    background:#222;
    color:#fff;
}


/* Content */

.ryse-info {
    padding:20px;
}

.ryse-brand {
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#bf9334;
    margin-bottom:10px;
}

.ryse-info h3 {
    margin:0 0 4px;
    font-size:20px;
    font-weight:400;
    line-height:30px;
    min-height:40px;
    font-family: 'Playfair Display', serif;
}

.ryse-info h3 a {
    color:#222;
    text-decoration:none;
    font-size: 18px;
}

.ryse-info h3 a:hover {
    color:#bf9334;
}


.ryse-description {
    font-size:14px;
    color:#737373;
    line-height:24px;
    min-height:48px;
    margin-bottom:20px;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.ryse-product-description{
    color: #8A8A8A;
    min-height: 48px;
    max-height: 48px;
    font-family: 'Mulish', sans-serif;
}

.ryse-divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin: 18px 0;
}


/* Footer */

.ryse-footer {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.ryse-price .price {
    font-size:22px;
    font-weight:400;
    line-height: 33.3px;
    color:#9D8E58;
    font-family: 'Playfair Display', serif;
}

.ryse-pro-details-btn {
    text-decoration:none;
    color: #999999;
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
    display: inline-flex;
    align-items: center;
}

.ryse-pro-details-btn:hover {
    color:#222;
}

.ryse-pro-details-btn::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 2px;
    background: url('../images/arrow.svg') no-repeat center;
    background-size: contain;
}

/*==============================
=          View All            =
==============================*/

.ryse-view-all {
    margin-top: 55px;
    text-align: center;
}

.ryse-view-all a {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid #222;
    color: #222;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: .3s;
}

.ryse-view-all a:hover {
    background: #222;
    color: #fff;
}


/* Responsive */

@media(max-width:1000px){

    .ryse-product-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


@media(max-width:768px){

    .ryse-product-grid{
        grid-template-columns:1fr;
    }

    .ryse-image{
        height:200px;
    }

    .ryse-heading h2{
        font-size:34px;
    }

    .ryse-heading span{
        font-size:28px;
    }

}

.frame1 {
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
}