   /* ============================
   BEST SELLER SECTION
============================ */

.jewelry-bestseller-section {
    /* background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%); */
}

/* Card */

.jewelry-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    padding: 12px;
    border: 1px solid rgba(180, 139, 94, 0.15);
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    transition: all .4s ease;
}

.jewelry-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 18px 40px rgba(180,139,94,.18); */
}

/* Image */

.jewelry-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.jewelry-image img {
    display: block;
    width: 100%;
    transition: all .7s ease;
}

.jewelry-card:hover .jewelry-image img {
    transform: scale(1.08);
}

/* Badge */

.jewelry-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    background: #B48B5E;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
}

/* Content */

.jewelry-content {
    padding: 20px 10px 15px;
    text-align: center;
}

.jewelry-content h4 {
    margin-bottom: 12px;
    line-height: 1.5;
}

.jewelry-content h4 a {
    color: #222;
    text-decoration: none;
    transition: .3s;
}

.jewelry-content h4 a:hover {
    color: #B48B5E;
}

/* Divider */

/* .jewelry-divider {
    width: 50px;
    height: 2px;
    background: #B48B5E;
    margin: 0 auto 15px;
} */

/* Price */

.jewelry-content .price {
    margin-top: 10px;
}

.offer-price {
    color: #B48B5E;
    font-size: 17px;
    font-weight: 600;
}

.jewelry-content del {
    color: #999;
    margin-left: 6px;
    font-size: 14px;
}

/* Arrows */

.jewelry-bestseller-section .array-prev,
.jewelry-bestseller-section .array-next {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: .3s;
}

.jewelry-bestseller-section .array-prev:hover,
.jewelry-bestseller-section .array-next:hover {
    background: #B48B5E;
    color: #fff;
}

/* Mobile */

@media (max-width: 767px) {

    .jewelry-card {
        padding: 10px;
    }

    .jewelry-content h4 {
        font-size: 16px;
    }

    .offer-price {
        font-size: 18px;
    }
}


.trending-content h4{
    font-size: 18px !important;
}




@media (max-width: 767px) {

    /* Section Heading */
    .jewelry-bestseller-section .section-title {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 15px;
    }

    .jewelry-bestseller-section .section-title h2 {
        text-align: center;
        line-height: 1.3;
        margin-bottom: 0;
    }

    .jewelry-bestseller-section .section-title h2 span {
        display: block;
        margin-top: 5px;
        font-size: 16px !important;
        line-height: 1.5;
        text-align: center;
    }

    .jewelry-bestseller-section .section-title > div:last-child {
        width: 100%;
        text-align: center;
        margin-top: 0 !important;
    }

    .jewelry-bestseller-section .theme-btn {
        display: inline-block;
    }

    /* Card */
    .jewelry-card {
        padding: 10px;
    }

    /* Fix Image Size */
    .jewelry-image img {
        width: 100%;
        /* height: 240px !important; */
        object-fit: cover;
        border-radius: 12px;
    }

    .jewelry-content {
        padding: 15px 8px 10px;
    }

    .jewelry-content h4 {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .offer-price {
        font-size: 16px;
    }

    .jewelry-content del {
        font-size: 12px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {

    /* .jewelry-image img {
        height: 200px !important;
    } */

    .jewelry-content h4 {
        font-size: 14px;
    }

    .offer-price {
        font-size: 15px;
    }
}


@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .newarri {
    height: 210px !important;
  }
}
/* ===================================
   NEW ARRIVALS SECTION
=================================== */

.jewelry-arrival-section {
    /* background: linear-gradient(180deg, #faf7f2 0%, #ffffff 100%); */
}

/* Card */

.arrival-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    padding: 12px;
    border: 1px solid rgba(180, 139, 94, 0.15);
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    transition: all .4s ease;
}

.arrival-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 18px 40px rgba(180,139,94,.18); */
}

/* Image */

.arrival-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.arrival-image img {
    width: 100%;
    display: block;
    transition: all .8s ease;
}

.arrival-card:hover .arrival-image img {
    transform: scale(1.08);
}

/* Badge */

.arrival-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    background: #B48B5E;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content */

.arrival-content {
    padding: 20px 10px 15px;
    text-align: center;
}

.arrival-content h4 {
    margin-bottom: 12px;
    line-height: 1.5;
}

.arrival-content h4 a {
    color: #222;
    text-decoration: none;
    transition: .3s;
}

.arrival-content h4 a:hover {
    color: #B48B5E;
}

/* Divider */

/* .arrival-divider {
    width: 50px;
    height: 2px;
    background: #B48B5E;
    margin: 0 auto 15px;
} */

/* Price */

.arrival-price {
    color: #B48B5E;
    font-size: 17px;
    font-weight: 600;
}

.arrival-content del {
    color: #999;
    margin-left: 6px;
    font-size: 14px;
}

/* Arrows */

.jewelry-arrival-section .array-prev,
.jewelry-arrival-section .array-next {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: .3s;
}

.jewelry-arrival-section .array-prev:hover,
.jewelry-arrival-section .array-next:hover {
    background: #B48B5E;
    color: #fff;
}

/* Mobile */

@media (max-width: 767px) {

    .arrival-card {
        padding: 10px;
    }

    .arrival-content h4 {
        font-size: 16px;
    }

    .arrival-price {
        font-size: 18px;
    }
}


.arrival-content h4{
    font-size: 18px !important;
}


@media (max-width: 767px) {

    .jewelry-arrival-section .section-title {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 15px;
    }

    /* Heading */
    .jewelry-arrival-section .section-title h2 {
        text-align: center;
        line-height: 1.3;
        margin-bottom: 0;
    }

    /* Subheading */
    .jewelry-arrival-section .section-title h2 span {
        display: block;
        margin-top: 5px;
        font-size: 16px !important;
        line-height: 1.5;
        text-align: center;
    }

    /* Button Container */
    .jewelry-arrival-section .section-title > div:last-child {
        width: 100%;
        text-align: center;
        margin-top: 0 !important;
    }

    /* Button */
    .jewelry-arrival-section .theme-btn {
        display: inline-block;
    }
}

/* ===================================
   TRENDING PRODUCTS SECTION
=================================== */

.jewelry-trending-section {
    /* background: linear-gradient(180deg, #ffffff 0%, #f9f6f1 100%); */
}

/* Card */

.trending-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    padding: 12px;
    border: 1px solid rgba(180,139,94,.15);
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    transition: all .4s ease;
    
}

.trending-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 20px 45px rgba(180,139,94,.18); */
}

/* Image */

.trending-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.trending-image img {
    width: 100%;
    display: block;
    transition: all .8s ease;
}

.trending-card:hover .trending-image img {
    transform: scale(1.08);
}

/* Trending Badge */

.trending-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: #B48B5E;
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Content */

.trending-content {
    padding: 22px 10px 15px;
    text-align: center;
}

.trending-content h4 {
    margin-bottom: 12px;
    line-height: 1.5;
}

.trending-content h4 a {
    color: #222;
    text-decoration: none;
    transition: .3s;
}

.trending-content h4 a:hover {
    color: #B48B5E;
}

/* Divider */

/* .trending-divider {
    width: 55px;
    height: 2px;
    background: #B48B5E;
    margin: 0 auto 15px;
} */

/* Price */

.trending-price {
    color: #B48B5E;
    font-size: 17px;
    font-weight: 600;
}

.trending-content del {
    color: #999;
    margin-left: 6px;
    font-size: 14px;
}

/* Navigation */

.jewelry-trending-section .array-prev,
.jewelry-trending-section .array-next {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: .3s;
}

.jewelry-trending-section .array-prev:hover,
.jewelry-trending-section .array-next:hover {
    background: #B48B5E;
    color: #fff;
}

/* Mobile */

@media (max-width: 767px) {

    .trending-card {
        padding: 10px;
    }

    .trending-content h4 {
        font-size: 16px;
    }

    .trending-price {
        font-size: 18px;
    }
}


.jewelry-content h4{
    font-size: 18px !important;
}


@media (max-width: 767px) {

    .inner_paddings {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .jewelry-trending-section .section-title {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 15px;
    }

    /* Heading */
    .jewelry-trending-section .section-title h2 {
        text-align: center;
        line-height: 1.3;
        margin-bottom: 0;
    }

    /* Subheading */
    .jewelry-trending-section .section-title h2 span {
        display: block;
        margin-top: 5px;
        font-size: 16px !important;
        text-align: center;
    }

    /* Button container */
    .jewelry-trending-section .section-title > div:last-child {
        width: 100%;
        text-align: center;
        margin-top: 0;
    }

    /* Button */
    .jewelry-trending-section .theme-btn {
        display: inline-block;
    }
}

/* ============================
   CATEGORY PRODUCT CARDS
============================ */

.category-jewelry-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    padding: 12px;
    border: 1px solid rgba(180, 139, 94, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    transition: all .4s ease;
    height: 100%;
}

.category-jewelry-card:hover {
    transform: translateY(-10px);
}

.category-jewelry-card .jewelry-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.category-jewelry-card .jewelry-image img {
    width: 100%;
    display: block;
    transition: all .7s ease;
}

.category-jewelry-card:hover .jewelry-image img {
    transform: scale(1.08);
}

.category-jewelry-card .jewelry-content {
    padding: 20px 10px 15px;
    text-align: center;
}

.category-jewelry-card .jewelry-content h4 {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 20px;
    color: #222;
    transition: .3s;
}

.category-jewelry-card:hover .jewelry-content h4 {
    color: #B48B5E;
}

.category-jewelry-card .malayalam-title {
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
}

.category-jewelry-card .jewelry-divider {
    width: 50px;
    height: 2px;
    background: #B48B5E;
    margin: 0 auto 15px;
    opacity: .4;
}

.category-jewelry-card .price {
    margin-top: 10px;
}

.category-jewelry-card .offer-price {
    color: #B48B5E;
    font-size: 17px;
    font-weight: 600;
}

.category-jewelry-card del {
    color: #999;
    margin-left: 6px;
    font-size: 14px;
}

@media (max-width: 767px) {

    .category-jewelry-card {
        padding: 10px;
    }

    .category-jewelry-card .jewelry-content h4 {
        font-size: 17px;
    }

    .category-jewelry-card .offer-price {
        font-size: 16px;
    }

    .category-jewelry-card .jewelry-image img {
        height: 250px !important;
    }
}




.product-single-luxury{
    background:#fff;
}

.single-image-wrapper{
    background:#f4f1e8;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.single-product-image{
    width:100%;
    max-height:650px;
    object-fit:contain;
    cursor:zoom-in;
}

.product-content-wrap{
    padding-left:20px;
}

.stock-status{
    color:#1c9c45;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.product-title{
    font-size:35px;
    line-height:1.2;
    margin:15px 0;
    color:#111;
    font-weight:500;
}

.product-subtitle{
    color:#666;
    margin-bottom:20px;
}

.product-price{
    margin:25px 0;
}

.sale-price{
    font-size:30px;
    font-weight:600;
    color:#000;
}

.old-price{
    font-size:22px;
    color:#888;
    text-decoration:line-through;
    margin-left:15px;
}

.product-description{
    color:#555;
    line-height:1.9;
    margin-bottom:30px;
}

.qty-wrapper{
    display:flex;
    align-items:center;
    width:120px;
    border:1px solid #ddd;
    margin-bottom:20px;
}

.qty-btn{
    width:50px;
    /* height:50px; */
    border:none;
    background:#fff;
    font-size:22px;
}

.qty-count{
    flex:1;
    text-align:center;
    font-weight:600;
}

.cart-btn{
    background:#9b8761;
    color:#fff;
    border:none;
    padding:15px 40px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}
.collection-badges{
    display:flex;
    gap:12px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.collection-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    font-size:14px;
    font-weight:600;
    color:#fff;
    clip-path:polygon(
        0 0,
        92% 0,
        100% 50%,
        92% 100%,
        0 100%
    );
}

.new-collection{
    background:#9b8761;
}

.limited-collection{
    background:#9b8761;
}



