@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oranienbaum&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    background-color: #fff;
    color: #232323;
}

/* ------------Header--------------- */
.main {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.email-link {
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
}

.header {
    background-color: #E1E1E1;
    color: #650B0A;
    position: relative;
    z-index: 9;
}

.top-header {
    padding: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #650B0A;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #7b0d0d;
}

.contact-info a {
    font-size: 18px;
    text-decoration: none;
    color: #232323;
    font-weight: 600;
}

.contact-info a img {
    width: 22px;
    height: 22px;
    margin-right: 6px;
    vertical-align: middle;
}

.brow-cat {
    font-size: 18px !important;
    font-weight: 500 !important;
    padding: 8px 20px !important;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #650B0A;
    display: none;
}

.mobile-nav-links.active {
    display: block;
}

.mobile-nav-links li {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-links li a {
    color: #fff;
    text-decoration: none;
}

.header-icons img {
    width: 40px;
    height: 40px;
}

.mid-header {
    background: linear-gradient(90deg, #AD893B 0%, #D4AB51 25%, #E9BF64 53%, #A27A24 100%);
    ;
    padding: 20px 0;
}

.custom-search {
    position: relative;
    width: 100%;
}

.custom-search input {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    border: none;
    padding: 0 70px 0 25px;
    background: #fff;
    font-size: 16px;
    outline: none;
}

.custom-search button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: none;
    background: #650B0A;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.header-icons a {
    margin-left: 12px;
}

.categories-header .nav-links {
    gap: 22px;
}

.categories-header .dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #c49b4c;
    color: white;
    height: 42px;
    padding: 0 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease;
}

.dropbtn:hover,
.dropbtn.active {
    background-color: #A27A24 !important;
    color: #fff !important;
}

.dropbtn i {
    font-style: normal;
}

.categories-header .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 280px;
    max-height: 350px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(15px);
    visibility: hidden;
    transition: all 0.3s ease;
}

.categories-header .dropdown-content.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.categories-header .dropdown-content a {
    color: #650B0A;
    font-weight: 500;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #e5e5e5;
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.categories-header .dropdown-content a:hover {
    background-color: #f1f1f1;
    padding-left: 20px;
}




/* ------------Hero Section------------- */
.hero-section {
    position: relative;
}

.hero-bg-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 70px 0;
}

.hero-content h1 {
    font-family: 'Oranienbaum', serif;
    color: #650B0A;
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 400;
}

.all-categories-button {
    background-color: #C9A24D;
    color: #fff !important;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 16px;
    border: none;
    font-weight: 500;
}

.all-categories-button:hover,
.all-categories-button.active {
    background-color: #A27A24 !important;
    color: #fff !important;
}

.all-categories-button i {
    font-size: 16px !important;
}

.card-width {
    width: 380px;
}

.metal-cards {
    margin-top: -50px;
    /* z-index: 10; */
}

.metal-card {
    background: #fff;
    border-radius: 18px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20);
    border: 1px solid #A7A7A7;
    text-align: center;
    margin-bottom: 30px;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    z-index: 1;
}

.metal-card::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #650B0A;
    transition: 0.5s;
    z-index: -1;
}

.metal-card:hover::before {
    top: 0;
}

.metal-card:hover {
    border-color: #caa24d;
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}

.metal-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: 0.4s ease;
}

.metal-card:hover img {
    transform: scale(1.1);
}

.metal-card h3 {
    color: #6b0f0f;
    font-size: 28px;
    margin: 0;
    transition: 0.4s ease;
}

.metal-card p {
    font-size: 20px;
    margin: 0;
    color: #555;
    transition: 0.4s ease;
}

.metal-card:hover h3,
.metal-card:hover p {
    color: #fff;
}


/* ----------browse category------------- */
.section-heading-wrapper {
    background: linear-gradient(90deg, #D3AA51 0%, #fff 100%);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Oranienbaum', serif;
    color: #650B0A;
    font-size: 2.8rem;
    font-weight: 400;
    padding: 6px 0px;
    margin-bottom: 40px;
}

.category-img img {
    height: 70px !important;
    width: 70px !important;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

.categoryBlock:hover .category-img img {
    transform: scale(1.3);
}

.categoryBlock:hover .category-name {
    transform: scale(1.1);
}

.categoryBlock {
    padding-top: 20px;
}

.category-name {
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.home-page-category .owl-nav .owl-prev {
    position: absolute;
    top: 25%;
    left: 12px;
    margin-left: -40px;
}

.home-page-category .owl-nav .owl-next {
    position: absolute;
    top: 25%;
    right: 12px;
    margin-right: -40px;
}


/* ---------------Banner Section-------------------- */
.banner-box {
    position: relative;
}

.banner-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.banner-content {
    position: absolute;
    bottom: 40px;
    color: #7b1e1e;
    right: 45px;
}

.banner-content h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Oranienbaum', serif;

}

.banner-btn {
    position: relative;
    display: inline-block;
    background: transparent;
    border: 2px solid #000;
    padding: 12px 30px;
    text-decoration: none;
    width: 220px;
    height: 45px;
    font-size: 16px;
    font-weight: 400;
    z-index: 2;
}

.banner-btn::before {
    content: "EXPLORE COLLECTION";
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 220px;
    height: 45px;
    font-weight: 400;
    font-size: 16px;
    background: #caa24d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.banner-btn:hover::before {
    top: 0;
    left: 0;
}


/* -------------------New Items Section-------------------- */
.new-items-section {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.view-all-link {
    display: inline-block;
    background: #650B0A;
    color: #fff;
    font-weight: 400;
    padding: 4px 16px 3px 16px;
    border-radius: 8px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.view-all-link:hover {
    background-color: #7b1e1e;
    cursor: pointer;
}

.view-all-link i {
    font-size: 20px;
    margin-left: 8px;
    transition: all 0.6s ease;
}

.view-all-link:hover i {
    transform: translateX(5px);
}

.item-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
    border: 1px solid #d9d9d9;
    text-align: center;
    height: 340px;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;

}

.item-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.item-card h5 {
    margin-bottom: 5px;
    color: #232323;
    font-size: 18px;
}

.item-card p {
    flex-grow: 1;
    font-size: 15px;
    font-weight: 400;
    color: #525252;
    text-transform: capitalize !important;
}


.item-card a {
    margin-top: auto;
}

.item-card img {
    height: 120px;
    object-fit: contain;
    margin: 20px 0 30px 0;
}

.view-all-new-items {
    display: inline-block;
    background: #C9A24D;
    color: #fff;
    font-weight: 400;
    padding: 4px 16px 3px 16px;
    border-radius: 8px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
    margin: 0 18px;
    width: 95%;
}

.view-all-new-items:hover {
    background-color: #A27A24;
    cursor: pointer;
}

.view-all-new-items i {
    font-size: 20px;
    margin-left: 8px;
    transition: all 0.6s ease;
}

.view-all-new-items:hover i {
    transform: translateX(5px);
}


/* --------------Featured items------------------ */
.products-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 27px;
    column-gap: 12px;
}

.height-fix {
    height: 340px;
}


/* -------------------footer-------------- */





.footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 24px;
}

.footer-row::before,
.footer-row::after,
.footer-copy-row::before,
.footer-copy-row::after {
    display: none;
}

.footer-information,
.footer-help,
.footer-user,
.footer-office,
.footer-contact {
    min-width: 0;
}

.information-link li {
    margin-bottom: 15px;
}

.information-link li a,
.information-link li {
    color: #FFECC2;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
}

.footer-block>h2 {
    font-size: 1.5rem;
    color: #253046;
    display: inline-block;
    padding-bottom: 5px;
    background: linear-gradient(to right, #e8ddb7, rgba(255, 255, 255, 0));
    background-repeat: no-repeat;
    background-size: 100% 1.1pt;
    margin-bottom: 30px;
    background-position: bottom;
}

.copy-text {
    color: #FFECC2;
    font-size: 16px;
    text-align: center;
}

.copy-text p {
    margin: 24px 0 0;
}

.footer-contact .information-link li a {
    display: inline-flex;
    align-items: flex-start;
}

.footer-contact .information-link li img {
    width: 18px;
    min-width: 18px;
    margin-right: 8px;
    margin-top: 5px;
}






/*=====================Sub-Categories======================*/
.subpage-banner {
    background: url('https://hfinding-cdn.staff4u.ai/prod/assets/images/top-banner.png') no-repeat center center;
    background-size: cover;
    padding: 69px 0;
    position: relative;
    z-index: 1;
}

.brdcrm {
    position: relative;
    z-index: 1;
}

.brdcrm .breadcrumb,
.brdcrm .breadcrumb-item a {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #232323;
    font-weight: 500;
    font-size: 20px;
    display: inline-block;
    padding: 2px 6px;
    position: relative;
    z-index: 2;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    padding: 0 10px;
    color: #232323;
}

.breadcrumb-item.active {
    font-weight: 500;
    color: #232323 !important;
    font-size: 18px;
    padding-top:2px;

}

.title-section {
    border-bottom: 1px solid #d9d9d9;
}

.title-heading {
    font-size: 30px;
    font-weight: 500;
}

.shape-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
    border: 1px solid #d9d9d9;
    text-align: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
    justify-content: space-between;
    align-items: center;
}

.shape-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.image-fixing {
    height: 120px;
    object-fit: contain;
    margin: 20px 0 20px 0;
}

.fix-gap {
    column-gap: 18px;
}

.shape-card p {
    flex-grow: 1;
    font-size: 15px;
    font-weight: 400;
    color: #525252;
    text-transform: capitalize !important;
}

.filter-group label {
    margin: 0;
    font-weight: 500;
}


/* -------------Shopping Cart--------------- */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead {
    background: #660C0B;
    color: #fff;
}


.cart-table td {
    padding: 20px 18px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}

.cart-table input {
    width: 130px;
    padding: 8px;
    text-align: center;
    border: 1px solid #ccc;
}

.subtotal {
    font-weight: 600;
    font-size: 19px;
}

.delete {
    color: red;
    margin-left: 15px;
    cursor: pointer;
}


.backorder {
    color: #660C0B;
    font-size: 14px;
    margin-top: 5px;
}

.cart-total {
    text-align: right;
    font-size: 22px;
}

.cart-total strong {
    color: #C9A24D;
    margin-left: 10px;
}

.cart-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.btn {
    /* padding: 12px 24px; */
    /* border: none; */
    cursor: pointer;
    font-size: 16px;
    border-radius: ;
}

.gold {
    background: #C9A24D;
    color: #fff;
    border-radius: 0;
        border: 1px solid #c9a24d;
}

.outline {
    background: transparent;
    border: 2px solid #660C0B;
    color: #660C0B;
    border-radius: 0;
    margin-right: 10px;
}


/* ----------Detail Page---------- */
.product-page {
    display: flex;
}
#flipshow{
    display:none;
}
.careticon{
    float:right;
    font-size:18px;
}

.sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 15px 10px #ececec;
    border: 1px solid #c59e49;
    overflow: hidden;
    border-radius: 8px;
    height: 1250px;
    overflow-y: auto;
}

.sidebar li {
    border-bottom: 1px solid #ddd;
    padding: 0;
}

.sidebar li a {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    color: #232323;
    font-size: 16px;
    background: #f4f4f4;

}

.sidebar li a:hover {
    background: #b79b55;
    color: #fff;
}

.sidebar li.active a {
    background: #b79b55;
    color: #fff;
}

.content-area {
    flex: 1;
    padding-left: 40px;
}

.product-img {
    width: 250px;
    border: 1px solid #d9d9d9;
    margin-bottom: 30px;
    padding: 70px;
}
.top-section{
    display: flex;
    flex-direction: row;
}
.top-section h1 {
    font-size: 28px;
    color: #C9A24D;
    padding-left: 20px;
}

.login-alert-btn {
    margin-top: 30px;
    background: #C9A24D;
    color: #fff;
    padding: 12px 25px;
    width: fit-content;
    margin-left: auto;
    border-radius: 5px;
    border: none;
    border-radius: 0;
}

.related-heading {
    background: #650B0A;
    padding: 12px 18px;
}

.related-heading h2 {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
}

.related-products-wrapper {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}



/* --------------Sign In Page--------------- */

/* Merged from site-shell.css */
body.site-shell-body {
    margin: 0;
    font-family: 'Jost', sans-serif;
    color: #232323;
    background: #fff;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    position: relative;
    z-index: 10;
}

.site-header__top {
    background: #e5e5e5;
    border-bottom: 1px solid #d2d2d2;
}

.site-header__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    padding: 15px 15px 14px;
}

.site-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: #650b0a;
    border-radius: 4px;
    padding: 10px 8px;
}

.site-menu-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 4px 0;
}

.site-top-nav ul,
.site-header__featured-links,
.site-footer__links,
.site-footer__contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-top-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.site-top-nav a{
    font-size: 17px;
    font-weight: 600;
        color: #650b0a;
    text-decoration: none;
}
.site-header__featured-links a {
    color: #650b0a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.site-top-nav a.is-active,
.site-top-nav a:hover,
.site-header__featured-links a:hover {
    color: #a27a24;
}

.site-header__mail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #232323;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.site-header__middle {
    background: linear-gradient(90deg, #ad893b 0%, #d4ab51 25%, #e9bf64 53%, #a27a24 100%);
}

.site-header__middle-row {
    display: flex;
    align-items: center;
    padding: 26px 0 25px;
}

.site-header__logo-col {
    text-align: left;
}

.site-logo img {
    max-width: 100%;
    max-height: 110px;
}

.site-search-form {
    position: relative;
}

.site-search-form input {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 999px;
    padding: 0 70px 0 26px;
    font-size: 16px;
    color: #6f6f6f;
}

.site-search-form button {
    position: absolute;
    top: 5px;
    right: 6px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #650b0a;
    color: #fff;
}

.site-user-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: nowrap;
}

.site-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #650b0a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    position: relative;
}

.site-icon-link img {
    width: 35px;
    height: 35px;
}

.site-icon-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-cart-link {
    padding-right: 10px;
}

.site-cart-link strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #fff;
    color: #650b0a;
    border: 1px solid #650b0a;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    z-index: 1;
}

.site-cart-link em {
    display: block;
    position: absolute;
    top: 36px;
    right: -16px;
    background: #fff;
    color: #650b0a;
    border: 1px solid #650b0a;
    border-radius: 10px;
    font-size: 11px;
    line-height: 1;
    padding: 2px 7px;
    font-style: normal;
    white-space: nowrap;
    z-index: 1;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.site-header__category-bar {
    background: #f1f1f1;
    border-bottom: 1px solid #e5e5e5;
}

.site-header__category-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    padding: 10px 5px;
}

.site-category-dropdown {
    position: relative;
    flex: 0 0 170px;
}

.site-category-dropdown {
    display: inline-flex;
    align-items: stretch;
    border-radius: 4px;
    overflow: visible;
}

.site-category-dropdown a.adropdown-toggle {
    background: #c49b4c;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-right: 1px solid rgba(255,255,255,0.4);
    text-decoration: none;
    border-radius: 4px 0 0 4px;
    white-space: nowrap;
}

.site-category-dropdown a.adropdown-toggle:hover {
    color: #fff;
    background: #b08840;
    text-decoration: none;
}

.site-category-dropdown .dropdown2 {
    position: relative;
    display: inline-flex;
    align-items: stretch;
}

.site-category-dropdown p.icondroptag {
    margin: 0;
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    background: #c49b4c;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.site-category-dropdown p.icondroptag:hover {
    background: #b08840;
}

.site-category-dropdown span.careticon {
    display: inline-block;
    border-top: 6px solid #fff;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.site-category-dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    max-height: 350px;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-category-dropdown .dropdown2:hover .dropdown-content {
    display: block;
}

.site-category-dropdown .dropdown-content li a {
    display: block;
    padding: 10px 14px;
    color: #5e101b;
    text-decoration: none;
    border-bottom: 1px solid #ececec;
    font-size: 14px;
}

.site-category-dropdown .dropdown-content li a:hover {
    background: #f7f2e5;
}

/* Fix double arrows in owl nav (custom img + legacy background sprite) */
.home-page-category .owl-nav .owl-prev,
.home-page-category .owl-nav .owl-next,
.relatedProductDetailPage .owl-nav .owl-prev,
.relatedProductDetailPage .owl-nav .owl-next,
.detail-page .owl-nav .owl-prev,
.detail-page .owl-nav .owl-next {
    background-image: none !important;
}

/* Use background SVG arrows for related products (avoid HTML text showing) */
.relatedProductDetailPage .owl-nav .owl-prev,
.relatedProductDetailPage .owl-nav .owl-next {
    text-indent: -9999px;
    overflow: hidden;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 40px 40px !important;
    background-color: #ffffff;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.15);
}
.relatedProductDetailPage .owl-nav .owl-prev {
    background-image: url('https://hfinding-cdn.staff4u.ai/prod/assets/images/left-arrow.svg') !important;
    left: 10px !important;
}
.relatedProductDetailPage .owl-nav .owl-next {
    background-image: url('https://hfinding-cdn.staff4u.ai/prod/assets/images/right-arrow.svg') !important;
    right: 10px !important;
}

/* Override legacy reletedprd background inherit */
.reletedprd .relatedProductDetailPage.owl-theme .owl-nav .owl-prev,
.reletedprd .relatedProductDetailPage.owl-theme .owl-nav .owl-next {
    background-color: #ffffff !important;
}
.relatedProductDetailPage .owl-nav .owl-prev {
    background-image: url('https://hfinding-cdn.staff4u.ai/prod/assets/images/left-arrow.svg');
}
.relatedProductDetailPage .owl-nav .owl-next {
    background-image: url('https://hfinding-cdn.staff4u.ai/prod/assets/images/right-arrow.svg');
}
.relatedProductDetailPage .owl-nav img {
    display: none !important;
}

.site-category-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    min-width: 280px;
    max-height: 360px;
    overflow: auto;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.site-category-dropdown.is-open .site-category-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-category-dropdown__menu a {
    display: block;
    padding: 10px 14px;
    border-bottom: 1px solid #ececec;
    color: #650b0a;
    text-decoration: none;
}

.site-category-dropdown__menu a:hover {
    background: #f7f2e5;
}

.site-header__featured-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-header__featured-links li {
    white-space: nowrap;
}

.site-page-content {
    padding: 30px 0 0;
}

.site-home .site-page-content {
    padding-top: 0;
    overflow: hidden;
}

.site-footer {
    margin-top: 50px;
    background: #c79f3f;
    color: #fff3d3;
    padding: 128px 0 26px;
    position: relative;
    overflow: hidden;
}

.site-footer__curve {
    position: absolute;
    left: -2%;
    right: -2%;
    top: -122px;
    height: 210px;
    background: #f3f3f1;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
}

.site-footer:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(199, 159, 63, 0.94) 0%, rgba(193, 154, 62, 0.98) 100%);
    opacity: 1;
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.05fr 1.05fr 1.05fr 1.25fr 1.55fr;
    gap: 34px;
}

.site-footer__col {
    min-width: 0;
}

.site-footer__title {
    display: inline-block;
    margin: 0 0 26px;
    padding-bottom: 8px;
    color: #253046;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
    background: linear-gradient(to right, #e6d8aa, rgba(255, 255, 255, 0));
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 2px;
}

.site-footer__links li,
.site-footer__contact-list li {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.55;
}

.site-footer__links a,
.site-footer__contact-list,
.site-footer__contact-list a {
    color: #fff4d3;
    text-decoration: none;
    font-weight: 500;
}

.site-footer__contact-list li,
.site-footer__contact-list a {
    display: flex;
    align-items: flex-start;
}

.site-footer__icon {
    width: 24px;
    min-width: 24px;
    margin-right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 3px;
}

.site-footer__icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.site-footer__icon--empty {
    visibility: hidden;
}

.site-footer__contact-text {
    display: inline-block;
}

.site-footer__copyright {
    margin-top: 40px;
    text-align: center;
    font-size: 16px;
    color: #fff4d3;
}

.scrolltop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: none;
    z-index: 20;
    cursor: pointer;
}

/* Merged from home-redesign.css */
.home-hero {
    position: relative;
    background: #fff;
    min-height: 450px;
    overflow: hidden;
}

.home-hero:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(248, 248, 248, 0.88) 0%, rgba(248, 248, 248, 0.58) 34%, rgba(248, 248, 248, 0.04) 66%);
}

.home-hero__banner {
    position: absolute;
    inset: 0;
    background-image: var(--home-hero-banner);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-hero .container {
    position: relative;
    z-index: 1;
}

.home-hero__inner {
    min-height: 400px;
    padding-top:50px;
    align-items: center;
}

.home-hero__content h1,
.home-section__title {
    font-family: 'Oranienbaum', serif;
}

.home-hero__content h1 {
    margin: 0 0 28px;
    color: #650b0a;
    font-size: 60px;
    line-height: 1.10;
    letter-spacing: -0.02em;
}

.home-hero__actions a {
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 12px;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
}

.home-hero__actions .is-primary {
    background: #650b0a;
    color: #fff;
}

.home-hero__actions .is-secondary {
    background: #c9a24d;
    color: #fff;
}

.home-metal-strip {
    margin-top: -26px;
    position: relative;
    z-index: 2;
}

.home-metal-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #b8b8b8;
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
    margin-bottom: 20px;
}

.home-metal-card img {
    width: 64px;
    height: 64px;
}

.home-metal-card strong {
    display: block;
    color: #650b0a;
    font-size: 31px;
    line-height: 1.1;
}

.home-metal-card span {
    color: #444;
    font-size: 18px;
}

.home-section {
    padding: 50px 0;
}

.home-section--light {
    background: #faf8f3;
}

.home-section__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
    padding: 8px 0;
    background: linear-gradient(90deg, #d3aa51 0%, rgba(255, 255, 255, 0) 100%);
}

.home-section__heading--centered {
    justify-content: center;
    text-align: center;
}

.home-section__heading--centered .home-section__brand {
    width: 100%;
}

.home-section__title {
    margin: 0;
    color: #650b0a;
    font-size: 42px;
}

.home-category-card,
.home-item-card {
    display: block;
    text-decoration: none;
}

.home-category-card {
    text-align: center;
    padding: 20px 10px;
}

.home-category-card__image {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.home-category-card__image img {
    max-width: 84px;
    max-height: 84px;
}

.home-category-card__title {
    color: #232323;
    font-size: 17px;
    font-weight: 500;
}

.home-banner-card {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    border: 1px solid #ddd;
    height: 430px;
}

.home-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
}

.home-banner-card__content {
    position: absolute;
    right: 40px;
    bottom: 38px;
    text-align: right;
}
.rose-gold-banner{
    padding:0px 0px 0px;
}
.home-banner-card__content strong {
    display: block;
    margin-bottom: 18px;
    color: #7a1a12;
    font-family: 'Oranienbaum', serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.05;
}

.home-banner-card__content span {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(201, 162, 77, 0.95);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 10px 8px 0 #111;
    transform: translate(0, 0);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.home-banner-card:hover .home-banner-card__content span {
    transform: translate(10px, 8px);
    box-shadow: 0 0 0 #111;
    background: #c39a3a;
}

.home-item-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.home-featured-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.home-item-card {
    height: 100%;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
    padding: 18px;
    text-align: center;
    transition: transform 0.2s ease;
}

.home-item-card:hover {
    transform: translateY(-4px);
}

.home-item-card__image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.home-item-card__image img {
    max-width: 100%;
    max-height: 140px;
}

.home-item-card__sku {
    margin: 0 0 6px;
    color: #232323;
    font-size: 18px;
    font-weight: 400;
}

.home-item-card__title {
    min-height: 48px;
    margin: 0 0 0px;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}
.subCategoryPage ul li .box-cal{
    height: 280px;
}
.subctgry ul > li > .box-cal a .textbox {
    bottom: 25px!important;
}
.cartBlock{
    position: inherit;
    top: 1px;
    width: 71px;
    text-align: left;
    font-size: 16px;
}
label > span{
    color:red;
}
.cartBlock > span{
    position: inherit;
        overflow: inherit;
    clip: inherit;
}
.home-item-card__cta {
    display: inline-block;
    width: 100%;
    padding: 10px 14px;
    background: #c9a24d;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}
.detailPageImg img{
    max-width: 100%;
}
.home-page-category .owl-nav .owl-prev,
.home-page-category .owl-nav .owl-next {
    position: absolute;
    top: 30%;
}

.home-page-category .owl-nav .owl-prev {
    left: 0px;
}

.home-page-category .owl-nav .owl-next {
    right: 0px;
}
.subpage-banner {
  background: url('https://hfinding-cdn.staff4u.ai/prod/site_assets/images/top-banner.png') no-repeat center center;
    background-size: auto;
  background-size: cover;
  padding: 69px 0;
  position: relative;
  z-index: 1;
}
.subctgry > h2 span:last-child {
    display: none;
}
a{
    text-decoration: none;
    color:#000;
}
.form-select-new{
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #9e9e9e;
    padding: 0px 4px;
}
.browse-product-right-block{
    display: flex;
    align-items: center;
}

/* Related products nav visibility + positioning */
.relatedProductDetailPage {
    position: relative;
}
.relatedProductDetailPage .owl-nav {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
    display: block !important;
}
.relatedProductDetailPage .owl-nav.disabled {
    display: block !important;
    opacity: 1;
}
.relatedProductDetailPage[data-item-count="1"] .owl-nav,
.relatedProductDetailPage[data-item-count="2"] .owl-nav,
.relatedProductDetailPage[data-item-count="3"] .owl-nav,
.relatedProductDetailPage[data-item-count="4"] .owl-nav {
    display: none !important;
}
.relatedProductDetailPage .owl-nav .owl-prev,
.relatedProductDetailPage .owl-nav .owl-next {
    pointer-events: auto;
}

/* Overrides for browse categories carousel arrows */
.cusel {
    overflow: visible !important;
}
.home-page-category .owl-nav {
    display: block !important;
}
.home-page-category .owl-nav.disabled {
    display: block !important;
}
.cusel .home-page-category.owl-theme .owl-nav {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}
.cusel .home-page-category .owl-nav .owl-prev {
    left: 0;
}
.cusel .home-page-category .owl-nav .owl-next {
    right: 0;
}
.home-page-category .owl-nav [class*=owl-] {
    width: 40px;
    height: 40px;
    overflow: visible;
    text-indent: 0;
}
.home-page-category .owl-nav img {
    display: block;
    width: 40px;
    height: 40px;
}
.home-page-category .owl-nav .owl-prev,
.home-page-category .owl-nav .owl-next {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px 40px;
}
.home-page-category .owl-nav .owl-prev {
    background-image: url('https://hfinding-cdn.staff4u.ai/prod/assets/images/left-arrow.svg');
}
.home-page-category .owl-nav .owl-next {
    background-image: url('https://hfinding-cdn.staff4u.ai/prod/assets/images/right-arrow.svg');
}
.pagination > .page-item.active span{
    background-color: #c9a24d;
    border-color:  #c9a24d;
}
.pagination > .page-item .page-link{
    color: #000;
}
.scroll > img{
    width: 80px;
    height: 80px;
    border-radius: 100px;
    border-color: #ffffff;
}
