﻿@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');


body {
    font-family: "Poppins", sans-serif;
    background: #fafafa;
}

a {
    text-decoration: none;
}

/* Top Strip */

.top-strip {
    background: #e7cc77;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

/* Header */

.main-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Logo */

.logo {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #111;
}

/* Navbar */

.navbar {
    padding: 0px 0;
}

.navbar-nav {
    gap: 8px;
}

.nav-link {
    color: #222;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
    padding: 43px 14px !important;
    border-radius: 10px;
    font-size: 12px;
}

    .nav-link:hover {
        background: #ffffff;
        color: #000;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 14px;
        bottom: 30px;
        width: 0;
        height: 1px;
        background: #e7cc77;
        transition: 0.3s;
    }

    .nav-link:hover::after {
        width: calc(100% - 28px);
    }

/* Right Icons */

.header-icons {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 18px;
}

.icon-box {
    color: #111;
    position: relative;
    transition: 0.3s;
}

    .icon-box i {
        font-size: 18px;
    }

    .icon-box:hover {
        color: #b53f69;
        transform: translateY(-2px);
    }

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #e7cc77;
    color: #000;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tabs */

.category-tabs {
    max-width: 850px;
    margin: auto;
    border: 1px solid #d8aa6a;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    margin-bottom: 20px;
    background: #fff;
}

    .category-tabs button {
        flex: 1;
        border: none;
        background: transparent;
        padding: 14px;
        font-weight: 600;
        transition: 0.3s;
    }

    .category-tabs .active {
        background: linear-gradient(to right,#b44573,#8f214c);
        color: #fff;
    }

/* Mobile Menu */

.navbar-toggler {
    border: none;
    box-shadow: none !important;
    padding: 0;
}

.mobile-right-icons {
    display: none;
}

@media(max-width:991px) {

    .logo {
        font-size: 32px;
    }

    .navbar-collapse {
        background: #fff;
        margin-top: 18px;
        padding: 18px;
        border-radius: 18px;
        box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    }

    .navbar-nav {
        gap: 5px;
    }

    .nav-link {
        padding: 12px 10px !important;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-right-icons {
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 18px;
    }
}

@media(max-width:576px) {

    .logo {
        font-size: 28px;
    }

    .category-tabs button {
        font-size: 14px;
        padding: 12px 5px;
    }

    .icon-box i {
        font-size: 18px;
    }
}


.category-section {
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
}

    .category-section::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(231,204,119,0.25);
        border-radius: 50%;
        top: -120px;
        left: -120px;
        z-index: 0;
    }

    .category-section::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        background: rgba(231,204,119,0.18);
        border-radius: 50%;
        bottom: -100px;
        right: -100px;
        z-index: 0;
    }

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: #b6922e;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 0;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    transition: all 0.4s ease;
    z-index: 2;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    height: 100%;
}

    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }

.category-image {
    position: relative;
    overflow: hidden;
}

    .category-image img {
        width: 100%;
        height: 430px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.05));
    opacity: 0;
    transition: 0.4s;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

.category-card:hover .category-content {
    opacity: 1;
    transform: translateY(0);
}

.category-content h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e7cc77;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

    .arrow-btn:hover {
        background: #111;
        color: #fff;
    }

.category-name {
    text-align: center;
    padding: 24px 15px 28px;
}

    .category-name h5 {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #111;
    }

    .category-name span {
        color: #777;
        font-size: 15px;
    }

@media(max-width:991px) {

    .section-title h2 {
        font-size: 40px;
    }

    .category-image img {
        height: 380px;
    }
}

@media(max-width:767px) {

    .category-section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .category-image img {
        height: 340px;
    }

    .category-name h5 {
        font-size: 22px;
    }
}


.product-section {
    padding: 90px 50px;
    position: relative;
    overflow: hidden;
    background: #faf9f6;
}

    .product-section::before {
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(231,204,119,0.18);
        border-radius: 50%;
        top: -100px;
        left: -100px;
    }

.section-subtitle {
    color: #c79d20;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.section-text {
    color: #777;
    font-size: 18px;
}

.product-card {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    transition: 0.4s;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    }

.product-image {
    position: relative;
    overflow: hidden;
    background: #f6f1df;
    padding: 0px;
}

    .product-image img {
        width: 100%;
        border-radius: 0px;
        transition: 0.5s;
    }

.product-card:hover .product-image img {
    transform: scale(1.05);
}



.badge-custom {
    position: absolute;
    top: 28px;
    left: 28px;
    background: #e7cc77;
    color: #6b5310;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    z-index: 2;
}

/*.wishlist-btn {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: none;
    font-size: 18px;
    color: #a67c00;
    transition: 0.3s;
    z-index: 2;
}*/

.wishlist-btn:hover {
    background: #e7cc77;
    color: #111;
}

.product-content {
    padding: 24px;
}

.rating {
    color: #d39b00;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 14px;
    line-height: 1.4;
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.new-price {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 18px;
}

.cart-btn {
    width: 100%;
    border: none;
    background: #e7cc77;
    color: #111;
    padding: 14px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
}

    .cart-btn:hover {
        background: #111;
        color: #fff;
    }

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #e7cc77;
    color: #111;
    text-decoration: none;
    padding: 10px 28px;
    border-radius: 60px;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 60px;
}

    .view-btn:hover {
        background: #e7cc77;
        color: #111;
    }

@media(max-width:991px) {

    .section-title {
        font-size: 42px;
    }
}

@media(max-width:767px) {

    .product-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 34px;
    }

    .product-title {
        font-size: 20px;
    }

    .new-price {
        font-size: 18px;
    }
}



.footer {
    background: #fff;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

    .footer::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(231,204,119,0.08);
        border-radius: 50%;
        top: -150px;
        right: -100px;
    }

    .footer::after {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        background: rgba(231,204,119,0.05);
        border-radius: 50%;
        bottom: -100px;
        left: -80px;
    }

/* Logo */

.footer-logo {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #e7cc77;
    margin-bottom: 20px;
}

.footer-about {
    color: #4d3b16;
    line-height: 1.9;
    font-size: 15px;
    max-width: 350px;
}

/* Social */

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

    .social-icons a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgb(175 131 40);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e7cc77;
        font-size: 18px;
        transition: 0.3s;
        text-decoration: none;
    }

        .social-icons a:hover {
            background: #e7cc77;
            color: #111;
            transform: translateY(-4px);
        }

/* Footer Titles */

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 28px;
    color: #4a3304;
    position: relative;
}

    .footer-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 55px;
        height: 2px;
        background: #e7cc77;
        border-radius: 10px;
    }

/* Footer Links */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #4d3b16;
        text-decoration: none;
        transition: 0.3s;
        font-size: 15px;
        position: relative;
    }

        .footer-links a:hover {
            color: #b68c07;
            padding-left: 6px;
        }

/* Contact */

.contact-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #4d3b16;
    font-size: 15px;
}

    .contact-info i {
        color: #af8328;
        font-size: 18px;
        margin-top: 4px;
    }

/* Newsletter */

.newsletter-box {
    margin-top: 25px;
    position: relative;
}

    .newsletter-box input {
        width: 100%;
        height: 58px;
        border-radius: 50px;
        border: none;
        padding: 0 160px 0 20px;
        background: #fdfbf4;
        color: #777;
        border: #e7cc77 1px solid;
        outline: none;
    }

    .newsletter-box button {
        position: absolute;
        right: 6px;
        top: 6px;
        height: 46px;
        border: none;
        border-radius: 50px;
        background: #e7cc77;
        color: #111;
        font-weight: 600;
        padding: 0 28px;
        transition: 0.3s;
    }

        .newsletter-box button:hover {
            background: #cb9b2b;
            color:#000;
        }

/* Payment */

.payment-box {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .payment-box span {
        background: #1f1f1f;
        color: #e7cc77;
        padding: 10px 16px;
        border-radius: 12px;
        font-size: 14px;
        border: 1px solid rgba(231,204,119,0.15);
    }

/* Bottom Footer */

.footer-bottom {
    border-top: solid 1px #e6d8be;
    margin-top: 70px;
    padding: 22px 0;
}

.copyright {
    color: #4d3b16;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    justify-content: end;
    gap: 24px;
    flex-wrap: wrap;
}

    .footer-bottom-links a {
        color: #4d3b16;
        text-decoration: none;
        transition: 0.3s;
        font-size: 14px;
    }

        .footer-bottom-links a:hover {
            color: #e7cc77;
        }

@media(max-width:991px) {

    .footer {
        padding-top: 70px;
    }

    .footer-logo {
        font-size: 40px;
    }

    .footer-title {
        margin-top: 0;
    }

    .footer-bottom-links {
        justify-content: start;
        margin-top: 12px;
    }
}

@media(max-width:576px) {

    .footer-logo {
        font-size: 34px;
    }

    .footer-title {
        font-size: 20px;
    }

    .newsletter-box input {
        padding-right: 20px;
    }

    .newsletter-box button {
        position: relative;
        width: 100%;
        margin-top: 12px;
        right: 0;
        top: 0;
    }
}


.feature-section {
    padding: 90px 0;
    background: #d3d3d2;
    /*background: linear-gradient(to bottom, #fff6db, #e5d58d);*/
    position: relative;
    overflow: hidden;
}

    .feature-section::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        background: rgb(185 185 183);
        /*background: rgb(187 142 0 / 36%);*/
        border-radius: 50%;
        top: -140px;
        left: -120px;
    }

    .feature-section::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        background: rgb(185 185 183);
        /*background: rgb(187 142 0 / 36%);*/
        border-radius: 50%;
        bottom: -100px;
        right: -80px;
    }

/* Feature Card */

.feature-card {
    background: rgb(255 255 255 / 99%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(231,204,119,0.25);
    border-radius: 28px;
    padding: 20px 15px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

    .feature-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(231,204,119,0.10), transparent );
        opacity: 0;
        transition: 0.4s;
    }

    .feature-card:hover::before {
        opacity: 1;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.10);
        border-color: #e7cc77;
    }

/* Icon */

.feature-icon {
    width: 95px;
    height: 95px;
    border-radius: 24px;
    background: linear-gradient( 135deg, rgba(231,204,119,0.25), rgba(231,204,119,0.08) );
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    position: relative;
    transition: 0.4s;
}

.feature-card:hover .feature-icon {
    transform: rotate(-6deg) scale(1.05);
}

.feature-icon i {
    font-size: 42px;
    color: #b68d12;
}

/* Title */

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #a77500;
    margin-bottom: 12px;
}

/* Text */

.feature-text {
    color: #333;
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 0;
}

/* Top Badge */

.section-badge {
    background: #e7cc77;
    color: #111;
    padding: 10px 26px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.section-desc {
    color: #333;
    max-width: 650px;
    margin: auto;
    line-height: 1.9;
    font-size: 16px;
}

@media(max-width:991px) {

    .feature-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 40px;
    }
}

@media(max-width:576px) {

    .section-title {
        font-size: 32px;
    }

    .feature-card {
        padding: 32px 20px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }

        .feature-icon i {
            font-size: 34px;
        }
}


.product-section {
    padding: 70px 0 40px;
}

.product-gallery {
    position: sticky;
    top: 30px;
}

.main-image {
    background: #f0ead8;
    border-radius: 35px;
    padding: 10px;
    overflow: hidden;
}

    .main-image img {
        width: 100%;
        transition: 0.4s;
        border-radius: 20px;
        height: 700px;
        object-fit: cover;
    }

        .main-image img:hover {
            transform: scale(1.05);
        }

.thumbnail-wrapper {
    margin-top: 20px;
}

.thumbnail {
    background: #efe0b4;
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
}

    .thumbnail img {
        border-radius: 10px;
    }

    .thumbnail:hover {
        border-color: #a77b45;
        transform: translateY(-4px);
    }

    .thumbnail img {
        width: 100%;
        height: 89px;
        object-fit: cover;
    }


.check-pro-info .product-info {
    padding: 10px;
    background: #fff;
    border-top: none;
    border-radius: 0px;
    box-shadow: 0 0 0 0;
}

.product-info {
    padding: 30px;
    background: #fff;
    border-radius: 5px;
    border: #f0ead8 1px solid;
    /*border-top: 8px solid #C89B3C;
    box-shadow: 0 5px 19px 0 #b59c0040;*/
}
.product-info hr{
        border-color: #f0ead8;
        opacity: 1;
}

    .product-info .btn-primary {
        border: none;
        background: #b68c2e !important;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        border-radius: 16px;
        padding: 6px 20px;
        margin-left: 10px;
    }


/*.pro-n {
    background: #f8eed1;
    padding: 11px 10px;
    border-radius: 10px;
    border: 2px dashed #cc810a;
    text-align: center;
}*/
.pro-n {
    background: #f8eed1;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px #dfcd9a solid;
    text-align: center;
    display: flex;
    gap: 5px;
}

    .pro-n .css-1hd9hv8 {
        color: #ad6000 !important;
        font-weight: 700;
    }

.brand {
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    color: #9c7a4e;
    text-transform: uppercase;
}

.product-section .product-title {
    font-size: 25px;
    line-height: 1.2;
    margin-top: 0px;
    color: #4c4018;
}

.rating {
    color: #d9a441;
}

.price {
    font-size: 2.3rem;
    font-weight: 700;
    color: #111;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 12px;
    font-size: 1.2rem;
}

.description {
    margin-top: 25px;
    line-height: 1.9;
    color: #666;
    text-align: justify;
    border-bottom: #ece6d5 1px solid;
    padding-bottom: 15px;
}

.feature-box {
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 18px;
}

    .feature-item:last-child {
        margin-bottom: 0;
    }

.feature-icon {
    width: 55px;
    height: 55px;
    background: transparent;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9c7a4e;
    font-size: 22px;
}

.option-title {
    font-weight: 600;
    margin-bottom: 14px;
    margin-top: 0;
}

.size-btn {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    border: none;
    background: #fff;
    font-weight: 600;
    transition: 0.3s;
}

    .size-btn.active,
    .size-btn:hover {
        background: #9c7a4e;
        color: #fff;
    }

.qty-box {
    width: 150px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.qty-btn {
    border: none;
    background: #fff;
    width: 45px;
    height: 55px;
    font-size: 22px;
}

.qty-input {
    border: none;
    width: 60px;
    text-align: center;
    font-weight: 600;
}

.buy-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 18px;
    font-weight: 600;
    transition: 0.3s;
}

    .buy-btn:hover {
        background: #9c7a4e;
    }

.cart-btn {
    background: #9c7a4e;
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 18px;
    font-weight: 600;
    transition: 0.3s;
}

    .cart-btn:hover {
        background: #111;
    }

.secure-box {
    margin-top: 35px;
    background: #fff;
    border-radius: 20px;
    padding: 18px 25px;
}

    .secure-box img {
        max-width: 280px;
    }

.tabs-section {
    margin-top: 90px;
}

.nav-pills .nav-link {
    border-radius: 14px;
    padding: 14px 26px;
    color: #111;
    font-weight: 600;
    margin-right: 10px;
}

    .nav-pills .nav-link.active {
        background: #e7cc77;
    }

.tab-content {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    margin-top: 25px;
    border: #ece6d5 1px solid;
}

    .tab-content .tab-pane {
        padding: 20px;
    }

    .tab-content .head-box h4 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        background: #e7cc77;
        padding: 10px 20px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

@media(max-width:991px) {

    .product-info {
        padding: 20px;
        margin-top: 40px;
    }

    .product-title {
        font-size: 2.4rem;
    }
}

.breadcrumb-section {
    background: #f0ead8;
}

.custom-breadcrumb {
    /* background: #fff; */
    display: inline-flex;
    align-items: center;
    padding: 0 24px;
    /* border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05); */
}

    .custom-breadcrumb .breadcrumb-item {
        font-size: 15px;
        font-weight: 500;
        /*text-transform: uppercase;*/
    }

        .custom-breadcrumb .breadcrumb-item a {
            text-decoration: none;
            color: #193564;
            transition: 0.3s;
            line-height: 28px;
        }

            .custom-breadcrumb .breadcrumb-item a:hover {
                color: #111;
            }

        .custom-breadcrumb .breadcrumb-item.active {
            color: #111;
            font-weight: 600;
        }

        .custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            content: "›";
            color: #193564;
            font-size: 18px;
            padding: 0 12px;
        }

@media(max-width:768px) {

    .custom-breadcrumb {
        border-radius: 18px;
        padding: 12px 18px;
        flex-wrap: wrap;
    }

        .custom-breadcrumb .breadcrumb-item {
            font-size: 14px;
        }

            .custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
                content: "›";
                color: #193564;
                font-size: 18px;
                padding: 0 12px;
                position: relative;
                top: 5px;
            }

    .product-info .btn-primary {
        margin-left: 0;
    }
}

.product-section .rating {
    color: #d9a441;
    top: 7px;
    position: relative;
}

.product-section .price {
}

.homeproducts {
    padding: 50px 50px;
    position: relative;
    overflow: hidden;
    background: #f0f4fc;
}

    .homeproducts .product-title {
        font-size: 15px;
        font-weight: 500;
        color: #111;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .homeproducts .cart-btn {
        width: 100%;
        border: none;
        background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728);
        /*background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);*/
        color: #000000;
        padding: 14px;
        border-radius: 0px;
        font-size: 17px;
        font-weight: 600;
        transition: all 3s;
    }

        .homeproducts .cart-btn:hover {
            background: linear-gradient(to right, #BF953F, #FCF6BA);
            /*background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);*/
        }

    .homeproducts .old-price {
        color: #999;
        text-decoration: line-through;
        font-size: 18px;
    }

.productpage .old-price {
    position: relative;
    top: 14px;
}

.productpage .price {
    margin-bottom: 0px;
}


.discount-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0px 0px 0px 20px;
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(25, 52, 99, 0.35), inset 0 2px 10px rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.12);
}

/* SHINE EFFECT */

.shine {
    position: absolute;
    top: -120%;
    left: -40%;
    width: 120px;
    height: 320%;
    background: rgba(255,255,255,0.35);
    transform: rotate(25deg);
    filter: blur(8px);
    animation: shineMove 3.5s infinite linear;
}

@keyframes shineMove {

    0% {
        left: -40%;
    }

    100% {
        left: 130%;
    }
}

/* TEXT */

.offer-text {
    position: relative;
    color: #333;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 2;
}

.coupon-text {
    position: relative;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    z-index: 2;
}

.coupon-code {
    position: relative;
    background: rgb(231 204 119);
    color: #1a3463;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    z-index: 2;
    box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.2), 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE */

@media(max-width:768px) {

    .discount-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        border-radius: 28px;
    }

    .offer-text {
        font-size: 24px;
    }

    .coupon-text {
        font-size: 18px;
    }

    .coupon-code {
        font-size: 20px;
    }
}



.productpage-features-section {
    padding: 40px 0 0 0;
}

/* CARD */

.productpage-feature-card {
    position: relative;
    text-align: center;
    padding: 10px 10px;
    height: 100%;
    background: #fff5d4;
    border-radius: 10px;
}

    /* BORDER LINE */

    .productpage-feature-card::after {
        content: "";
        position: absolute;
        top: 10px;
        right: 0;
        width: 1px;
        background: #d8d8d8;
    }

    .productpage-feature-card.last::after {
        display: none;
    }

/* ICON */

.productpage-feature-icon {
    width: 50px;
    height: 50px;
    margin: auto auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #193463;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
}

.productpage-feature-card:hover .productpage-feature-icon {
    transform: translateY(-8px) rotate(5deg);
    background: #e7cc77;
    color: #fff;
}

/* TITLE */

.productpage-feature-title {
    font-size: 16px;
    color: #111;
    margin-bottom: 10px;
    font-weight: 600;
}

/* TEXT */

.productpage-feature-text {
    color: #555;
    font-size: 13px;
    line-height: 1.7;
}

/* MOBILE */

@media(max-width:991px) {

    .productpage-feature-card {
        padding: 30px 20px;
    }

        .productpage-feature-card::after {
            display: none;
        }
}

/*.productpage .cart-btn {
    background: #e7cc77;
}*/

.productpage .cart-btn {
    width: 100%;
    border: none;
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728);
    /* background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%); */
    color: #000000;
    padding: 14px 40px;
    border-radius: 0px;
    font-size: 17px;
    font-weight: 600;
    transition: all 3s;
}

@media (max-width: 768px) {
    .discount-badge {
        align-items: flex-start;
        gap: 10px;
        border-radius: 28px;
        width: 100%;
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .offer-text {
        font-size: 13px;
    }

    .coupon-text {
        font-size: 13px;
    }

    .coupon-code {
        font-size: 11px;
    }

    .productpage .cart-btn {
        background: #1a3563;
        padding: 10px;
    }
}

.desktop-title {
    display: block;
}

.mobile-title {
    display: none;
}

@media screen and (max-width:920px) {
    .custom-breadcrumb {
        padding: 0px;
        background: none;
        box-shadow: none;
        line-height: 15px;
    }

    .breadcrumb-section {
        background: #f0ead8;
        padding: 5px !important;
    }

        .breadcrumb-section li a {
        }

    .product-section {
        padding: 20px 0px;
    }

    .main-image {
        background: none;
        padding: 0px;
    }

    .desktop-title {
        display: none;
    }

    .mobile-title {
        display: block;
    }

    .main-image {
        overflow: visible
    }

        .main-image img {
            border-radius: 20px;
            border: solid 1px #e7cc77
        }

    .thumbnail {
        padding: 0px;
        background: none;
    }

        .thumbnail img {
            border: solid 1px #e7cc77;
            border-radius: 5px;
        }

    .thumbnail-wrapper {
        margin-top: 0px;
    }

    .product-info {
        margin-top: 0px;
    }

    .coupon-code {
        padding: 7px 12px;
    }

    .offer-text, .coupon-text {
        margin-top: 7px;
    }

    .discount-badge {
        margin-top: 10px;
    }

    .productpage .cart-btn {
        background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728);
        /* background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%); */
        color: #000000;
        padding: 10px;
        width: 100%;
    }

    .productpage-feature-card {
        padding: 0px;
    }

    .navbar {
        padding: 5px 0;
    }

    .product-section .product-title {
        font-size: 20px;
        line-height: 1.2;
        margin-top: 10px;
        color: #4c4018;
    }
}



/* =========================
        FILTER SIDEBAR
    ========================== */

.filter-sidebar {
    background: #fff;
    border-radius: 5px;
    padding: 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
    margin-bottom: 20px;
}

.filter-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    background: #e7cc77;
    padding: 10px 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.filter-sidebar .left-menu {
    padding: 0 10px;
}

.filter-box {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #edf1f5;
}

    .filter-box:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border: none;
    }

    .filter-box h5 {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 18px;
    }

.form-check {
    margin-bottom: 14px;
}

.form-check-input {
    border: 1px solid #cbd5e1;
}

    .form-check-input:checked {
        background: #d3b462;
        border-color: #d3b462;
    }

.form-check-label {
    color: #475569;
    font-weight: 500;
}

.size-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #dbe2ea;
    background: #fff;
    font-weight: 600;
    transition: 0.3s;
}

    .size-btn:hover {
        background: #d3b462;
        color: #fff;
        border-color: #d3b462;
    }

/* =========================
        MOBILE FILTER BUTTON
    ========================== */

.mobile-filter-btn {
    width: 100%;
    border: none;
    background: #d3b462;
    color: #fff;
    padding: 15px 20px;
    border-radius: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(23,42,74,0.15);
}

    .mobile-filter-btn:hover {
        background: #0d1b32;
    }

/* =========================
        TOPBAR
    ========================== */

.shop-topbar {
    background: #fff;
    padding: 18px 24px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.result-text {
    font-weight: 700;
    color: #d3b462;
}

.form-select {
    border-radius: 14px;
    border: 1px solid #dbe2ea;
    padding: 12px 15px;
    font-weight: 500;
    min-width: 220px;
}

    .form-select:focus {
        box-shadow: none;
        border-color: #d3b462;
    }

/* =========================
        PRODUCT CARD
    ========================== */

.product-card {
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    transition: 0.35s;
    box-shadow: 0px 5px 20px 0px rgb(0 0 0 / 13%);
    height: 100%;
    position: relative;
    /*border: #dddddd 1px solid;*/
}

    .product-card:hover {
        transform: translateY(0px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    }

.product-image {
    position: relative;
    overflow: hidden;
    background: #a8b3bf;
}

    .product-image img {
        width: 100%;
        height: 315px;
        object-fit: cover;
        transition: 0.4s;
    }

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-image video {
    width: 100%;
    height: 315px;
    object-fit: cover;
    transition: 0.4s;
}
.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #d3b462;
    color: #fff;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
}

.wishlist-btn {
    position: absolute;
    bottom: 6px;
    right: 8px;
    /* width: 27px;
    height: 27px;
    border-radius: 50%;*/
    background: transparent;
    border: none;
    z-index: 2;
    transition: 0.3s;
}

    .wishlist-btn a {
        color: #000;
    }

        .wishlist-btn a :hover {
            color: #ff0000;
        }


    .wishlist-btn:hover {
        background: transparent;
    }

.video-icon {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 27px;
    height: 27px;
    line-height: 29px;
    border-radius: 50%;
    border: none;
    z-index: 2;
    transition: 0.3s;
    padding: 0;
    background: transparent;
}

    .video-icon i {
        /*color:#ff0000;*/
        font-size: 20px;
        background: #fff;
        border-radius: 50%;
        width: 27px;
        height: 27px;
        display: inherit;
        text-align: center;
        line-height: 29px;
    }

.color-box {
    position: absolute;
    top: -6px;
    left: -28px;
    width: 80px;
    height: 34px;
    background: #C89B3C;
    border: none;
    z-index: 2;
    transition: 0.3s;
    transform: rotate( 312deg);
}

/*.color-box {
    position: absolute;
    bottom: 6px;
    left: 12px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #C89B3C;
    border: none;
    z-index: 2;
    transition: 0.3s;
    border: 3px solid #fff;
    outline: #b5b5b5 1px solid;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}*/

.product-content {
    padding: 10px 15px 5px;
}

    .product-content .polishes {
        display: flex;
        gap: 18px;
    }

    .product-content .form-select {
        min-width: 90px;
        border-radius: 0;
        padding: 0px 0 0 15px;
        border: 0;
        font-size: 13px;
    }

    .product-content .card-box {
        /*background:#f7f3ea;*/
        border-top: #d9d9d9 1px solid;
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        color: #000;
        font-weight: 500;
        padding: 10px 0 0;
        margin-top: 7px;
    }

.product-category {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-rating {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 16px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.new-price {
    font-size: 18px;
    font-weight: 800;
    color: #3c382f;
    /*    line-height: 14px;*/
}

.old-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.add-cart-btn {
    width: 100%;
    border: none;
    background: #d3b462;
    color: #fff;
    padding: 14px;
    border-radius: 16px;
    font-weight: 700;
    transition: 0.3s;
}

    .add-cart-btn:hover {
        background: #0d1b32;
    }

/* =========================
        PAGINATION
    ========================== */

.pagination {
    gap: 5px;
    margin-top: 10px;
}

.page-link {
    /*width: 48px;
    height: 48px;*/
    border-radius: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #000 !important;
    font-weight: 500;
    /*box-shadow: 0 5px 20px rgba(0,0,0,0.05);*/
}

.pagination__item--arrow {
    color: #b68c07 !important;
}

.page-item.active .page-link {
    background: #d3b462;
    color: #fff;
}

.page-link:hover {
    background: #d3b462;
    color: #fff;
}

.disabled > .page-link, .page-link.disabled {
    background-color: transparent !important;
}

/* =========================
        MOBILE FILTER OFFCANVAS
    ========================== */

/*.offcanvas {
    width: 320px !important;
}*/

.offcanvas-header {
    padding: 22px;
    border-bottom: 1px solid #edf1f5;
}

.offcanvas-title {
    font-weight: 600;
}

.offcanvas-body {
    padding: 22px;
}

/* =========================
        RESPONSIVE
    ========================== */

@media(max-width:991px) {

    .filter-sidebar {
        display: none;
    }

    .shop-breadcrumb h2 {
        font-size: 26px;
    }
}

@media(max-width:575px) {

    .shop-breadcrumb {
        padding: 20px;
    }

    .shop-topbar {
        padding: 18px;
    }

    .form-select {
        width: 100%;
    }

    .product-image img {
        height: 160px;
    }

    .homeproducts .product-title {
        font-size: 13px !important;
        font-weight: 600;
        color: #111;
        margin: 0px;
        padding-bottom: 5px;
        line-height: 1.4;
    }

    .product-title {
        font-size: 18px;
    }
}

.shopproducts {
    background: none;
    padding: 0px;
    padding-left: 20px;
}

.shoptitle {
    margin-bottom: 30px;
    position: relative;
    font-size: 25px;
    border-bottom: #e7cc77 2px solid;
    display: table;
    padding-bottom: 5px;
}

    /*.shoptitle:after {
        content: "";
        position: absolute;
        bottom: -12px;
        width: 100px;
        height: 3px;
        background: #e7cc77;
        left: 0px;
    }*/

.product__showing--count {
    margin: 0 0 20px 0;
}


@media screen and (max-width:920px) {
    .shopproducts {
        padding-left: 10px;
        padding-right: 10px;
    }

        .shopproducts .product-image {
            padding: 0px;
        }

        .shopproducts .new-price {
            font-size: 16px;
            font-weight: 400;
        }

        .shopproducts .old-price {
            font-size: 13px;
        }

        .shopproducts .product-content {
            padding: 8px;
        }

        .shopproducts .cart-btn {
            width: 100%;
            border: none;
            background: #d3b462;
            color: #fff;
            padding: 8px;
            border-radius: 16px;
            font-size: 14px;
            font-weight: 600;
            transition: 0.3s;
        }
}












/* PAGE TITLE */

.page-banner {
    text-align: center;
    padding: 60px 20px;
}

    .page-banner h1 {
        font-size: 42px;
        color: #222;
    }

    .page-banner p {
        color: #777;
        margin-top: 10px;
    }

/* CART LAYOUT */

.cart-wrapper {
    max-width: 1400px;
    margin: auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 30px;
}

/* CART ITEMS */

.cart-section {
    background: #fff;
    border-radius: 5px;
    padding: 25px;
    border: #ece6d5 1px solid;
}

.cart-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.cart-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

    .cart-item:last-child {
        border: none;
    }

    .cart-item img {
        width: 97px;
        height: 97px;
        object-fit: cover;
        border-radius: 16px;
    }

.item-details {
    flex: 1;
}

    .item-details h3 {
        margin-bottom: 8px;
        font-size: 16px;
        font-weight: 700;
    }

    .item-details p {
        color: #888;
        font-size: 14px;
        margin: 0;
    }

.price {
    color: #b48b2f;
    font-size: 19px;
    font-weight: 600;
    margin-top: 0px;
    margin: 0;
}

/* QUANTITY */

.qty-box {
    /*display: flex;*/
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    width: max-content;
}

    .qty-box button {
        width: 30px;
        height: 30px;
        border: none;
        background: #f3f3f3;
        cursor: pointer;
        font-size: 18px;
        font-weight: 600;
    }

        .qty-box button:hover {
            background: #e8e8e8;
        }

.qty-input {
    width: 34px;
    height: 33px;
    border: none;
    outline: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    padding: 0;
}

    /* Hide arrows */
    .qty-input::-webkit-outer-spin-button,
    .qty-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .qty-input[type=number] {
        -moz-appearance: textfield;
    }

/* SUMMARY */

.summary {
    background: #fff;
    border-radius: 5px;
    padding: 15px;
    height: max-content;
    position: sticky;
    top: 120px;
    border: #ece6d5 1px solid;
}

    .summary h2 {
        margin-bottom: 25px;
    }

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: #555;
}

.total {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 22px;
    font-weight: 600;
}

.coupon {
    margin: 25px 0;
    display: flex;
    gap: 10px;
}

    .coupon input {
        flex: 1;
        border: 1px solid #ddd;
        border-radius: 12px;
        padding: 12px;
    }

    .coupon button {
        background: #d4b15a;
        border: none;
        color: #fff;
        padding: 12px 18px;
        border-radius: 12px;
        cursor: pointer;
    }

.checkout-btn {
    width: 100%;
    border: none;
    background: #c89b3c;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .checkout-btn:hover {
        background: #b7892e;
    }

/* CONTINUE SHOPPING */

.continue {
    margin-top: 20px;
    text-align: center;
}

    .continue a {
        color: #b48b2f;
        text-decoration: none;
    }

/* RESPONSIVE */

@media(max-width:992px) {

    .cart-wrapper {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .summary {
        position: relative;
        top: 0;
    }
}

.item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/*.remove-btn {
    border: none;
    background: none;
    color: #d9534f;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
}*/

/*    .remove-btn:hover {
        color: #b52b27;
    }*/

.remove-btn {
    padding: 8px 16px;
    border: 1px solid #c89b3c;
    background: #fff;
    color: #c89b3c;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    transition: .3s;
}

    .remove-btn:hover {
        background: #c89b3c;
        color: #fff;
    }

.text-box {
    text-align: right;
}

@media (max-width:768px) {

    .cart-item {
        display: flex;
        gap: 12px;
        padding: 16px 0;
    }

        .cart-item img {
            width: 85px;
            height: 85px;
            border-radius: 12px;
            flex-shrink: 0;
        }

    .item-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .item-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .shoptitle {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .text-box {
        text-align: left;
    }
}


@media (max-width: 768px) {

    .cart-section {
        padding: 20px;
        width: 315px;
    }

    .cart-item {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 15px;
        align-items: start;
    }

        .cart-item img {
            width: 80px;
            height: 80px;
        }

    .item-details {
        width: 100%;
    }

        .item-details h3 {
            font-size: 14px;
            line-height: 1.3;
            margin-bottom: 6px;
        }

        .item-details p {
            font-size: 14px;
        }

    .price {
        font-size: 18px;
    }

    .item-actions {
        grid-column: 1 / -1;
        margin-top: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .qty-box {
        width: 130px;
    }

    .qty-input {
        width: 45px;
    }

    .remove-btn {
        min-width: 45px;
        height: 45px;
        width: 65px;
        margin: 0 0 0 158px;
    }
}



/* MAIN */

.checkout-container {
    max-width: 1400px;
    margin: auto;
    padding: 60px 40px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* LEFT */

.checkout-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.04);
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}


.payment-option label {
    display: flex;
    justify-content: start;
}

.payment-option input {
    margin-right: 10px;
    width: 16px;
}
/* FORM */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group.full {
        grid-column: 1/-1;
    }

label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

input,
select,
textarea {
    padding: 14px 16px;
    border: 1px solid #e4e4e4;
    border-radius: 14px;
    outline: none;
    font-size: 14px;
}

textarea {
    resize: none;
    min-height: 100px;
}

/* PAYMENT */

.payment-option {
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: .3s;
}

    .payment-option:hover {
        border-color: #c89b3c;
    }

    .payment-option input {
        margin-right: 10px;
    }

/* SUMMARY */

.summary-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    position: sticky;
    top: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,.04);
}

    .summary-card h2 {
        margin-bottom: 25px;
    }

.product {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

    .product img {
        width: 75px;
        height: 75px;
        border-radius: 12px;
        object-fit: cover;
    }

.product-info h4 {
    font-size: 14px;
    margin-bottom: 6px;
}

.product-info p {
    color: #646363;
    font-size: 13px;
}

.price {
    color: #c89b3c;
    font-weight: 600;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    color: #666;
    font-size: 14px;
    /*border-bottom: #f0ead8 1px solid;
    padding-bottom: 5px;*/
}
.summary-row:last-child{
    border-bottom:0;
}

.total {
    border-top: 1px solid #eee;
    margin-top: 20px;
    padding-top: 20px;
    font-size: 20px;
    font-weight: 600;
}

/* BUTTON */

.place-order {
    width: 100%;
    background: #c89b3c;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 50px;
    margin-top: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .place-order:hover {
        background: #b78c31;
    }

/* SECURITY */

.secure-box {
    margin-top: 20px;
    text-align: center;
    color: #777;
    font-size: 13px;
}


.btnCoupon {
    width: 100%;
    background: #c89b3c;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 50px;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .btnCoupon:hover {
        background: #b78c31;
    }

/* RESPONSIVE */

@media(max-width:992px) {

    .checkout-container {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .summary-card {
        position: relative;
    }
}


:root {
    --gold: #c89b3c;
    --gold-dark: #b5882f;
    --cream: #f8f6ef;
    --border: #ece7d8;
    --text: #1f2a44;
    --muted: #777;
}

.account-wrapper {
    max-width: 1400px;
    margin: auto;
    padding: 66px 20px 66px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
}

.account-sidebar, .card {
    background: #fff;
    border-radius: 5px;
    border: #ece6d5 1px solid;
    /*box-shadow: 0 8px 25px rgba(0,0,0,.05)*/
}

/*.account-sidebar {
    padding: 20px
}*/

.profile-box {
    text-align: center;
    /*border-bottom: 1px solid var(--border);*/
    padding-bottom: 10px;
    background: #faf4e4;
    padding: 20px 10px;
    margin: 4px;
}
.profile-box h4{
    font-size: 20px;
    font-weight: 600;
}

.avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    background: linear-gradient(135deg,#d9bf68,#b5882f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px
}
.avatar img{
    width: 90px;
    height: 90px;
    object-fit:cover;
}
.account-menu{
    padding:15px;
}
.account-menu a {
    display: block;
    padding: 7px;
    /*margin-top: 8px;*/
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    border-radius: 0px;
    border-bottom: #f0ead8 1px solid;
}
.account-menu a:last-child{
    border:0;
    padding-bottom: 0;
}

    .account-menu a.active, .account-menu a:hover {
        /*background: #faf4e4;*/
        color: var(--gold-dark)
    }

.tab-content {
    display: none
}

    .tab-content.active {
        display: block;
        margin-top: 0px;
    }

.card {
    padding: 25px;
    margin-bottom: 20px
}

.stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px
}

.stat-box {
    background: #fffefa;
    padding: 18px;
    border-radius: 5px;
    text-align: center;
    border: #fff4d5 1px solid;
}
.stat-box h3 {
    color: #c09941;
}
.stat-box p{
    font-weight:500;
}
.order {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #eee;
    font-size: 14px;
}

    .order strong {
        font-weight: 500;
        color: #bd8812;
    }

.order-status {
    background: #faf4e4;
    padding: 5px 10px;
    border-radius: 5px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 10px
}

.save-btn {
    background: linear-gradient(135deg,#d9bf68,#b5882f);
    color: #fff;
    border: none;
    padding: 7px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px
}
.save-btn:hover{
    background: linear-gradient(135deg,#b5882f,#d9bf68);
}

.address, .wish, .invoice {
    border: 1px solid #ece6d5;
    padding: 5px 15px;
    border-radius: 5px;
    margin-top: 10px
}

.mobile-menu {
    display: none;
    margin-bottom: 15px
}

@media(max-width:992px) {
    .account-wrapper {
        grid-template-columns: 1fr
    }

    .account-sidebar {
        display: none
    }

    .mobile-menu {
        display: block
    }

    .stats {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(max-width:576px) {
    .stats, .info-grid {
        /*grid-template-columns: 1fr*/
        grid-template-columns: repeat(2, 1fr);
    }

    .page-banner h1 {
        font-size: 30px
    }

    .order {
        flex-direction: column;
        gap: 10px
    }
}

.order-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.cancel-btn {
    background: #ffe5e5;
    color: #dc3545;
    border: 1px solid #ffc8c8;
}

.return-btn {
    background: #e7f1ff;
    color: #0d6efd;
    border: 1px solid #cfe2ff;
}

.notification-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.payment-status {
    background: #e8f8ee;
    color: #198754;
    padding: 6px 12px;
    border-radius: 20px;
}

.payment-total {
    text-align: right;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #c89b3c;
}

.view-d-btn {
    background: linear-gradient(135deg,#d9bf68,#b5882f);
    color: #fff;
    border: none;
    padding: 7px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
}
.view-d-btn:hover{
    background: linear-gradient(135deg,#b5882f,#d9bf68);
    color: #fff;
}


:root {
    --gold: #c89b3c;
    --gold-dark: #b5882f;
    --cream: #f8f6ef;
    --border: #ece7d8;
    --text: #1f2a44;
    --muted: #777;
    --success: #2e9d59;
}


.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 0;
    font-size: 14px;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 5px;
    outline: none;
}

.track-btn {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 40px;
    background: linear-gradient( 135deg, #d9bf68, #b5882f );
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.result {
    margin-top: 30px;
    display: none;
}

.order-info {
    background: #faf4e4;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.timeline {
    position: relative;
    margin-left: 20px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 14px;
        top: 0;
        width: 3px;
        height: 100%;
        background: #ddd;
    }

.step {
    position: relative;
    padding-left: 45px;
    margin-bottom: 35px;
}

    .step:last-child {
        margin-bottom: 0;
    }

    .step::before {
        content: '';
        position: absolute;
        left: 3px;
        top: 0;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background: #ddd;
    }

    .step.active::before {
        background: var(--success);
    }

    .step h4 {
        margin-bottom: 5px;
        font-size: 15px;
        font-weight: 800;
    }

    .step p {
        color: var(--muted);
        font-size: 14px;
    }

.shipping-box {
    margin-top: 30px;
    padding: 20px;
    background: #faf4e4;
    border-radius: 16px;
}

@media(max-width:576px) {

    .banner h1 {
        font-size: 30px;
    }

    .card {
        padding: 20px;
    }

    .step h4 {
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: 800;
    }
}



/* Login Section */

.login-section {
    min-height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    /*    left: -309px;
    position: relative;*/
}

.login-card {
    width: 100%;
    max-width: 480px;
    background: #ffffff52;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    backdrop-filter: blur(3px);
    border: #e5e1e1 1px solid;
}

    .login-card h1 {
        text-align: center;
        font-weight: 600;
        font-size: 33px;
        margin-bottom: 5px;
        color: #b37800;
    }

    .login-card p {
        text-align: center;
        color: var(--muted);
        margin-bottom: 30px;
        font-weight: 500;
    }

    .login-card .form-group {
        margin-bottom: 15px;
    }

    .login-card label {
        display: block;
        margin-bottom: 4px;
        font-size: 14px;
    }

    .login-card input {
        width: 100%;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 3px;
        outline: none;
        font-size: 15px;
    }

.password-box {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
}

.extra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

    .extra a {
        color: var(--gold-dark);
        text-decoration: none;
    }

.login-btn {
    width: 100%;
    border: none;
    padding: 10px;
    border-radius: 3px;
    background: linear-gradient( 135deg, #d9bf68, #b5882f );
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .login-btn:hover {
        transform: translateY(-2px);
    }

.divider {
    text-align: center;
    margin: 25px 0;
    color: var(--muted);
    position: relative;
}

    .divider::before,
    .divider::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 40%;
        height: 1px;
        background: #ddd;
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

.social-login {
    display: grid;
    gap: 12px;
}

.social-btn {
    border: 1px solid var(--border);
    background: #fff;
    padding: 14px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
}

.register {
    text-align: center;
    margin-top: 15px;
}

    .register a {
        color: var(--gold-dark);
        text-decoration: none;
        font-weight: 600;
    }

@media(max-width:576px) {

    .login-card {
        padding: 25px;
    }

        .login-card h1 {
            font-size: 28px;
        }

    .extra {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

.check {
    width: 20px !important;
}





.register-section {
    min-height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.register-card {
    width: 100%;
    max-width: 650px;
    background: #ffffffbd;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    backdrop-filter: blur(3px);
}

    .register-card h1 {
        text-align: center;
        margin-bottom: 10px;
        color: var(--text);
    }

    .register-card p {
        text-align: center;
        color: var(--muted);
        margin-bottom: 30px;
    }

    .register-card .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .register-card .form-group {
        margin-bottom: 0px;
    }

        .register-card .form-group.full {
            grid-column: 1 / -1;
        }

    .register-card label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .register-card input {
        width: 100%;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 12px;
        outline: none;
        font-size: 15px;
    }

.password-box {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 53%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 23px;
}

.terms {
    margin-top: 5px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--muted);
}

    .terms input {
        width: auto;
        margin-top: 3px;
    }

    .terms a {
        color: var(--gold-dark);
        text-decoration: none;
    }

.register-btn {
    width: 100%;
    border: none;
    padding: 15px;
    border-radius: 40px;
    background: linear-gradient( 135deg, #d9bf68, #b5882f );
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: .3s;
}

    .register-btn:hover {
        transform: translateY(-2px);
    }

.login-link {
    text-align: center;
    margin-top: 25px;
}

    .login-link a {
        color: var(--gold-dark);
        text-decoration: none;
        font-weight: 600;
    }

@media(max-width:768px) {

    .register-card .form-grid {
        grid-template-columns: 1fr;
    }

    .register-card {
        padding: 25px;
    }

        .register-card h1 {
            font-size: 28px;
        }
}



.forgot-section {
    min-height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.forgot-card {
    width: 100%;
    max-width: 500px;
    background: #ffffffbd;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    backdrop-filter: blur(3px);
}

    .forgot-card h1 {
        text-align: center;
        margin-bottom: 10px;
        color: var(--text);
    }

    .forgot-card p {
        text-align: center;
        color: var(--muted);
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .forgot-card .form-group {
        margin-bottom: 20px;
    }

    .forgot-card label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .forgot-card input {
        width: 100%;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 12px;
        outline: none;
        font-size: 15px;
    }

.reset-btn {
    width: 100%;
    border: none;
    padding: 15px;
    border-radius: 40px;
    background: linear-gradient( 135deg, #d9bf68, #b5882f );
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .reset-btn:hover {
        transform: translateY(-2px);
    }

.success-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    background: #e8f8ee;
    color: #1b8c4f;
    text-align: center;
}

.back-login {
    text-align: center;
    margin-top: 25px;
}

    .back-login a {
        color: var(--gold-dark);
        text-decoration: none;
        font-weight: 600;
    }

@media(max-width:576px) {

    .forgot-card {
        padding: 25px;
    }

        .forgot-card h1 {
            font-size: 28px;
        }
}


.about-sec p {
    line-height: 30px;
    font-size: 15px;
    text-align: justify;
}


.counter-section {
    padding: 80px 0;
    background: linear-gradient( 135deg, #faf4e4, #f8f6ef );
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.counter-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    transition: .3s;
}

    .counter-box:hover {
        transform: translateY(-5px);
    }

    .counter-box h2 {
        font-size: 48px;
        font-weight: 700;
        color: #c89b3c;
        margin-bottom: 10px;
    }

    .counter-box p {
        color: #777;
        margin: 0;
        font-size: 15px;
    }

@media(max-width:992px) {

    .counter-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {

    .counter-grid {
        grid-template-columns: 1fr;
    }

    .counter-box h2 {
        font-size: 38px;
    }
}




.certification-section {
    padding: 90px 0;
    background: #fff;
}

.section-heading {
    max-width: 800px;
    margin: auto;
    margin-bottom: 60px;
}

.sub-title {
    color: #c89b3c;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: 42px;
    color: #1f2a44;
    margin: 15px 0;
}

.section-heading p {
    color: #777;
    line-height: 1.8;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.certification-card {
    background: #faf4e4;
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    transition: .3s;
    border: 1px solid #ece7d8;
}

    .certification-card:hover {
        transform: translateY(-5px);
    }

.certification-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #c89b3c;
}

    .certification-icon i {
        font-size: 34px;
        color: #c89b3c;
        line-height: 1;
    }

.certification-card h4 {
    margin-bottom: 12px;
    color: #1f2a44;
    font-size: 20px;
}

.certification-card p {
    color: #777;
    line-height: 1.7;
    margin: 0;
}

@media(max-width:992px) {

    .certification-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {

    .certification-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 30px;
    }
}







.contact-hero {
    padding: 25px 0;
    background: linear-gradient(135deg, #e5cb86, #f8f6ef);
    text-align: center;
}

.sub-title {
    color: #c89b3c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-hero h1 {
    font-size: 56px;
    margin: 15px 0;
    color: #1f2a44;
}

.contact-hero p {
    max-width: 700px;
    margin: auto;
    color: #777;
    line-height: 1.8;
}

.contact-section {
    padding: 90px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #ece7d8;
    display: flex;
    gap: 16px;
}

.contact-section .icon-box {
    width: 70px;
    height: 70px;
    border: 2px solid #c89b3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*    margin-bottom: 20px;*/
}

    .contact-section .icon-box i {
        color: #c89b3c;
        font-size: 28px;
    }

.info-card h4 {
    margin-bottom: 10px;
    color: #1f2a44;
}

.info-card p {
    color: #777;
    line-height: 1.8;
    margin: 0;
}

.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #ece7d8;
}

    .contact-form-card h2 {
        margin-bottom: 30px;
        color: #1f2a44;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-section .form-group {
    margin-bottom: 20px;
}

    .contact-section .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .contact-section .form-group input,
    .contact-section .form-group textarea {
        width: 100%;
        padding: 14px;
        border: 1px solid #ece7d8;
        border-radius: 14px;
        outline: none;
    }

        .contact-section .form-group input:focus,
        .contact-section .form-group textarea:focus {
            border-color: #c89b3c;
        }

.submit-btn {
    border: none;
    background: linear-gradient( 135deg, #d9bf68, #b5882f );
    color: #fff;
    padding: 14px 40px;
    border-radius: 40px;
    font-weight: 600;
}

.map-section {
    padding-bottom: 90px;
}

.map-card {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #ece7d8;
}

    .map-card iframe {
        width: 100%;
        height: 450px;
        border: none;
    }




@media(max-width:992px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:576px) {

    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 25px;
    }
}


.pro-info {
    background: #67460b;
    color: #fff;
    padding: 5px 11px;
    border-radius: 5px;
    font-size: 15px;
}


/*.drift-bounding-box {
    border: 2px solid #000;
    width: 250px !important;
    height: 250px !important;
}*/

/*.drift-zoom-pane {
    width: 300px !important;
    height: 300px !important;
}*/



.css-1fz1egd {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #FBC50B;
    height: 56px;
    width: calc(100% - 100px);
    border-radius: 0;
    background: #FFFFFF;
}

    .css-1fz1egd > div {
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

.css-1oovyp6 {
    width: unset;
}

.css-17afyaf {
    position: relative;
    outline: none;
    cursor: pointer;
    width: 100%;
    background: #FFFFFF;
    padding: 0 4px;
    text-align: center;
    height: 100%;
    border-right: 1px solid #FBC50B;
    border-radius: 12px 0 0 12px;
}

/*.css-rrmecs {
    height: 18px;
    color: #33363e;
    font-size: 1rem;
    padding-top: 10px;
    font-family: 'InterRegular','NotoSansDevanagariRegular','Helvetica Neue',Helvetica,Arial,sans-serif;
}*/

/*.css-z90be0 {
    font-size: 1.2rem;
    font-family: 'InterSemiBold','NotoSansDevanagariSemiBold','Helvetica Neue',Helvetica,Arial,sans-serif;
    color: #4f3267;
    padding-top: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}*/


.e799vom32 {
    font-weight: 700;
    color: #000 !important;
}

.e799vom5 {
    font-weight: 700;
    color: #000 !important;
}


.hindx .e799vom32 {
    font-weight: 700;
    color: #000 !important;
    font-size: 13px;
}

.hindx .e799vom5 {
    font-weight: 400;
    color: #584a03 !important;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #d9d9d9;
    padding: 5px 0;
    border-top: 1px solid #d9d9d9;
}




.hindx p {
    font-size: 13px;
    text-align: center;
    padding: 7px 0 0 0;
}

.polish {
    font-weight: 400;
    color: #584a03 !important;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    /*padding: 5px 0;*/
}

.pr-page .price {
    font-size: 30px;
    line-height: 30px;
}


@media (max-width: 600px) {
    .hindx .e799vom5 {
        font-weight: 400;
        color: #584a03 !important;
        font-size: 13px;
        text-align: left;
        /*display: block;*/
        justify-content: space-between;
        border-bottom: 1px solid #7777778f;
        padding: 1px 0;
        border-top: 1px solid #7777778f;
    }

    .hindx p {
        font-size: 11px;
        text-align: center;
        padding: 7px 0 0 0;
    }

    .product-card {
        background: #ffffff;
        border-radius: 8px;
        overflow: hidden;
        transition: 0.35s;
        box-shadow: 0px 5px 20px 0px rgb(0 0 0 / 13%);
        height: 100%;
        position: relative;
    }
}








/* ==========================
   Desktop Mega Menu
========================== */

.mega-dropdown {
    position: static;
}

.mega-menu {
    position: absolute;
    left: 15%;
    max-width: 900px;
    width: 100%;
    top: 75%;
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .3s ease;
    z-index: 999;
}


.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu h6 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.mega-menu ul {
    padding: 0;
    list-style: none;
}

    .mega-menu ul li {
        padding: 5px 0 !important;
        border-top: 1px solid #cecece;
        /*margin: -1px 0 0 0;*/
    }

        .mega-menu ul li a {
            color: #666;
            text-decoration: none;
            transition: .3s;
            font-size: 14px;
            border-bottom: 1px solid #cecece;
        }

            .mega-menu ul li a:hover {
                color: #000;
                padding-left: 5px;
            }

/* ==========================
   Mobile Mega Menu
========================== */

.mobile-submenu {
    display: none;
    padding-left: 15px;
    background: #f8f8f8;
}

    .mobile-submenu a {
        display: block;
        padding: 10px 15px;
        font-size: 12px;
        color: #555;
        text-decoration: none;
        border-bottom: 1px solid #eee;
    }

        .mobile-submenu a:hover {
            background: #f1f1f1;
        }

.mobile-mega.active .mobile-submenu {
    display: block;
}

.mobile-toggle {
    position: relative;
}

    .mobile-toggle i {
        transition: .3s;
    }

.mobile-mega.active i {
    transform: rotate(180deg);
}

/* ==========================
   Responsive
========================== */

@media (max-width: 991px) {

    .mega-menu {
        display: none !important;
    }

    .desktop-menu {
        display: none !important;
    }
}



.mega-menu .category-card img {
    height: 252px;
}

.mega-menu .category-card .category-name {
    text-align: center;
    padding: 10px 15px 10px;
}

    .mega-menu .category-card .category-name h5 {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #111;
    }

.top-menu-img-icon {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
    padding: 3px;
    background: #fff;
}



.tabs-section .tab-content {
    display: block;
}



.category {
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.category-item {
    border-bottom: 1px solid #eee;
}

.category-header {
    padding: 12px;
    background: #f5f5f5;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .category-header:hover {
        background: #e9e9e9;
    }

.subcategory {
    display: none;
    background: #fff;
}

    .subcategory a {
        display: block;
        padding: 10px 20px;
        text-decoration: none;
        color: #333;
    }

        .subcategory a:hover {
            background: #f0f0f0;
        }

.category-item.active .subcategory {
    display: block;
}

.arrow {
    transition: transform 0.3s;
}

.category-item.active .arrow {
    transform: rotate(90deg);
}


.price-cart {
    font-size: 15px;
}

.crt-table {
    font-size: 15px !important;
}

    .crt-table th {
        font-size: 14px !important;
    }



.detail-modal .product-title {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0px;
    line-height: 1.4;
}

.detail-modal #OrderinfoDetail th {
    font-weight: 600;
    font-size: 14px;
    padding: 5px 8px;
}

.detail-modal #OrderinfoDetail strong {
    font-weight: 600;
    font-size: 14px;
}

.detail-product img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.detail-modal .product {
    display: flex;
    gap: 0px;
    width: 100%;
    margin-bottom: 0px;
}

.detail-product th {
    vertical-align: middle;
    font-weight: 600;
    padding: 5px 8px;
}

.detail-product td {
    vertical-align: middle;
    margin: 0px;
    font-size: 14px;
    padding: 5px 8px;
}

.detail-product td p {
    margin: 0;
}
#OrderinfoDetail .totals-value {
    color: #d78a00;
    text-align: right;
}
#OrderinfoDetail h4 {
    font-size: 17px;
    font-weight: 600;
}
#OrderinfoDetail hr{
    margin-top:8px;
}
#OrderinfoDetail table th, td {
    padding: 5px 8px!important;
}

.detail-product .product-price {
    margin: 0px;
    display: revert;
}


.lot-qty {
    color: #000;
    font-size: 12px !important;
}


/*button.btn-close {
    position: absolute;
    right: 20px;
    top: 10px;
    background: #fff !important;
    opacity: inherit;
}*/

button.btn-close {
    position: absolute;
    right: 6px;
    top: 6px;
    background: transparent !important;
    opacity: inherit;
    border-radius: 50%;
    width: 21px;
    height: 21px;
    /*border: #333 2px solid;*/
    z-index: 999;
    display: block;
    box-shadow: none !important;
}


#searchModal .modal-content {
    border-radius: 20px;
    padding: 15px;
}

#searchModal .form-control {
    height: 60px;
    border-radius: 12px 0 0 12px;
    font-size: 18px;
}

#searchModal .btn {
    border-radius: 0 12px 12px 0;
    min-width: 140px;
}



.product-image .front-main-img {
    display: block;
    transition: all 5s;
    position: relative;
}

.product-image:hover .front-main-img {
    display: none !important;
    transition: all 5s;
    position: relative;
}

.back-main-img {
    display: none !important;
    transition: all 5s;
    position: relative;
}

.product-image:hover .back-main-img {
    display: block !important;
    transition: all 5s;
    position: relative;
}


.crt-n-btn {
    position: absolute;
    bottom: 3px;
    left: 9px;
    font-size: 16px;
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 2;
    transition: 0.3s;
    /* border: #e7cc77 1px solid;
    background: #e7cc77;*/
}


.wish-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    margin: 0 35px 0 35px;
    border-radius: 10px;
}


.wish-pro-name {
    margin: 0 35px 0 35px;
}


.view-more-wrapper {
    position: relative;
    display: inline-block;
}

.mega-menu-new {
    position: absolute;
    top: 56px;
    right: 0;
    width: 985px;
    /*width:auto;*/
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    z-index: 999;
}

/* Show on hover */
.view-more-wrapper:hover .mega-menu-new {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.mega-menu-new h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    /*background: #fff5db;
    padding: 5px 10px;*/
}

    .mega-menu-new h4 a {
        color: #212529;
        display: block;
    }

.mega-container {
    display: flex;
    padding: 0;
    gap: 4px;
}

.column {
    flex: none;
    width: 200px;
    padding: 15px;
}

    .column:nth-child(2n) {
        background: #f9f9f9;
    }

    .column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .column ul li a {
            display: block;
            text-decoration: none;
            color: #444;
            padding: 5px 0 0;
            border-bottom: 0px solid #eee;
            font-size: 13px;
        }

            .column ul li a:hover {
                color: #b68c07;
            }

.image-box {
    width: 220px;
}

    .image-box img {
        width: 100%;
        border-radius: 10px;
    }

.product-box {
    position: relative;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    border: #bdbdbd 1px solid;
    text-align: center;
}

    .product-box a {
        text-decoration: none;
    }

    .product-box:hover {
        border: #a97826 1px solid;
    }

.product-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to top, rgb(255 255 255 / 70%), rgba(0, 0, 0, 0.05));*/
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.78) 85%);
    transition: 0.5s;
}

.product-box:hover .product-overlay {
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(169, 120, 38, 0.27) 85%);
    opacity: 0.5;
}

.product-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-box .shopnow {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 15px;
    z-index: 99;
}

    .product-box .shopnow h2 {
        /*font-family: "PT Serif", serif;*/
        font-size: 16px;
        color: #000;
        text-transform: uppercase;
        font-weight: 600;
        text-align: center;
    }

    .product-box .shopnow .btn-box {
        color: #b37700;
        font-size: 12px;
        color: #b37700;
        font-weight: 600;
        text-align: center;
        text-transform: uppercase;
        border-top: #b37700 1px solid;
        padding: 5px 15px;
        display: inline-block;
        margin-top: 5px;
    }


.left-menu

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li .linkbox {
    display: block;
    padding: 10px;
    color: #4D4D4D;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid #CCC;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion {
    width: 100%;
    max-width: 360px;
    margin: 30px auto 20px;
    background: #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

    .accordion .link {
        cursor: pointer;
        display: block;
        padding: 10px;
        color: #4D4D4D;
        font-size: 14px;
        font-weight: 700;
        border-bottom: 1px solid #CCC;
        position: relative;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .accordion li:last-child .link {
        border-bottom: 0;
    }

    .accordion li i {
        position: absolute;
        top: 16px;
        left: 12px;
        font-size: 18px;
        color: #595959;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

        .accordion li i.fa-chevron-down {
            right: 12px;
            left: auto;
            font-size: 16px;
        }

    .accordion li.open .link {
        color: #000;
    }

    .accordion li.open i {
        color: #000;
    }

        .accordion li.open i.fa-chevron-down {
            -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            transform: rotate(180deg);
        }

.submenu {
    display: none;
    background: #f5f5f5;
    font-size: 14px;
}

    .submenu li {
        border-bottom: 1px solid #e1e1e1;
    }

    .submenu a {
        display: block;
        text-decoration: none;
        color: #000;
        font-weight: 500;
        padding: 8px;
        padding-left: 13px;
        -webkit-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }

        .submenu a:hover {
            background: #f0f0f0;
            color: #000;
        }

}


.radio-container {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    margin-right: 20px;
    position: relative;
    user-select: none;
}

    .radio-container input {
        display: none;
    }

.radio-check {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 0px solid #ccc;
    margin-right: 8px;
    position: relative;
    transition: .3s;
    display: block;
    cursor: pointer;
}

    .radio-check::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: transparent;
        outline: #cbaa5e 1px solid;
        border: #fff 2px solid;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: .3s;
    }

.radio-container input:checked + .radio-check::after {
    transform: translate(-50%, -50%) scale(1);
}

.red {
    background: #e74c3c;
    border-color: #e74c3c;
}

.green {
    background: #2ecc71;
    border-color: #2ecc71;
}

.blue {
    background: #3498db;
    border-color: #3498db;
}




:root {
    --ivory: #F7F3EA;
    --paper: #FFFFFF;
    --ink: #1B1812;
    --ink-soft: #6E6858;
    --hair: #E7DFC9;
    --forest: #123325;
    --forest-deep: #0C241A;
    --gold: #B8934F;
    --gold-soft: #E7D5AC;
    --err: #8A3324;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
}

.price {
    font-size: 23px;
    font-weight: 600;
}

.vat {
    font-size: 11px;
    color: var(--ink-soft);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg,transparent,var(--hair) 15%,var(--hair) 85%,transparent);
    margin: 20px 0;
}

.row-label {
    display: flex;
    /*justify-content: space-between;*/
    align-items: baseline;
    margin-bottom: 12px;
}

    .row-label .name {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--ink);
    }

    .row-label .val {
        font-size: 13px;
        color: #c89b3c;
        margin-left:10px;
        /*font-style: italic;*/
        font-weight: 600;
    }

    .row-label .guide {
        font-size: 11px;
        color: var(--ink-soft);
        text-decoration: underline;
        text-underline-offset: 2px;
        cursor: pointer;
    }

.sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
}

.size-btn {
    min-width: 46px;
    height: 40px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid var(--hair);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: .18s ease;
}

    .size-btn:hover {
        border-color: var(--gold);
        color: var(--forest-deep);
    }

    .size-btn.active {
        background: var(--forest-deep);
        border-color: var(--forest-deep);
        color: var(--gold-soft);
    }

.polishes {
    display: flex;
    gap: 18px;
    margin-bottom: 6px;
}

.polish-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}

.swatch-ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid transparent;
    transition: .18s ease;
}

.polish-opt.active .swatch-ring {
    border-color: var(--gold);
}

.swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.12);
}

.polish-opt span {
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: .02em;
}

.polish-opt.active span {
    color: var(--ink);
    font-weight: 600;
}

.swatch.gold {
    background: linear-gradient(135deg,#F8E6B0,#CFA24F 45%,#8E6A28);
}

.swatch.silver {
    background: linear-gradient(135deg,#F7F7F5,#CBCBC5 45%,#8D8C85);
}

.swatch.platinum {
    background: linear-gradient(135deg,#EEF1F1,#B8C1C3 45%,#6E797B);
}

.swatch.rose {
    background: linear-gradient(135deg,#F5CEC0,#DA9C87 45%,#A96A55);
}

.error {
    font-size: 12px;
    color: var(--err);
    min-height: 16px;
    margin: 8px 0 0;
}

.selection-strip {
    margin-top: 16px;
    padding: 12px 14px;
    background: var(--ivory);
    border: 1px solid var(--hair);
    border-radius: 12px;
    font-size: 12px;
    color: var(--ink-soft);
    display: none;
    align-items: center;
    justify-content: space-between;
}

    .selection-strip.show {
        display: flex;
    }

    .selection-strip b {
        color: var(--forest-deep);
        font-weight: 600;
        font-size: 14px;
    }

.cart-btn {
    width: 100%;
    margin-top: 18px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid var(--forest-deep);
    background: var(--forest-deep);
    color: var(--gold-soft);
    font-family: 'Jost';
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    transition: .2s ease;
}

    .cart-btn:hover {
        background: #0A1D15;
    }

    .cart-btn:disabled {
        background: #F2EEE0;
        border-color: var(--hair);
        color: #A39C87;
        cursor: not-allowed;
    }

    .cart-btn.added {
        background: #294F3D;
        border-color: #294F3D;
    }

.trust-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--hair);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    color: var(--ink-soft);
}

    .trust-item svg {
        width: 14px;
        height: 14px;
        stroke: var(--gold);
        fill: none;
    }

.wishlist .text-start {
    font-size: 13px;
    font-weight: 600;
    color: #cf8500;
}
.wishlist h2 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 3px;
    color: #000;
    margin-bottom: 5px;
}

.wishlist strong {
    color: #cf8500;
    font-weight: 600;
}

.wishlist .btn-cart {
    border: #cf8500 1px solid;
    padding: 5px 10px;
    font-size: 12px;
    color: #cf8500;
    text-transform: uppercase;
    font-weight: 500;
    background: #fff;
    border-radius: 7px;
    box-shadow: none;
}

.offcanvas-bottom {
    font-size: 13px;
}

    .offcanvas-bottom span {
        font-weight: 500;
    }

    .offcanvas-bottom strong {
        color: #cf8500;
        font-size: 15px;
        font-weight: 600;
    }

    .offcanvas-bottom .btn-add {
        background: #af873f;
        padding: 8px 10px;
        font-size: 13px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 500;
        border-radius: 5px;
        box-shadow: none;
        border: 0;
    }

        .offcanvas-bottom .btn-add:hover {
            background: #cf8500;
        }
