/*
 Theme Name: Storefront Child
 Theme URI: https://woocommerce.com/products/storefront/
 Description: Child theme for Storefront
 Author: Your Name
 Author URI: https://woocommerce.com/products/storefront/
 Template: storefront
 Version: 1.0.0
 Text Domain: storefront-child
*/

/* Your custom CSS starts here */

@import url("https://fonts.googleapis.com/css2?family=Charm:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* Custom Color Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

body.page-loading {
    overflow: hidden;
}

html {
    overflow-x: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0000003d;
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
    z-index: 5000;
}

.page-loader.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.page-loader__spinner {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-loader__spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.page-loader__spinner::before {
    content: "";
    position: absolute; /* ← add this */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(357.39deg, #5e5a1b 6.76%, #efefef 94.21%);
    -webkit-mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 5px),
        #000 calc(100% - 4px)
    );
    mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 5px),
        #000 calc(100% - 4px)
    );
    animation: page-loader-spin 0.9s linear infinite;
}

@keyframes page-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes page-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

:root {
    /* Project Color Palette */
    --color-white: #ffffff;
    --color-gray: #757a80;
    --color-dark: #212529;
    --color-olive: #5e5a1b;
    --color-bglight: #f9f9f9;
    --color-orange: #fb752f;
    --color-bg-orange: #ffe1d1;
    --color-bg-slight: #f0efd9;
    --color-lolive: #978e06;
    --color-paid: #21c72b;

    /* Alternative naming for easier usage */
    --primary-white: #ffffff;
    --primary-gray: #757a80;
    --primary-dark: #212529;
    --primary-olive: #5e5a1b;
    --border-light: #eaeaea;
    --bg-table: #969693;

    /* Navigation Link Variables */
    --text-font-family: "Merriweather", serif;
    --text-font-family-secondary: "Inter", sans-serif;
    --text-font-family-third: "Charm", cursive;
    --text-font-weight: 400;
    --text-font-size: 14px;
    --text-line-height: 17px;
    --text-letter-spacing: 0.12em;
    --text-text-align: center;
    --text-text-transform: uppercase;
}

/* Example usage classes (optional) */
.bg-custom-white {
    background-color: var(--color-white);
}

.bg-custom-gray {
    background-color: var(--color-gray);
}

.bg-custom-dark {
    background-color: var(--color-dark);
}

.bg-custom-olive {
    background-color: var(--color-olive);
}

.text-custom-white {
    color: var(--color-white);
}

.text-custom-gray {
    color: var(--color-gray);
}

.text-custom-dark {
    color: var(--color-dark);
}

.text-custom-olive {
    color: var(--color-olive);
}

input::-ms-reveal {
    display: none !important;
}

input::-ms-clear {
    display: none !important;
}

/* Header Styling */
/* ===== HEADER STYLES ===== */
header {
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    opacity: 1;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    padding-left: 60px;
    padding-right: 44px;
}

.logo {
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 220px;
}

.info-container {
    margin-top: 117px;
}

.logo img {
    height: 50px;
    width: 100%;
}

/* Navbar */
.navbar {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

.nav-item {
    padding: 0;

    .toogle-btn1,
    .toogle-btn2 {
        height: 36px;
        padding: 6px;
        background: transparent;
        border: none;
        border-radius: 6px;
        transition:
            background 0.2s,
            box-shadow 0.2s;
    }
}

/* Nav Links */
.nav-link {
    font-family: var(--text-font-family);
    font-weight: var(--text-font-weight);
    font-size: var(--text-font-size);
    line-height: var(--text-line-height);
    letter-spacing: var(--text-letter-spacing);
    text-align: var(--text-text-align);
    text-transform: var(--text-text-transform);

    .toogle-btn1.active,
    .toogle-btn2.active {
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .toogle-btn1:not(.active):hover,
    .toogle-btn2:not(.active):hover {
        background: #f3f3f3;
    }

    white-space: nowrap;
    padding: 0 !important;
    color: var(--color-gray);
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
    padding-bottom: 13px !important;
}

.nav-link:hover {
    color: var(--primary-olive);
}

/* By Category Dropdown Styles */
.dropdown-by-category {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.by-category-dropdown {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    margin-top: 8px; /* Creates the visual gap while maintaining connection */
    z-index: 1000;
    background: white;
    border: 1px solid #2125290d;
    width: 227px;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.3s ease-in-out,
        visibility 0.3s ease-in-out;
}

/* Pseudo-element to bridge the gap so hover isn't lost */
.by-category-dropdown::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
}

.by-category-dropdown.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
        opacity 0.3s ease-in-out,
        visibility 0s linear 0s;
}

.by-category-list {
    padding: 0;
    margin: 0;
}

.by-category-item {
    padding: 18px 20px;
    border-bottom: 1px solid #eaeaea;
    cursor: pointer;
    background: #fff;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.by-category-item:last-child {
    border-bottom: none;
}

.by-category-item:hover {
    background: #f5f5f5;
}

body.scroll-lock,
html.scroll-lock {
    overflow: hidden !important;
    overscroll-behavior: contain;
}

/* Underline Effect */
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px;
    width: 120%;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background-color: var(--primary-olive);
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link.active::after {
    opacity: 1;
}

.nav-link.active {
    color: var(--primary-olive);
}

/* Higher-specificity rule to override Bootstrap's navbar active color */
.navbar-nav .nav-link.active {
    color: var(--primary-olive);
}

/* Header Icons - Always Visible */
.header-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-icons a {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.header-icons a:hover :nth-child(1) {
    transform: scale(1.1);
}

.header-icons img {
    width: 24px;
    height: 24px;
}

/* Hamburger Menu */
.navbar-toggler {
    border: none !important;
    background: none !important;
    padding: 0 !important;
    cursor: pointer !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease;
    z-index: 998;
}

.navbar-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -4px;
    /* fine-tuned to match design */
    right: -10px;

    width: 21px;
    height: 15px;

    background: #5e5a1b;
    /* exact Figma color */
    color: #ffffff;

    font-size: 10px;
    font-weight: 600;
    line-height: 1;

    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-pic {
    width: 40px;
    height: 40px;
    position: relative;
}

.profile-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px !important;
    height: 12px !important;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile_dropdown {
    display: none !important;
    background: white;
    position: absolute;
    top: 72px;
    right: 20px;
    z-index: 2000;
}

.dp-item {
    padding: 7px 3px;
    font-family: var(--text-font-family-secondary);
    text-decoration: none;
    color: var(--color-dark);
    width: 100%;
    background: #757a800d;
    font-size: 14px;
    cursor: pointer;
}

.dp-item span {
    margin-right: 8px;
}

.dp-item2 span {
    margin-right: 8px;
}

.dp-item2 {
    padding: 7px 3px !important;
    font-family: var(--text-font-family-secondary);
    color: var(--color-dark);
    text-decoration: none;
    /* width: 100%; */
    font-size: 14px;
    cursor: pointer;
}

.profile_dropdown.show {
    display: block !important;
    max-width: 167px;
    width: 100%;
    padding: 4px 3.5px;
    animation: fadeIn 0.3s ease-in-out;
}
/* Make Select2 match other input fields */
.select2-container--default .select2-selection--single {
    height: 48px; /* Match your input height */
    border: 1px solid #ced4da; /* Match your input border */
    border-radius: 4px; /* Match your input border radius */
    padding: 10px 12px;
    font-size: 16px;
    background-color: #f8f9fa; /* Match your input background */
    box-shadow: none;
}
/* Hide the clear (cross) icon in Select2 */
.select2-container--default
    .select2-selection--single
    .select2-selection__clear {
    display: none !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 28px; /* Adjust for vertical alignment */
    color: #495057; /* Match your input text color */
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 48px; /* Match the height */
    right: 10px;
}

/*-------------------- hero section----------------------- */
.hero {
    width: 100%;
    min-height: 665px;
    margin: 0 auto;
    /* background: url("../images/hero.png") center / cover no-repeat; */
}

/* content wrapper */
.content-hero {
    max-width: 650px;
    gap: 20px;
}

/* heading */
.heading {
    font-family: var(--text-font-family);
    font-weight: 400;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 0%;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}

/* paragraph */
.heading-info {
    font-family: var(--text-font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    max-width: 445px;
    line-height: 24px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}

/* button */
.see-collection-btn {
    font-family: "Merriweather", serif;
    font-weight: 700;
    font-size: 14px;
    padding: 13.5px 29.5px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
}

.see-collection-btn img {
    margin-left: 24px;
}

/* ---------------------latest-Products------------------ */
.latest-products,
.TrendingProducts,
.blog {
    margin-top: 120px;
    margin-bottom: 120px;
}

.container-custom {
    max-width: 985px;
    margin: 0 auto;
}

.section-heading {
    font-family: var(--text-font-family);
    color: var(--color-dark);
    font-size: 34px;
    text-align: center;
}

.section-heading2 {
    font-family: var(--text-font-family);
    color: var(--color-dark);
    font-size: 40px;
    text-align: center;
    line-height: 58px;
}

.img-container {
    width: 307px;
    height: 292px;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card {
    width: 307px;
    height: 363px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
    transition: all 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.product-name {
    margin: 0;
    font-family: var(--text-font-family);
    font-size: 16px;
    color: var(--color-dark);
}

.product-price {
    margin: 0;
    font-family: var(--text-font-family-secondary);
    font-size: var(--text-font-size);
    color: var(--primary-olive);
}

.product-price ins,.product_price ins,.PL_price ins{
    text-decoration: none !important;
}

.product-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trending_product {
    max-width: 1150px;
    margin: 0 auto;
}

.product-link {
    text-decoration: none;
}

/*-------------------------- Explore By Category --------------------*/
.Exbycat {
    padding: 0 15px;
    /* Add padding */
}

.category-section {
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0d6efd;
}

.category-grid {
    display: grid;
    grid-template-columns: 420px 420px 420px;
    grid-template-rows: 634px 634px;
    gap: 30px;
    justify-content: center;
}

.category-card {
    position: relative;
    overflow: hidden;

    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.category-card:hover .category-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.category-name {
    color: white;
    font-size: 24px;
    font-family: var(--text-font-family);
    font-weight: 500;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Grid positioning for each card */
.wall-decor {
    grid-column: 1;
    grid-row: 1 / 2;
}

.desk-gadgets {
    grid-column: 2;
    grid-row: 1;
    height: 301px;
}

.kitchen-dining {
    grid-column: 3;
    grid-row: 1 / 2;
}

.table-decor {
    grid-column: 2;
    grid-row: 2;
    height: 301px;
    margin-top: -330px;
}

.be-with-nature {
    grid-column: 1 / 3;
    grid-row: 2;
    height: 634px;
}

.utilities {
    grid-column: 3;
    grid-row: 2;
    /* height: 634px; */
    height: 297px;
}

.toys {
    grid-column: 3;
    grid-row: 3;
    height: 293px;
    margin-top: -328px;
}



/* --------------video section------------------------------------------- */
.video-section {
    width: 100%;
    height: 577px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.video-container {
    width: 100%;
    height: 577px;
    position: relative;
    /*    background: url("https://images.unsplash.com/photo-1615529182904-14819c35db37?w=1440&h=577&fit=crop")
        center/cover no-repeat; */
}

.video-overlay {
    /* Path fixed: CSS is in `css/`, images are in `images/` */
    /* background-image: url("../images/banner/video%20banner.png"); */
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Tint/Filter overlay so the background image appears filtered */
.video-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    /* change to taste: rgba(0,0,0,0.35) darkens */
    z-index: 1;
    pointer-events: none;
}

.video-overlay > * {
    position: relative;
    z-index: 2;
    /* place text and buttons above the overlay */
}

.video-title {
    font-family: var(--text-font-family-third);
    font-weight: 400;
    font-size: 54px;
    color: white;
    text-align: center;
    margin-bottom: 10px;
}

.video-description {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 400;
    /* use semi-transparent white (60%) so shadow remains full strength */
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 800px;
    text-transform: uppercase;
    line-height: 24px;
}

.play-button {
    position: absolute;
    width: 82.09px;
    height: 82.09px;
    background: rgba(255, 255, 255, 0.3);
    /* #FFFFFF at 30% */
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    /* Figma background blur 14 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    border: none;
    z-index: 3;
    /* sit above the overlay */
    outline: none;
}

.play-button:hover {
    background: rgba(161, 159, 159, 0.17);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.play-button::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 16px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
    border-radius: 5px;
}

/* Video player styles */
.video-player {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.video-player.active {
    display: block;
}

/* Responsive */

/* -------------------------------------------Blogs-post -----------------*/
.blog-img-container {
    width: 307px;
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
}

.blog-img-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-discription {
    font-family: var(--text-font-family-secondary);
    font-size: var(--text-font-size);
    color: var(--color-gray);
    margin: 0;
    margin-bottom: 15px;
    min-height: 63px;
    max-height: 63px;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card a {
    text-decoration: none;
}

.blog-card span {
    margin-left: 10px;
}

.view-All {
    font-family: var(--text-font-family);
    font-weight: 700;
    font-size: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 40px;
    padding-right: 20px;
    border: 1px solid var(--primary-olive);
    background: white;
}

.view-All a {
    text-decoration: none;
    color: var(--primary-olive);
}

.view-All span {
    margin-left: 24px;
}

.blog-name {
    margin-bottom: 16px;
    font-family: var(--text-font-family);
    font-size: 16px;
    color: var(--color-dark);
    text-decoration: none;
}

.blog-card {
    width: 307px;
    height: 355px;
    align-items: center;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.view-btn {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--primary-olive);
    text-decoration: underline;
    border: none;
    background: none;
}

.View-All {
    text-decoration: none;
    font-family: var(--text-font-family);
    padding: 12px 30px;
    border: 1px solid var(--primary-olive);
    color: var(--primary-olive);
}

/* ----------------------------------footer --------------------------*/
.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 80px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 62px;
}

.footer-bg {
    background-color: var(--primary-olive);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-socials img {
    width: 42px;
    height: 42px;
}

.menu,
.contact {
    color: white;
    font-family: var(--text-font-family);
    font-weight: 700;
    font-size: 14px;
}

.menu-view {
    width: 75px;
    height: 155px;
}

.Accountl-view {
    width: 130px;
    height: 110px;
}

.copyright {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-contact {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff99;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu_account {
    display: flex;
    gap: 94px;
}

.right-footer {
    display: flex;
    gap: 120px;
    flex-wrap: wrap;
}

/* -------------------------------All-Product.html------------------------------------------ */

/* Banner image */
.banner-img {
    min-height: 271px;
    /* matches your design */
    object-fit: cover;
    object-position: center 20%;
}

/* Title */
.banner-title {
    font-family: var(--text-font-family, serif);
    font-size: 34px;
    font-weight: 500;
    color: var(--color-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

/* ---------------------Sidebar filter---------------------------------- */

.filter-sidebar {
    width: 246px;
    /* exact like screenshot */
    margin-right: 20px;
    margin-left: 30px;
    margin-top: 30px;
    font-family: "Inter", sans-serif;
    border: none !important;
}

.filter-title {
    width: 100%;
    background: none;
    border: none;
    font-family: var(--text-font-family);
    font-size: var(--text-font-size);
    color: var(--color-dark);
    font-weight: 700;
    display: flex;
    padding: 20px 0;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-top: 1px solid #21252933;
}

/* Rotate arrow when filter is expanded */
.filter-title .arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.filter-title[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
}

.filter-title.static {
    cursor: default;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    cursor: pointer;
}

.filter-option input {
    width: 18px;
    height: 18px;
    accent-color: #5b5621;
}

.price-range {
    margin-top: 12px;
}

.price-range input {
    width: 100%;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 6px;
    color: #555;
}

.vertical-divider {
    width: 1px;
    background: #e5e5e5;
    height: 100%;
}

.check {
    font-family: var(--text-font-family-secondary);
    font-weight: 300;
}

.B_line {
    color: var(--color-gray) !important;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    color: #212529;
    cursor: pointer;
    margin-bottom: 14px;
}

.custom-checkbox input {
    display: none;
    /* removes default checkbox */
}

/* Checkbox square */
.checkbox-box {
    width: 24px;
    height: 24px;
    border: 1px solid #212529;
    border-radius: 4px;
    position: relative;
}

/* Light border when unchecked */
.custom-checkbox input:not(:checked) + .checkbox-box {
    border-color: #cfcfcf;
}

/* Tick mark */
.custom-checkbox input:checked + .checkbox-box::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 7px;
    top: 6px;
    left: 6px;
    opacity: 1;
    border-width: 0 0 1px 1px;
    /* tick shape */
    transform: rotate(-45deg);
    border-left: 2px solid #212529;
    border-bottom: 2px solid #212529;
}

.label-text {
    text-wrap: nowrap;
    font: 14px var(--text-font-family-secondary);
    font-weight: 300;
    user-select: none;
}

.price-slider {
    position: relative;
}

.slider-container {
    position: relative;
    left: 12px;
    height: 40px;
    max-width: 226px;
    width: 100%;
    margin-bottom: 30px;
}

.slider-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: #757a80;
    border-radius: 2px;
    opacity: 0.3;
}

.slider-range {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: var(--primary-olive);
    border-radius: 2px;
}

.slider-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid #5a5a3d;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-handle::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #5a5a3d;
    border-radius: 50%;
}

.slider-handle:hover {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.slider-handle.active {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15);
}

input[type="range"] {
    display: none;
}

.price-values {
    color: #666;
    font-size: 14px;
}

.price-values span {
    font-weight: 500;
}

/* -------------------- Product Grid View -------------------- */
.cross-svg {
    width: 28px;
    height: 28px;
    font-size: 12px;
    cursor: pointer;
}

.filter-bar {
    max-width: 650px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: 1px;
}

.ft-name {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-dark);
}

#activeFilters::-webkit-scrollbar {
    height: 1px;
}

#activeFilters::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

#activeFilters::-webkit-scrollbar-track {
    background: transparent;
}

.product-grid-container {
    width: 1200px;
    /* allow full width */
    max-width: none;
    /* 🔥 remove 1200px cap */
    padding: 21px 20px 20px;
    margin-bottom: 80px;
    border-left: 1px solid var(--border-light);
}

.product-img {
    width: 246px;
    height: 234px;
    display: flex;
    /* important */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 24px;
}
.product_list_view {
    gap: 22px;
}
.P_list_img {
    width: 119px;
    height: 119px;
    object-fit: cover;
}
.P_list_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.PL_name {
    max-width: 500px;
    text-wrap: wrap;
    font-family: var(--text-font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: var(--color-dark);
    text-align: start;
}
.PL_price {
    font-family: var(--text-font-family-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--primary-olive);
    text-align: start;
}
.PL_container {
    gap: 20px;
}
.product_info {
    gap: 8px;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* or cover */
}

.grid-product-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.topbar-filter-btn {
    border-radius: 50px;
    height: 40px;
    background: rgba(117, 122, 128, 0.1);
}

/* ===============================
   PRODUCTS AREA (MAIN CONTAINER)
   =============================== */
.products-area {
    max-width: 1200px;
    padding: 21px 20px 20px;
    margin-bottom: 80px;
}

/* ===============================
   PRODUCT GRID
   =============================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 24px;
    margin-bottom: 50px;
}

/* ===============================
   NO RESULTS MESSAGE (CONTAINER)
   =============================== */
.no-results-message {
    width: 100%;
    min-height: 519px;

    display: none;
    /* hidden by default */
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* active state */
.no-results-message.active {
    display: flex;
    /* 🔥 replaces grid */
}

/* ===============================
   NO RESULTS MESSAGE (INNER AREA)
   =============================== */
.no-results-message-area {
    width: 100%;
    max-width: 420px;
    /* limits text width only */
    margin: 0 auto;
}

/* ===============================
   TEXT STYLES
   =============================== */
.no-results-message h3 {
    font-size: 20px;
    color: var(--color-dark);
}

.no-results-message p {
    font-family: var(--text-font-family-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--color-gray);
}

.grid-product-card {
    max-width: 246px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.btn-container {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    width: 100%;
}

.cart-btn {
    font: 12px var(--text-font-family-secondary);
    text-align: center;
    color: var(--color-dark);
    padding: 10px 26px;
    font-size: 12px;
    border: 1px solid rgba(33, 37, 41, 0.1);
    background-color: transparent;
    text-wrap: nowrap;
}

.buy-btn {
    font: 12px var(--text-font-family-secondary);
    text-align: center;
    padding: 10px 26px;
    border: 1px solid rgba(33, 37, 41, 0.1);
    background-color: transparent;
    font-size: 12px;
    text-wrap: nowrap;
    color: var(--color-dark);
    width: 100%;
}

.results-count {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-gray);
    margin-right: 14px;
}

.toogle-btn1 {
    height: 36px;
    padding: 6px;
    background: white;
    border: none;
}

.view-toggle {
    height: 40px;
    background: rgba(117, 122, 128, 0.1);
    padding: 2px;
    margin-right: 8px;
}

.toogle-btn2 {
    height: 36px;
    padding: 6px;
    border: none;
    background: transparent;
}

.dropdown-toggle-btn {
    border: 1px solid rgba(33, 37, 41, 0.1);
    color: var(--color-dark);
}

.dropdown-list .dropdown-item {
    font-family: var(--text-font-family-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    cursor: pointer;
}

.view-toggles {
    padding: 2px;
    background-color: rgba(117, 122, 128, 0.1);
}

.pagination-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 6px;
    border-radius: 4px;
    height: 30px;
}

.page-btn {
    font: 14px var(--text-font-family-secondary);
    font-weight: 300;
    min-width: 30px;
    height: 30px;
    border: 1px solid #e5e7eb;
    background: transparent;
    font-size: 14px;
    color: var(--color-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover {
    background: #f3f4f6;
}

.page-btn.active {
    border: 1px solid var(--color-olive);
    color: var(--color-olive);
    font-weight: 500;
}

.page-btn.arrow {
    font-size: 18px;
    border: 1px solid rgba(33, 37, 41, 0.1);
    color: #6b7280;
}

.page-dots {
    padding: 0 6px;
    font-size: 16px;
    color: #6b7280;
    border: 1px solid rgba(33, 37, 41, 0.1);
}

/* Responsive Grid */

/* Large tablets */
/* Mobile */

/*-=----------- Product-detail-page----------- */
.breadcrumb-bar {
    padding: 20px 60px;
    background: var(--color-bglight);
    font-size: 14px;
}

.txt-l {
    color: var(--color-gray);
    font-size: 14px;
}

.txt-d {
    color: var(--color-dark);
    font-size: 14px;
}

.path-breadcrumb {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
}

.path-breadcrumb a,
.breadcrumb-main,
.breadcrumb-sub {
    text-decoration: none;
}

.path-breadcrumb span {
    color: var(--color-gray);
}

.product-detail-section {
    margin: 40px 100px 120px 60px;
}

.Thumbnails-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.thumb-img {
    width: 69px;
    height: 66px;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    object-fit: contain;
}

.thumb-img.active {
    filter: none;
    opacity: 1;
}

.thumb-img.blur {
    filter: blur(0.5px) grayscale(20%);
    opacity: 0.8;
}

.main-product-img-box {
    margin-left: 30px;
    margin-right: 40px;
}

.main-product-img {
    max-width: 538px;
    height: 510px;
    width: 100%;
}

.Product-info-box {
    max-width: 602px;
}

.row-1 {
    margin-bottom: 30px;
}

.Qty {
    font-family: 14px var(--text-font-family-secondary);
    color: #403a3a !important;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
}

.category-badge {
    background: #5e5a1b1a;
    font-family: var(--text-font-family-secondary);
    color: var(--primary-olive);
    font-size: 16px;
    padding: 6px 12px;
    display: inline-block;
}

.sku {
    font-size: 14px;
    font-family: var(--text-font-family-secondary);
    color: var(--color-gray);
}

.name_price {
    margin-bottom: 40px;
}

.product_name {
    font-family: var(--text-font-family);
    font-weight: 400;
    font-size: 26px;
    line-height: 125%;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.product_price {
    font-family: var(--text-font-family-secondary);
    font-size: 16px;

    color: var(--primary-olive);
}

.Stock-line-box {
    color: var(--color-gray);
    margin-bottom: 40px;
}

.stock-line-bar {
    width: 100%;
    height: 4px;
    background: #ededed;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 6px;
    margin-bottom: 6px;
}

.stock-line-fill {
    height: 100%;
    background: #6b5e2e;
    border-radius: 3px 0 0 3px;
    transition: width 0.3s;
}

.qty-box span {
    font: 14px var(--text-font-family-secondary);
    font-weight: 700;
}

.stock-line {
    height: 2px;
    background: #6b5e2e;
    width: 120px;
}

.Qty-txt {
    font-family: var(--text-font-family-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 15px;
    color: var(--primary-gray);
}

.qty-box {
    display: flex;
    align-items: center;
    background-color: rgba(117, 122, 128, 0.05);

    width: 128px;
    justify-content: space-around;
    padding: 16px 15px;
}

.qty-box button {
    border: none;
    background: transparent;
    font-size: 18px;
}

.ATC {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    padding: 19px 70px;
    border: 1px solid var(--color-dark);
    background: white;
    text-wrap: nowrap;
}

.row-3 {
    gap: 20px;
    margin-bottom: 35px;
}

.buy-now {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: white;
    padding: 20px 79px;
    background-color: var(--color-olive);
    border: none;
    text-wrap: nowrap;
}

.buy-now:hover {
    background: #4a4a1c;
    color: #fff;
}

.tab-view {
    display: flex;
    gap: 40px;
    margin-bottom: 16px;
    margin-top: 28px;
}

.tab-btn {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    background: none;
    border: none;
    padding: 0 0 9px;
    font-size: 14px;
    border-bottom: 1px solid transparent;
    color: var(--color-dark);
}

.tab-btn.active {
    border-color: var(--color-olive);
    color: var(--color-olive);
}

.pro-info {
    font-family: var(--text-font-family-secondary);
    font-size: 12px;
    color: var(--color-gray);
    line-height: 21px;
}

/* Tab Content Containers */
.tab-content-container {
    margin-top: 16px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
    width: 100%;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reviews Tab Styling */
.reviews-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(33, 37, 41, 0.1);
}

.reviews-title {
    font-family: var(--text-font-family);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.reviews-summary {
    display: flex;
    align-items: center;
}

.rating-overview {
    display: flex;
    align-items: center;
    gap: 12px;
}

.average-rating {
    font-family: var(--text-font-family);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-olive);
}

.stars-display {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 20px;
    color: #e5e5e5;
}

.star.filled {
    color: #fbbf24;
}

.star.half {
    background: linear-gradient(90deg, #fbbf24 50%, #e5e5e5 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.total-reviews {
    font-family: var(--text-font-family-secondary);
    font-size: 12px;
    color: var(--color-gray);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    padding: 20px;
    background: rgba(117, 122, 128, 0.02);
    border: 1px solid rgba(33, 37, 41, 0.08);
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
}

.review-date {
    font-family: var(--text-font-family-secondary);
    font-size: 12px;
    color: var(--color-gray);
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    font-size: 16px;
}

.review-text {
    font-family: var(--text-font-family-secondary);
    font-size: 12px;
    color: var(--color-gray);
    line-height: 21px;
    margin: 0;
}

/*-=----------- Blog-page----------- */
.blog-page {
    margin-top: 100px;
    margin-bottom: 100px;
}

/*---------- Cart-page------- */
.cat_name {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-olive);
    padding: 4px 8px;
    background: #5e5a1b1a;
    display: inline;
    width: fit-content;
}

.headl {
    font-family: var(--text-font-family);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 42px;
}

.prod_name {
    font-family: var(--text-font-family);
    font-size: 14px;
    color: var(--color-dark);
    margin-bottom: 7px;
    color: #2f2423;
}

.product-price-cart {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--primary-olive);
}

.left_cart {
    padding-right: 25px;
    border-right: 1px solid rgba(33, 37, 41, 0.1);
    margin-right: 41px;
}

.product_list {
    width: 535px;
}

.cart-item {
    width: 100%;
}

.cart_qty-box {
    display: flex;
    align-items: center;
    background-color: rgba(117, 122, 128, 0.05);
    font-family: var(--text-font-family-secondary);
    font-weight: 700;
    line-height: 100%;
    width: 128px;
    justify-content: space-around;
    padding: 12px 15px;
}

.ctqty-bin {
    gap: 22px;
}

.ctqty-bin button {
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0;
    transition: opacity 0.2s ease;
}

.ctqty-bin button:hover {
    opacity: 0.7;
}

.ctqty-bin button img {
    display: block;
}

.CartTotal {
    width: 372px;
}

.price-detail {
    gap: 22px;
    margin-top: 37px;
    margin-bottom: 50px;
}

.coupon-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.coupon-input {
    width: 271px;
    padding: 6px 12px;
    border: 1px solid rgba(33, 37, 41, 0.1);
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-gray);
}

.Applt-btn {
    padding: 6px 25px;
    border: 1px solid var(--color-dark);
    color: var(--color-dark);
    background: white;
    font-family: var(--text-font-family-secondary);
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
}

.final-price {
    margin-top: 24px;
    margin-bottom: 30px;
}

.info-left {
    font-family: var(--text-font-family-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--color-dark);
}

.info-left2 {
    font-family: var(--text-font-family-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--color-olive);
}

.couponC {
    font-family: var(--text-font-family-secondary);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-dark);
}

.info-leftB {
    font-family: var(--text-font-family-secondary);
    font-size: 16px;
    line-height: 100%;
    color: var(--color-dark);
    font-weight: 500;
}

.F-price {
    font-family: var(--text-font-family-secondary);
    font-size: 26px;
    color: var(--color-dark);
    font-weight: 500;
}

.lefthr {
    margin-top: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(33, 37, 41, 0.1);
}

hr {
    padding: 0;
    margin: 0;
}

.checkout-btn {
    text-wrap: nowrap;
    padding: 13px 116px;
    background: var(--color-olive);
    border: none;
    color: white;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
}

.cart-detail-section {
    margin: 100px 40px 120px 40px;
}

/* Empty Cart State */
.empty-cart-container {
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.empty-cart-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 500px;
}

.empty-cart-icon {
    margin-bottom: 30px;
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.empty-cart-title {
    font-family: var(--heading-font-family);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.empty-cart-text {
    font-family: var(--text-font-family);
    font-size: 16px;
    color: #757a80;
    margin-bottom: 32px;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.empty-cart-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary-olive);
    color: white;
    font-family: var(--text-font-family);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.empty-cart-btn:hover {
    background: #4d4916;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 90, 27, 0.3);
    color: white;
}

.empty-cart-btn:active {
    transform: translateY(0);
}

/*---------------------- Checkout-page ----------------*/
.Checkout-detail-section {
    margin: 100px 40px 120px 40px;
}

.Order_Summary {
    width: 460px;
    max-width: 460px;
    /*   min-height: 574px; */
    padding: 20px;
    margin-right: 20px;
    align-self: flex-start;
    height: fit-content;
}

/* Responsive: on narrower screens allow the summary to size naturally */
.ords {
    width: 100%;
    font-family: var(--text-font-family);
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 16px;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 20px;
    border-bottom: #21252933 1px solid;
}

.order-summary-main {
    height: fit-content;
    max-width: 459px;
    background: var(--color-bglight);
    border: 1px solid rgba(33, 37, 41, 0.1);
}

.editbtn {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-dark);
    background: var(--color-bglight);
    border: none;
    text-decoration: underline;
    cursor: pointer;
}

.item-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.list-info {
    width: 100%;
}

.dashed {
    border-top: #212529 1px dashed;
    margin: 20px 0;
}

.price-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 330px;
    margin-left: auto;
}

.price-box2 {
    max-width: 330px;
    margin-left: auto;
}

.cus-info {
    max-width: 472px;
    margin-left: 20px;
}

.input-checkout {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid rgba(33, 37, 41, 0.1);
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-gray);
}

.cus-info-title {
    font-family: var(--text-font-family);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 19px;
}

.character {
    color: var(--color-gray) !important;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("../images/icons/dropdown\ arrow.svg");
    /* your svg path */
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;

    padding-right: 40px;
}

.l2 {
    margin-top: 5px;
    font-family: var(--text-font-family-secondary);
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: var(--color-dark);
}

.cushr {
    border-top: var(--border-light) 1px solid;
    margin: 20px 0;
}

.dashed_hr {
    border-top: #212529 1px dashed;
    margin: 20px 0;
}

.l3 {
    margin-bottom: 6px;
    font-family: var(--text-font-family-secondary);
    font-weight: 500;
    font-size: 12px;
}

.l5 {
    margin-bottom: 4px;
    font-family: var(--text-font-family-secondary);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
}

#dropdownSelected {
    font-family: var(--text-font-family-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.dropdown-toggle-btn-co {
    font-family: var(--text-font-family-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(33, 37, 41, 0.1);
    color: var(--color-gray);
}

.cus-info2 {
    gap: 12px;
}

.dropdown-list {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    /* 👈 SAME AS INPUT */
    min-width: 100%;
    max-height: 180px;
    overflow-y: auto;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    z-index: 10;
    box-sizing: border-box;
    scrollbar-width: thin;
}

.r2 {
    gap: 12px;
}

/* .r2 input {
    width: 230px;
} */

.r2 .custom-dropdown-co {
    width: 230px;
}

.custom-dropdown-co span {
    font-size: 14px;
}

.l4 {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-dark);
    font-weight: 300;
}

.txtarea {
    width: 100%;
    height: 90px;
    padding: 9px 12px;
    border: 1px solid rgba(33, 37, 41, 0.1);
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-gray);
    margin-top: 19px;
}

.place-order-btn {
    text-wrap: nowrap;
    width: 100%;
    padding: 13px 116px;
    background: var(--color-olive);
    border: none;
    color: white;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
    margin-top: 19px;
}

/* Price slider handle label below nob */
.slider-handle {
    position: absolute;
    /* existing handle styles assumed here */
}

.slider-price {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 14px;
    color: var(--color-dark);
    font-family: var(--text-font-family-secondary);
    pointer-events: none;
}

/* ------Contact-us--------- */

.contact-section {
    margin: 143px 40px;
}

.contact-us-form {
    width: 100%;
    max-width: 472px;
    flex: 0 0 472px;
    /* Important when using flex */
}

.contact-title {
    font-family: var(--text-font-family);
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(33, 37, 41, 0.05);
    margin-bottom: 18px;
}

.Contact-item-list {
    width: 100%;
}

.input-contact {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid rgba(33, 37, 41, 0.1);
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 16px;
}

.cont-info-header {
    width: 100%;
    padding: 21px 26px 21px 26px;

    font-family: var(--text-font-family);
    font-weight: bold;
    font-size: 18px;
    border-bottom: 1px solid rgba(33, 37, 41, 0.05);
}

.Contact-info {
    width: 100%;
    max-width: 469px;
    flex: 0 0 469px;
    background: var(--color-bglight);
    height: fit-content;
}

.contact-list {
    padding: 15px 26px 33px 26px;
    font-family: var(--text-font-family-secondary);
    font-size: 16px;
    color: var(--primary-dark);
}

.contact-container {
    gap: 40px;
    flex-wrap: wrap; 
    justify-content: center;
}

/* ------Blog-Section------- */

.blog-detail-section {
    padding: 78px 0 116px 0;
}

.blog-title {
    font-family: var(--text-font-family);
    font-size: 36px;
    color: var(--color-dark);
    margin-bottom: 44px;
}

.blog_name {
    font-family: var(--text-font-family-secondary);
    font-size: 18px;
    margin-right: 12px;
    align-items: center;
}

.blog_date {
    font-family: var(--text-font-family-secondary);
    font-size: 12px;
    color: var(--color-gray);
}

.blog_line {
    font-size: 12px;
    font-family: var(--text-font-family-secondary);
    color: var(--color-dark);
    margin-top: 6px;
}

.follow_btn {
    padding: 6px 24px;
    border: 1px solid var(--color-gray);
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-dark);
    background: none;
    height: fit-content;
}

.blog_detail {
    max-width: 746px;
    width: 100%;
    align-items: center;
    margin-bottom: 38px;
}

.blog-img-sec {
    width: 100%;
    max-width: 730px;
    justify-content: center;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 389px;
}

.blog-icon {
    display: flex;
    gap: 40px;
    margin-bottom: 12px;
    align-items: center;
    font-family: var(--text-font-family-secondary);
    font-size: 16px;
    line-height: 26px;
    color: var(--color-gray);
}

.img-caption {
    font-family: var(--text-font-family);
    font-size: 14px;
    color: var(--color-dark);
    margin-top: 12px;
}

.blog_discription {
    font-family: var(--text-font-family-secondary);
    font-size: 12px;
    line-height: 21px;
    color: var(--color-gray);
    max-width: 730px;
    margin-top: 38px;
    gap: 12px;
    text-align: justify;
}

.blog-container {
    max-width: 746px;
}

.blog-card-containner {
    display: flex;
    max-width: 1000px;
    width: 100%;
    padding: 0 20px;
}

.recent-post-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
    font-family: var(--text-font-family);
    font-size: 34px;
}

.blog-card-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    /* important */
}

.blog-card-scroll::-webkit-scrollbar {
    display: none;
}

.arrow-wrapper {
    margin-top: 57px;
}

.arrow-pagination-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border-radius: 4px;
    height: 30px;
}

/*------- headerSearchbar----------- */

.search-bar {
    padding: 22px 22px;
}

.search-close-btn {
    position: absolute;
    right: 25px;
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
    border-left: 1px solid rgba(33, 37, 41, 0.1);
    padding-left: 24px;
}

/* ==============================
   SEARCH WRAPPER
============================== */
.search-wrapper {
    width: 100%;
}

/* ==============================
   SEARCH CONTAINER
============================== */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    /* max-width: 940px; */
    /* width: 100%; */
    width: 75%;
}

/* ==============================
   SEARCH INPUT
============================== */
.search-bar {
    width: 100%;
    padding: 22px 40px;
    padding-right: 100px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
}

/* ==============================
   LEFT SEARCH ICON
============================== */
.search-icon {
    position: absolute;
    left: 12px;
    display: flex;
    align-items: center;
    height: 100%;
    pointer-events: none;
}

.search-icon img {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

/* ==============================
   RIGHT CLOSE ICON
============================== */
.search-close {
    position: absolute;
    right: 25px;
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
    border-left: 1px solid black;
    padding-left: 24px;
}

/* ==============================
   RESPONSIVE
============================== */

nav {
    position: relative;
}

.search-wrapper {
    position: absolute;
    top: 0;
    /* left: -50px; */
    width: 100%;
    height: 100%;

    display: none;
    align-items: center;
    padding: 0 40px;
    z-index: 999;
}

.search-wrapper.active {
    display: flex;
    /* max-width: 1040px; */
}

/* ---------Search Resuplt -Page ----------*/

.search-sec {
    margin-top: 119px;
    /*  margin-bottom: 50px; */
    padding: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.search-title {
    font-family: var(--text-font-family);
    font-size: 34px;
    color: var(--color-dark);
    margin-bottom: 85px;
}

.search-box {
    width: 100%;
    /* takes full available width */
    max-width: 512px;
    /* but never exceeds 512px */
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 20px;
}

/* Input */
.search_input {
    flex: 1;
    height: 72px;
    padding: 0 20px;
    border: none;
    outline: none;
    font-size: 18px;
    color: #333;
}

/* Button */
.search_btn {
    width: 72px;
    height: 72px;
    border: none;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-left: 1px solid #cbd5e1;
}

.search_btn img {
    width: 22px;
    height: 22px;
    opacity: 0.7;
}

/* Hover effect */
.search_btn:hover {
    background: #e5e7eb;
}

.search_empty {
    margin-bottom: 194px;
}

.search_empty_text {
    font-family: var(--text-font-family-secondary);
    color: var(--color-gray);
    margin-top: 50px;
}

/*--------- Order_detail-page ----------*/

.order-sec-continer {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 65px 65px 120px 65px;
    display: flex;
    gap: 20px;
}

.sidebar-item {
    padding: 24px 20px;
    font-family: var(--text-font-family-secondary);
    color: var(--color-olive);
    border: 1px solid var(--border-light);
    cursor: pointer;
}

.sidebar-item.active {
    padding: 24px 20px;
    font-family: var(--text-font-family-secondary);
    color: var(--color-olive);
    border: 2px solid var(--color-olive);
}

.sidebar-item span {
    margin-right: 24px;
}

.side-bar {
    max-width: 339px;
    display: flex;
    flex-direction: column;
    gap: 21px;
    width: 100%;
}

.o-header {
    font-family: var(--text-font-family);
    font-size: 30px;
    color: var(--color-dark);
    padding: 21px 28px;
    width: 100%;
    border: 1px solid var(--border-light);
    border-bottom: none;
}

.order_table {
    width: 100%;
    min-width: 679px;
    border: 1px solid var(--color-bglight);
}

.col_name {
    font-family: var(--text-font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #969693;
}

.order_table td {
    padding: 18px;
    border: 1px solid var(--border-light);
}

.order_table thead {
    background: #5e5a1b1a;
    font-family: var(--text-font-family);
    font-weight: bold;
}

.order_table tbody tr td:first-child {
    font-family: var(--text-font-family-secondary);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-dark);
}

.order_table tbody tr td:nth-child(2),
.order_table tbody tr td:nth-child(4) {
    font-family: var(--text-font-family-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--color-dark);
    text-wrap: nowrap;
}

.view_item_btn,
.back-to-orders {
    padding: 7px 16px;
    border: none;
    background: var(--color-olive);
    color: white;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
    text-wrap: nowrap;
}

.btn_processing {
    padding: 2px 12px;
    border: none;
    background: var(--color-bg-orange);
    color: var(--color-orange);
    border-radius: 40px;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
    height: fit-content;
}

.btn_pending {
    padding: 2px 12px;
    border: none;
    background: #ffe5e5;
    color: #d7263d;
    border-radius: 40px;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
    height: fit-content;
}

.btn_onhold {
    padding: 2px 12px;
    border: none;
    background: #fff7e6;
    color: #ff9900;
    border-radius: 40px;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
    height: fit-content;
}

.btn_completed {
    padding: 2px 12px;
    border: none;
    background: #e6ffe6;
    color: #27ae60;
    border-radius: 40px;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
    height: fit-content;
}

.btn_cancelled {
    padding: 2px 12px;
    border: none;
    background: #f8e6ff;
    color: #a259b6;
    border-radius: 40px;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
    height: fit-content;
}

.btn_refunded {
    padding: 2px 12px;
    border: none;
    background: #e6f7ff;
    color: #3498db;
    border-radius: 40px;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
    height: fit-content;
}

.btn_failed {
    padding: 2px 12px;
    border: none;
    background: #fff0e6;
    color: #e67e22;
    border-radius: 40px;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
    height: fit-content;
}

.btn_draft {
    padding: 2px 12px;
    border: none;
    background: #f2f2f2;
    color: #7f8c8d;
    border-radius: 40px;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
    height: fit-content;
}

.btn_delivered {
    padding: 2px 12px;
    border: none;
    background: var(--color-bg-slight);
    color: var(--color-lolive);
    border-radius: 40px;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
}

.view_product_btn {
    padding: 17px 52px;
    border: none;
    background: var(--color-olive);
    color: white;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
}

.order-empty-container {
    min-height: 671px;
}

.empty-orders {
    /*  max-width: 250px; */
    margin: 0 auto;
}

/* .empty-orders img {
    width: 100%;
    height: auto;
} */

.text_box {
    font-family: var(--text-font-family-secondary);
    color: var(--color-gray);
    text-align: center;
}

.order_detail_header {
    padding: 19px 28px 28px 28px;
}

.Address_detail_header {
    padding: 23px 28px;
}

.order_id {
    font-family: var(--text-font-family);
    font-size: 34px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-right: 22px;
}

.o_date {
    font-family: var(--text-font-family-secondary);
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    color: var(--color-dark);
}

.o_date span {
    font-family: var(--text-font-family-secondary);
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    color: var(--primary-gray);
}

.order_detail_full {
    border: 1px solid var(--border-light);
    padding-bottom: 61px;
}

.detail_box {
    margin: 20px;
    margin-bottom: 37px;
    border: 1px solid var(--border-light);
}

.d_head {
    font-family: var(--text-font-family);
    font-weight: bold;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    padding: 9px 18px;
    border-bottom: 1px solid var(--border-light);
}

.p_info {
    border-bottom: 1px solid var(--border-light);
}

.p_info_card {
    padding: 12px 20px 12px 18px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
}

.p_name {
    font-family: var(--text-font-family);
    font-size: 14px;
    color: var(--color-dark);
    margin-top: 13px;
}

.p_price {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--primary-olive);
}

.p_Qty {
    color: #2f2423;
    font-family: var(--text-font-family);
    font-size: 12px;
}

.py_info {
    padding: 8px 20px 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.py_title {
    font-family: var(--text-font-family-secondary);
    font-weight: 600;
    font-size: 14px;
}

.py_status {
    display: flex;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-paid);
}

.py_t_info {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-dark);
}

.py_small {
    font-family: var(--text-font-family-secondary);
    font-size: 10px;
}

.bill_ship_box {
    padding: 0 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.Billing_box {
    padding-bottom: 25px !important;
    flex: 1;
    border: 1px solid var(--border-light);
    padding: 9px 18px;
    max-width: 446px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: fit-content;
}

.Address_Billing_box {
    border: 1px solid var(--border-light);
    max-width: 446px;
    width: 100%;
}

.py_title2 {
    font-family: var(--text-font-family);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.b_name {
    font-family: Inter;
    font-weight: 700;
    font-size: 14px;
}

.b_detail {
    font-family: Inter;
    font-size: 14px;
    color: var(--color-dark);
}

.Addresses_detail {
    border: 1px solid var(--border-light);
    min-width: 536px;
}

.t_title {
    max-width: 214px;
}

.bill_ship_box2 {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Billing Table */
.Billing_table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border: 1px solid var(--border-light);
}

.Billing_table th,
.Billing_table td {
    padding: 10px 18px;
    border: 1px solid var(--border-light);
}

.Billing_title {
    font-size: 20px;
    font-family: var(--text-font-family);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.billing_address_box {
    border: 1px solid var(--border-light);
    padding: 16px;
    max-width: 328px;
    width: 100%;
    min-width: 328px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: fit-content;
    font-size: 14px;
    font-family: var(--text-font-family-secondary);
    font-weight: 400;
    line-height: 125%;
}

.Billing_table .label {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
}

.Billing_table .value {
    text-align: right;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-dark);
}


.edit {
    font-family: var(--text-font-family-secondary);
    font-size: 12px;
    text-decoration: underline;
    color: var(--color-dark) !important;
    font-weight: 400;
    text-decoration: none;
}
.delete {
    text-decoration: none;
}

.Shipping_table {
    max-width: 461px;
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border: 1px solid var(--border-light);
}

.Shipping_table th,
.Shipping_table td {
    padding: 10px 18px;
    border: 1px solid var(--border-light);
}

.Shipping_table thead {
    font-size: 18px;
    font-family: var(--text-font-family);
    font-weight: 700;
    color: var(--color-dark);
    background: #5e5a1b1a;
}
.Shipping_table thead {
    font-size: 18px;
    font-family: var(--text-font-family);
    font-weight: 700;
    color: var(--color-dark);
    background: #5e5a1b1a;
}

.Shipping_table .label {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
}

.Shipping_table .value {
    text-align: right;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-dark);
}

.Personal_detail {
    border: 1px solid var(--border-light);
}

.peronal_detail_header {
    padding: 17px 20px 21px 20px;
    font-family: var(--text-font-family);
    font-size: 34px;
    border-bottom: 1px solid var(--border-light);
}
.profile_img_contianer {
    width: 97px;
    height: 97px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}
.profile_pic_row a {
    font-family: var(--text-font-family-secondary);
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-decoration: underline;
    text-decoration-style: solid;
    color: var(--primary-dark);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.profile_img_contianer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pass_chg {
    font-family: var(--text-font-family);
    font-weight: 700;
    font-size: 18px;
    margin-top: 19px;
    margin-bottom: 19px;
}

.passwd {
    margin-bottom: 19px;
    position: relative;
}

.save_D_btn {
    padding: 15px 95px;
    background: var(--color-olive);
    color: white;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
    border: none;
    margin-top: 63px;
}

.eye_icon {
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 15px;
}

.l6 {
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-dark);
}

/*------------- Edit Billing page------------- */
.Edit_Section {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 80px 72px 80px;
}

.Edit_form {
    border: 1px solid var(--border-light);
}

.Edit_header {
    padding: 20px;
    font-family: var(--text-font-family);
    font-weight: bold;
    font-size: 34px;
    border-bottom: 1px solid var(--border-light);
}

.form_fields {
    padding: 37px 20px 62px 20px;
    width: 100%;
}

.save_B_btn {
    padding: 15px 95px;
    background: var(--color-olive);
    color: white;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    font-weight: 500;
    border: none;
    margin-top: 30px;
}

/* ---L--ogout modal */
/* Overlay */
.logout-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 20px;
}

/* Modal Box */
.logoutmodal {
    padding: 60px 22px 34px 22px;
    border: 1px solid var(--primary-olive);
    max-width: 504px;
    width: 100%;
    background: white;
}

/* Image */
.logout_img {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* Text */
.modal_txt {
    font-family: var(--text-font-family-secondary);
    font-weight: 500;
    color: var(--color-gray);
    margin-bottom: 40px;
    text-align: center;
}

/* Buttons container */
.modal-btns {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

/* Buttons */
#cancelLogout,
#cancelDeleteAddress,
#confirmLogout,
#confirmDeleteAddress {
    flex: 1;
    padding: 14px;
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    border-radius: none !important;
}

#cancelLogout,
#cancelDeleteAddress {
    border: 1px solid var(--color-olive);
    color: var(--color-olive);
    background: transparent;
    font-weight: 500;
}

#confirmLogout,
#confirmDeleteAddress {
    border: 1px solid var(--color-olive);
    background: var(--color-olive);
    color: white;
    font-weight: 500;
}

/*--------- Login_page------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.login {
    font-family: "Merriweather", serif;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0%;
    overflow-x: hidden;
    background-color: #e9f1be;
}

.container_login {
    display: flex;
    justify-content: center;
    min-height: 100dvh;
    margin: 0 auto;
}

.carousel {
    flex: 1;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 15px;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.carousel-slide.active {
    opacity: 1;
}

/* Different background images for each slide */
.carousel-slide:nth-child(1) {
    background-image: url("assets/images/img1.png");
}

.carousel-slide:nth-child(2) {
    background-image: url("assets/images/img2.png");
}

.carousel-slide:nth-child(3) {
    background-image: url("assets/images/img3.png");
}

.slide-content {
    position: absolute;
    bottom: 40px;
    left: 50px;
    text-align: left;
    color: white;
    z-index: 2;
}

.slide-content h1 {
    font-family: "Merriweather", serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: 0%;
    margin-bottom: 40px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute !important;
    bottom: 90px !important;
    right: 40px !important;
    left: unset !important;
    z-index: 3;
    display: flex;
    gap: 12px;
    margin: 0 !important;
}
.dot {
    width: 30px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.dot.active {
    background-color: rgba(255, 255, 255, 1);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Navigation Arrows */
.prev,
.next {
    display: none;
}

/* Info Section */
.info-section {
    position: relative;
    background-color: #e9f1be;
    width: 696px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 50px;
    padding: 10px;
    justify-content: space-between;
}

.coming-soon-badge {
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    position: absolute;
    top: 24px;
    right: 60px;
    width: 200px;
    height: 50px;
    opacity: 1;
    background-color: #5e5a1b;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    display: flex;

    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    align-items: center;
    text-align: center;
    color: var(--text-color);
}
.logo-desktop {
    margin-bottom: 37px;
}

.logo-mobile {
    display: none;
}

.logo svg {
    margin-bottom: 20px;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.tagline {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.description {
    margin: 10px;
    line-height: 1.8;
    color: var(--text-color);
}

.description p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.meanwhile {
    font-size: 16px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 40px;
}

.social-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border: 1px solid var(--text-color);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    background-color: transparent;
}

.social-btn:hover {
    background-color: #f5f3d09d;
    color: var(--text-color);
}

.footer {
    padding-bottom: 20px;
    font-family: var(--text-font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: var(--color-olive);
    position: relative;
}

.footer p {
    margin: 2px 0;
}



.signin_container {
    padding: 0 20px;
    max-width: 512px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.sign_header {
    line-height: 100%;
    width: 100%;
    font-family: Merriweather;
    font-weight: 700;
    color: #212529;
    margin-bottom: 18px;
    text-align: start;
}

.input-login {
    /* margin-top: 11px; */
    width: 100%;
    padding: 9px 12px;
    border: 1px solid rgba(33, 37, 41, 0.1);
    font-family: var(--text-font-family-secondary);
    font-size: 14px;
    color: var(--color-gray);
    background: transparent;
}

.S_lab {
    line-height: 100%;
    margin-bottom: 14px;
    color: #212529;
    margin-bottom: 14px !important;
}

.sign_form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 10px;
}

.signUp_form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.forgot_btn {
    color: var(--color-olive);
    font-family: var(--text-font-family-secondary);
    font-size: 12px;
    text-decoration: underline;
    margin-left: auto;
    cursor: pointer;
}

.sign_btn {
    padding: 12px;
    color: white;
    background: var(--primary-olive);
    border: none;
    font: var(--text-font-family);
    font-size: 14px;
    font-weight: 400;
    /* margin-top: 23px; */
    margin-bottom: 20px;
    text-wrap: nowrap;
    text-align: center;
    text-decoration: none;
}
.sign_btn_header {
    padding: 14px 28px;
    color: white;
    background: var(--primary-olive);
    border: none;
    font-family: var(--text-font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    text-decoration: none;
    margin-left: 3px;
    text-wrap: nowrap;
}

.signUp_btn {
    padding: 12px;
    color: white;
    background: var(--primary-olive);
    border: none;
    font-family: var(--text-font-family);
    font-size: 14px;
    font-weight: 400;
    margin-top: 18px;
    margin-bottom: 20px;
    text-wrap: nowrap;
    text-align: center;
    text-decoration: none;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.divider span {
    color: var(--color-gray);
    font-size: 14px;
    font-family: var(--text-font-family);
    padding: 0 10px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgba(33, 37, 41, 0.05);
    opacity: 0.5;
}

.google_btn {
    padding: 9.5px;
    width: 100%;
    border: 1px solid rgba(33, 37, 41, 0.05);
    background: transparent;
    align-items: center;
    display: flex;
    justify-content: center;
    align-content: center;
    margin-bottom: 8px;
    font-family: var(--text-font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #030303;
}

.G_icon {
    margin-right: 10px;
    align-items: center;
}

.Forgotpass_container {
    max-width: 472px;
    width: 100%;
    margin: 0 auto;
    margin-top: 60px !important;
    padding: 0 20px;
}

.reset_container {
    max-width: 472px;
    width: 100%;
    margin: 0 auto;
    margin-top: 60px !important;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.forgot_header {
    width: 100%;
    font-family: Merriweather;
    font-weight: 700;
    color: #212529;
    margin-bottom: 14px;
    text-align: center;
}

.reset_header {
    width: 100%;
    font-family: Merriweather;
    font-weight: 700;
    color: #212529;
    /*  margin-bottom: 14px; */
    text-align: center;
}

.reset_btn {
    padding: 12px;
    font-weight: 500;
    color: white;
    background: var(--primary-olive);
    border: none;
    font: var(--text-font-family);
    font-size: 14px;
    margin-top: 23px;
    margin-bottom: 20px;
    text-wrap: nowrap;
    width: 100%;
}

.account_text {
    font-family: var(--text-font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--primary-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.link_sign_in {
    font-family: var(--text-font-family-secondary);
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: var(--color-olive);
    margin-left: 6px;
}

.signup_header {
    font-family: var(--text-font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: var(--color-dark);
    margin-top: 39px;
    margin-bottom: 18px;
}

.addnew_btn {
    font-family: var(--text-font-family-secondary);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: white;
    background: var(--color-olive);
    border: none;
    padding: 8px 13px;
    margin-top: 16px;
}
.circle {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.address-radio-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
 
.checkout-address-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
 
.circle svg {
    opacity: 0;
}
 
.checkout-address-radio:checked + .circle {
    background: var(--color-olive);
    border-color: var(--color-olive);
}
 
.checkout-address-radio:checked + .circle svg {
    opacity: 1;
}
.checkout_address {
    background: #fcfcfc;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition:
        border-color 0.3s ease,
        opacity 0.3s ease,
        box-shadow 0.3s ease;
    font-size: 14px;
    font-family: var(--text-font-family-secondary);
    font-weight: 400;
    line-height: 125%;
    color: var(--color-dark);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    max-width: 230px !important;
    min-width: 230px !important;
    width: 100% !important;
}

.checkout_address.active {
    border-color: var(--color-olive);
    opacity: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.address-slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    --address-card-width: 332px;
    --address-slider-gap: 0px;
}

.address-slide-btn {
    position: absolute;
    background: white;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--color-gray);
    color: var(--color-olive);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0px 2px 4px 0px #00000040;
    pointer-events: auto;
}
.Shadow_contianer {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    background: linear-gradient(
        87.61deg,
        #ffffff 1.8%,
        rgba(255, 255, 255, 0.9) 29.77%,
        rgba(255, 255, 255, 0) 97.79%
    );
}
.Shadow_contianer_right {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 72px;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(
        267.61deg,
        #ffffff 1.8%,
        rgba(255, 255, 255, 0.9) 29.77%,
        rgba(255, 255, 255, 0) 97.79%
    );
}

.address-slide-prev {
    left: 6px;
}

.address-slide-next {
    right: 6px;
}

.address-slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    --address-card-width: 332px;
    --address-slider-gap: 0px;
    --address-slider-edge-space: 40px;
}

.shipping_addresses_select {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: var(--address-slider-gap);
    scrollbar-width: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    scroll-snap-type: x mandatory;
    padding-left: max(
        var(--address-slider-edge-space),
        calc(35% - (var(--address-card-width) / 2))
    );
    padding-right: max(
        var(--address-slider-edge-space),
        calc(35% - (var(--address-card-width) / 2))
    );
}

.shipping_addresses_select::-webkit-scrollbar {
    display: none;
}

.shipping_addresses_select,
.shipping_addresses_select *,
.checkout_address,
.checkout_address * {
    user-select: none;
    -webkit-user-select: none;
}

.shipping_addresses_select .checkout_address {
    flex: 0 0 min(var(--address-card-width), calc(100% - 136px));
    max-width: min(var(--address-card-width), calc(100% - 136px));
    min-width: min(var(--address-card-width), calc(100% - 136px));
}

.account-address-slider {
    max-width: 672px;
}

/**
* Error Message Style for after input field 
**/
.message-style {
    font-size: 13px;
}

.entry-header {
    display: none;
}

.checkout-notices-sidebar ul {
    list-style: none;
    margin-top: 10px;
}

.custom-w-15 {
    width: 15%;
}