@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

:root {
    --primary-color: #2f9bc3;
    --secondary-color: #a67c52;
    --light-color: #dddddd;
    --dark-bg: #1a2b3a;
    --light-bg: #dddddd;
    --text-dark: #333;
    --text-light: #666;
}

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

a {
    text-decoration: none !important;
    color: #000;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair", serif;
}

/* ==================== HEADER SECTION ==================== */
.header-section .navbar {
    padding: 10px 0;
}

.header-section .navbar-brand {
    font-size: 1.5rem;
}

.search-bar {
    display: flex;
}

.search-bar input {
    border-radius: 10px;
    padding: 10px 20px;
    min-width: 767px;
    min-height: 46px;
    border: 1px solid #dddddd;
}

.searchBtn {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 46px;
    min-width: 46px;
    border: none;
    background: #dddddd;
    border-radius: 0px 8px 8px 0px;
}

div#navbarNav .navbar-nav .nav-link {
    margin: 0 35px 0 0;
    /* font-weight: 500; */
    font-size: 18px;
    padding: 15px 35px 15px 0px;
    border-right: 1px solid #ddd;
    color: #000;
}

.search-bar input::placeholder {
    color: #000;
}

.new-arrivals h2 {
    font-size: 80px;
    line-height: 85px;
    color: #282828;
    font-weight: 100;
}

.new-arrivals p {
    color: #000;
}


.liksBox {
    min-height: 48px;
    min-width: 48px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}

.liksBox i {
    font-size: 20px;
    color: var(--primary-color);
}

.liksBox i~span {
    border-radius: 100px;
    min-height: 24px;
    min-width: 24px;
    max-width: 24px;
    max-height: 24px;
    background: var(--primary-color) !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    /* height: 550px;
    overflow: hidden; */
}


.csheading {
    background-color: #2f9bc3 !important;
    height: 78px;
    border-radius: 7px !important;
    display: inline-flex;
    margin: 0 auto;
    margin-right: 0;
    padding: 10px 12px;
}

.header-section .navbar-brand>img {
    filter: brightness(0) saturate(100%) invert(52%) sepia(37%) saturate(756%) hue-rotate(150deg) brightness(94%) contrast(97%);
    width: 288px;
}

.hero-slide {
    /* height: 550px; */
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.price-tag .amount {
    font-size: 30px;
}

.hero-slide h1 {
    color: #f4d89f;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-slide p {
    color: #fff;
    letter-spacing: 1px;
}

.btn-custom-gold {
    background: #f4d89f;
    color: #333;
    border: none;
    padding: 12px 35px;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-custom-gold:hover {
    background: #e8c87a;
    color: #333;
    transform: translateY(-2px);
}

/* Owl Carousel Styling */
.owl-carousel .owl-nav button {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color);
}

/* ==================== CATEGORY SECTION ==================== */
.category-section {
    /* background: #f8f9fa; */
}

.category-sidebar {
    background: var(--primary-color);
    min-height: 600px;
}

.category-featured {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.category-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #00000040;
    padding: 40px 40px;
    width: 100%;
    color: white;
    text-align: end;
    height: 100%;
}

.category-card {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #00000040;
    padding: 30px 40px;
    color: white;
    height: 100%;
    text-align: end;
}

.card-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.card-content p {
    font-size: 16px;
    margin-bottom: 10px;
}

.card-content a {
    font-size: 16px;
    color: white;
}

/* ==================== NEW ARRIVALS SECTION ==================== */
.new-arrivals-section {
    background: white;
}

.product-card {
    background: #f0f8ff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    border: 1px solid #aae1f5;
    position: relative;
}

.product-info {
    padding: 20px;
    background: #fff;
    max-width: 73%;
    color: #000;
    text-decoration: none;
    width: 90%;
    display: table;
    margin: 0 auto;
    margin-right: 0;
}


.product-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}
/* 
.product-info h5 {

    margin-bottom: 10px;
    font-family: 'Playfair Display' !important;
    color: #121111 !important;
    font-size: 24px !important;
} */


.product-info h5 {
    margin-bottom: 10px;
    font-family: 'Playfair Display' !important;
    color: #121111 !important;
    font-size: 19px !important;
    min-height: 90px;
}

.product-info .price {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

.product-info .btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 0;
    position: absolute;
    left: 0;
    bottom: 50px;
    max-width: 78px;
}

.product-info .btn:hover {
    background: #206580;
}

.cat1 p {
    width: 480px;
    margin: 0 0 0 auto
}

.best-selllers h2 {
    font-size: 80px;
    line-height: 85px;
    color: #282828;
    font-weight: 100;
    text-transform: uppercase;
}

.best-selllers p {
    color: #000 !important;
}


/* ==================== WHY INVESTORS TRUST SECTION ==================== */
.why-trust-section {
    background: linear-gradient(45deg, #005b96ad 30%, transparent 100%), url(../images/trust-banner.png);
    color: white;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.why-trust-section::before {
    content: "";
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    /* bottom: 0; */
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect fill="%23ffffff" fill-opacity="0.02" width="60" height="60"/><circle cx="30" cy="30" r="20" fill="%23ffffff" fill-opacity="0.02"/></svg>'); */
    /* pointer-events: none; */
}

.trust-image-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.trust-image-wrapper img {
    transition: transform 0.3s ease;
}

.trust-image-wrapper img {
    transition: transform 0.3s ease;
    height: 640px;
    object-fit: cover;
    border-radius: 20px;
}

.trust-heading {
    color: white;
    position: relative;
    z-index: 1;
}

.trust-subheading {
    text-transform: uppercase;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    font-size: 31px !important;
    line-height: 50px;
}

.trust-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.trust-features {
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    padding: 10px 0 10px 28px;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    background-image: url(../images/check.png);
    filter: brightness(0) saturate(100%) invert(43%) sepia(99%) saturate(352%) hue-rotate(150deg) brightness(102%) contrast(88%);
    background-size: cover;
    background-position: center;
    top: 18px;
    left: 0;
    width: 20px;
    height: 20px;
}

section.reviews-section .owl-item.first-unique .item .review-card {
    background-color: #2f9bc3 !important;
}

section.reviews-section .owl-item.first-unique .item .review-card .review-text {
    color: #fff !important;
}

section.reviews-section .owl-item.first-unique .item .review-card .reviewer-info small {
    color: #fff !important;
}

.feature-item span {
    font-size: 25px;
    color: #ffffff !important;
    font-family: 'montserrat' !important;
    font-weight: 400 !important;
}


.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.btn-trust {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--light-color);
    padding: 8px 16px 8px 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-trust>i {
    min-height: 35px;
    min-width: 55px;
    background: #fff;
    color: var(--primary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}

.btn-trust:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateX(5px);
    border-color: var(--primary-color);
    ;
}

.btn-trust i {
    transition: transform 0.3s ease;
}

.btn-trust:hover i {
    transform: translateX(5px);
}

/* ==================== BEST SELLERS SECTION ==================== */
.best-sellers-section {
    background: #f8f9fa;
}

.best-sellers-tabs {
    border: none;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.best-sellers-tab {
    background: white;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid black !important;
    border-radius: 50px !important;
    color: black !important;
    padding: 10px 20px !important;
}

.best-sellers-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.best-sellers-tab.active {
    background: var(--primary-color) !important;
    color: white;
    border-color: var(--primary-color) !important;
}

/* ==================== REVIEWS SECTION ==================== */
.reviews-section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.reviews-carousel .owl-stage-outer {
    padding-top: 20px;
}

.reviews-overlay {
    /* background: rgba(0, 0, 0, 0.6); */
    padding: 60px 0;
}

.reviews-section h2 {
    letter-spacing: 2px;
}

.review-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    /* margin: 20px; */
    position: relative;
    /* min-height: 350px; */
}

.review-card-primary {
    background: var(--primary-color);
    color: white;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.review-card-primary .quote-icon {
    background: white;
    color: var(--primary-color);
}

.review-text {
    /* margin-top: 30px; */
    font-size: 15px;
    line-height: 1.6;
    /* margin-bottom: 25px; */
    color: var(--text-dark);
}

.review-card-primary .review-text {
    color: white;
}

.reviewer-info {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 700;
}

.review-card-primary .reviewer-info h5 {
    color: white;
}

.reviewer-info small {
    color: var(--text-light);
    font-size: 16px;
}

.review-card-primary .reviewer-info small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.stars .filled {
    color: #ffc107;
    font-size: 12px;
}

.stars .notfilled {
    color: #2f9bc3;
    font-size: 12px;
}

.reviews-carousel .owl-nav {
    display: none;
}

.reviewer-info>img.reviewer-img {
    max-width: 50px;
    max-height: 50px;
    min-height: 50px;
    min-width: 50px;
}

/* ==================== BLOG SECTION ==================== */
.blog-section {
    background: #f8f9fa;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-featured {
    position: relative;
    overflow: hidden;
}

.blog-image {
    position: relative;
    height: 466px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    color: #000;
    padding: 15px 10px;
    text-align: center;
    border-radius: 5px;
    min-width: 60px;
    z-index: 99;
}

.blog-date .day {
    display: block;
    font-size: 24px;
    font-weight: bold;
}

.blog-date .month {
    display: block;
    font-size: 11px;
    margin-top: 3px;
}

.blog-content {
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0 0 0 / 25%);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.blog-content h5 {
    font-size: 34px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
}

.blog-meta span {
    color: rgba(255, 255, 255, 0.8);
}

.blog-small {
    padding: 20px;
}

.blog-small h6 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-meta-small {
    display: flex;
    gap: 15px;
    font-size: 14px;
    margin-bottom: 10px;
    opacity: .6;
}

.blog-meta-small span {
    color: var(--text-light);
}

.blog-small a {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-card>.row>.col-md-4>img {
    object-fit: cover;
    height: 100%;
}

/* ==================== FOOTER SECTION ==================== */
.footer-section {
    background: url('../images/ftr-back.png');
    color: white;
    position: relative;
    z-index: 99;
}

.footer-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(5deg, #005b96 10%, transparent 150%);
    opacity: 60%;
    z-index: -1;
}

.qick-lnk {
    column-count: 2;
}

.footer-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-item i {
    color: #fff;
    font-size: 18px;
    /* margin-top: 5px; */
}

.footer-item p {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: block;
    padding: 0 0 8px 0;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    min-height: 30px;
    width: 100%;
    min-width: 80%;
    max-width: 60px;
    opacity: 1;
    transition: all 0.3s ease;
}



.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #206580;
    transform: translateY(-3px);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: white;
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}





.product-img {
    display: inline-block;
    width: 100%;
    padding: 10px 5px;
    border-radius: 10px;
}

.product-img img {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #eeeeee;
    height: 100px;
    object-fit: contain;
    padding: 10px 0;
}

.table> :not(:last-child)> :last-child>* {
    border-bottom-color: currentColor;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-bg);
    padding: 20px 23px;
    text-transform: uppercase;
}

table.table tr th:nth-child(5) {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.table-space h3 {
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 15px;
    line-height: 20px;
    color: var(--dark-bg);
    text-transform: capitalize;
    text-wrap: wrap;
    margin: 0px;
}

.couponbtn {
    background: #005b96;
    color: #ffffff !important;
    border: 1px solid #005b96;
}

.couponbtn:hover {
    color: #030303 !important;
    background-color: #fff !important;
    border-color: #005b96 !important;
}

.number-item {
    margin: 0 auto;
    padding: 0 30px 0 50px;
}

.space .row {
    align-items: center;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: #f1f1f1;
    border-style: solid;
    border-width: 0;
}

th.qty {
    text-align: center;
}

a.remove {
    font-size: 17px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    color: var(--dark-bg);
    font-family: "Raleway", sans-serif;
    border: 0;
    border-radius: 50px;
}

.table-space h6 {
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 30px;
    color: #cbcbcb;
}

.space span {
    color: #333333;
    font-size: 18px;
    font-weight: 500;
    font-family: "cereM";
    line-height: 30px;
    padding: 0;
}

.btn-link {
    text-decoration: none !important;
}

.btn-link:focus {
    outline: none !important;
    box-shadow: none !important
}

table.table tr th:nth-child(1) {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}


.counter {
    width: 100px;
    display: flex;
    align-items: center;
    border: 3px solid #e5e5e5;
    justify-content: center;
    border-radius: 2px;
}

.counter span {
    display: block;
    font-size: 16px;
    padding: 0;
    line-height: 20px;
    cursor: pointer;
    color: var(--dark-bg);
    user-select: none;
}

.counter input {
    width: 40px;
    border: 0;
    line-height: 30px;
    font-size: 15px;
    text-align: center;
    height: 38px;
    background: transparent;
    color: var(--dark-bg);
    appearance: none;
    border-left: 2px solid #e5e5e5;
    border-right: 2px solid #e5e5e5;
    outline: 0;
    padding: 0;
    padding-left: 5px;
}

.counter input:focus {
    outline: none;
}

.st-count {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 21px;
}

.pd-des h5 {
    font-size: 15px !important;
    margin: 0 0 0px !important;
}


button.btn.btn-primary.rounded-pill.me-2.products-prev {
    background-color: #2f9bc3;
    border: #2f9bc3;
    min-height: 50px;
    min-width: 50px;
}

button.btn.btn-primary.rounded-pill.products-next {
    background-color: #2f9bc3;
    border: #2f9bc3;
    min-height: 50px;
    min-width: 50px;
}

.st-count a {
    background-color: #403633;
    color: #fff !important;
    border-radius: 35px;
    width: 140px;
    text-align: center;
    height: 42px;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 40px;
    margin-left: 20px;
    font-weight: 800;
}

.pd-des {
    display: flex;
    align-items: center;
    margin: 17px 0 0;
}

.pd-des a {
    font-size: 14px;
    color: #777777;
}

.pd-des a {
    font-size: 16px;
    margin: 0 0 0 6px;
}

.prd-sl-cont h5 {
    margin-bottom: 20px;
    color: var(--dark-bg);
}

/* Cart */




/* Checkout Page Start */
.billing_form h3 {
    font-size: 24px;
    color: var(--dark-bg);
    margin: 0;
    font-weight: 100;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.billing_form label {
    font-size: 14px;
    font-family: "Montserrat";
    color: #7c7c7c;
    font-weight: 600;
}

.radiosss p {
    color: #7c7c7c;
    font-size: 12px;
    font-family: "Montserrat";
    font-weight: 400;
}

.billing_form input {
    width: 100%;
    height: 50px;
    border: 1px solid #c4c4c4;
    margin-bottom: 20px;
    padding-left: 15px;
    background: transparent;
    border-radius: 0px;
}

textarea.billing-message,
.billing_form textarea {
    border: 1px solid #c4c4c4;
    margin-top: 5px;
    padding: 10px;
    border-radius: 0;
    resize: none;
    min-height: 150px;
    min-width: 100%;
}

.billing_form input:focus,
.billing_form textarea:focus {
    outline: none;
}

.billing_form input::placeholder {
    color: #7c7c7c;
    font-family: "Montserrat";
}

.blog-small img {
    display: table;
    margin: 0 auto;
    width: 100%;
    object-fit: cover;
}

.billing_form input.chk-fr {
    background: var(--primary-color);
}


.cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar .cart_lst li {
    font-size: 14px;
    color: #000000;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    list-style: none;

}

.cart_sidebar .cart_lst li span {
    float: right;
    font-weight: 600;
}

/* .cart_sidebar .cart_lst li:last-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-bg);
} */

.cart_sidebar .cart_lst {
    margin-top: 20px;
    margin-bottom: 40px;
}

.thankyou_txt {
    padding: 50px;
    border: 2px solid #b7b7b7;
}

.thankyou_txt h3 {
    font-size: 35px;
    color: var(--dark-bg);
    font-weight: 800;
    margin: 0;
    font-family: "Roboto", sans-serif;
}

.thankyou_txt h3 i {
    font-size: 40px;
    margin-right: 15px;
}

.order_det h5 {
    font-size: 20px;
    color: #7c7c7c;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}

.order_det p {
    font-weight: 700;
    font-size: 20px;
    color: var(--dark-bg);
    margin: 0;
}

.order_complete_detail h3 {
    font-size: 22px;
    color: var(--dark-bg);
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}

.order_detail_table {
    padding: 40px;
    border: 1px solid #b7b7b7;
}

.order_detail_table h5 {
    margin-top: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-bg);
    font-family: "Roboto", sans-serif;
}

.order_detail_table ul {
    margin-top: 20px;
    margin-bottom: 30px;
}

.order_detail_table ul li:not(:last-child) {
    margin-bottom: 25px;
}

.order_detail_table ul li {
    font-size: 14px;
    color: #7c7c7c;
}

.order_detail_table ul li span {
    float: right;
}

.order_detail_table ul li:last-child {
    font-weight: 700;
    color: var(--dark-bg);
}

.order_detail_table h6 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-bg);
    font-family: "Roboto", sans-serif;
    padding: 25px 0;
    border-top: 1px solid #dbdbdb;
    margin: 0;
}

.order_detail_table h6 span {
    float: right;
}




.add-to-cart .table>tbody>tr>td,
.add-to-cart .table>tbody>tr>th,
.add-to-cart .table>tfoot>tr>td,
.add-to-cart .table>tfoot>tr>th,
.add-to-cart .table>thead>tr>td,
.add-to-cart .table>thead>tr>th {
    vertical-align: middle;
}

.total-section {
    border: none;
    padding: 23px 20px;
    border: 1px solid var(--dark-bg);
    border-radius: 30px;
}

.total-section ul {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

.total-section li {
    font-size: 19px;
    padding-bottom: 10px;
    color: var(--dark-bg);
    font-weight: 500;
    line-height: normal;
}

.total-section li {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.total-section h3 {
    text-transform: uppercase;
    font-size: 22px;
    padding-inline-start: 6px;
}

.sub-total {
    border-bottom: 1px solid #e2e2e2;
}

.chg-clr {
    color: #403633;
}

.total-section a {
    font-size: 14px;
    background-color: var(--primary-color);
    color: #000000 !important;
    height: 40px;
    display: inline-flex;
    line-height: 22px;
    justify-content: center;
    margin-top: 10px;
    border-radius: 30px;
    align-items: center;
    padding: 10px 20px;
}

li.color-change {
    color: var(--dark-bg);
    text-transform: capitalize;
    font-weight: 500;
    font-size: 26.96px;
    /* text-transform: uppercase; */
    padding-bottom: 0;
    border: solid 1px;
    border-color: var(--dark-bg)00030 transparent transparent transparent;
    /* margin-top: 10px; */
    padding-top: 20px;
    text-align: center;
}

/* .total-section li.sub-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--dark-bg);
  } */
.total-section li.color-change span {
    font-weight: 700;
    font-size: 20.96px;
    color: var(--dark-bg);
}

/* .total-section li span {
    float: right;
  } */
.ship-estimate {
    padding: 20px 40px;
    border: 1px solid #dddddd;
    margin-top: 25px;
}

.ship-estimate li {
    color: var(--dark-bg);
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 500;
    font-family: "JosefinSans";
}

.ship-estimate ul {
    margin-top: 20px;
    margin-bottom: 25px;
    font-family: "Poppins";
    list-style: none;
}

.ship-estimate .grey-style {
    color: #737373;
    font-size: 22px;
    font-weight: 500;
    font-family: "JosefinSans";
}

.proceed a {
    color: var(--dark-bg);
    text-align: center;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    font-family: "FontsFree-NeEffra";
    padding: 0;

}

.proceed .checkout-btn {
    padding: 6px;
    width: 39%;
    margin-top: 10px;
    font-size: 20px;
    font-size: 13px;
    color: #333 !important;
    border-radius: 50px;
}

.proceed .save-btn {
    padding: 15px;
    width: 100%;
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
    background: var(--dark-bg);
    border-radius: 40px;
}

.cart_sidebar {
    padding: 40px 25px;
    border-radius: 0px;
    background-color: #f7f7f7;
}

.ctr-bk {
    background-color: #fff;
    padding: 10px 15px;
}

.cart_sidebar h3 {
    font-size: 24px;
    color: var(--black-color);
    margin-top: 0px;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: normal;
    font-weight: 300;
}

.cart_lst {
    padding: 0;
}

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

.cart_sidebar .h-sub {
    font-weight: 500;
    color: var(--black-color)000;
    font-size: 24px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
}

.cart_sidebar .h-ship {
    font-weight: 600;
    color: var(--black-color)000;
    font-size: 17px;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 17px;
    line-height: 0;
    padding-top: 08px;
}

.cart_sidebar .h-ship span {
    color: var(--black-color)000;
    font-size: 18px;
}

.cart_sidebar h5 span {
    float: right;
}

.cart_sidebar h4 {
    font-size: 25px;
    color: var(--black-color)000;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: normal;
    padding-top: 0;
}

.cart_sidebar ul li label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 400;
    color: #7c7c7c;
}

.cart_sidebar form {
    margin-top: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #b7b7b7;
}

.cart_sidebar form h4 {
    font-size: 14px;
    font-weight: 400;
    color: #b7b7b7;
    font-family: "Roboto", sans-serif;
}

.cart_sidebar form select {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form select option {
    color: var(--black-color);
}

.cart_sidebar form input {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.abt-bn ol li a {
    color: #333;
    font-size: 14px;
}

.abt-bn ol .active {
    font-weight: 700;
}

.cart_sidebar form input::placeholder {
    color: #b7b7b7;
}

.cart_sidebar form button {
    color: var(--black-color);
    font-size: 15px;
    border-radius: 0px;
    font-family: "Poppins", sans-serif;
    padding: 10px 40px;
    background-color: #ebebeb;
    border: 2px solid #ebebeb;
}

.cart_sidebar form button:hover {
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

.woocommerce-info.hidden-notice {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px 7px;
    margin-bottom: 20px;
    padding-block: 10px;
    padding-inline: 30px 30px !important;
    min-height: 60px;
    text-align: start;
    gap: 20px;
    border: none;
    background: #403633;
    color: #fff;
    margin-top: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
}

.woocommerce-info.hidden-notice i.fa-solid.fa-exclamation {
    height: 20px;
    width: 20px;
    border-radius: 100px;
    border: 1px solid #fff;
    min-width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout_btn {
    padding: 12px 50px;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff !important;
    font-size: 15px;
    border: none;
    font-weight: 500;
    border: 2px solid transparent;
    background-color: #005b96;
    border-radius: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #005b96;
    border-radius: 0;
    border-radius: 35px;
}


.shopbtn {
    position: relative;
    margin-top: -220px;
    z-index: 99;
    background: #fff;
    margin-left: 120px;
    background: #309ac1;
    color: #ffff;
    padding: 10px 20px;
}

.shopbtn:hover {
    background: #fff;
    color: #309ac1;
}


.contact-section {
    padding: 80px 0;
}



.contact-card {
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.custom-input {
    min-height: 55px;
}

.contact-icon {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 20px;
}

.contact-card h5 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #6c757d;
    margin-bottom: 5px;
}

.financing-box.reversebox {
    /* margin-top: -416px !important; */
}

.financing-box.reversebox .financing-inner {
    padding: 40px 0px 40px 30px;
}

.reversesec.financing-sec::before {
    content: '';
    position: absolute;
    background-color: #e82425;
    width: 40%;
    height: 240px;
    left: unset;
    bottom: 101px;
    z-index: -1;
    right: 0;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 60px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    z-index: 1000;

    /* Added properties for scroll functionality */
    max-height: 380px;
    /* Set a max height for the menu */
    overflow-y: auto;
    /* Add vertical scroll when content exceeds height */
}

.menu-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
}

.menu-column {
    flex: 1;
    text-align: center;
    padding: 10px;
    max-width: 150px;
}

.menu-column1 p {
    text-align: center;
    width: 100%;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: #000;
}

.menu-column img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.menu-column .spantag {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-size: 12px;
    line-height: 20px;
}


.mega-menu::-webkit-scrollbar {
    width: 5px;
}

.mega-menu::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.mega-menu::-webkit-scrollbar-thumb {
    background-color: #ae8d64;
    outline: 1px solid #ae8d64;
}

.productBtn {
    font-size: 17px;
    color: #fff !important;
    border-radius: 35px;
    position: relative;
    height: 45px;
    width: 173px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    line-height: 45px;
    background-color: #ad8e61;
    margin-left: 23px;
}

.pprd-bt {
    min-height: 280px;
    max-height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.highlight {
    background-color: yellow;
    font-weight: bold;
}

.menu-row a {
    color: #000;
}

.menu-row a:hover {
    color: #000;
}

.ptrm {
    padding: 30px 0 0;
    text-align: justify;
    border-bottom: 1px solid #0000001b;
}

form.search-bar {
    display: flex;
    position: relative;
    min-width: 700px;
}

.productbox img {
    width: 100%;
}

.bottombox img {
    width: 100%;
    height: 190px;
    object-fit: contain;
}


/* The main marquee container matching the site header/banner */
.gold-marquee-container {
    background: #111111;
    /* Dark background like ArkoEx header */
    border-top: 2px solid #c5a059;
    /* Gold accent borders */
    border-bottom: 2px solid #c5a059;
    padding: 4px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.why-trust-section h1 {
    font-size: 4rem;
}

.why-trust-section h2 {
    font-size: 3.5;
}

/* Subtle gold gradient overlay for a luxury feel */
.gold-marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(17, 17, 17, 1) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%, rgba(17, 17, 17, 1) 100%);
    pointer-events: none;
}

.marquee-content {
    display: inline-block;
    /* float:right; */
    /* animation: scroll-left 20s linear infinite; */
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Gold Gradient Text to match the coins in your image */
    background: linear-gradient(to bottom, #f9dfa1 0%, #d4af37 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 50px;
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.divider {
    color: gold;
}


.marquee {
    overflow: hidden;
    white-space: nowrap;
    background: #000;
    color: #fff;
    padding: 5px 0;
}


.marquee-content {
    width: 100%;
    display: flex;
    justify-content: center;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content>div {
    transform: translateX(100%);
    display: flex;
    justify-content: center;
}

.marquee-content {
    /* animation: marquee 15s linear infinite; */
}

@keyframes marquee {
    0 {
        transform: translateX(20%);
    }

    50% {
        transform: translateX(-60%);
    }

    100% {
        transform: translateX(-120%);
    }
}

/* Geometric divider matching the clean site UI */
.divider {
    color: #c5a059;
    font-size: 1rem;
    margin: 0 20px;
}



/* Pause on hover for usability */
.gold-marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1440px) {
    form.search-bar {
        min-width: unset;
    }

    .search-bar input {
        min-width: 400px;
    }
}

@media (max-width: 1366px) {
    div#navbarNav .navbar-nav .nav-link {
        margin: 0 20px 0 0;
        padding: 15px 20px 15px 0px;
    }

    .why-trust-section h1 {
        font-size: 3.4rem;
    }

    .why-trust-section h2 {
        font-size: 3rem;
    }

    .product-info .btn {
        padding: 18px;
        max-width: 60px;
    }

    .product-info {
        width: 90%;
    }

    .product-info {
        max-width: 86%;
    }

    .product-info h5 {
        font-size: 20px !important;
    }

    .price-tag .amount {
        font-size: 25px;
    }




}

@media (max-width: 1200px) {
    div#navbarNav .navbar-nav .nav-link {
        margin: 0 15px 0 0;
        font-size: 14px;
        padding: 15px 15px 15px 0px;
    }

    .why-trust-section h1 {
        font-size: 3rem;
    }

    .why-trust-section h2 {
        font-size: 2.5em;
    }

    .shopbtn {
        margin-top: -120px;
        margin-left: 0px;
    }

    .liksBox {
        padding: 15px !important;
    }

    .product-info h5 {
        font-size: 20px !important;
    }

    .price-tag .amount {
        font-size: 25px;
    }

    .feature-item span {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    div#navbarNav {
        position: absolute;
        width: 100%;
        top: 0;
        z-index: 999;
        background: #ffff;
        padding: 20px;
        box-shadow: 0px 8px 7px 3px #00000017;
    }


    .feature-item span {
        font-size: 18px;
    }

    .why-trust-section h1 {
        font-size: 2.8rem;
    }

    .why-trust-section h2 {
        font-size: 2.2em;
    }

    .category-sidebar {
        min-height: unset;
    }

    .cat1 p {
        width: 100%;
    }

    .qick-lnk>li>a {
        text-align: start !important;
    }

    .footer-link {
        text-align: start;
    }

    .category-sidebar>h2 {
        transform: rotate(0deg) !important;
        writing-mode: lr !important;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {

    .shopbtn {
        margin-top: 15px;
        margin-left: 0px;
    }

    .hero-slide {
        height: unset;
    }

    .feature-item span {
        font-size: 16px;
    }

    .why-trust-section h1 {
        font-size: 2.5rem;
    }

    .why-trust-section h2 {
        font-size: 2.2em;
    }


    .hero-slide h1 {
        font-size: 28px;
    }

    .search-bar {
        margin: 10px 0 !important;
    }

    .category-sidebar {
        min-height: auto;
        padding: 20px;
        margin-bottom: 20px;
    }

    .category-sidebar h2 {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .review-card {
        margin: 10px 0;
        padding: 20px;
    }

    .blog-content {
        padding: 15px;
    }

    .footer-section .row {
        text-align: center;
    }

    .footer-item {
        justify-content: start;
    }

    .social-links {
        justify-content: center;
    }

    .payment-methods {
        justify-content: center;
    }

    .csheading {
        height: unset;
    }

    .card-content {
        padding: 20px;
    }

    .header-section .navbar-brand>img {
        width: 200px;
    }

    .new-arrivals h2,
    .best-selllers h2 {
        font-size: 45px;
        line-height: 45px;
    }

    .search-bar input {
        width: 100%;
        min-width: 100%;
    }

    .best-sellers-tabs {
        gap: 10px;
    }

    .best-sellers-tab {
        padding: 8px 15px !important;
    }

    .dirstion-reverse {
        flex-direction: column-reverse;
    }

    .reviews-overlay {
        padding: 0;
    }
}

@media (max-width: 676px) {
    .productbox>img {
        max-height: 300px;
        object-fit: contain;
    }
}

@media (max-width: 576px) {



    .why-trust-section h1 {
        font-size: 2.2rem;
    }

    .why-trust-section h2 {
        font-size: 2.2em;
    }


    .hero-slide h1 {
        font-size: 20px;
    }

    .display-5 {
        font-size: 28px;
    }

    .btn-custom-gold {
        padding: 10px 25px;
        font-size: 12px;
    }

    .navbar-brand {
        font-size: 16px;
    }

    .product-card img {
        height: 150px;
        object-fit: contain;
    }

    /* .shopbtn {
        display: table;
        padding: 5px 10px;
        font-size: 12px;
        margin-top: -33px;
        margin-left: 0 !important;
    } */

    .new-arrivals h2,
    .best-selllers h2 {
        font-size: 38px;
        line-height: 36px;
    }
}