/* =======================================================
   2026 DESIGN SYSTEM — MOODMOD FURNITURE
   Trends: Glassmorphism · Aurora Gradients · Neominimalism
   Fonts: Cormorant Garamond (headings) · Inter (body)
   ======================================================= */

/* --- Design Tokens --- */
:root {
    --brand:          #e97730;
    --brand-light:    #f5a96a;
    --brand-dark:     #c45e1a;
    --aurora-start:   #e97730;
    --aurora-mid:     #f5a96a;
    --aurora-end:     #ffd4a8;
    --surface:        #ffffff;
    --surface-alt:    #f9f7f4;
    --text-primary:   #1a1a1a;
    --text-secondary: #6b6b6b;
    --border:         rgba(0,0,0,0.08);
    --shadow-sm:      0 2px 12px rgba(233,119,48,0.08);
    --shadow-md:      0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg:      0 20px 60px rgba(0,0,0,0.14);
    --shadow-hover:   0 16px 48px rgba(233,119,48,0.18);
    --radius-sm:      8px;
    --radius-md:      16px;
    --radius-lg:      24px;
    --radius-pill:    999px;
    --transition:     all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --blur:           backdrop-filter: blur(20px) saturate(1.8);
}

/* --- Smooth Scroll & Base --- */
html { scroll-behavior: smooth; }

*, *::before, *::after {
    transition: color 0.2s ease,
                background-color 0.2s ease,
                border-color 0.2s ease,
                box-shadow 0.3s ease,
                transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
                opacity 0.25s ease;
}

/* --- Typography --- */
body,
p, span, a, li, label, input, select, textarea, button,
.product-wrap-2 .product-content-2 h3,
.product-name, .cart-content, .footer-widget, nav {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--text-primary);
}

h1, h2, h3, h4, h5, h6,
.section-title,
.product-title,
.about-content h2,
.about-content h3,
.about-content h4,
.breadcrumb-content h2,
.banner-content-2 h2,
.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

/* --- Scrollbar --- */
body::-webkit-scrollbar { width: 6px; }
body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brand), var(--brand-light));
    border-radius: var(--radius-pill);
}
body::-webkit-scrollbar-track { background: var(--surface-alt); }

/* =====================================================
   GLASSMORPHISM HEADER
   ===================================================== */
.header-area {
    position: relative;
    z-index: 999;
}

.header-bottom.sticky-bar {
    background: rgba(255, 255, 255, 0.82) !important;
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid rgba(233, 119, 48, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.header-bottom.sticky-bar.stick {
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.header-bottom .main-menu nav > ul > li > a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.header-bottom .main-menu nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--aurora-start), var(--aurora-end));
    border-radius: var(--radius-pill);
    transition: width 0.35s ease;
}

.header-bottom .main-menu nav > ul > li > a:hover::after,
.header-bottom .main-menu nav > ul > li.active > a::after {
    width: 100%;
}

.header-bottom .main-menu nav > ul > li > a:hover {
    color: var(--brand) !important;
}

/* Logo hover */
.logo a:hover { opacity: 0.85; }

/* =====================================================
   AURORA GRADIENT BUTTONS
   ===================================================== */
.btn-style-2 .btn,
.btn-hover .btn,
.btn-primary,
button.checkout,
.place-order-btn,
.product-details-action-wrap .buy-now,
#checkout-cart button.checkout {
    background: linear-gradient(135deg, var(--aurora-start) 0%, var(--brand-light) 60%, var(--aurora-end) 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: var(--radius-sm) !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 20px rgba(233, 119, 48, 0.35);
    transition: var(--transition);
}

.btn-style-2 .btn:hover,
.btn-hover .btn:hover,
.place-order-btn:hover,
#checkout-cart button.checkout:hover,
.product-details-action-wrap .buy-now:hover {
    background-position: right center;
    box-shadow: 0 8px 32px rgba(233, 119, 48, 0.50);
    transform: translateY(-2px);
    opacity: 1 !important;
}

/* Secondary (outline) buttons */
.product-details-action-wrap .add-to-cart {
    background: transparent;
    border: 1.5px solid var(--brand) !important;
    color: var(--brand) !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.06em;
}

.product-details-action-wrap .add-to-cart:hover {
    background: rgba(233, 119, 48, 0.06) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* =====================================================
   ELEVATED PRODUCT CARDS — 2026 STYLE
   ===================================================== */
.product-wrap-2,
.product-wrap,
.single-product-wrap {
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: var(--transition) !important;
    padding: 1.5rem; /* Added padding for Hot Products & shop grid */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-wrap-2:hover,
.product-wrap:hover,
.single-product-wrap:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-hover) !important;
    border-color: rgba(233, 119, 48, 0.2);
}

.product-wrap-2 .product-img a img,
.product-wrap .product-img a img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.product-wrap-2:hover .product-img a img,
.product-wrap:hover .product-img a img {
    transform: scale(1.06);
}

.product-wrap-2 .product-content-2 h3 a:hover,
.product-wrap .product-content h3 a:hover {
    color: var(--brand) !important;
}

/* Product prices */
.price-color,
.product-price-2 {
    color: var(--brand) !important;
    font-weight: 700;
    font-size: 1.1em;
}

/* =====================================================
   SECTION TITLE ENHANCEMENTS
   ===================================================== */
.section-title-wrap {
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Decorative accent under section titles */
.section-title-wrap::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--aurora-start), var(--aurora-end));
    border-radius: var(--radius-pill);
    margin-top: 12px;
}

/* =====================================================
   HERO / SLIDER ENHANCEMENTS
   ===================================================== */
.slider-area .swiper-slide {
    border-radius: 0;
    overflow: hidden;
}

.hero-content h1,
.slider-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 700;
}

/* =====================================================
   FEATURE / INFO CARDS
   ===================================================== */
.single-feature-wrap {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 2rem !important;
}

.single-feature-wrap:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(233, 119, 48, 0.2) !important;
}

/* =====================================================
   BREADCRUMB & HEAD BANNER — LIGHT MODE
   ===================================================== */
.breadcrumb-area,
.breadcrumb-padding-1 {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%) !important;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-area::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233,119,48,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.breadcrumb-content h2 {
    color: var(--text-primary) !important;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.breadcrumb-content ul li,
.breadcrumb-content ul li a {
    color: var(--text-secondary) !important;
}

.breadcrumb-content ul li.active {
    color: var(--brand) !important;
}

/* =====================================================
   INTERNAL PAGES UI: PAGINATION, TABS, SIDEBAR
   ===================================================== */
/* Pagination */
.pagination-style-1 ul li a.active,
.pagination-style-1 ul li a.active:hover,
.pagination-style-1 ul li a:hover {
    background: linear-gradient(135deg, var(--aurora-start), var(--brand-light)) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.pagination-style-1 ul li a {
    border-radius: 8px !important;
    transition: var(--transition);
    border: 1px solid var(--border);
    color: var(--text-primary);
}

/* Shop Sidebar & Filters */
.sidebar-widget {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px !important;
}

.sidebar-widget-title h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0;
}

.category-selected {
    border-radius: var(--radius-sm) !important;
    border: 1px solid var(--border) !important;
}

.form-colorinput-color,
.form-taginput-tag {
    border-radius: var(--radius-pill) !important;
    transition: var(--transition);
}

.form-colorinput-input:checked + .form-colorinput-color {
    transform: scale(1.15);
    box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--brand);
}

/* Tabs */
.description-review-topbar a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text-secondary);
    position: relative;
    transition: var(--transition);
    border: none !important;
    background: none !important;
}

.description-review-topbar a.active {
    color: var(--brand);
    font-weight: 600;
}

.description-review-topbar a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand);
    border-radius: var(--radius-pill);
}

/* Cart & Checkout tables */
.cart-header,
#cart-section .cart-content .cart-item {
    border-bottom: 1px solid var(--border) !important;
    background: var(--surface) !important;
}

.cart-header {
    background: var(--surface-alt) !important;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-weight: 600;
}

#cart-section .cart-item:last-child {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border-bottom: none !important;
}

#cart-section {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    background: var(--surface);
    padding: 0;
    overflow: hidden;
}

/* =====================================================
   ABOUT PAGE ENHANCEMENTS
   ===================================================== */
.about-img img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-img img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.about-us-area {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-alt) 100%);
}

.border-left {
    border-left: 3px solid var(--brand) !important;
    padding-left: 1.5rem !important;
}

/* =====================================================
   FORMS & INPUTS
   ===================================================== */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select,
textarea {
    border-radius: var(--radius-sm) !important;
    border: 1.5px solid var(--border) !important;
    font-family: 'Inter', sans-serif !important;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--brand) !important;
    box-shadow: 0 0 0 3px rgba(233, 119, 48, 0.12) !important;
    outline: none;
}

/* =====================================================
   CLEAN LIGHT FOOTER — 2026
   ===================================================== */
.footer-area {
    position: relative;
}

.footer-area .bg-gray-3 {
    background: #f9f7f4 !important;
    color: var(--text-secondary) !important;
}

/* Aurora top-border on footer */
.footer-area .bg-gray-3:first-child::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--aurora-start), var(--brand-light), var(--aurora-end), transparent);
    position: absolute;
    top: 0;
    left: 0;
}

.footer-area .bg-gray-3 {
    position: relative;
}

.footer-widget p {
    color: var(--text-secondary) !important;
    line-height: 1.7;
}

.footer-title {
    color: var(--text-primary) !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.2rem !important;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem !important;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--brand);
    border-radius: var(--radius-pill);
}

.footer-list ul li a {
    color: var(--text-secondary) !important;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-list ul li a:hover {
    color: var(--brand) !important;
    padding-left: 6px;
}

.footer-social a {
    color: var(--text-secondary) !important;
    font-size: 18px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--brand);
    color: var(--brand) !important;
    transform: translateY(-3px);
}

.footer-bottom p {
    color: var(--text-secondary) !important;
    font-size: 13px;
    margin: 0;
}

.footer-bottom .fa-heart {
    color: var(--brand) !important;
}

.border-top-1 {
    border-color: rgba(0,0,0,0.08) !important;
}

/* =====================================================
   CHECKOUT & CART REFINEMENTS
   ===================================================== */
#checkout-cart {
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-md) !important;
    border: 1px solid var(--border);
}

.your-order-area {
    border-radius: var(--radius-md) !important;
    border-color: var(--border) !important;
}

.modal-content {
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-lg) !important;
    border: none !important;
}

/* =====================================================
   UTILITY — PRESERVED ORIGINAL SCROLLBAR CUSTOM
   ===================================================== */
body::-webkit-scrollbar { width: 6px; }

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brand), var(--brand-light));
    border-radius: var(--radius-pill);
}

body::-webkit-scrollbar-track { background: var(--surface-alt); }



/* custom css here */
.detailed-product-tag {
    display: flex;
    align-items: center;
    border: 1px solid #333;
    border-radius: 2px;
    cursor: pointer;
    padding: 6px 8px;
    gap: 8px;
    margin-right: 12px;
    margin-bottom: 12px;
}
.detailed-product-tag.disable {
    opacity: 0.5;
}

.detailed-product-tag.active {
    border: 2px solid rgba(230, 126, 34, 1);
}

.product-details-action-wrap button,
.product-details-action-wrap a {
    border: 1px solid #e97730;
    outline: none;
    padding: 10px 40px;
    margin-right: 12px;
    border-radius: 2px;
}
.product-details-action-wrap button.disable {
    opacity: 0.5 !important;
}
.product-details-action-wrap .add-to-cart {
    background-color: rgba(233, 119, 48, 0.2);
    color: #e97730;
}
.product-details-action-wrap .add-to-cart:hover {
    background-color: rgba(233, 119, 48, 0.1);
}
.product-details-action-wrap .buy-now {
    background-color: #e97730;
    color: white;
}
.product-details-action-wrap .buy-now.disable {
    opacity: 0.5 !important;
}
.product-details-action-wrap .buy-now:hover {
    opacity: 0.8;
}
.product-details-quantities {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}
.select-quantities-wrapper {
    display: flex;
    align-items: center;
    margin-right: 16px;
}
.select-quantities-wrapper button {
    width: 32px;
    height: 32px;
    outline: none;
    border: 2px solid #ccc;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.select-quantities-wrapper input {
    width: 60px;
    height: 32px;
    border: none;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    text-align: center;
}
/* Chrome, Safari, Edge, Opera */
.select-quantities-wrapper input::-webkit-outer-spin-button,
.select-quantities-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.select-quantities-wrapper input[type='number'] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.cart-content .empty-cart {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.cart-content .empty-cart img {
    margin-top: 24px;
    width: 180px;
    height: 180px;
}
.cart-content ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-content .cart-item-info {
    display: flex;
    align-items: center;
}
.cart-content .cart-delete a {
    font-size: 16px !important;
}
.sidebar-cart-active .sidebar-cart-all .cart-content ul li .cart-img a img {
    border-radius: 12px;
}
.cart-item-info .unit-price {
    color: #fd1748 !important;
}
.cart-total span {
    color: #fd1748 !important;
}
.cart-content .product-details-action-wrap {
    justify-content: space-between;
    width: 100%;
}
.cart-content .product-details-action-wrap a {
    width: 48%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
#cart-list .empty-cart {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
#cart-list .empty-cart img {
    width: 140px;
    height: 140px;
}

#cart-list::-webkit-scrollbar {
    display: none;
}
/* #cart-list::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}
#cart-list::-webkit-scrollbar-track {
    background-color: transparent;
} */

#cart-section .cart-header {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    text-transform: uppercase;
}
#cart-section .cart-header div:nth-child(1) {
    width: 35%;
}
#cart-section .cart-header div:nth-child(2) {
    width: 20%;
}
#cart-section .cart-header div:nth-child(3) {
    width: 20%;
}
#cart-section .cart-header div:nth-child(4) {
    width: 20%;
}
#cart-section .cart-header div:nth-child(5) {
    width: 5%;
}

#cart-section .cart-content .cart-item {
    display: flex;
    align-items: center;
    padding: 24px 10px;
    border-bottom: 1px solid #ccc;
}

#cart-section .cart-item div:nth-child(2) {
    width: 20%;
}
#cart-section .cart-item > div:nth-child(3) {
    width: 20%;
}
#cart-section .cart-item div:nth-child(4) {
    width: 20%;
}
#cart-section .cart-item div:nth-child(5) {
    width: 5%;
}

#cart-section .cart-item .product-cart-item {
    width: 35%;
    display: flex;
    align-items: center;
}
#cart-section .cart-item .product-cart-item input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-align: center;
    margin-right: 16px;
    flex-shrink: 0;
}
#cart-section .cart-item .product-cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-right: 10px;
}

#cart-section .cart-item .product-cart-item .info p {
    margin: 0;
}
#cart-section .cart-item .product-cart-item .info p:first-child {
    font-weight: 600;
}

.js-subtotal-price {
    color: #e97730;
}
#cart-section .cart-item .quantities-wrapper {
    display: flex;
    align-items: center;
}
#cart-section .cart-item .quantities-wrapper button {
    width: 32px;
    height: 32px;
    border: 1px solid #ccc;
    outline: none;
    background-color: white;
}
#cart-section .cart-item .quantities-wrapper button:hover {
    background-color: #f5f5f5;
}
#cart-section .cart-item .quantities-wrapper input {
    width: 48px;
    height: 32px;
    border: none;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    text-align: center;
}
#cart-section .cart-item .quantities-wrapper input::-webkit-outer-spin-button,
#cart-section .cart-item .quantities-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
#cart-section .cart-item .quantities-wrapper input[type='number'] {
    -moz-appearance: textfield;
    appearance: textfield;
}

#cart-section .cart-item .delete-item {
    cursor: pointer;
}

#cart-section .cart-item .delete-item:hover {
    color: #fd1748;
}
#checkout-cart {
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
    padding: 24px;
}

#checkout-cart .checkout-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#checkout-cart .checkout-content .checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#checkout-cart .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

#checkout-cart .total-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#checkout-cart .total-price-wrapper p {
    margin: 0;
}
#checkout-cart .total-price {
    font-size: 20px;
    color: #e97730;
}
#checkout-cart button,
#checkout-cart a {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
#checkout-cart button.checkout {
    background-color: #e97730;
    color: white;
}
#checkout-cart button.checkout.disable {
    opacity: 0.5 !important;
}
#checkout-cart button.checkout:hover {
    opacity: 0.8;
}
#checkout-cart a.continue-shopping {
    color: #333;
    border: 2px solid #ccc;
}
#checkout-cart a.continue-shopping:hover {
    opacity: 0.8;
}
#checkout-cart .separate {
    width: 100%;
    margin: 18px 0;
    border-bottom: 1px solid #ccc;
}

.change-address-wrapper {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 16px;
}

.change-address-wrapper button {
    border: none;
    background-color: #e97730;
    border-radius: 2px;
    padding: 6px 16px;
    color: white;
    cursor: pointer;
    font-size: 14px;
    gap: 4px;
}

.custom-product-badge {
    background-color: #ccc;

    color: white !important;
    padding: 2px 16px;
}

.your-order-area {
    border: 1px solid #ccc !important;
    border-radius: 6px;
}
.place-order-btn {
    width: 100%;
    padding: 12px;
    border: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 16px;
    background-color: #e97730;
    color: white;
    border-radius: 6px;
}
.custom-product-img {
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* custom header action account */

.header-bottom .header-action-account {
    margin-left: 4px;
    position: relative;
}

.header-bottom .header-action-account .avatar-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin-top: -4px;
}
.header-bottom .header-action-account > ul {
    background: #fff none repeat scroll 0 0;

    -webkit-box-shadow: 0 0 20px 0.4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0.4px rgba(0, 0, 0, 0.1);
    display: block;
    right: 0;
    padding: 14px;
    position: absolute;
    top: 110%;
    width: max-content;
    border-radius: 6px;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    transform-origin: center top 0;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    /* visibility: hidden; */
    z-index: 99;
}

.header-bottom .header-action-account > ul li {
    display: block;
    position: relative;
    line-height: 1;
    padding: 8px 0;
}
.header-bottom .header-action-account > ul li a {
    display: block;
    color: #6d6d6d;
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
}

.header-bottom .header-action-account > ul li:last-child a {
    color: #f26483;
}
.header-bottom .header-action-account > ul li:hover > a {
    color: #e97730;
}

.header-bottom .header-action-account:hover > ul {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    visibility: visible;
}

/* Custom modal */

.modal-content {
    padding: 0 !important;
}
.modal-title {
    padding: 20px !important;
    display: flex;
    align-items: center;
    justify-content: start;
    border: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
}
.modal-title h4 {
    margin: 0;
    font-size: 16px;
}
.modal-footer button {
    border: none;
    outline: none;
    padding: 8px 12px;
    min-width: 140px;
    border-radius: 5px;
    font-size: 14px;
}
.modal-footer button:hover {
    opacity: 0.8;
}
.modal-footer button.cancel {
    background-color: white;
    border: 1px solid #e97730;
    color: #e97730;
}
.modal-footer button.submit {
    background-color: #e97730;
    border: 1px solid #e97730;
    color: white;
}
.quickview-modal-style .modal-dialog {
    max-width: 540px;
}

.address-modal-content {
    padding: 0 16px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.09);
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.address-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    padding: 16px;
}
.address-item:last-child {
    border-bottom: none !important;
}
.address-item div:first-child {
    width: 10%;
}
.address-item div:last-child {
    flex: 1;
}
.address-item p {
    margin: 0;
    font-size: 14px;
}

.address-item div:last-child .heading {
    width: 100%;
    display: flex;
    align-items: center;
}
.address-item div:last-child .default-tag {
    width: max-content;
    border-color: #e97730;
    color: #e97730;
    padding: 0px 8px;
    border: 0.5px solid;
    border-radius: 1px;
    font-size: 12px;
    margin-top: 2px;
}
.address-item div:last-child .heading p:first-child {
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.87);
}
.address-item div:last-child .heading .separate {
    margin: 0 8px;
    height: 20px;
    border-left: 0.5px solid rgba(0, 0, 0, 0.26);
    flex-shrink: 0;
}
/* Hide the default radio button */
.custom-radio input[type='radio'] {
    display: none;
}

/* Create a custom radio button */
.custom-radio .checkmark {
    position: relative;
    display: inline-block;
    top: 0;
    left: 0;
    height: 21px;
    width: 21px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 50%;
}

.custom-radio input:checked ~ .checkmark {
    background-color: white;
    border: 1px solid #e97730;
}

.custom-radio .checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

.custom-radio input:checked ~ .checkmark:after {
    display: block;
}

.custom-radio .checkmark:after {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e97730;
}

/* checkout success custom */

.checkout-container {
    border: 2px solid rgba(52, 53, 56, 0.1);
}
.checkout-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 2px solid rgba(52, 53, 56, 0.1);
    justify-content: space-between;
    padding: 24px;
}
.checkout-left .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
}
.checkout-left .checkout-icon {
    width: 80px;
    height: 80px;
}

.checkout-left .checkout-message h3 {
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 16px;
}

.checkout-left .checkout-message h2 {
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 16px;
}

.checkout-left .checkout-message p {
    font-size: 16px;
    margin: 24px 0;
}
.checkout-left .checkout-message p span {
    color: #e97730;
}
.checkout-status .title {
    font-size: 16px;
    text-align: center;
}
.checkout-status .title a,
.checkout-status .title span {
    color: #e97730;
}
.checkout-status .status-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}
.checkout-status .status-progress .progress-item {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}
.checkout-status .status-progress .progress-item span {
    position: absolute;
    bottom: -80%;
    width: max-content;
    left: 50%;
    font-size: 14px;
    color: #333;
    transform: translateX(-50%);
}
.checkout-status .status-progress .progress-item.active span {
    color: #1abc9c;
}
.checkout-status .status-progress .progress-item.active {
    background-color: #1abc9c;
}
.checkout-status .status-progress .progress-line {
    width: 15%;
    height: 4px;
    background-color: #ccc;
}
.checkout-status .status-progress .progress-line.active {
    background-color: #1abc9c;
}

.checkout-status .status-progress .progress-line.cancel {
    background: linear-gradient(90deg, #1abc9c, #fd1748);
}
.checkout-status .status-progress .progress-item.cancel {
    background-color: #fd1748;
}
.checkout-footer {
    width: 100%;
    margin-top: 44px;
    display: flex;
    align-items: center;
}
.checkout-footer.justify-between {
    justify-content: space-between;
}
.checkout-footer .btn {
    width: max-content;
    padding: 12px 32px;
    border: 2px solid rgba(52, 53, 56, 0.1);
    text-transform: uppercase;
    color: #333;
    float: left;
}

.checkout-right {
    position: relative;
    overflow: hidden;
    padding: 24px;
}

.checkout-right .paid-tag {
    position: absolute;
    width: 140px;
    height: 40px;
    transform: rotate(45deg);
    top: 10px;
    right: -40px;
    background-color: #1abc9c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.checkout-right .paid-tag.unpaid {
    background-color: #ccc;
}
.checkout-right .header h2 {
    font-size: 17px;
    font-weight: 600;
}
.checkout-right .header h3 {
    font-size: 16px;
    text-transform: uppercase;
}
.checkout-right .content {
    padding: 16px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin: 10px 0;
}
.checkout-right h3 {
    font-size: 16px;
    text-transform: uppercase;
}
.checkout-right .delivery-address p {
    margin: 0;
}

.checkout-right .order-summary {
    margin-top: 24px;
}
.checkout-right .order-summary .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkout-right .order-summary .item p {
    margin-bottom: 6px;
}
.checkout-right .order-note {
    margin-top: 24px;
}
.checkout-right .footer {
    padding-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkout-right .footer span {
    font-size: 16px;
    color: #e97730;
}

/* my orders custom */
.myorders-main-area {
    background-color: #f5f5f5;
}
.myorders-main-area .container .row {
    margin-bottom: 12px;
}

.my-orders-list {
    padding: 0;
}
.my-orders-list-header {
    padding: 12px 0;
    background-color: white;
}
.my-orders-list-header h5 {
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.6);
}
.my-orders-list .order-item {
    padding: 24px;
    background-color: white;
    margin-bottom: 12px;
}

.my-orders-list .order-item .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 12px;
}
.my-orders-list .order-item .header .tags {
    display: flex;
    align-items: center;
    gap: 12px;
}
.my-orders-list .order-item .header .paid-tag {
    color: white;
    font-size: 16px;
    padding: 0px 16px;
    border-radius: 4px;
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.my-orders-list .order-item .header .status-tag {
    font-size: 16px;
    border-radius: 4px;
    color: #2ecc71;
}
.my-orders-list .order-item .header .status-tag span {
    text-transform: lowercase;
}

.my-orders-list .order-item .header p {
    margin: 0;
}
.my-orders-list .order-item .header .order-id {
    color: black;
    font-weight: 600;
}

.my-orders-list .order-item .content .content-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ccc;
}

.my-orders-list .order-item .content .content-item .left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.my-orders-list .order-item .content .content-item .left img {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.my-orders-list .order-item .content .content-item .left h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.75);
}
.my-orders-list .order-item .content .content-item .left p {
    margin: 0;
}
.my-orders-list .order-item .content .content-item .right {
    color: #e97730;
}

.my-orders-list .order-item .footer {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-top: 24px;
    gap: 12px;
}

.my-orders-list .order-item .footer span {
    font-size: 16px;
    color: #e97730;
}
.my-orders-list .order-item .footer p {
    font-size: 16px;
    margin: 0;
}
.my-orders-list .order-item .footer a {
    border: none;
    outline: none;
    float: right;
    padding: 8px 24px;
    border-radius: 2px;
    background-color: #e97730;
    color: white;
    cursor: pointer;
    margin-left: 12px;
}

.payment-method-label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid #e97730;
    color: #333;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 8px;
    cursor: pointer;
}
.payment-method-label input {
    display: none;
}
.payment-method-label .mark {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(233, 119, 48, 0.1);
    display: none;
}
.payment-method-label input:checked ~ .mark {
    display: block;
}

.shop-area {
    padding-top: 60px;
}

.cancel-order-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 24px;
    gap: 12px;
    font-size: 16px;
}
.cancel-order-content h4 {
    font-size: 18px;
    font-weight: 500;
}

.cancel-order-content textarea {
    border-radius: 4px;
    margin-top: 8px;
    border: 1px solid #ccc;
}
/* custom slider */
.price-input {
    width: 100%;
    display: flex;
    margin: 30px 0 35px;
    align-items: center;
}
.price-input .field {
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
}
.field input {
    width: 100%;
    height: 100%;
    text-align: center;
    outline: none;
    border: 1px solid #999;
    border-radius: 5px;
}
.price-input .separator {
    display: flex;
    width: 80px;
    align-items: center;
    justify-content: center;
}
.price-input input[type='number']::-webkit-outer-spin-button,
.price-input input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.price-filter .slider {
    height: 5px;
    border-radius: 5px;
    background-color: #ddd;
    position: relative;
}
.price-filter .slider .progress {
    height: 5px;
    left: 0%;
    right: 0%;
    position: absolute;
    border-radius: 5px;
    background: #e97730;
}
.price-filter .range-input {
    position: relative;
}
.price-filter .range-input input {
    position: absolute;
    top: -5px;
    height: 5px;
    width: 100%;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}
.price-filter .range-input input[type='range']::-webkit-slider-thumb {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    pointer-events: auto;
    background-color: #e97730;
    -webkit-appearance: none;
}
.price-filter .range-input input[type='range']::-moz-range-thumb {
    height: 15px;
    width: 15px;
    border: none;
    border-radius: 50%;
    pointer-events: auto;
    background-color: #e97730;
}

/* Custom color input */
.sidebar-widget-color .row {
    margin: 0;
}
.sidebar-widget-color .col-auto {
    padding-right: 8px;
    padding-left: 8px;
}
.form-colorinput {
    position: relative;
    display: inline-block;
    margin: 0;
    line-height: 1;
    cursor: pointer;
}
input[type='checkbox' i] {
    background-color: initial;
    cursor: default;
    appearance: auto;
    box-sizing: border-box;
    margin: 3px 3px 0px 5px;
    padding: initial;
    border: initial;
}
.form-colorinput-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.form-colorinput-color {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.form-colorinput-color:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: no-repeat center center / 1rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3e%3cpath fill='none' stroke='%23eee' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8.5l2.5 2.5l5.5 -5.5'/%3e%3c/svg%3e");
    opacity: 0;
    transition: opacity 0.3s;
}
.form-colorinput-input:checked ~ .form-colorinput-color:before {
    opacity: 1;
}

/* Custom tag input */
.sidebar-widget-tag .row {
    margin: 0;
}
.sidebar-widget-tag .col-auto {
    padding-right: 8px;
    padding-left: 8px;
}
.form-taginput {
    position: relative;
    display: inline-block;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    border: 1px solid #e97730;
    border-radius: 4px;
}
input[type='checkbox' i] {
    background-color: initial;
    cursor: default;
    appearance: auto;
    box-sizing: border-box;
    margin: 3px 3px 0px 5px;
    padding: initial;
    border: initial;
}
.form-taginput-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.form-taginput-tag {
    display: block;
    width: max-content;
    height: max-content;
    padding: 4px 8px;
    border-radius: 3px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    color: #e97730;
}
.form-taginput-tag:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}
.form-taginput-input:checked ~ .form-taginput-tag:before {
    opacity: 1;
    background-color: #e97730;
}
.form-taginput-input:checked ~ .form-taginput-tag {
    color: white;
}

/* Custom categories select */
.categories-select {
    border: 1px solid #ccc;
    padding: 8px 12px;
    position: relative;
    z-index: 99;
}
.categories-select:hover .categories-options {
    opacity: 1;
    visibility: visible;
}
.categories-select .categories-options {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #ccc;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
}
.categories-options .option {
    padding: 8px 12px;
    border-bottom: 1px solid #ccc;
    transition: 0.1s;
    cursor: pointer;
}
.categories-options .option:hover {
    background-color: rgb(233, 119, 48, 0.8);
    color: white;
}

/* Custom edit profile */
.btn-edit-profile {
    padding: 24px 0 16px 0;
}
.edit-profile-btn {
    background-color: #e97730;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}
.edit-profile-btn:hover {
    background-color: #e97730;
    opacity: 0.8;
}
#btn-list-edit {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
}
#btn-list-edit button {
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
}

#btn-list-edit button.update-profile-btn {
    background-color: #e97730;
}
.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 24px;
}
.address-header h3 {
    margin: 0;
    border: none;
}
.create-address-btn {
    background-color: #e97730;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 1px 1px rgba(24, 36, 51, 0.06);
}

#address_table .address-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 18px 0;
    border-bottom: 1px solid #ccc;
}
#address_table .address-item .address-info {
    width: auto !important;
}
#address_table .address-item .address-action {
    width: max-content;
    flex: 0 !important;
}
#address_table .address-info .header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100% !important;
}
#address_table .address-info .header .receiver-name {
    position: relative;
    font-weight: 600;
    margin-right: 10px;
}
#address_table .address-info .header .receiver-name::before {
    content: '';
    position: absolute;
    font-weight: 400;
    width: 1px;
    height: 80%;
    background-color: #ccc;
    top: 10%;
    right: -10px;
}
#address_table .address-info .default-tag {
    border: 1px solid #e97730;
    color: #e97730;
    padding: 2px 12px;
    font-size: 12px;
    width: max-content;
    margin-top: 6px;
}
#address_table .address-action {
    display: flex;
    align-items: center;
    gap: 12px;
}
#address_table .address-action button {
    border: 1px solid #e97730;
    outline: none;
    background-color: transparent;
    margin: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 4px;
}
#address_table .address-action button.update-btn {
    color: #e97730;
}
#address_table .address-action button.remove-btn {
    border: 1px solid red;
    color: red;
}

.modal-address-title {
    padding: 0 !important;
    border: none;
}
.modal-address-body {
    padding: 28px;
}
.address-action-modal {
    display: flex;
    align-items: center;
    justify-content: end;
}
.address-action-modal button {
    border: none;
    outline: none;
    padding: 12px;
    min-width: 140px;
    border-radius: 2px;
    background-color: #e97730;
    margin: 0;
}
.address-action-modal button:hover {
    background-color: #e97730;
    opacity: 0.8;
}

.delete-address-action {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 8px;
}
.delete-address-action button {
    border: none;
    outline: none;
    padding: 12px 12px;
    min-width: 120px;
    border-radius: 2px;
    color: white;
    cursor: pointer;
}
.delete-address-action button.delete-btn {
    background-color: rgb(232, 71, 71);
}
.delete-address-action button.cancel-btn {
    background-color: #ccc;
}
.delete-address-message {
    font-size: 16px;
}

.custom-deal-of-day-product {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px;
}

.empty-order-list {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 24px 0;
}
.empty-order-list img {
    width: 20%;
    height: 20%;
}
.empty-order-list p {
    font-size: 16px;
    margin: 0;
}
.empty-order-list a {
    background-color: #e97730;
    color: white;
    padding: 8px 24px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 12px;
}

h1.custom-title-font {
    font-family: 'Great Vibes', cursive;
    color: #e97730;
    -webkit-text-stroke: none;
    font-size: 60px;
}
.text-orange {
    color: #e97730;
}

.avatar-update-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;
}
.avatar-update-wrapper img {
    width: 80px;
    height: 80px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #ccc;
}
.avatar-update-wrapper label {
    background-color: white;
    color: white;
    width: max-content;
    color: #333;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
    cursor: pointer;
}
.avatar-update-wrapper input {
    display: none;
}
/* Select2 custom styling to match theme */
.select2-container--default .select2-selection--single {
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    height: 48px !important;
    display: flex;
    align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal !important;
    padding-left: 12px !important;
    color: #333 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}
.select2-dropdown {
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    z-index: 9999;
}
