:root {
    --main-color: #093C38;
    --sub-head-color: #746F6F;
    --montserrat: 'Montserrat';
    --playfair: 'Playfair Display';
    --border-color: #e5e5e5
}


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


@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 500;
    src: url('./fonts/playfair-display-v40-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    src: url('./fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 800;
    src: url('./fonts/playfair-display-v40-latin-800.woff2') format('woff2');
}


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--montserrat);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
    background-color: #fff;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}




.brand-logo img {
    max-height: 70px;
}

.main-navbar {
    background-color: var(--main-color);
    padding: 0;
}

.nav-item {
    padding: 8px 0;
}

.scroll-header .nav-item {
    padding: 18px 0;
}

.head-user {
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    min-width: 300px;
    text-transform: uppercase;
    gap: 18px;

}

.head-user i {
    font-size: 18px;
}

.header-icons {
    width: 300px;
    display: flex;
    gap: 16px;
    justify-content: end;
}

.header-icons span,
.header-icons a {
    display: block;
}

.header-icons i {
    font-size: 18px;
}

.navbar-nav {
    display: flex;
    gap: 40px;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 13px;

    text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
    opacity: 1;
}

/* Mega Menu Styles */
/* .mega-menu-item {
    position: relative;
}
 */
.mega-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    /*  transform: translateX(-50%); */
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 1000;
    opacity: 0;
    /* visibility: hidden; */
    /* transform: translateY(-10px); */
    border-top: 3px solid var(--main-color);
    overflow: hidden;
    display: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 1199px) {
    .mega-menu {
        display: block;
        transform: translateX(100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mega-menu.slide-active {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (min-width: 1200px) {

    .scroll-header .mega-menu-item:hover .mega-menu, header .mega-menu-item:hover .mega-menu {
        opacity: 1;
        transform: translateY(0);
        display: block;
    }
    

}

.mega-menu.slide-active {
    transform: translateX(0);
    display: block;
    opacity: 1;
}

.mega-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mega-menu .container-fluid {
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
}

.mega-menu .row>[class*="col-"],
.mega-menu .row .col {
    position: relative;
}

.mega-menu .row>[class*="col-"]::after,
.mega-menu .row .col::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
}

.mega-menu h5 {
    font-family: var(--playfair);
    font-size: 16px;
    color: var(--main-color);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

/* .mega-menu h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--main-color);
    border-radius: 1px;
} */

.mega-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu ul li {
    margin-bottom: 0px;
    padding: 5px 0;
}

.mega-menu ul li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    padding: 5px 10px;
    border-radius: 5px;
}

.mega-menu ul li a:hover {
    color: var(--main-color);
    /* background-color: rgba(9, 60, 56, 0.05); */
    transform: translateX(5px);
}

.featured-item {
    aspect-ratio: 1;
    border-radius: 10px;
    margin-top: 15px;
    overflow: hidden;
}

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

/* 
.featured-item img {
    width: 100%;
    max-width: 160px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
} */

.featured-item p {
    font-size: 16px;
    color: var(--main-color);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* .new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
} */








.new-collections .collection-img {
    /* height: 300px; */
    aspect-ratio: 443 / 300;
}

.new-collections .collection-box p {
    font-size: 18px;
}



/* .scroll-header .mega-menu-item:hover .mega-menu {
    opacity: 1;
    transform: translateY(0);
    display: block;
} */

.icon-link {
    color: #ffffff;
    font-size: 18px;
    margin-left: 18px;
}

/* User Dropdown Menu Styles */
.user-dropdown {
    position: relative;
    cursor: pointer;
}

.scroll-header .user-dropdown-menu {
    right: 0 !important;
    left: auto;
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    opacity: 0;
    display: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown:hover .user-dropdown-menu {
    opacity: 1;
    display: block;
}

.user-dropdown-menu a {
    display: block;
    padding: 6px 16px;
    color: var(--main-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    margin: 4px 8px;
    text-transform: capitalize;
}

.user-dropdown-menu a:hover {
    background-color: rgba(9, 60, 56, 0.1);
    color: var(--main-color);
}

.user-dropdown-menu a:first-child {
    margin-top: 8px;
}

.user-dropdown-menu a:last-child {
    margin-bottom: 8px;
}

.navbar-toggler {
    filter: invert(1);
}

#searchModal .modal-dialog {
    max-width: 100%;
    margin: 0;
}

#searchModal .modal-content {
    height: 100%;
    min-height: 200px;
    border-radius: 0;
}

.searchModal {
    z-index: 9999;
}

.searchbox {
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    position: relative;
}

.modal-search-icon {
    position: absolute;
    right: 10px;
}

.modal-search-icon button {
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: var(--sub-head-color);
    padding: 5px;
}

.searchbox input {
    font-size: 16px;
    border: none;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    margin: 0;
    border-radius: 0;
}

.banner {
    /*  height: 1024px; */
    overflow: hidden;
}

.section-padding {
    padding-top: 90px;
}

.inner-section-padding {
    padding: 90px 0 40px 0;
}

.heading-box {
    margin-bottom: 40px;
}

.section-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    text-align: center;
}

.main-heading {
    font-weight: normal;
    font-size: 32px;
    font-family: var(--playfair);
    margin-bottom: 0;
    text-transform: capitalize;
}

.sub-heading {
    font-size: 18px;
    margin-top: 8px;
    margin-bottom: 0;
    color: var(--sub-head-color);
    letter-spacing: .3px;

    text-align: center;
}

.section-heading .motif-img img {
    height: 38px;
    width: auto;
}

.banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.collection-slider {
    position: relative;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}


.collection-img {
    width: 100%;
    /*  height: 460px; */
    overflow: hidden;
    border-radius: 10px;
}

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

.category-img {
    width: 100%;
    /* height: 350px; */
    overflow: hidden;
    border-radius: 10px;
}

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

.collection-slider .slider-item,
.category-slider .slider-item,
.new-arrivals-slider .slider-item {
    margin: 0 6px;
}

.top-logo-bar {
    padding: 10px;
}

.brand-logo {
    text-align: center;
}

.brand-logo img {
    max-height: 64px;
    width: auto;
}


.collection-box p {
    font-size: 20px;
    font-family: var(--playfair);
    font-weight: normal;
    text-align: center;
    color: var(--main-color);
    margin-top: 12px;
}




.enjoy-the-moment-left img{
    max-height: 750px;
}

.enjoy-the-moment-right .img{
    max-height: 347px;
}

.enjoy-the-moment {
    max-width: 1420px;
    margin: 0 auto;
}

.enjoy-the-moment-box .img {
    border-radius: 10px;
    overflow: hidden;
}

.enjoy-the-moment-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.enjoy-the-moment-box p {
    font-size: 24px;
    font-family: var(--playfair);
    text-align: center;
    margin: 5px 0 15px 0;
    text-transform: capitalize;
    color: var(--main-color);
}

.product-card {
    border: 1px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: border-color 0.1s ease;
}

.product-card:hover {
        border: 1px solid #f1f1f1;
}

.wishlist-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #000;
}


.wishlist-icon i {
    font-size: 15px;
    margin-top: 4px;
}

.wishlist-icon:hover {
    background: #0a4a45;
    color: #fff;
}


.product-img {
    /*   background-color: #FFFDF8; */
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 61 / 75;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.product-img .hover-p-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    padding: 10px;
    text-align: left;

    display: flex;
    flex-direction: column;
    gap: 3px;
}

.product-name {
    font-size: 15px;
    color: var(--main-color);
    margin: 0;
    font-family: var(--playfair);
}

.product-price {
    font-size: 14px;
    color: #000;
    margin: 0;
}


.product-card .hover-p-img {
    display: none;
}

.product-card:hover .hover-p-img {
    display: block;
}

.product-card:hover .main-p-img {
    display: none;
}

.h-cart-btn {
    position: absolute;
    right: 5px;
    top: 44px;
    transform: translateY(12px);
    opacity: 0;
    pointer-events: none;
    background: #fff;
    color: #000;
    font-size: 12px;
    /*  text-transform: uppercase; */
    height: 28px;
    width: 28px;
    font-size: 15px;
    border-radius: 20px;
    transition: all 0.25s ease;
    border: none;
    outline: none;
}

.h-cart-btn:hover {
    background: #0a4a45;
    color: #fff;
}

.product-card:hover .h-cart-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}



.gift-section {
    background: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1920 / 980;
    position: relative;
}

.gift-box {
    border: 1px solid #F0EDE2;
    border-radius: 10px;
    max-width: 700px;
    padding: 40px 24px;
    background-color: rgba(0, 0, 0, 0.65);
    color: #fff;
    text-align: center;
    font-family: var(--playfair);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.gift-box h2 {
    font-size: 72px;
    font-weight: normal;
}

.gift-box p {
    font-size: 32px;
    font-weight: normal;
    margin: 25px 0 60px 0;
}

.main-btn {
    font-size: 28px;
    text-align: center;
    color: var(--main-color);
    width: 280px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F0EDE2;
    border-radius: 10px;
}

.gift-box .main-btn {
    position: inherit;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
}

.crafting-section {
    aspect-ratio: 1920 / 680;
    background: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.crafting-section .main-heading {
    color: #fff;
}

.crafting-box {
    color: #fff;

    font-size: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.crafting-box p {
    margin: 0;
}

.plans-section {
    padding-top: 24PX;
}

.plans-section .container-fluid {
    padding: 0;
}

.plan-box {
    display: flex;
    max-height: 880px; 
}

.plan {
    width: 50%;
    position: relative;
}

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

.plan-details {
    padding: 130px 20px 10px 20px;
    color: #fff;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 95%);
}

.plan-details h4 {
    font-size: 28px;
    font-family: var(--playfair);
    font-weight: normal;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.plan-details p {
    font-size: 15px;
    margin: 0;
    font-weight: normal;
}

.store-box {
    border-radius: 10px;
    overflow: hidden;
}

.store-img {
    max-height: 500px;
    height: 100% !important;
}

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

.store-details {
    color: var(--main-color);
    background-color: #e9d8b6;
    padding: 6px 10px;
}

.store-details p {
    margin-bottom: 6px;
    text-transform: capitalize;
    font-size: 16px;
}

.store-details h4 {
    margin-bottom: 0px;
    text-transform: uppercase;
    font-size: 22px;
}

.contact-info {
    font-size: 14px;
    color: var(--sub-head-color);
    line-height: 1.5;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info strong {
    color: var(--main-color);
    font-weight: 600;
}

.insta-section {
    max-width: 1920px;
    margin: 0 auto;
    column-gap: 12px;
    padding: 0 12px;
}


.insta-post {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    break-inside: avoid;
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.insta-post img {
    /*   width: 100%;
  height: 100%;
  object-fit: cover; */

}


footer {
    background-color: var(--main-color);
    padding: 80px 0px;
    position: relative;
    margin-top: 40px;
}

/* footer:after {
    content: "";
    background-color: #616161;
    height: 300px;
    width: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
 */
.newsletter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.footer-logo {
    width: 97px;
    height: 97px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
}

.newsletter-title {
    font-size: 24px;
    font-family: var(--playfair);
    font-weight: normal;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 20px 0 10px 0;
}

.newsletter-sub-title {
    color: #B7B7B7;
    font-size: 16px;

    font-weight: normal;
    max-width: 510px;
    letter-spacing: .4px;
    text-align: center;
}

.newsletter-input {
    border: 1px solid #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 44px;
    max-width: 600px;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.newsletter-input input {
    height: 44px;
    color: #999999;
    font-size: 14px;

    border-radius: 10px 0 0 10px;
    outline: none;
    border: none;
    background-color: transparent;
    width: 460px;
    padding: 0px 15px;
}

.newsletter {
    padding: 0 40px;
}

.newsletter-input button {
    height: 44px;
    color: var(--main-color);
    font-size: 18px;

    border-radius: 0 10px 10px 0;
    outline: none;
    border: none;
    background-color: #fff;
    padding: 0 20px;
}

.servicebox {
    display: flex;
    align-items: center;
    gap: 3px;
}

.service-name {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;

}

.service-icon {
    width: 40px;
    height: 40px;
}

.service-icon img {
    width: 100%;
    height: auto;
}

.links-box {
    padding: 0 30px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    border-left: 1px solid #616161;
}

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

.links-list li a {
    color: #fff;
    text-transform: capitalize;

    font-size: 14px;
    text-align: left;
}

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

.copyright-text {
    font-size: 14px;
    color: #fff;

}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    width: 28px;
    height: 28px;
}

.social-icon {
    width: 100%;
    height: auto;
}

.products-hero {
    height: 500px;
    background: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.products-row {
    display: flex;
    gap: 30px;
}

/* .product-list {
    padding-top: 25px;
}
 */
.filter-row {
    /* padding-top: 30px; */
    min-width: 280px;
    padding-bottom: 8px;
    /*  display: flex; */
    justify-content: space-between;
    /*     border-bottom: 1px solid var(--border-color); */
    position: sticky;
    top: 100px;
}

/* .sticky-filter{
    position: sticky;
    top: 20px;
} */
.inline-filters {
    /*   display: flex;
    gap: 35px;
    align-items: center; */
    width: 100%;
}

.inline-filters .filter-section {
    /*  display: flex;
    align-items: center;
    gap: 10px; */
    position: relative;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    width: 100%;
}

.inline-filters .filter-section h4 {
    margin: 0;
    font-size: 14px;
    color: var(--sub-head-color);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.inline-filters .filter-section h4 i {
    font-size: 13px;
}

.inline-filters .filter-section h4:hover {
    color: var(--main-color);
}

.inline-filters .filter-options.show {
    display: flex;
}

.inline-filters .filter-options {
    display: none;
    flex-direction: column;
    gap: 10px;
    /*   position: absolute;
    top: 30px;
    left: 0; */
    background-color: #fff;
    /*  border: 1px solid var(--border-color); */
    border-radius: 0px;
    /*  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    z-index: 99;
    min-width: 200px;
    padding: 15px 10px;
}

.inline-filters .filter-options label {
    margin: 0;
    font-size: 14px;
    color: var(--sub-head-color);
    cursor: pointer;
    font-family: var(--playfair);
}


.filter-btn .filter-text {
    outline: none;
    border: none;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--main-color);
    font-family: var(--playfair);
    font-weight: 500;
    margin-bottom: 10px;
}

.filter-btn button i {
    font-size: 30px;
}





@media (max-width: 991px) {
    .filter-btn {
        display: block;
    }
}

.product-count {
    font-size: 16px;
    color: var(--main-color);
    display: flex;
    font-weight: 500;
    font-family: var(--playfair);
    display: flex;
    align-items: center;
    gap: 30px;
}

.product-count .inline-filters,
.product-count .filter-section {
    width: auto;
    border: none;
    position: relative;
    padding: 0;
}

.product-count .inline-filters .filter-section h4 {
    gap: 12px;
}

.product-list-header .breadcrumb-item,
.product-list-header .breadcrumb-item a {
    color: var(--main-color);
    font-size: 14px;
    font-family: var(--playfair);
}

.product-count .inline-filters .filter-options {
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    min-width: 200px;
    padding: 15px 10px;
}

.product-count select {
    min-width: 200px;
    border: none;
    border-bottom: 1px solid #dfdfdf;
    color: var(--sub-head-color);
    outline: none;
    font-size: 14px;
}











/* Filter Popup Styles */


















.filter-section h4 {
    font-family: var(--playfair);
    font-size: 18px;
    color: var(--main-color);
    margin-bottom: 15px;
    text-transform: capitalize;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--sub-head-color);
    cursor: pointer;
}

.filter-options input[type="checkbox"] {
    accent-color: var(--main-color);
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0px !important;
}

.price-range input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    margin: 25px 0;
    background: #ddd;
    outline: none;
    border-radius: 3px;
}

.price-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--main-color);
    border-radius: 50%;
    cursor: pointer;
}

.price-range input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--main-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-inputs input {
    width: 80px;
    padding: 5px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;


    color: var(--sub-head-color);
}

.price-inputs span {
    font-size: 14px;
    color: var(--sub-head-color);
}

.apply-price-btn {
    width: 100%;
    padding: 8px 12px;
    background-color: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.apply-price-btn:hover {
    background-color: #0a4a45;
}








@media (max-width: 768px) {}

/* Product Details Page Styles */
.product-details-section {
    padding: 50px 0 0 0;
}

/* Hide default Bootstrap accordion arrow */
.accordion-button::after {
    display: none;
}

/* Custom Accordion Icon Styling */
.accordion-button {
    position: relative;
    padding-right: 40px;
    background-color: transparent;
    padding: 10px 5px;
    border-radius: 0;
}

.accordion-header {
    border-bottom: 1px solid #ececec;
}

.accordion-button:focus,
.accordion-button:focus-visible {
    outline: none;
    box-shadow: none;
    border: none;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    color: #000 !important;
}

.accordion-item {
    border: none;
}

.accordion-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    border: none !important;
    color: var(--main-color);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .accordion-icon {
    transform: translateY(-50%) rotate(0deg);
}

.accordion-button.collapsed .accordion-icon {
    transform: translateY(-50%) rotate(0deg);
}

/* Toggle plus/minus icons for accordions */
.accordion-button:not(.collapsed) .expanded-icon {
    display: inline-block;
}

.accordion-button:not(.collapsed) .collapsed-icon {
    display: none;
}

.accordion-button.collapsed .expanded-icon {
    display: none;
}

.accordion-button.collapsed .collapsed-icon {
    display: inline-block;
}


.product-details-table {
    border-collapse: collapse;
    margin: 20px 10px;
}

.product-details-table td:first-child {
    border-right: 1px solid #ececec;
}

.product-details-table td:last-child {
    padding-left: 30px;
}

.product-details-table td {
    padding: 5px 15px;


    font-size: 13px;
}

.accordion-body {
    padding: 0;
}

.product-details-table .detail-label {
    font-weight: 500;
    color: var(--sub-head-color);
}

.product-details-accordion {
    margin-top: 12px;
}

.product-gallery {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    height: 100%;
}

.main-image {
    border-radius: 10px;
    overflow: hidden;
    background-color: #FFFDF8;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    width: 100%;
    /* height: 100%;
     max-width: 838px;
    max-height: 838px; */
}

/* .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 */
.thumbnail-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: var(--main-color);
}

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

.product-info {
    padding-left: 30px;
    position: sticky;
    top: 40px;
    left: 0;
}

.product-title {
    font-family: var(--playfair);
    font-size: 32px;
    color: var(--main-color);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: normal;
}

.product-description p {
    font-size: 16px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 28px;
    color: var(--main-color);
}

.original-price {
    font-size: 20px;
    color: var(--sub-head-color);
    text-decoration: line-through;
}

.discount {
    background-color: #ff6b6b;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #ffd700;
}

.rating-count {
    font-size: 14px;
    color: var(--sub-head-color);
}

.product-description {
    margin: 15px 0 30px 0;
    line-height: 1.6;
    color: var(--sub-head-color);
}










.quantity-size-selector {
    display: flex;
    align-items: center;
    gap: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.size-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.size-selector label {
    font-weight: 700;
    color: var(--main-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-select-box {
    min-width: 120px;
    height: 35px;
    color: var(--sub-head-color);
    font-size: 14px;


    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    position: relative;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    padding: 0 10px;
}

.size-select-box:focus {
    box-shadow: none;
    outline: none;
}


.size-select-box option {
    padding: 8px;
    background-color: #ffffff;
    color: var(--sub-head-color);


    font-size: 14px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    max-width: 88px;
}

.qty-btn {
    width: 24px;
    height: 28px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

/* .qty-btn:hover {
    background-color: var(--main-color);
    color: white;
} */

.quantity {
    width: 38px;
    height: 28px;
    border: none;
    text-align: center;
    font-size: 14px;
    background-color: transparent;


}

.quantity:focus {
    outline: none;
    box-shadow: none;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin: 45px 0 28px 0;
}

.add-to-cart-btn,
.wishlist-btn {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;


    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn {
    background-color: var(--main-color);
    color: white;
}

.add-to-cart-btn:hover {
    background-color: #0a4a45;
}

.wishlist-btn {
    background-color: #f8f8f8;
    color: var(--sub-head-color);
    border: 1px solid var(--border-color);
}

.wishlist-btn:hover {
    background-color: #f0f0f0;
}







/* Product Tabs */
.product-tabs-section {
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
}

.tabs-container {
    max-width: 800px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
    justify-content: center;
}

.tab-btn {
    padding: 15px 20px;
    border: none;
    background: none;


    font-size: 16px;
    color: var(--sub-head-color);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--main-color);
    border-bottom-color: var(--main-color);
}

.tab-btn:hover {
    color: var(--main-color);
}

.tabs-content {
    min-height: 300px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-family: var(--playfair);
    font-size: 24px;
    color: var(--main-color);
    margin-bottom: 20px;
}

.tab-content p {
    line-height: 1.6;
    color: var(--sub-head-color);
    margin-bottom: 15px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.specs-table td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--main-color);
    width: 40%;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--main-color);
}

.review-stars {
    color: #ffd700;
}

.review-date {
    font-size: 14px;
    color: var(--sub-head-color);
}

.review-text {
    line-height: 1.6;
    color: var(--sub-head-color);
}











/* Related Products */
.related-products-section {
    padding: 50px 0;
    /*    border-top: 1px solid var(--border-color); */
}

@media (max-width: 768px) {
    .product-info {
        padding-left: 0;
        padding-top: 30px;
    }

    .product-title {
        font-size: 24px;
    }

    .product-actions {
        flex-direction: column;
    }

    .tabs-header {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1;
        min-width: 120px;
    }


}

.product-info .page-navigator {
    margin: 30px 0;
    font-weight: 500;
}

.page-navigator {
    font-weight: 500;
}

.page-navigator ol {
    margin-bottom: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: var(--sub-head-color);
    font-size: 14px;

}

.product-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 18px 0;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 3px;
    margin-bottom: 25px;
}

/* Contact Us Page Styles */



/* .contact-info-section,
.contact-form-section {
    margin-bottom: 40px;
} */







.contact-location {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), #0a4a45);

}

/* .contact-location:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--main-color);
} */

.contact-location h3 {
    font-family: var(--playfair);
    font-size: 24px;
    color: var(--main-color);
    margin-bottom: 20px;
    font-weight: normal;
    position: relative;
    padding-left: 15px;
}

.contact-location h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--main-color);
    border-radius: 2px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--sub-head-color);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-info p:hover {
    color: var(--main-color);
}

.contact-info i {
    margin-right: 10px;
    color: var(--main-color);
    transition: transform 0.3s ease;
}

.contact-info p:hover i {
    transform: scale(1.1);
}

.direction-link {
    color: var(--main-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    background-color: var(--main-color);
    font-family: var(--playfair);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

/* 
.direction-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: width 0.3s ease;
} */

/* .direction-link:hover::after {
    width: 100%;
} */

/* .direction-link:hover {
    color: #0a4a45;
} */

/* .contact-form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid var(--border-color);
} */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 16px;
    color: var(--main-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 10PX 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    color: var(--sub-head-color);
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(9, 60, 56, 0.1);
    /*  transform: translateY(-2px); */
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .main-btn,
.cart-items .main-btn {
    margin-top: 20px;
    font-size: 15px;
    background-color: var(--main-color);
    color: #fff;
    height: 40px;
    min-width: 80px;
    width: auto;
    padding: 0 28px;
    border: none;
    outline: none;
    border-radius: 5px;
}

/* .primery-btn{
    margin-top: 20px;
    font-size: 16px;
    background-color: #f8f8f8;
    border: 1px solid var(--border-color);
    color: var(--sub-head-color);
    height: 40px;
    min-width: 80px;
    width: auto;
    padding: 0 28px;
    outline: none;
    border-radius: 5px;
    font-weight: 400;
    transition: all 0.3s ease;
}
.primery-btn:hover{
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
} */

/* .contact-form .main-btn:hover::before {
    left: 100%;
} */

/* .contact-form .main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(9, 60, 56, 0.3);
} */

@media (max-width: 768px) {


    .contact-location {
        padding: 20px;
    }

    .contact-location h3 {
        font-size: 20px;
    }

    .contact-form-section {
        padding: 25px;
    }
}

/* Story Page Styles */
.story-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}


.hero-content {
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hero-title {
    font-family: var(--playfair);
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 15px;

}

.hero-subtitle {
    font-size: 24px;
}


.story-content {
    margin-top: 50px;
}

.story-text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--sub-head-color);
    margin-bottom: 20px;
}

/* Creative Introduction Section Styles */
.creative-intro {
    position: relative;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 30px;
}



.intro-lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--main-color);
    line-height: 1.7;
    margin-bottom: 25px;
    font-family: var(--playfair);
}

.intro-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
}

.divider-motif {
    font-size: 24px;
    color: var(--main-color);
    margin: 0 15px;
    opacity: 0.8;
}

.intro-secondary {
    font-size: 18px;
    line-height: 1.6;
    color: var(--sub-head-color);
    margin-bottom: 20px;
}

.intro-emphasis {
    font-size: 19px;
    font-weight: 600;
    color: var(--main-color);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0;
}



.values-section {
    background-color: var(--main-color);
    padding: 80px 0;
}

.values-section .main-heading,
.values-section .sub-heading {
    color: #fff;
}

.values-section .card-content p,
.values-section .card-year {
    color: #fff;
}

/* .values-grid {
    margin-top: 50px;
}
 */



/* .journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
} */

.journey-card {
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    height: 100%;
}

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

.card-year {
    display: block;
    font-family: var(--playfair);
    font-size: 32px;
    color: var(--main-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.card-content h4 {
    font-family: var(--playfair);
    font-size: 22px;
    color: var(--main-color);
    margin-bottom: 15px;
    font-weight: normal;
}

.card-content p {
    font-size: 16px;
    color: var(--sub-head-color);
}



@keyframes particleFloat {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes statGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}









.value-image-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.value-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.value-image-card:hover .value-image img {
    transform: scale(1.05);
}

.value-content {
    padding: 30px;
    text-align: center;
}

.value-content h3 {
    font-family: var(--playfair);
    font-size: 24px;
    color: var(--main-color);
    margin-bottom: 15px;
    font-weight: normal;
}

.value-content p {
    font-size: 16px;
    color: var(--sub-head-color);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Add-to-Cart Page Styles */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}




.cart-item-title {
    font-size: 15px;
    color: var(--main-color);
    margin: 0 0 8px;
}

.cart-item-price {
    font-size: 14px;
    color: var(--sub-head-color);
    margin: 0 0 12px;
}















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

.cart-table thead {
    background-color: #f9f9f9;
    color: var(--main-color);
    font-weight: normal;
    text-transform: capitalize;
}

.cart-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.cart-table thead th:first-child {
    /* border-top-left-radius: 8px;
    border-bottom-left-radius: 8px; */
    width: 100px;
}

.cart-table thead th:last-child {
    /*   border-top-right-radius: 8px;
    border-bottom-right-radius: 8px; */
    text-align: center;
}

.cart-table tbody td:last-child {
    text-align: center;
}

.cart-table td {
    padding: 12px;
    text-align: left;
}

/* .cart-table td{
    border-bottom: 1px solid var(--border-color);
} */

.cart-table th {
    font-size: 15px;
    padding: 16px 12px;
    font-weight: 600;
    text-align: left;
}

.cart-table td {
    font-size: 14px;
    color: var(--sub-head-color);
}

.cart-table td:first-child,
.cart-table td:last-child {
    border-left: none;
    border-right: none;
}

.cart-item-img {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Updated Remove Button to Use Icon */
/* .remove-btn {
    background-color: transparent;
    color: var(--sub-head-color);
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: color 0.3s ease;
} */

.remove-btn:hover {
    color: #e60000;
}

.checkout-btn-container {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.checkout-qty {
    font-size: 13px;
    margin-bottom: 0;
    color: var(--sub-head-color);
}

/* Cart Offcanvas Styles */
#cartOffcanvas {
    width: 600px;
}

#cartOffcanvas .offcanvas-body {
    padding-bottom: 140px;
}

/* Wishlist Offcanvas Styles */


/* Cart Footer Styles */
.cart-footer {
    border-top: 1px solid var(--border-color);
    padding: 20px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.total-label {
    color: var(--sub-head-color);
    font-size: 16px;
}

.total-amount {
    color: var(--main-color);
    font-size: 16px;
}

.cart-footer-buttons {
    display: flex;
    gap: 10px;
    text-align: center;
}

.view-cart-btn,
.checkout-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-cart-btn {
    background-color: #f8f8f8;
    color: var(--sub-head-color);
    border: 1px solid var(--border-color);
}

.view-cart-btn:hover {
    background-color: #f0f0f0;
}

.checkout-btn {
    background-color: var(--main-color);
    color: white;
}

.checkout-btn:hover {
    background-color: #0a4a45;
}

/* Checkout Page Styles */
.checkout-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}




.billing-shipping-section h3 {
    font-family: var(--playfair);
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 20px;
    font-weight: normal;
}

.ship-head {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}


.ship-head h3 {
    margin: 0;
}

/* .address-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border: 1px solid #f5f5f5;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
} */


.address-item:last-child {
    margin-bottom: 0;
}

.address-item:hover {
    border-color: var(--main-color);
    box-shadow: 0 2px 8px rgba(9, 60, 56, 0.1);
}

.address-item input[type="radio"] {
    margin-top: 3px;
    accent-color: var(--main-color);
}

.address-item p {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: var(--sub-head-color);
    font-weight: 500;
}

.address-item p:first-of-type {
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 8px;
}

.add-new-btn {
    background: var(--main-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    /*  font-weight: 600; */
    cursor: pointer;
    border: none;
    outline: none;
}


.summary-section {
    background: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 20px;
}

.summary-section h3 {
    font-family: var(--playfair);
    font-size: 24px;
    color: var(--main-color);
    margin-bottom: 25px;
    font-weight: normal;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

/* .summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    color: var(--main-color);
    font-size: 18px;
} */

.summary-item.total {
    border-top: 2px solid var(--main-color);
    margin-top: 7px;
    padding-top: 14px;
}

.summary-img {
    width: 45px;
    height: 45px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    flex-Srink: 0;
}

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

.summary-item div p:first-child {
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 3px;
}

.summary-item div p:last-child {
    font-size: 12px;
    color: var(--sub-head-color);
}

.c-product-name {
    color: var(--main-color) !important;
    font-size: 15px !important;
    font-family: var(--playfair);

}

.summary-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-item p:last-child {
    font-weight: 600;
    color: var(--main-color);
    margin-left: auto;
}

.coupon-input {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    padding: 15px 0 0 0;
    border-top: 1px solid #f0f0f0;
}

.coupon-input input {
    flex: 1;
    padding: 6px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    color: var(--sub-head-color);
}

.coupon-input input:focus {
    outline: none;
    border-color: var(--main-color);
}

.coupon-input button {
    padding: 8px 20px;
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    /*    font-weight: 600; */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.coupon-input button:hover {
    background: #0a4a45;
}

.summary-products .summary-item div p:first-child,
.summary-products .summary-item p:last-child {
    font-weight: normal
}

.summary-section .main-btn {
    width: 100%;
    margin-top: 8px;
    padding: 8px 20px;
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    height: auto;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.summary-section .main-btn:hover {
    background: #0a4a45;
}

/* Styles for Additional Info Section */
.additional-info {
    background-color: #f9f9f9;
    padding: 40px 0;
    font-family: var(--montserrat);
}

.additional-info h3 {
    font-family: var(--playfair);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--main-color);
}

.additional-info p {
    font-size: 16px;
    color: var(--sub-head-color);
    line-height: 1.6;
}

.additional-info ul {
    list-style: none;
    padding: 0;
}

.additional-info ul li {
    font-size: 16px;
    color: var(--sub-head-color);
    margin-bottom: 10px;
}

.additional-info ul li strong {
    color: var(--main-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .summary-section {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .checkout-page {
        padding: 0 10px;
    }

    .billing-shipping-section,
    .summary-section {
        padding: 20px;
    }

    .billing-shipping-section h3,
    .summary-section h3 {
        font-size: 20px;
    }

    .address-item {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .summary-item p:last-child {
        margin-left: 0;
        align-self: flex-end;
    }

    .coupon-input {
        flex-direction: column;
    }

    .coupon-input input,
    .coupon-input button {
        width: 100%;
    }
}


/* Updated Styles for Additional Info Section */
.additional-info {
    background-color: #f9f9f9;
    padding: 50px 0;
    font-family: var(--montserrat);
}

.additional-info h3,
.additional-info h4 {
    font-family: var(--playfair);
    color: var(--main-color);
    margin-bottom: 15px;
}



.additional-info h4 {
    font-size: 16px;
}

.additional-info p {
    font-size: 13px;
    color: var(--sub-head-color);
    margin-bottom: 15px;
}


.additional-info ul li {
    font-size: 14px;
    color: var(--sub-head-color);
    margin-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

/* Privacy Policy Page Styles */
.privacy-content {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    /*  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color); */
}

.privacy-section {
    margin-bottom: 40px;
    position: relative;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h3 {
    font-family: var(--playfair);
    font-size: 24px;
    color: var(--main-color);
    margin-bottom: 20px;
    font-weight: normal;
    position: relative;
    padding-left: 20px;
}

.privacy-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--main-color), #0a4a45);
    border-radius: 2px;
}

.privacy-section p {
    font-size: 15px;
    color: var(--sub-head-color);
    margin-bottom: 15px;
}

.privacy-section ul {
    margin-left: 0px;
    margin-bottom: 0px;
    padding-left: 20px;
}

.privacy-section ul li {
    font-size: 15px;
    color: var(--sub-head-color);
    margin-bottom: 6px;
    position: relative;
    padding-left: 18px;
}

.privacy-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-weight: bold;
}

.last-updated {
    font-size: 14px;
    color: var(--sub-head-color);
    text-align: center;
    font-style: italic;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.section-decoration {
    margin-bottom: 20px;
}

/* .decorative-line {
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color), #0a4a45);
    border-radius: 2px;
    margin: 0 auto;
} */



.footer-tags-head {
    font-size: 16px;
    font-family: var(--playfair);
    color: var(--main-color);
}

.link-tags:not(:last-child):after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--border-color);
    width: 1px;
    height: 12px;
}

.ft-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    margin: 13px 0;
}

.ft-tags .link-tags {
    margin-left: 20px;
    font-size: 13px;
    position: relative;
    color: var(--sub-head-color);
}

/* .footer-tags-list li{
    font-size:14px;
    color: var(--sub-head-color);
} */

.link-tags:first-child {
    margin-left: 0;
}

.footer-tags-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.tags-heading {
    margin-top: 50px;
}

hr {
    color: #000;
}

.cart-modal-img {
    max-width: 80px;
    aspect-ratio: 1;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.cart-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    display: flex;
    gap: 15px;
}

.cart-popup-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

.cart-popup-item:last-child {
    border-bottom: none;
}

.cart-item-price-name,
.cart-item-qty-remove {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.cart-item-qty-remove {
    align-items: end;
}

.cart-item-price-name {
    padding-right: 50px;
}

.cart-popup-item .cart-item-price {
    text-align: left;
    color: var(--sub-head-color);
}

.popup-item-remove {
    display: flex;
    gap: 12px;
}

.popup-item-remove button {
    background: transparent;
    border: none;
    color: var(--sub-head-color);
    cursor: pointer;
    border: none;
    font-size: 12px;
    text-decoration: underline;
}

.popup-item-title {
    font-size: 14px;
    color: var(--sub-head-color);
    font-weight: normal;
}

.offcanvas-header {
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    padding: 12px 20px;
}

.offcanvas-header .btn-close,
.addAddressModal .btn-close,
.returnOrderModal .btn-close {
    background: none;
    font-size: 25px;
    padding: 0;
    margin-bottom: 0;
}

.offcanvas-title {
    font-size: 18px;
}

.t-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.t-btns button {
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--main-color);
}


.product-info .quantity-controls {
    height: 35px;
    text-align: center;
    max-width: 110px;
}

.product-info .quantity {
    width: 55px;
    height: 28px;
    border: none;
    text-align: center;
    font-size: 14px;
    background-color: transparent;
}


/* ===============================scroll-header========================== */


.scroll-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--main-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: transform 0.5s ease;
    /*  padding: 10px 0; */
    transform: translateY(-100%);
}

.scroll-head-logo img {
    max-height: 58px;
    width: auto;
}

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

.center-menu ul.navbar-nav {
    display: flex;
    width: 100%;
    gap: 58px;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.scroll-header.active {
    transform: translateY(0);
}


/* ===============================scroll-header========================== */


/* Login and Register Pages */
.login-register-page {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-register-page .row {
    position: relative;
    width: 100%;
    max-width: 1200px;
}

.left-section,
.right-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.left-content,
.right-content {
    text-align: center;
    width: 100%;
    /*   max-width: 400px; */
}

.left-content h2,
.right-content h2 {
    font-family: var(--playfair);
    font-size: 32px;
    color: var(--main-color);
    margin-bottom: 20px;
    font-weight: normal;
}

.right-content h2 {
    margin-bottom: 32px;
}

.left-content p {
    font-size: 14px;
    color: var(--sub-head-color);
    max-width: 450px;
    margin: 0 auto 36px auto;
}

.action-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-family: var(--montserrat);
    border-radius: 10px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 12px;
    font-size: 14px;
    font-family: var(--montserrat);
    color: var(--sub-head-color);
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    outline: none;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--main-color);
    font-family: var(--montserrat);
    font-weight: 500;
    margin-bottom: 5px;
}

.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--sub-head-color);
    font-family: var(--montserrat);
    cursor: pointer;
    margin-bottom: 0;
}

.form-group input[type="checkbox"] {
    width: auto;
    accent-color: var(--main-color);
}

.form-group a {
    color: var(--main-color);
    text-decoration: underline;
}

.form-group button {
    width: 100%;
    padding: 12px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--montserrat);
    cursor: pointer;
    border: none;
}

.social-login {
    margin-top: 30px;
}

.social-login p {
    font-size: 14px;
    color: var(--sub-head-color);
    margin-bottom: 20px;
    position: relative;
}

.social-login p::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 190px;
    height: 1px;
    background-color: var(--border-color);
}

.social-login p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 190px;
    height: 1px;
    background-color: var(--border-color);
}

.l-social-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.google-btn,
.facebook-btn {
    padding: 8px;
    font-size: 16px;
    font-family: var(--montserrat);
    cursor: pointer;
    background-color: #fff;
    color: var(--sub-head-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.l-social-buttons button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.l-social-buttons button img {
    width: 20px;
    height: 20px;
}

.vertical-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e5e5e5;
    transform: translateX(-50%);
    padding: 0;
}

@media (max-width: 768px) {
    .vertical-line {
        display: none;
    }

    .left-section,
    .right-section {
        width: 100%;
        padding: 20px;
    }

    .login-register-page .row {
        flex-direction: column;
    }
}

/* Profile Page Styles */














.order-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0 20px 20px 20px;
    margin: 15px 0;
}

/* .order-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
 */
.order-item h5 {
    font-family: var(--playfair);
    font-size: 18px;
    color: var(--main-color);
    margin-bottom: 8px;
    font-weight: normal;
}

.order-item p {
    font-size: 14px;
    color: var(--sub-head-color);
    margin-bottom: 5px;
}







.order-item .btn-outline-primary {
    border-color: var(--main-color);
    color: var(--main-color);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.order-item .btn-outline-primary:hover {
    background-color: var(--main-color);
    color: #fff;
}

.address-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--main-color);
    box-shadow: 0 2px 8px rgba(9, 60, 56, 0.1);
}

.address-item h5 {
    font-family: var(--playfair);
    font-size: 16px;
    color: var(--main-color);
    margin-bottom: 10px;
    font-weight: normal;
}

.address-item p {
    font-size: 14px;
    color: var(--sub-head-color);
    margin-bottom: 5px;
}





/* Quick Actions and Support */











.billing-shipping-section h3 {
    font-family: var(--playfair);
    font-size: 22px;
    color: var(--main-color);
    margin-bottom: 20px;
    font-weight: normal;
}

.billing-shipping-section p {
    font-size: 16px;
    color: var(--sub-head-color);
    margin-bottom: 15px;
}

.billing-shipping-section strong {
    color: var(--main-color);
}

/* Back to Home Link */







.faqAccordion .accordion-button {
    font-size: 18px;
    color: var(--main-color);
    font-family: var(--playfair);
    padding: 10px 15px;
    margin-top: 20px;
    background-color: rgba(9, 60, 56, 0.1);
    border-radius: 10px !important;

}

.faqAccordion .accordion-header {
    border-bottom: none !important;
}

.faqAccordion .accordion-button:not(.collapsed) {
    color: var(--main-color) !important;
}

.faqAccordion .accordion-body {
    padding: 10px 0px;
    font-size: 14px;
    color: var(--sub-head-color);
    font-weight: 500;
}

/* Order History Page Styles */












.card-header {
    padding: 10px 0px;
    border: none;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 15px;
}

.card {
    border: none;
    box-shadow: none;
}

.card-title {
    font-size: 18px;
    color: var(--main-color);
    font-family: var(--playfair);
}









.card-body {
    padding: 0;
}

/* .order-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin: 0px;
    padding: 25px;
    position: relative;
    overflow: hidden;
} */

.order-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

/* .order-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
} */

.order-number {
    background: white;
    border-radius: 10px;
    text-align: center;
}

.order-tegs-row {
    display: flex;
    gap: 15px;
}

.tag-btn {
    background-color: rgba(9, 60, 56, 0.1);
    font-size: 13px;
    color: var(--main-color);
    padding: 2px 15px;
    border-radius: 10px;
    text-align: center;
    margin: 15px 0;
    font-weight: 500;
}

.order-img-details {
    display: flex;
    align-items: center;
    gap: 30px;

}

.order-number h5 {
    font-family: var(--playfair);
    font-size: 20px;
    color: var(--main-color);
    margin: 0;
    font-weight: normal;
}

.order-number small {
    color: var(--sub-head-color);
    font-size: 14px;
    display: block;
}

.order-details h6 {
    font-family: var(--playfair);
    font-size: 18px;
    color: var(--main-color);
    margin-bottom: 8px;
    font-weight: normal;
}

.order-details p {
    font-size: 14px;
    color: var(--sub-head-color);
    margin-bottom: 5px;
}

.order-total h6 {
    font-size: 14px;
    margin: 0;
    text-align: center;
}







/* Responsive Design for Order History */
@media (max-width: 768px) {
    .order-item .row {
        text-align: center;
    }

    .order-item .col-md-2,
    .order-item .col-md-4,
    .order-item .col-md-2,
    .order-item .col-md-4 {
        margin-bottom: 15px;
    }









}

/* Order Image Styling */
.order-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.order-image:hover img {
    transform: scale(1.05);
}

/* Order Details Page Styles */
.order-details-page {
    min-height: 100vh;
}





















.order-item-detail {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    /*  border: 1px solid rgba(0, 0, 0, 0.05); */
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.order-item-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--main-color) 0%, #0a4a45 100%);
}

/* .order-item-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
} */

.order-item-detail .order-details h5 {
    font-family: var(--playfair);
    font-size: 18px;
    color: var(--main-color);
    margin-bottom: 8px;
    font-weight: normal;
}

.order-item-detail .order-details p {
    font-size: 14px;
    color: var(--sub-head-color);
    margin-bottom: 5px;
}

.order-item-detail .order-price h6 {
    font-size: 14px;
    color: #28a745;
    font-weight: 500;
    margin: 0;
}





















.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* .timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--border-color), var(--main-color));
    border-radius: 2px;
}
 */
.timeline-item {
    position: relative;
    /*  margin-bottom: 40px; */
    /* padding-left: 20px; */
    display: flex;
    gap: 20px;
}

/* .timeline-item:last-child {
    margin-bottom: 0;
}
 */
.timeline-marker {
    /*  position: absolute;
    left: -27px; */
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--border-color);
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px var(--border-color);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.timeline-item.completed .timeline-marker {
    background: var(--main-color);
    box-shadow: 0 0 0 3px var(--main-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 3px var(--main-color);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(9, 60, 56, 0.3);
    }

    100% {
        box-shadow: 0 0 0 3px var(--main-color);
    }
}

.timeline-content h6 {
    font-family: var(--playfair);
    font-size: 16px;
    color: var(--main-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 14px;
    color: var(--sub-head-color);
    margin: 0;
    line-height: 1.4;
}







/* Responsive Design for Order Details */
@media (max-width: 768px) {


    .order-item-detail {
        padding: 20px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-item {
        margin-bottom: 30px;
    }

    .timeline-marker {
        left: -22px;
        width: 14px;
        height: 14px;
    }


}



.order-details-page .card-body {
    padding: 20px;
}

.order-details-page .card-header {
    padding: 10px 20px;
    margin-bottom: 0;
}

.order-details-page .address-item {
    display: block;
}

.address-name.tag-btn {
    max-width: 150px !important;
    display: block !important;
    margin-top: 0;
}




/* profile page */













.profile-dashboard {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dashboard-row {
    display: grid;
    gap: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 20px;
}

.profile-summary-card {
    /* border-radius: 10px; */
    /*    padding: 30px; */
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-summary-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-avatar-large {
    position: relative;
    width: 60px;
    height: 60px;
}

.profile-avatar-large img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--main-color);
}


.profile-info h2 {
    margin: 0 0 5px 0;
    color: var(--main-color);
    font-family: var(--playfair);
    font-size: 18px;
    font-weight: 500;
}



.member-since {
    color: var(--sub-head-color);
    margin: 0;
    font-size: 14px;
}

.profile-actions {
    flex-Srink: 0;
}

























.addresses-list {
    display: flex;
    flex-direction: column;
    /*   gap: 20px; */
}

.checkout-page .address-item {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.checkout-page .address-item:hover {
    box-shadow: none;
    border-color: var(--main-color);
}

.address-type {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    font-family: var(--playfair);
    font-weight: normal;
}

.address-type i {
    color: var(--main-color);
    font-size: 20px;
}

.address-type span {
    font-weight: 600;
    color: var(--main-color);
}

.address-content {
    flex: 1;
}

.address-content p {
    margin: 0 0 5px 0;
    color: var(--sub-head-color);
    line-height: 1.4;
}

.address-content small {
    color: var(--sub-head-color);
    font-size: 13px;
}

.address-actions {
    flex-Srink: 0;
}

.tab-actions {
    margin-top: 20px;
    text-align: right;
}













.sidebar-card {
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quick-actions h3 {
    margin: 0 0 20px 0;
    color: var(--main-color);
    font-size: 18px;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-dashboard .action-btn,
.modal-footer.form-group button:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    text-decoration: none;
    color: var(--sub-head-color);
    font-weight: 500;
}

.modal-footer.form-group button {
    width: auto;
    padding: 8px 25px !important;
    font-size: 14px;
    border-radius: 6px;
}

.modal-footer.form-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: nowrap;
    margin-bottom: 0;
}

.profile-dashboard .action-btn:hover {
    background: var(--main-color);
    color: white;
    border-color: var(--main-color);
}

.profile-dashboard .action-btn i {
    font-size: 16px;
}

.support-section h3 {
    margin: 0 0 10px 0;
    color: var(--main-color);
    font-size: 18px;
    font-weight: 600;
}

.support-section p {
    margin: 0 0 20px 0;
    color: var(--sub-head-color);
    font-size: 14px;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    text-decoration: none;
    color: var(--sub-head-color);
    transition: all 0.3s ease;
    font-size: 14px;
}

.support-link:hover {
    background: var(--main-color);
    color: white;
    border-color: var(--main-color);
}

.btn-primary {
    background: var(--main-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #0a4a45;
}

.btn-outline {
    background: transparent;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline:hover {
    background: var(--main-color);
    color: white;
}

.btn-link {
    background: none;
    border: none;
    color: var(--sub-head-color);
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--main-color);
}

.full-width {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-row {
        gap: 20px;
    }

    .profile-summary-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }




}

@media (max-width: 768px) {
    .profile-dashboard {
        gap: 20px;
    }

    .profile-summary-card {
        padding: 20px;
    }

    .profile-info h2 {
        font-size: 20px;
    }



    .main-content-card,
    .sidebar-card {
        padding: 20px;
    }



    .tab-btn {
        justify-content: flex-start;
        padding: 12px 15px;
    }

    .address-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }


}

.profile-summary-details .form-group {
    gap: 3px;
}

.add-item-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
}

.addAddressModal .form-group {
    gap: 0px;
    margin-bottom: 10px;
}

.addAddressModal .modal-header {
    padding-top: 10px;
    padding-bottom: 10px;
}

.addAddressModal .modal-title {
    font-size: 20px;
    font-family: var(--playfair);
    color: var(--main-color);
}

.addAddressModal .form-group input,
.addAddressModal .form-group select {
    font-size: 14px;
    border-radius: 5px;
}

/* profile page */

/* Shipping Options Styles */
.c-shiping-box {
    margin: 20px 0;
}

.shipping-options {
    display: flex;
    gap: 10px;

}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: #fff;
    transition: border-color 0.3s ease;
    width: 100%;

}

.shipping-option:hover {
    border-color: var(--main-color);
}

.shipping-option input[type="radio"] {
    accent-color: var(--main-color);
}

.shipping-option label {
    font-size: 13px;
    color: var(--sub-head-color);
    cursor: pointer;
    margin: 0;
    color: var(--main-color);
}

/* Return Order Modal Styles */
.returnOrderModal .modal-content {
    border-radius: 10px;
    border: none;
}

.returnOrderModal .modal-header {
    color: white;
    border-radius: 10px 10px 0 0;
    padding: 10px 30px;
}

.returnOrderModal .modal-title {
    font-size: 20px;
    font-family: var(--playfair);
    color: var(--main-color);
    margin: 0;
}

.returnOrderModal .modal-body {
    padding: 30px;
}

.returnOrderModal .order-item-detail {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

/* .returnOrderModal .order-item-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--main-color) 0%, #0a4a45 100%);
} */

/* .returnOrderModal .order-item-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
 */
.returnOrderModal .order-details h5 {
    font-family: var(--playfair);
    font-size: 18px;
    color: var(--main-color);
    margin-bottom: 8px;
    font-weight: normal;
}

.returnOrderModal .order-details p {
    font-size: 14px;
    color: var(--sub-head-color);
    margin-bottom: 5px;
}

.returnOrderModal .order-price h6 {
    font-size: 16px;
    color: #28a745;
    font-weight: 600;
    margin: 0;
}

.returnOrderModal .form-check-input {
    accent-color: var(--main-color);
    transform: scale(1.2);
    margin-right: 10px;
}

.returnOrderModal .form-label {
    font-size: 15px;
    color: var(--main-color);
    margin-bottom: 4px;
    font-weight: 500;
}

.returnOrderModal .form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    color: var(--sub-head-color);
    background: white;
    transition: border-color 0.3s ease;
}

.returnOrderModal .form-select:focus {
    border-color: var(--main-color);
    outline: none;
}

.returnOrderModal .modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 20px 30px;
    background: white;
    border-radius: 0 0 10px 10px;
}

.returnOrderModal .btn-secondary {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    color: var(--sub-head-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
}

.returnOrderModal .btn-secondary:hover {
    background: #e9ecef;
    border-color: var(--border-color);
    color: var(--main-color);
}

.returnOrderModal .btn-primary {
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
}

/* Remove select dropdown icon */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}

/* Remove number input arrows */
input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}










/* Jewellery Care Page Styles */
.care-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.care-intro p {
    font-size: 16px;
    color: var(--sub-head-color);
}

.care-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.care-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.care-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--main-color);
}

.care-icon {
    font-size: 40px;
    color: var(--main-color);
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.care-card h3 {
    font-family: var(--playfair);
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.care-card p {
    color: var(--sub-head-color);
    font-size: 14px;
    margin: 0;
}

.care-tips-list {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.care-tips-list h3 {
    font-family: var(--playfair);
    font-size: 24px;
    color: var(--main-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.care-tips-list h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--main-color);
}

.care-tips-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.care-tips-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--sub-head-color);
    font-size: 15px;
    line-height: 1.6;
}

.care-tips-list li:last-child {
    margin-bottom: 0;
}

.care-tips-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--main-color);
    border-radius: 50%;
}







/* Stores Page Specific Styles */

.stores-section {
    position: relative;
    overflow: hidden;
}


.stores-intro {
    display: grid;
    gap: 18px;
    margin-bottom: 48px;
}


.stores-grid {
    margin: 0;
}

.store-card {
    display: grid;
    gap: 18px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 16px 36px rgba(40, 24, 14, 0.08);
    padding: 22px;
}

.store-card-media {
    border-radius: 10px;
    overflow: hidden;
    background: #f7f2ed;
    /* height:440px; */
    aspect-ratio: 1;

}

.store-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-card-body {
    display: grid;
    gap: 12px;
}

.store-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.store-card-header h3 {
    margin: 0;
    font-family: var(--playfair);
    font-size: 22px;
    color: #2a1b0a;
}

.store-card-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--main-color);
}

.store-card-address {
    margin: 0;
    color: var(--sub-head-color);
    font-size: 15px;
    line-height: 1.7;
}

.store-card-meta {
    display: grid;
    gap: 8px;
    font-size: 14px;
    color: var(--sub-head-color);
}

.store-card-meta i {
    color: var(--main-color);
    margin-right: 8px;
}


.store-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
}

.store-btn.primary {
    background: var(--main-color);
    color: #fff;
}

.store-btn.ghost {
    border: 1px solid var(--border-color);
    color: #5f3c15;
    background: #fff;
}

@media (max-width: 768px) {
    .stores-section {
        padding-top: 40px;
    }
}

@media (max-width: 576px) {
    .stores-intro-text {
        font-size: 16px;
    }

    .store-tile-header {
        flex-direction: column;
        align-items: flex-start;
    }
}


.menu-list {
    display: none !important;
}

.menu-d-mobile {
    display: none;
}

.mp-head {
    display: none;
}

.side-menu-overlay.active{
        background: rgba(0, 0, 0, .4);
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 999;
    height: 100%;
}

.see-more-container .main-btn {
    border: 1px solid var(--main-color);
    padding: 8px 45px;
    height: auto;
    width: auto;
    font-size: 18px;
    margin: 60px auto 30px auto;
    color: #000;
    font-family: var(--playfair);
    background-color: transparent;
}

.chat-bot{
    background-color: var(--main-color);
    height: 60px;
    width: 60px;
    border-radius: 50%;
position: fixed;
bottom: 40px;
right: 30px;
font-size: 24px;
display: flex;
justify-content: center;
align-items: center;
color: #fff;

}


.mini-header{
    background-color: var(--main-color);
    font-size: 12px;
    color :#fff;
    text-align: center;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all .3s ease;
    overflow: hidden;
}
.mini-header.close{
    height: 0;
}

.min-header-close{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
}