/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Cignet - Jewellery Store eCommerce HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Key Benefits Box css
06. Best Sellers css
07. Our Products css
08. Intro Video css
09. Our Collection css
10. Our Promise css
11. Our Testimonials css
12. Our FAQ's css
13. Our Blog css
14. Footer css
15. About Us Page css
16. Blog Archive css
17. Blog Single css
18. Products Page css
19. Product Single css
20. Cart Page css
21. Order Received Page css
22. Checkout Page css
23. Account Dashboard Page css
24. Account Order Page css
25. Account Order View Page css
26. Account Download Page css
27. Account Address Page css
28. Account Addresses Page css
29.	Account Details Page css
30. Account Wishlist Page css
31. Login Page css
32. Forgot Password css
33. Privacy Policy Page css
34. Term Condition Page css
35. Refund Return Policy css
36. Cancellation Policy css
37. Delivery Policy Page css
38. Testimonials Page css
39. Faqs Page css
40. Contact Us Page css
41. 404 Error Page css
42. Responsive css
-------------------------------------------------------------------------------------- */

/* ===========================
   JOST
=========================== */

@font-face {
    font-family: 'Jost';
    src: url('../fonts/jost/jost-regular.woff2') format('woff2'),
        url('../fonts/jost/jost-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/jost/jost-500.woff2') format('woff2'),
        url('../fonts/jost/jost-500.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/jost/jost-600.woff2') format('woff2'),
        url('../fonts/jost/jost-600.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/jost/jost-700.woff2') format('woff2'),
        url('../fonts/jost/jost-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===========================
   PLAYFAIR DISPLAY
=========================== */

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

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

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

/****************************************/
/*** 	   01. Global Variables 	  ***/
/****************************************/

:root {
    --primary-color: #75513f;
    --secondary-color: #F5F5F5;
    --cream-color: #eee8da;
    --bg-color: #eee8da;
    --text-color: #596460;
    --accent-color: #d3ae34;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --divider-color: #2F3D381A;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "Jost", sans-serif;
    --accent-font: "Playfair Display", serif;
}

/****************************************/
/*** 	     02. General css		  ***/
/****************************************/

html {
    width: 100%;
    overflow-x: clip;
    overscroll-behavior-x: auto;
    touch-action: pan-x pan-y;
}

body {
    width: 100%;
    overflow-x: clip;
    overscroll-behavior-x: auto;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background-color: var(--bg-color);
}

::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--white-color);
}

::selection {
    color: var(--white-color);
    background-color: var(--accent-color);
    filter: invert(1);
}

p {
    line-height: 1.6em;
    margin-bottom: 1.33em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--accent-font);
    font-weight: 400;
    line-height: 1.2em;
    color: var(--primary-color);
    margin: 0;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    font-family: var(--default-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1em;
    text-transform: uppercase;
    background: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 17px 30px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-default:hover {
    color: var(--white-color);
    border-color: var(--accent-color);
}

.btn-default::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 50%;
    opacity: 0;
    background-color: var(--accent-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after {
    left: 0;
    right: 0;
    opacity: 1;
}

.btn-default.btn-highlighted {
    color: var(--white-color);
    border-color: var(--primary-color);
}

.btn-default.btn-highlighted:after {
    background-color: var(--white-color);
}

.btn-default.btn-highlighted:hover {
    color: var(--primary-color);
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background-color: transparent !important;
    transition: all 0.3s ease-in-out !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white-color) !important;
}

.readmore-btn {
    position: relative;
    display: inline-block;
    font-family: var(--default-font);
    line-height: normal;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    padding-right: 22px;
    transition: all 0.4s ease-in-out;
}

.readmore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    width: 12px;
    height: 12px;
    background-image: url('../images/arrow-primary.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
    transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: var(--cream-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    animation: autoDismissSitePreloader 0.35s ease 2s forwards;
}

.preloader.preloader-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important;
}

@keyframes autoDismissSitePreloader {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.loading-container,
.loading {
    position: relative;
    height: 100px;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--accent-color) transparent var(--accent-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 40px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.light-section {
    background-color: var(--secondary-color);
}

.dark-section {
    background-color: var(--primary-color);
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-row .section-title.section-title-center {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-btn {
    text-align: right;
}

.section-content-btn .section-btn {
    margin-top: 30px;
    text-align: left;
}

.section-title-content p {
    margin-bottom: 20px;
}

.section-title-content p:last-child {
    margin-bottom: 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title .section-sub-title {
    position: relative;
    display: inline-block;
    font-family: var(--default-font);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.286em;
    color: var(--primary-color);
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    padding: 7px 16px 7px 32px;
    margin-bottom: 15px;
}

.section-title .section-sub-title::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 6px;
    height: 6px;
}

.section-title.section-sub-heading,
.section-title.section-sub-heading .section-sub-title {
    margin-bottom: 0;
}

.section-title h1 {
    font-size: 60px;
    line-height: 1.2em;
    margin-bottom: 0;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 0;
}

.section-title p {
    margin-top: 15px;
    margin-bottom: 0;
}

.dark-section .section-title .section-sub-title {
    border-color: var(--dark-divider-color);
    color: var(--white-color);
}

.dark-section .section-title .section-sub-title:before {
    background: var(--white-color);
}

.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
    color: var(--white-color);
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

.h3.hidden {
    margin: 0;
}

/****************************************/
/**** 	      03. Header css		 ****/
/****************************************/

.topbar {
    background: var(--accent-color);
    padding: 15px 0;
}

.topbar-social-list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar-social-list ul li a i {
    font-size: 16px;
    color: var(--white-color);
}

.topbar-info-content {
    text-align: center;
}

.topbar-info-content p {
    position: relative;
    display: inline-block;
    font-weight: 500;
    line-height: 1.25em;
    color: var(--white-color);
    padding: 0 25px;
    margin: 0;
}

.topbar-info-content p::before,
.topbar-info-content p::after {
    content: '';
    position: absolute;
    top: 2px;
    background: url('../images/icon-topbar-sparkle.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 15px;
    height: 14px;
}

.topbar-info-content p::before {
    left: 0;
}

.topbar-info-content p::after {
    right: 0;
}

/* Seamless Continuous Marquee */
.topbar-info-content.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.topbar-info-content .marquee-content {
    display: inline-flex;
    white-space: nowrap;
    animation: continuousMarquee 12s linear infinite;
}

.topbar-info-content .marquee-content span {
    display: inline-block;
    padding-right: 50px;
    /* Text ke beech ka gap */
    font-weight: 500;
    color: var(--white-color);
}

/* Hover par pause karne ke liye */
.topbar-info-content.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

/* Keyframes for seamless loop */
@keyframes continuousMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Half length par translate hoke reset ho jayega */
    }
}

.topbar-currency-list select.form-select {
    width: auto;
    font-weight: 500;
    line-height: 1.2em;
    color: var(--white-color);
    background-color: transparent;
    background-position: right center;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 0 18px 0 0;
    background-image: url('../images/dropdown-arrow-white.svg');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 12px auto;
    margin-left: auto;
}

.topbar-currency-list select.form-select option {
    color: var(--primary-color);
}

@media only screen and (max-width: 576px) {
    .topbar .row {
        flex-direction: column-reverse;
    }

    .topbar .topbar-social-list {
        margin-top: 10px;
    }

    .topbar .topbar-social-list ul {
        justify-content: center;
    }
}

/* ========================================================
   MODERN E-COMMERCE HEADER (MYNTRA INSPIRED AESTHETIC)
   ======================================================== */
header.main-header {
    position: relative;
    background: #ffffff;
    z-index: 1000;
}

header.main-header .header-sticky {
    position: relative;
    background: #ffffff;
    border-bottom: 1px solid #f0ece6;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(0);
    background: #ffffff;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
}

.header-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
}

/* Brand Logo */
.header-brand-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.header-brand-wrap .navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.header-brand-wrap .navbar-brand img {
    max-height: 55px;
    max-width: 135px;
    width: auto;
    object-fit: contain;
}

/* Main Navigation Menu */
.header-nav-menu {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-nav-menu .nav-menu-wrapper {
    display: flex;
    align-items: center;
    margin: 0;
}

.header-nav-menu .nav-menu-wrapper>ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav-menu ul .nav-item {
    position: relative;
    margin: 0 12px;
    padding: 0;
    height: 78px;
    display: flex;
    align-items: center;
}

.header-nav-menu ul .nav-item.single-link {
    display: block;
}

.header-nav-menu ul .nav-item .nav-link {
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.35px;
    color: #282c3f;
    padding: 28px 4px !important;
    text-transform: uppercase;
    background: transparent;
    border-bottom: 3.5px solid transparent;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
    line-height: 1;
}

.header-nav-menu ul .nav-item .nav-link:hover,
.header-nav-menu ul .nav-item .nav-link:focus {
    color: var(--accent-color, #d3ae34);
    /* border-bottom-color: var(--accent-color, #d3ae34); */
}

.header-nav-menu ul .nav-item .nav-link.active {
    color: var(--accent-color, #d3ae34);
}

.header-nav-menu ul .nav-item.submenu>a:after {
    display: none;
}

.main-menu .dropdown-menu {
    top: 78px !important;
}

.main-menu ul ul {
    top: 78px !important;
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 0 0 6px 6px;
    position: absolute;
    left: 0;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease-in-out;
    text-align: left;
}

.main-menu ul ul.support {
    width: 320px;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0 !important;
    text-align: left;
}

.main-menu ul li>ul {
    padding: 8px 0;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
}

.main-menu ul .nav-item.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
    font-family: 'FontAwesome';
}

.main-menu ul ul .nav-item {
    margin: 0;
    padding: 0;
    height: auto;
}

.main-menu ul ul .nav-item .nav-link {
    font-size: 14.5px;
    color: #282c3f !important;
    padding: 8px 20px !important;
    border-bottom: none !important;
    text-transform: capitalize;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.main-menu ul ul .nav-item .nav-link:hover,
.main-menu ul ul .nav-item .nav-link:focus {
    color: var(--accent-color, #d3ae34) !important;
    background-color: var(--secondary-color, #f8f8f8);
    padding: 8px 20px 8px 24px !important;
}

/* Modern Integrated Search Bar */
.header-search-bar-wrap {
    flex: 1;
    max-width: 480px;
    min-width: 200px;
    margin: 0 20px;
}

.header-modern-search-form {
    display: flex;
    align-items: center;
    background: #f5f5f6;
    border: 1px solid transparent;
    border-radius: 4px;
    height: 40px;
    padding: 0 12px;
    transition: all 0.2s ease-in-out;
}

.header-modern-search-form:focus-within {
    background: #ffffff;
    border-color: #d4d5d9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-modern-search-form .search-icon-btn {
    background: transparent;
    border: none;
    outline: none;
    padding: 0 10px 0 2px;
    color: #696e79;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.header-modern-search-form .search-icon-btn:hover {
    color: #282c3f;
}

.header-modern-search-form .header-search-field {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    box-shadow: none;
    font-size: 13.5px;
    font-weight: 400;
    color: #282c3f;
    padding: 0;
    height: 100%;
}

.header-modern-search-form .header-search-field::placeholder {
    color: #94969f;
    font-size: 13px;
    font-weight: 400;
}

.header-modern-search-form .search-clear-btn {
    color: #94969f;
    font-size: 13px;
    padding-left: 6px;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.header-modern-search-form .search-clear-btn:hover {
    color: #282c3f;
}

/* Modern Header Actions (Profile, Wishlist, Bag) */
.header-modern-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 8px;
}

.header-action-list {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-action-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    background: transparent;
    border: none;
    padding: 4px 6px;
    cursor: pointer;
    min-width: 44px;
    color: #282c3f;
    transition: color 0.2s ease;
}

.header-action-btn:hover {
    color: var(--accent-color, #d3ae34);
}

.header-action-btn .action-icon-wrap {
    position: relative;
    font-size: 19px;
    line-height: 1;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    transition: transform 0.2s ease;
}

.header-action-btn:hover .action-icon-wrap {
    transform: scale(1.08);
}

.header-action-btn .action-text-label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 5px;
    color: #282c3f;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    transition: color 0.2s ease;
}

.header-action-btn:hover .action-text-label {
    color: var(--accent-color, #d3ae34);
}

/* Badge Counter for Bag & Wishlist */
.header-action-btn .cart-badge-count {
    position: absolute;
    top: -5px;
    right: -9px;
    background: #ff3e6c;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    border: 1.5px solid #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Modern Profile Dropdown */
.modern-profile-dropdown {
    top: calc(100% + 4px) !important;
    right: -15px !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid #f0ece6 !important;
    width: 230px !important;
    min-width: 230px !important;
}

.guest-profile-dropdown {
    width: 250px !important;
    min-width: 250px !important;
}

.guest-profile-header .btn-primary {
    background-color: var(--primary-color, #75513f);
    border-color: var(--primary-color, #75513f);
    color: #ffffff;
}

.guest-profile-header .btn-primary:hover {
    background-color: var(--accent-color, #d3ae34);
    border-color: var(--accent-color, #d3ae34);
    color: #2c231e;
}

.main-menu ul ul .nav-item .nav-link:hover,
.main-menu ul ul .nav-item .nav-link:focus {
    color: var(--white-color);
    background-color: transparent;
    padding: 9px 20px 9px 23px !important;
}

/* Sirf Normal Dropdown Submenus ko Target karo (Mega Menu inner UL ko chod kar) */
.main-menu .submenu:not(.mega-menu)>ul {
    background: var(--white-color) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border-radius: 6px !important;
    padding: 12px 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Normal Submenu Link Items */
.main-menu .submenu:not(.mega-menu)>ul>.nav-item>.nav-link {
    color: var(--primary-color) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    padding: 8px 24px !important;
    transition: all 0.3s ease !important;
}

/* Normal Submenu Hover Effect */
.main-menu .submenu:not(.mega-menu)>ul>.nav-item>.nav-link:hover {
    color: var(--accent-color) !important;
    background-color: var(--secondary-color) !important;
    padding-left: 28px !important;
}

/* ========================================================
   Mega Menu Links Hover Effect Enhancement
   ======================================================== */

/* Base Link Styling */
.mega-menu-link ul li a {
    display: inline-block;
    width: 100%;
    color: var(--text-color);
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

/* Hover State: Background Highlight, Gold Accent, & Right Slide */
.mega-menu-link ul li a:hover {
    color: var(--accent-color) !important;
    /* Gold Accent Color */
    background-color: var(--secondary-color);
    /* Light Background Glow */
    padding-left: 18px;
    /* Smooth Right Shift */
}


/* ========================================================
   RESET: Mega Menu Inner UL Reset (Double Safety)
   ======================================================== */

.mega-menu-link ul {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.main-menu ul .nav-item.highlighted-menu {
    display: none;
}

.header-action-details ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-action-details ul li button {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
}

.header-action-details ul li button:hover {
    background: transparent;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    width: 100%;
    height: 100%;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1050 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(20, 14, 10, 0.72) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    opacity: 0;
    transition: opacity 0.25s ease-in-out !important;
}

.modal-backdrop.show {
    opacity: 1 !important;
}

body.modal-open,
html.modal-open {
    overflow: hidden !important;
    height: 100% !important;
    padding-right: 0 !important;
}

.modal-search-form {
    display: flex;
    align-items: center;
    border: 1px solid var(--divider-color);
    border-radius: 4px;
    padding-right: 10px;
}

.modal-search-form .form-control {
    width: auto;
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--primary-color);
    background: transparent;
    padding: 12px 20px;
    border: none;
    box-shadow: none;
    outline: none;
}

.modal-search-form .modal-search-btn i {
    font-size: 20px;
    color: var(--primary-color);
}

.header-action-details ul li button img,
.header-action-details ul li a img {
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
}

.header-action-details ul li button:hover img,
.header-action-details ul li a:hover img {
    transform: scale(1.06);
}

.header-action-details .modal .close {
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin: -15px -15px 10px auto;
}

.header-action-details .modal .close i {
    font-size: 12px;
    color: var(--primary-color);
}

.main-menu .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    display: block;
    top: calc(100% + 1px);
    transform: scale(1, 0);
    border-radius: 0;
    background: var(--white-color);
    padding: 50px;
    opacity: 0;
    border: none;
    box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.05);
    visibility: hidden;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.main-menu .mega-menu:hover>.dropdown-menu {
    transform: scale(1, 1);
}

.dropdown-menu[data-bs-popper] {
    margin-top: 0;
}

.main-menu .mega-menu-box {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
    padding: 0 15px;
}

.mega-menu-links-box {
    width: calc(40% - 25px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 50px;
}

.mega-menu-link {
    width: calc(50% - 25px);
}

.mega-menu-link h2 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--divider-color);
}

.main-menu .mega-menu-link ul {
    position: initial;
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
    transform-origin: initial;
    width: 100%;
    border-radius: 0;
    background: transparent;
}

.main-menu .mega-menu-link ul li:last-child {
    margin-bottom: 0px;
}

.main-menu .mega-menu-link ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--text-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu .mega-menu-link ul li a:hover {
    color: var(--primary-color);
}

/* Interactive Mega Menu Linkage */
.mega-menu-col-collections .mega-collections-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-menu-col-collections .mega-collection-item {
    position: relative;
    margin-bottom: 0 !important;
}

.mega-menu-col-collections .mega-collection-item a.mega-collection-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    transition: all 0.2s ease-in-out;
    background: transparent;
}

.mega-menu-col-collections .mega-collection-item a.mega-collection-link .mega-arrow {
    font-size: 11px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease-in-out;
}

.mega-menu-col-collections .mega-collection-item.active a.mega-collection-link,
.mega-menu-col-collections .mega-collection-item:hover a.mega-collection-link {
    color: var(--primary-color);
    background: rgba(184, 134, 66, 0.08);
    font-weight: 600;
    padding-left: 12px;
}

.mega-menu-col-collections .mega-collection-item.active a.mega-collection-link .mega-arrow,
.mega-menu-col-collections .mega-collection-item:hover a.mega-collection-link .mega-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-color);
}

/* Category Panels */
.mega-categories-panels {
    position: relative;
    min-height: 200px;
}

.mega-category-panel {
    display: none;
    animation: megaPanelFadeIn 0.25s ease-in-out forwards;
}

.mega-category-panel.active {
    display: block;
}

.mega-categories-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-categories-list li {
    margin-bottom: 0 !important;
}

.mega-categories-list li a {
    display: inline-block;
    padding: 6px 10px;
    font-size: 16px;
    color: var(--text-color);
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}

.mega-categories-list li a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

@keyframes megaPanelFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-items-list {
    width: calc(60% - 25px);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mega-menu-item {
    width: calc(33.33% - 20px);
}

.mega-menu-item-image {
    margin-bottom: 15px;
}

.main-menu .mega-menu-item-image a {
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

.mega-menu-item-image figure {
    display: block;
    border-radius: 4px;
}

.mega-menu-item-image figure img {
    width: 100%;
    aspect-ratio: 1 / 0.781;
    object-fit: cover;
    border-radius: 4px;
}

.mega-menu-item-content h2 {
    font-size: 20px;
}

.main-menu .mega-menu-item-content h2 a {
    color: inherit;
}

.mega-menu-item-content p {
    margin: 5px 0 0 0;
}

.mega-menu-item.big-offer-box {
    position: relative;
    align-content: end;
    border-radius: 4px;
    padding: 30px;
    overflow: hidden;
}

.mega-menu-item.big-offer-box .mega-menu-item-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

.mega-menu-item.big-offer-box .mega-menu-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 30.3%, var(--accent-color) 86.06%);
    border-radius: 4px;
    width: 100%;
    height: 100%;
}

.mega-menu-item.big-offer-box .mega-menu-item-image figure,
.mega-menu-item.big-offer-box .mega-menu-item-image figure img {
    height: 100%;
}

.mega-menu-item.big-offer-box .mega-menu-item-content {
    position: relative;
    z-index: 2;
}

.mega-menu-item.big-offer-box .mega-menu-item-content span {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--white-color);
    margin-bottom: 5px;
}

.mega-menu-item.big-offer-box .mega-menu-item-content h2 {
    font-size: 30px;
    text-transform: uppercase;
    color: var(--white-color);
}

.mega-menu-item.big-offer-box .mega-menu-item-content h3 {
    font-family: var(--default-font);
    font-size: 16px;
    color: var(--white-color);
    margin-top: 5px;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    position: relative;
    top: 0;
}

.slicknav_btn {
    background: var(--primary-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 4px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 4px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--primary-color);
}

.slicknav_menu ul.slicknav_nav {
    padding: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 8px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--white-color);
}

.slicknav_menu ul ul li a {
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    position: absolute;
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
    color: var(--white-color);
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--white-color);
}

/****************************************/
/***   		    04. Hero css	      ***/
/****************************************/

.hero {
    position: relative;
    background-image: url('../images/hero-bg-image.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 185px 0;
}

.hero-content {
    margin-right: 50px;
}

.hero-content-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-content-list ul li {
    width: calc(50% - 10px);
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--white-color);
    padding-left: 35px;
}

.hero-content-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url('../images/icon-sparkel.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero-content-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 40px;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 40px;
    margin-top: 40px;
}

.google-rating-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.google-rating-box .google-rating-logo img {
    width: 100%;
    max-width: 50px;
}

.google-rating-content {
    width: calc(100% - 65px);
}

.google-rating-star {
    display: block;
    margin-bottom: 10px;
}

.google-rating-star i {
    font-size: 16px;
    color: var(--white-color);
}

.google-rating-content h2 {
    font-family: var(--default-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--white-color);
}

/* =========================================================
   Home Hero Dual Banners Section (Main & Secondary Banners)
   ========================================================= */
.home-hero-banners-section {
    position: relative;
    width: 100%;
}

.hero-banner-card {
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 8px 24px rgba(44, 29, 20, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: -webkit-radial-gradient(white, black);
    transform: translateZ(0);
    isolation: isolate;
}

.hero-banner-card:hover {
    box-shadow: 0 12px 30px rgba(44, 29, 20, 0.12);
}

.hero-main-slider,
.hero-secondary-slider,
.hero-mobile-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    background: transparent;
}

.hero-main-slider .swiper-wrapper,
.hero-secondary-slider .swiper-wrapper,
.hero-mobile-slider .swiper-wrapper {
    border-radius: inherit;
    background: transparent;
}

.hero-main-slider .swiper-slide,
.hero-secondary-slider .swiper-slide {
    height: auto;
    min-height: 440px;
    max-height: 520px;
    border-radius: inherit;
    overflow: hidden;
    background: transparent;
}

@media (min-width: 1400px) {

    .hero-main-slider .swiper-slide,
    .hero-secondary-slider .swiper-slide {
        min-height: 480px;
        max-height: 560px;
    }
}

.hero-banner-link {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    text-decoration: none;
    background: transparent;
}

.hero-banner-picture {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: transparent;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-position: center;
    border-radius: inherit;
    display: block;
    background: transparent;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-banner-card:hover .hero-banner-img {
    transform: scale(1.02);
}

/* Circular Floating Navigation Buttons (Matching Reference Design) */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #3b2a20);
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    margin: 0;
}

.hero-nav-btn::after {
    display: none !important;
    /* Remove swiper default icon */
}

.hero-nav-btn:hover {
    background-color: #ffffff;
    color: var(--accent-color, #8b5e34);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.08);
}

.hero-main-prev,
.hero-secondary-prev,
.hero-mobile-prev {
    left: 20px;
}

.hero-main-next,
.hero-secondary-next,
.hero-mobile-next {
    right: 20px;
}

/* Desktop (>= 992px): Arrows show only on slider hover */
@media (min-width: 992px) {
    .hero-banner-card .hero-nav-btn {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-50%) scale(0.9);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    }

    .hero-banner-card:hover .hero-nav-btn {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(-50%) scale(1);
    }

    .hero-banner-card:hover .hero-nav-btn:hover {
        transform: translateY(-50%) scale(1.08);
    }
}

/* Modern Pill & Dot Pagination */
.hero-main-pagination,
.hero-secondary-pagination,
.hero-mobile-pagination {
    bottom: 18px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 10;
    width: auto !important;
}

.hero-main-pagination .swiper-pagination-bullet,
.hero-secondary-pagination .swiper-pagination-bullet,
.hero-mobile-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    opacity: 0.6;
    border-radius: 50%;
    margin: 0 !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.hero-main-pagination .swiper-pagination-bullet-active,
.hero-secondary-pagination .swiper-pagination-bullet-active,
.hero-mobile-pagination .swiper-pagination-bullet-active {
    width: 24px;
    height: 10px;
    border-radius: 12px;
    background-color: var(--accent-color, #8b5e34);
    opacity: 1;
}

/* Mobile & Tablet Merged Slider (< 992px): 100% Full Uncropped Banner Display */
@media (max-width: 991.98px) {
    .home-hero-banners-section {
        padding-top: 10px !important;
        padding-bottom: 12px !important;
    }

    .mobile-hero-card {
        border-radius: 16px;
        width: 100%;
        overflow: hidden;
        background: transparent;
        box-shadow: 0 4px 16px rgba(44, 29, 20, 0.08);
    }

    .hero-mobile-slider {
        width: 100%;
        height: auto;
        border-radius: 16px;
        overflow: hidden;
    }

    .hero-mobile-slider .swiper-slide {
        width: 100%;
        height: auto !important;
        border-radius: 16px;
        overflow: hidden;
        background: transparent;
        display: block;
    }

    .hero-mobile-slider .hero-banner-link {
        display: block;
        width: 100%;
        height: auto !important;
        border-radius: 16px;
        overflow: hidden;
    }

    .hero-mobile-slider .hero-banner-picture {
        display: block;
        width: 100%;
        height: auto !important;
        border-radius: 16px;
        overflow: hidden;
    }

    .hero-mobile-slider .hero-banner-img {
        width: 100%;
        height: auto !important;
        max-width: 100%;
        display: block;
        border-radius: 16px;
    }

    .hero-banner-card .hero-nav-btn,
    .hero-mobile-slider .hero-nav-btn,
    .hero-mobile-prev,
    .hero-mobile-next {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .hero-mobile-pagination {
        bottom: 12px !important;
    }
}

/* Tablet Screens (576px - 991.98px): Proportional width so full banner details show with home data below */
@media (min-width: 576px) and (max-width: 991.98px) {
    .home-hero-banners-section {
        padding-top: 10px !important;
        padding-bottom: 15px !important;
    }

    /* .mobile-hero-card {
        max-width: 520px;
        margin: 0 auto;
    } */
}

/* Hero Swiper Fixes */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slide-item {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 80px 0;
}

/* Background Dark Overlay for readable text */
.hero-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-slide-item .container {
    position: relative;
    z-index: 2;
}

/* Navigation Arrow Position & Design Fix */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    color: var(--white-color);
    transition: all 0.4s ease-in-out;
    z-index: 10;
}

.hero-slider .swiper-button-prev {
    left: 30px;
}

.hero-slider .swiper-button-next {
    right: 30px;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Pagination Bullet Styles */
.hero-slider .swiper-pagination-bullets {
    bottom: 25px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

/* Slide Animation Trigger */
.hero-slider .swiper-slide .hero-content .section-title h2,
.hero-slider .swiper-slide .hero-content .hero-content-list,
.hero-slider .swiper-slide .hero-content .section-title p,
.hero-slider .swiper-slide .hero-content .hero-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

/* Jab slide Active hogi tab text uper aayega */
.hero-slider .swiper-slide-active .hero-content .section-title h2,
.hero-slider .swiper-slide-active .hero-content .hero-content-list,
.hero-slider .swiper-slide-active .hero-content .section-title p,
.hero-slider .swiper-slide-active .hero-content .hero-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay (Text ek ke baad ek aayega) */
.hero-slider .swiper-slide-active .hero-content .section-title h2 {
    transition-delay: 0.3s;
}

.hero-slider .swiper-slide-active .hero-content .section-title p {
    transition-delay: 0.5s;
}

.hero-slider .swiper-slide-active .hero-content .hero-content-list {
    transition-delay: 0.7s;
}

.hero-slider .swiper-slide-active .hero-content .hero-btn {
    transition-delay: 0.9s;
}

/* Responsive Fixes */
@media only screen and (max-width: 991px) {
    .hero-slide-item {
        padding: 100px 0;
    }

    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: none;
        /* Hide arrows on small screens */
    }
}

/****************************************/
/***   	 05. Key Benefits Box css     ***/
/****************************************/

.key-benefit-box {
    background: var(--secondary-color);
    padding: 40px 0;
}

.key-benefit-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.key-benefit-item {
    width: calc(25% - 22.5px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.key-benefit-item .icon-box img {
    width: 100%;
    max-width: 60px;
}

.key-benefit-item-content {
    width: calc(100% - 75px);
}

.key-benefit-item-content h3 {
    font-size: 20px;
}

.key-benefit-item-content p {
    line-height: normal;
    margin: 10px 0 0;
}

/* Main Container Gap Adjustment */
.key-benefit-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Cards ke beech me space */
}

/* Individual 4 Card Boxes */
.key-benefit-item {
    width: calc(25% - 15px);
    /* 4 Columns on desktop */
    background-color: var(--white-color);
    /* White Card Background */
    border: 1px solid var(--divider-color);
    /* Light Border */
    border-radius: 8px;
    /* Rounded Corners */
    padding: 25px 20px;
    /* Inside Padding */
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease-in-out;
}

/* Smooth Hover Animation */
.key-benefit-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(117, 81, 63, 0.08);
    /* Soft Ambient Shadow */
}

/* Icon Box Styling */
.key-benefit-item .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--bg-color);
    /* Subtle contrast background for icon */
    border-radius: 50%;
    flex-shrink: 0;
}

.key-benefit-item .icon-box img {
    max-width: 26px;
    height: auto;
}

/* Text Content Adjustment */
.key-benefit-item-content {
    width: calc(100% - 65px);
}

.key-benefit-item-content h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--primary-color);
}

.key-benefit-item-content p {
    font-size: 14px;
    line-height: 1.3em;
    color: var(--text-color);
    margin: 5px 0 0 0;
}

/* Responsive Fixes for Tablet & Mobile */
@media only screen and (max-width: 991px) {
    .key-benefit-item {
        width: calc(50% - 10px);
        /* 2 Columns on Tablet */
        padding: 20px 15px;
    }
}

@media only screen and (max-width: 575px) {
    .key-benefit-item {
        width: 100%;
        /* 1 Column on Mobile */
    }
}

/****************************************/
/***       06. Best Sellers css       ***/
/****************************************/

.our-best-sellers {
    padding: 60px 0 60px;
}

.top-selling-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.top-selling-item {
    width: calc(16.66% - 25px);
    text-align: center;
}

.top-selling-item-image {
    max-width: 200px;
    border-radius: 50%;
    margin: 0 auto 30px;
    overflow: hidden;
}

.top-selling-item-image a {
    border-radius: 50%;
}

.top-selling-item-image figure {
    display: block;
    border-radius: 50%;
}

.top-selling-item-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.6s ease-in-out;
}

.top-selling-item:hover .top-selling-item-image img {
    transform: scale(1.06);
}

.top-selling-item-content h3 {
    font-size: 20px;
}

.top-selling-item-content h3 a {
    color: inherit;
}

.top-offer-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 80px;
}

.top-offer-item {
    width: calc(33.33% - 20px);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    padding: 30px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.top-offer-item:hover {
    transform: translateY(-5px);
}

.top-offer-item-content {
    width: 100%;
    align-content: center;
}

.top-offer-item-content .top-offer-item-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: normal;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.top-offer-item-content h3 {
    font-size: 24px;
    line-height: 1.3em;
}

.top-offer-item-btn {
    margin-top: 40px;
}

.top-offer-item-image {
    margin: -30px -30px -30px 0;
    align-content: end;
}

.top-offer-item-image figure {
    display: block;
}

.top-offer-item-image img {
    width: 100%;
    max-width: 190px;
    border-radius: 4px 4px 0 0;
}

/****************************************/
/***       07. Our Products css       ***/
/****************************************/

.our-products {
    padding: 60px 0 60px;
}

/* ========================================================
   MODERN LUXURY PRODUCT CARD (MATCHING REFERENCE IMAGE 1)
   ======================================================== */
.modern-product-card,
.product-item {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid #f1ece7 !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    position: relative !important;
}

.modern-product-card:hover,
.product-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 14px 30px rgba(117, 81, 63, 0.09) !important;
    border-color: #e5ded8 !important;
}

/* Card Header / Image Box */
.product-item-header {
    position: relative !important;
    background: #ffffff !important;
    overflow: hidden !important;
    margin-bottom: 0 !important;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/* Category Pill Badge on Top Left */
.product-item-badge {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 15 !important;
    background: #eef2f6 !important;
    color: #475569 !important;
    font-size: 9.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.6px !important;
    text-transform: uppercase !important;
    padding: 3px 9px !important;
    border-radius: 20px !important;
    line-height: 1.3 !important;
    pointer-events: none !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04) !important;
}

/* Product Swiper Image */
.product-item-image.product-hover-swiper,
.product-hover-swiper {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    display: block !important;
}

.product-item-image figure {
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    overflow: hidden !important;
}

.product-item-image figure img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.product-item:hover .product-item-image figure img {
    transform: scale(1.05) !important;
}

/* Floating Action Overlay (Wishlist, Quickview, Add to Cart) */
.product-item-action {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    bottom: auto !important;
    left: auto !important;
    transform: translateX(15px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 20 !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.product-item:hover .product-item-action {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.product-item-action ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.product-item-action ul li a {
    height: 34px !important;
    width: 34px !important;
    background-color: #ffffff !important;
    color: #2c231e !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid #f0e9e4 !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

.product-item-action ul li a:hover {
    background-color: var(--primary-color, #75513f) !important;
    border-color: var(--primary-color, #75513f) !important;
    transform: scale(1.12) !important;
}

.product-item-action ul li a img {
    width: 15px !important;
    height: 15px !important;
    object-fit: contain !important;
    transition: filter 0.25s ease !important;
}

.product-item-action ul li a:hover img {
    filter: brightness(0) invert(1) !important;
}

/* Card Body */
.product-item-body {
    padding: 14px 16px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    justify-content: space-between !important;
    background: #ffffff !important;
}

.product-item-content {
    margin-bottom: 4px !important;
}

.product-item-title {
    font-size: 14.5px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    margin-bottom: 2px !important;
    /* color: #1e293b !important; */
    font-family: var(--default-font) !important;
}

.product-item-title a {
    color: #1e293b !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.product-item-title a:hover {
    color: var(--accent-color, #c59b63) !important;
}

.product-item-subtitle {
    font-size: 11.5px !important;
    color: #64748b !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
}

/* Exclusive Offer Tag */
.product-item-offer {
    background-color: #fdf4ee !important;
    border-radius: 6px !important;
    padding: 4px 8px !important;
    text-align: center !important;
    margin-top: 6px !important;
    margin-bottom: 4px !important;
    border: 1px solid #fbe6db !important;
}

.product-item-offer span {
    font-size: 10.5px !important;
    font-weight: 600 !important;
    color: #8b6d58 !important;
}

/* Bottom Row (Price & Action Button) */
.product-item-bottom-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-top: 1px dashed #e2e8f0 !important;
    padding-top: 10px !important;
    margin-top: 8px !important;
    gap: 8px !important;
}

.product-item-price {
    margin: 0 !important;
}

.product-item-price h3 {
    font-size: 15.5px !important;
    font-weight: 800 !important;
    font-family: var(--default-font) !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    display: flex !important;
    align-items: baseline !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
}

.product-item-price h3 span {
    font-size: 11.5px !important;
    font-weight: 500 !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
    opacity: 0.8 !important;
}

/* Modern Gold "Try On" Button */
.btn-product-tryon {
    background: linear-gradient(135deg, #c59b63 0%, #b88a50 100%) !important;
    color: #ffffff !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    border-radius: 20px !important;
    padding: 5px 12px !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    box-shadow: 0 2px 6px rgba(197, 155, 99, 0.25) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
}

.btn-product-tryon i {
    font-size: 11px !important;
}

.btn-product-tryon:hover {
    background: linear-gradient(135deg, #b88a50 0%, #a67940 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(197, 155, 99, 0.4) !important;
    color: #ffffff !important;
}

@media (max-width: 991px) {
    .product-item .product-item-action {
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media (max-width: 575px) {
    .product-item-body {
        padding: 10px 10px 12px !important;
    }

    .product-item-title {
        font-size: 13px !important;
    }

    .product-item-subtitle {
        font-size: 10.5px !important;
    }

    .product-item-price h3 {
        font-size: 13.5px !important;
    }

    .btn-product-tryon {
        padding: 4px 9px !important;
        font-size: 10.5px !important;
        border-radius: 16px !important;
    }

    .btn-product-tryon i {
        font-size: 10px !important;
    }

    .product-item-badge {
        top: 8px !important;
        left: 8px !important;
        font-size: 8.5px !important;
        padding: 2px 7px !important;
    }
}

/* ==========================================
   PRODUCT SLIDER PREV/NEXT CONTROLS (ALL DEVICES)
   ========================================== */
.product-slider {
    position: relative;
}

.product-slider-btn {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    margin-top: 32px !important;
    margin-bottom: 5px !important;
    width: 100% !important;
    z-index: 5 !important;
}

.product-slider-btn .product-slider-button-prev,
.product-slider-btn .product-slider-button-next {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 48px !important;
    height: 48px !important;
    background-color: #ffffff !important;
    border: 1.5px solid rgba(117, 81, 63, 0.22) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 14px rgba(117, 81, 63, 0.08) !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    z-index: 5 !important;
}

.product-slider-btn .product-slider-button-prev:hover,
.product-slider-btn .product-slider-button-next:hover {
    background-color: var(--primary-color, #75513f) !important;
    border-color: var(--primary-color, #75513f) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(117, 81, 63, 0.22) !important;
}

.product-slider-btn .product-slider-button-prev::before,
.product-slider-btn .product-slider-button-next::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    height: 14px !important;
    width: 14px !important;
    background-image: url('../images/arrow-primary.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    transition: all 0.3s ease-in-out !important;
}

.product-slider-btn .product-slider-button-prev::before {
    transform: translate(-50%, -50%) rotate(225deg) !important;
}

.product-slider-btn .product-slider-button-next::before {
    transform: translate(-50%, -50%) rotate(45deg) !important;
}

.product-slider-btn .product-slider-button-prev:hover::before,
.product-slider-btn .product-slider-button-next:hover::before {
    filter: brightness(0) invert(1) !important;
}

/****************************************/
/***       08. Intro Video css        ***/
/****************************************/

.intro-video {
    position: relative;
    min-height: 780px;
    align-content: end;
    padding: 60px 0;
    overflow: hidden;
}

.intro-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    will-change: transform;
}

.intro-bg-video:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.80) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    z-index: 1;
}

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

.intro-video-content-box {
    position: relative;
    text-align: center;
    z-index: 1;
}

.video-play-button {
    display: inline-flex;
    align-items: center;
    z-index: 1;
}

.video-play-button a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.video-play-button a span {
    position: relative;
    width: 85px;
    height: 85px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.video-play-button a span:hover {
    background: var(--white-color);
}

.video-play-button a span.bg-effect:before,
.video-play-button a span.bg-effect:after {
    content: '';
    position: absolute;
    width: 160%;
    height: 160%;
    border: 40px solid var(--white-color);
    opacity: 50%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button a span.bg-effect:after {
    animation-delay: .3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button a span i {
    font-size: 30px;
    color: var(--white-color);
    margin-left: 2px;
    transition: all 0.4s ease-in-out;
}

.video-play-button a span:hover i {
    color: var(--accent-color);
}

.intro-video-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 100px;
    max-width: 1120px;
    margin: 270px auto auto;
}

.intro-video-item {
    position: relative;
    width: calc(25% - 75px);
}

.intro-video-item:before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    bottom: 0;
    height: 100%;
    width: 1px;
    background: var(--dark-divider-color);
}

.intro-video-item:nth-child(4n + 4):before,
.intro-video-item:last-child:before {
    display: none;
}

.intro-video-item .icon-box {
    margin-bottom: 30px;
}

.intro-video-item .icon-box img {
    width: 100%;
    max-width: 60px;
}

.intro-video-item-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
}

/****************************************/
/*** 	  09. Our Collection css	  ***/
/****************************************/

.our-collection {
    padding: 120px 0 30px;
}

.collection-item {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 80px;
    border: 1px solid var(--divider-color);
    border-radius: 4px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 50px;
}

.collection-item-content,
.collection-item-image-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.collection-item-content {
    width: calc(43% - 40px);
}

.collection-item-title h3 {
    font-size: 26px;
    line-height: 1.4em;
}

.collection-item-image-box {
    width: calc(57% - 40px);
}

.collection-item-image-content p {
    margin-bottom: 15px;
}

.collection-item-image-content p:last-child {
    margin-bottom: 0;
}

.collection-item-image a,
.collection-item-image figure {
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

.collection-item-image img {
    width: 100%;
    aspect-ratio: 1 / 0.866;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.collection-item:hover .collection-item-image img {
    transform: scale(1.04);
}

/****************************************/
/*** 	   10. Our Promise css 		  ***/
/****************************************/

.our-promise {
    padding: 60px 0;
}

.promise-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 100px;
}

.promise-item {
    position: relative;
    width: calc(20% - 80px);
    text-align: center;
}

.promise-item::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -50px;
    background: var(--divider-color);
    width: 1px;
    height: 100%;
}

.promise-item:last-child::before,
.promise-item:nth-child(5n + 5)::before {
    display: none;
}

.promise-item .icon-box {
    position: relative;
    min-height: 140px;
    background: var(--secondary-color);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.promise-item .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 50%;
    opacity: 0;
    background-color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.promise-item:hover .icon-box::before {
    left: 0;
    right: 0;
    opacity: 1;
}

.promise-item .icon-box img {
    width: 100%;
    max-width: 70px;
    transition: all 0.4s ease-in-out;
}

.promise-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.promise-item-content {
    margin: 20px 0 0;
}

.promise-item-content h3 {
    font-size: 20px;
    line-height: 1.3em;
}

/****************************************/
/*** 	 11. Our Testimonials css	  ***/
/****************************************/

.our-testimonials {
    position: relative;
    background-image: url('../images/testimonial-bg-image.jpg');
    background-position: center center;
    background-size: cover;
    padding: 120px 0;
}

.our-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.63) 44.12%, rgba(0, 0, 0, 0.00) 58.83%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.testimonials-content-box {
    max-width: 630px;
}

.testimonials-content-box .section-title {
    margin-bottom: 60px;
}

.our-testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonial-item-rating i {
    color: var(--white-color);
}

.testimonial-item-content {
    margin-top: 20px;
}

.testimonial-item-content p {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 15px;
}

.testimonial-item-content p:last-child {
    margin-bottom: 0;
}

.testimonial-item-content {
    margin-bottom: 0;
}

.testimonial-item-author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 60px;
    padding: 40px 140px 0 0;
}

.testimonial-author-image figure {
    display: block;
    border-radius: 50%;
}

.testimonial-author-image img {
    width: 100%;
    max-width: 50px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-initials-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #75513f 0%, #a47551 50%, #d4af37 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(212, 175, 55, 0.4);
    user-select: none;
}

.testimonial-author-content {
    width: calc(100% - 65px);
}

.testimonial-author-content h2 {
    font-size: 20px;
    color: var(--white-color);
}

.testimonial-author-content p {
    color: var(--white-color);
    margin: 5px 0 0;
}

.testimonial-author-content a.hover-gold {
    transition: all 0.3s ease;
}

.testimonial-author-content a.hover-gold:hover {
    color: #ffd700 !important;
    text-decoration: underline !important;
}

.testimonial-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
    background: var(--accent-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
    content: '';
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 50%;
    right: 0;
    background: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px auto;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before {
    transform: translate(-50%, -50%) rotate(225deg);
}

/****************************************/
/*** 	    12. Our FAQ's css 		  ***/
/****************************************/

.our-faqs {
    padding: 120px 0 60px;
}

.faqs-content-box {
    position: sticky;
    top: 30px;
}

.faq-accordion .accordion-item {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.faq-accordion .accordion-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35em;
    color: var(--primary-color);
    padding: 0 34px 0 0;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f146';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    right: 0px;
    top: 50%;
    font-size: 24px;
    color: var(--primary-color);
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\f0fe';
}

.faq-accordion .accordion-item .accordion-body {
    padding: 15px 34px 0 0;
}

.faq-accordion .accordion-item .accordion-body p {
    margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
    margin-bottom: 0;
}

.limited-offer-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 120px;
}

.limited-offer-item {
    position: relative;
    width: calc(50% - 15px);
    min-height: 520px;
    border-radius: 4px;
    overflow: hidden;
}

.limited-offer-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.limited-offer-image figure {
    position: relative;
    display: block;
    height: 100%;
}

.limited-offer-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 8.52%, rgba(0, 0, 0, 0.75) 86.12%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.limited-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.limited-offer-item:hover .limited-offer-image img {
    transform: scale(1.03);
}

.limited-offer-item-body {
    position: relative;
    height: 100%;
    align-content: end;
    text-align: center;
    padding: 60px;
    z-index: 2;
}

.limited-offer-item-content span {
    display: inline-block;
    font-size: 14px;
    line-height: normal;
    color: var(--white-color);
    margin-bottom: 20px;
}

.limited-offer-item-content h2 {
    font-size: 40px;
    color: var(--white-color);
}

.limited-offer-btn {
    margin-top: 40px;
}

/****************************************/
/*** 	     13. Our Blog css 		  ***/
/****************************************/

.our-blog {
    padding: 60px 0 90px;
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image {
    position: relative;
    margin-bottom: 20px;
}

.post-featured-image a {
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

.post-featured-image figure {
    display: block;
}

.post-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.87;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.06);
}

.post-item-content h2 {
    font-size: 20px;
    line-height: 1.4em;
}

.post-item-content h2 a {
    color: inherit;
}

.post-item .post-item-btn {
    border-top: 1px solid var(--divider-color);
    padding-top: 20px;
    margin-top: 20px;
}

/****************************************/
/*** 	     14. Footer css 		  ***/
/****************************************/

/****************************************/
/***         14. Footer css           ***/
/****************************************/

.main-footer {
    padding: 0;
    background-color: var(--primary-color) !important;
}

/* --- 1. Top Trust Features Bar --- */
.footer-trust-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.footer-trust-bar i {
    color: var(--accent-color);
}

.footer-trust-bar .uppercase {
    letter-spacing: 0.5px;
}

/* --- 2. Main Footer Body --- */
.about-footer {
    max-width: 320px;
}

.footer-logo img {
    width: 100%;
    max-width: 150px;
}

.about-footer-content p {
    color: var(--white-color);
    opacity: 0.8;
}

/* Newsletter Input Styling */
.footer-newsletter-box label {
    letter-spacing: 0.5px;
}

.footer-input-field {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white-color) !important;
    border-radius: 6px;
    padding: 10px 14px;
    outline: none;
    box-shadow: none !important;
}

.footer-input-field::placeholder {
    color: var(--white-color) !important;
    opacity: 0.5;
}

.footer-input-field:focus {
    border-color: var(--accent-color) !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
}

/* Social Media Circular Buttons */
.footer-social-links .social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-links .social-icon-btn:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Footer Link Columns & Typography */
.footer-links h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-links ul {
    list-style: none !important;
    /* Bullets Removed */
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0;
    padding: 5px 0;
}

.footer-links ul li .footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    display: inline-block;
}

/* Hover Slide Animation for Links */
.footer-links ul li .footer-link:hover {
    color: var(--white-color) !important;
    transform: translateX(4px);
}

/* Contact Information Column */
.footer-links .contact-icon-box {
    width: 24px;
    color: var(--accent-color);
}

/* --- 3. Footer Copyright Bar --- */
.footer-copyright {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright-text p {
    color: rgba(255, 255, 255, 0.7);
}

.payment-icons-list i {
    transition: color 0.3s ease;
}

.payment-icons-list i:hover {
    color: var(--white-color);
}

/* ==========================================
   MODERN LUXURY FOOTER STYLING
   ========================================== */

/* Dark Background Matching Theme */
.main-footer {
    background-color: var(--primary-color) !important;
}

.footer-trust-bar {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-input-field {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    border-radius: 6px;
    padding: 10px 14px;
}

.footer-input-field::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-input-field:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--accent-color) !important;
}

/* Social Media Circular Buttons */
.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Hover Animation Links */
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #ffffff !important;
    transform: translateX(4px);
}

/****************************************/
/*** 	   15. About Us Page css	  ***/
/****************************************/

.page-header {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 60px;
    line-height: 1.1em;
    color: var(--white-color);
    margin-bottom: 10px;
}

.page-header-box ol {
    margin: 0;
    padding: 0;
}

.page-header-box ol.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: transparent;
    list-style: none;
    font-size: 14px;
    line-height: 1.5;
    gap: 4px 0;
}

.page-header-box ol li.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: inherit;
    line-height: inherit;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.page-header-box ol li.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none !important;
    border-bottom: none !important;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.page-header-box ol li.breadcrumb-item a:hover {
    color: var(--accent-color, #d3ae34) !important;
    text-decoration: none !important;
}

.page-header-box ol li.breadcrumb-item.active {
    color: var(--accent-color, #d3ae34);
    font-weight: 500;
    word-break: break-word;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding: 0 8px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    font-size: 13px;
}

.about-us {
    padding: 120px 0 60px;
}

.mission-vision-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mission-vision-item {
    position: relative;
    width: calc(50% - 15px);
    border-radius: 4px;
    padding: 50px;
    align-content: end;
    min-height: 520px;
    overflow: hidden;
}

.mission-vision-item-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.mission-vision-item-image figure {
    position: relative;
    display: block;
    height: 100%;
}

.mission-vision-item-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 4px;
    background: linear-gradient(180deg, transparent 31.25%, rgba(0, 0, 0, 0.50) 84.22%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mission-vision-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.mission-vision-item:hover .mission-vision-item-image img {
    transform: scale(1.03);
}

.mission-vision-item-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.mission-vision-item-content h3 {
    font-size: 26px;
    color: var(--white-color);
}

.mission-vision-item-content p {
    color: var(--white-color);
    margin: 20px 0 0;
}

.section-footer-text {
    margin-top: 30px;
    text-align: center;
}

.section-footer-text p {
    color: var(--primary-color);
    margin: 0 0 15px;
}

.section-footer-text p span {
    display: inline-block;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 600;
    background: var(--accent-color);
    color: var(--bg-color);
    line-height: 1em;
    padding: 4px 10px;
    border-radius: 14px;
    margin-right: 10px;
}

.section-footer-text p a {
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
    color: var(--accent-color);
}

.section-footer-text p:last-child {
    margin: 0;
}

.about-us .section-footer-text {
    margin-top: 60px;
}

.what-we-do {
    padding: 60px 0 90px;
}

.what-we-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.what-we-item .icon-box {
    margin-bottom: 60px;
    text-align: center;
}

.what-we-item .icon-box img {
    width: 100%;
    max-width: 80px;
}

.what-we-item-content {
    text-align: center;
}

.what-we-item-content h3 {
    font-size: 20px;
}

.what-we-item-content p {
    margin: 20px 0 0;
}

.why-customer-choose {
    padding: 10px;
}

.why-customer-choose .container-fluid {
    padding: 0;
}

.why-customer-choose-video {
    position: relative;
    height: 750px;
    min-height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.why-customer-choose-bg-video {
    width: 100%;
    height: 100%;
}

.why-customer-choose-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-customer-choose-content {
    height: 100%;
    align-content: center;
    padding: 110px 5.729vw 110px 6.25vw;
}

.customer-accordion .accordion-item {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.customer-accordion .accordion-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.customer-accordion .accordion-header .accordion-button {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35em;
    color: var(--primary-color);
    padding: 0 34px 0 0;
}

.customer-accordion .accordion-item .accordion-button::after,
.customer-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f146';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    right: 0px;
    top: 50%;
    font-size: 24px;
    color: var(--primary-color);
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.customer-accordion .accordion-button:not(.collapsed)::after {
    content: '\f0fe';
}

.customer-accordion .accordion-item .accordion-body {
    padding: 15px 34px 0 0;
}

.customer-accordion .accordion-item .accordion-body p {
    margin-bottom: 15px;
}

.customer-accordion .accordion-item .accordion-body p:last-child {
    margin-bottom: 0;
}

.our-team {
    padding: 60px 0 90px;
}

.team-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    text-align: center;
}

.team-item-image-box {
    position: relative;
}

.team-item-image {
    max-width: 300px;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
}

.team-item-image a,
.team-item-image figure {
    position: relative;
    display: block;
    border-radius: 50%;
}

.team-item-image figure:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--black-color);
    border-radius: 50%;
    opacity: 30%;
    transform: scale(0);
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.team-item:hover .team-item-image figure:before {
    transform: scale(1);
}

.team-item-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.6s ease-in-out;
}

.team-item:hover .team-item-image figure img {
    transform: scale(1.06);
}

.team-item-social-list {
    position: absolute;
    top: 50%;
    transform: scale(0) translateY(-50%);
    right: 50px;
    left: 50px;
    margin: 0 auto;
    transition: all 0.5s ease-in-out;
    z-index: 2;
}

.team-item:hover .team-item-social-list {
    transform: scale(1) translateY(-50%);
    visibility: visible;
    opacity: 1;
}

.team-item-social-list ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.team-item-social-list ul li a {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.team-item-social-list ul li a i {
    font-size: 18px;
    color: inherit;
}

.team-item-content {
    margin-top: 20px;
}

.team-item-content h2 {
    font-size: 20px;
}

.team-item-content h2 a {
    color: inherit;
}

.team-item-content p {
    margin: 5px 0 0;
}

.page-about-faq {
    padding: 120px 0;
}

/****************************************/
/***      	16. Blog Archive css      ***/
/****************************************/

.page-blog {
    padding: 120px 0px;
}

.page-pagination {
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 4px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white-color);
}

/* ==========================================
   BLOG PAGE REFINED STYLING
   ========================================== */

/* Hero Featured Card Zoom Effect */
.hero-img-zoom {
    transition: transform 0.4s ease;
}

.blog-hero-card:hover .hero-img-zoom {
    transform: scale(1.03);
}

/* Article Cards Styling & Hover Animation */
.blog-card {
    transition: all 0.3s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(117, 81, 63, 0.12) !important;
}

.blog-card-img img {
    transition: transform 0.4s ease;
}

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

.text-hover-primary {
    transition: color 0.25s ease;
}

.text-hover-primary:hover {
    color: var(--primary-color) !important;
}

.read-more-link {
    transition: gap 0.25s ease;
}

.read-more-link:hover {
    gap: 6px !important;
}

/****************************************/
/***      	17. Blog Single css       ***/
/****************************************/

.page-single-post {
    padding: 120px 0;
}

.post-single-meta {
    margin-top: 5px;
}

.post-single-meta ol li {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 15px;
}

.post-single-meta ol li:last-child {
    margin-right: 0;
}

.post-single-meta ol li i {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 4px;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: '';
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--primary-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-weight: 400;
    line-height: 1.2em;
    margin: 0 0 0.5em;
}

.post-entry h1 {
    font-size: 60px;
}

.post-entry h2 {
    font-size: 40px;
}

.post-entry h3 {
    font-size: 34px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 20px;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: url('../images/icon-blockquote.svg');
    background-repeat: no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--text-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-family: var(--default-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1em;
    text-transform: uppercase;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    padding: 12px 20px;
    transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 4px;
    width: 40px;
    height: 40px;
    transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background: var(--primary-color);
    color: var(--white-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}

/* ==========================================
   BLOG DETAILS SINGLE PAGE STYLING
   ========================================== */

.social-share-circle-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-share-circle-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

/* ==========================================
   BLOG DETAILS BRAND THEME STYLING
   ========================================== */

/* Search Input & Button Theme Override */
.search-input-box {
    border-color: var(--divider-color) !important;
}

.search-input-box:focus {
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
}

.btn-theme-search {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    border: 1px solid var(--primary-color) !important;
    padding: 0 16px;
    transition: all 0.3s ease;
}

.btn-theme-search:hover {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

/* Blockquote Quote Icon Styling */
.single-post-quote {
    background-color: #fdfbf7;
    border-left-color: var(--primary-color) !important;
}

.quote-bg-icon {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 32px;
    color: var(--accent-color);
    opacity: 0.25;
}

/* Sidebar Links Hover Effects */
.sidebar-category-link {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.25s ease;
}

.sidebar-category-link:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.sidebar-category-link .count-badge {
    color: var(--primary-color);
}

.article-title-link {
    text-decoration: none;
    transition: color 0.25s ease;
}

.article-title-link:hover {
    color: var(--primary-color) !important;
}

/****************************************/
/***      	18. Products Page css     ***/
/****************************************/

.page-products {
    padding: 40px 0;
}

.page-single-sidebar {
    position: sticky;
    top: 130px;
    margin-right: 20px;
}

.product-category-item {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.product-category-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.product-category-filter-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 15px;
}

.page-single-sidebar .product-category-filter-header {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.product-category-filter-title {
    max-width: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-category-filter-title img {
    width: 100%;
    max-width: 24px;
}

.product-category-filter-title h2 {
    font-size: 20px;
}

.product-category-filter-clear-btn a {
    font-size: 16px;
    color: var(--text-color);
    transition: all 0.4s ease-in-out;
}

.product-category-filter-clear-btn a:hover {
    color: var(--accent-color);
}

.product-category-item-title {
    position: relative;
    font-size: 22px;
    margin-bottom: 20px;
}

.product-category-item-title::before {
    content: '\f077';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.product-category-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-category-item ul li {
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 5px 10px;
    margin-bottom: 20px;
}

.product-category-item ul li:last-child {
    margin-bottom: 0;
}

.product-category-item ul li input[type=checkbox] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.product-category-item ul li label {
    flex: 1;
    cursor: pointer;
}

.product-item-list-box .product-category-filter-header {
    margin-bottom: 20px;
}

.product-category-result-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-category-result-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.product-category-result-pagination ul li {
    position: relative;
    line-height: 1.4em;
}

.product-category-result-pagination ul li::before {
    content: '/';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -12px;
}

.product-category-result-pagination ul li:last-child::before {
    display: none;
}

.product-category-result-pagination ul li a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.product-category-sorting-list .form-select {
    min-width: 190px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25em;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    padding: 9px 35px 9px 15px;
    outline: none;
    box-shadow: none;
}

.product-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 15px;
}

.product-item-list .product-item {
    width: calc(33.33% - 10px);
}

.product-learn-more-btn {
    text-align: center;
    margin-top: 60px;
}

/****************************************/
/***      	19. Product Single css    ***/
/****************************************/

.page-product-single {
    padding: 40px 0;
}

.product-single-breadcrumb-list {
    margin-bottom: 40px;
}

.product-single-breadcrumb-list ol {
    margin: 0;
    gap: 15px 55px;
}

.product-single-breadcrumb-list ol li {
    position: relative;
    color: var(--text-color);
    padding: 0;
}

.product-single-breadcrumb-list .breadcrumb li::before {
    content: '';
    position: absolute;
    right: -34px;
    top: 50%;
    transform: translateY(-50%);
    background: url('../images/arrow-right-long.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 14px;
    height: 14px;
    padding: 0;
}

.product-single-breadcrumb-list .breadcrumb li:last-child:before {
    display: none;
}

.product-single-breadcrumb-list .breadcrumb-item+.breadcrumb-item {
    padding: 0;
}

.product-single-breadcrumb-list .breadcrumb li a {
    color: inherit;
}

/* .product-single-info-box{
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px 50px;
} */

/* ==========================================
   19. PRODUCT SINGLE GALLERY FIX (FINAL NO-OVERFLOW)
   ========================================== */

/* Main Page Container Fix */
.page-product-single .col-lg-6 {
    max-width: 50% !important;
    flex: 0 0 50% !important;
}

.sticky-top-gallery,
.product-gallery-sticky-wrapper {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 100px !important;
    z-index: 10 !important;
    align-self: flex-start !important;
    height: fit-content !important;
}

.product-single-image-box {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px !important;
    width: 100% !important;
    height: 480px !important;
    align-items: stretch !important;
}

/* ==========================================
   PRODUCT DETAILS: LUXURY TRUST & ASSURANCE CARD
   ========================================== */
.product-trust-assurance-card {
    background: linear-gradient(135deg, #ffffff 0%, #faf6f2 100%);
    border: 1px solid rgba(117, 81, 63, 0.15) !important;
    box-shadow: 0 4px 18px rgba(117, 81, 63, 0.05);
    transition: all 0.3s ease;
}

.product-trust-assurance-card:hover {
    box-shadow: 0 8px 24px rgba(117, 81, 63, 0.1);
    border-color: rgba(117, 81, 63, 0.28) !important;
}

.trust-shield-icon {
    font-size: 20px;
    color: var(--accent-color, #d3ae34);
}

.trust-card-title {
    font-family: var(--accent-font, "Playfair Display", serif);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color, #75513f);
}

.trust-certified-badge {
    background: #fbf6f2 !important;
    color: var(--primary-color, #75513f) !important;
    border: 1px solid rgba(117, 81, 63, 0.18) !important;
}

.trust-certified-badge i {
    color: var(--accent-color, #d3ae34);
}

.trust-pillar-item {
    padding: 6px 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.trust-pillar-item:hover {
    background: rgba(117, 81, 63, 0.05);
}

.trust-pillar-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f4ece6;
    border: 1px solid rgba(117, 81, 63, 0.18);
    color: var(--primary-color, #75513f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.25s ease;
}

.trust-pillar-item:hover .trust-pillar-icon {
    background: var(--primary-color, #75513f);
    color: #ffffff;
    transform: scale(1.08);
}

.trust-pillar-text h6 {
    font-size: 12.5px;
    font-weight: 700;
    color: #2e231e;
    letter-spacing: 0.1px;
}

.trust-pillar-text p {
    font-size: 11px;
    line-height: 1.35;
    color: #786e68 !important;
}

@media (max-width: 991.98px) {

    .sticky-top-gallery,
    .product-gallery-sticky-wrapper {
        position: static !important;
        top: auto !important;
    }
}

/* Thumbnails Column (Left) */
.vertical-thumbs-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 480px;
    width: 75px;
    position: relative;
    flex-shrink: 0;
}

.vertical-thumbs-wrapper .product-single-image-slider {
    width: 75px !important;
    height: calc(100% - 50px) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.product-single-image-slider .swiper-wrapper {
    height: 100% !important;
}

.product-single-image-slider .swiper-slide {
    width: 75px !important;
    height: 75px !important;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--divider-color);
    background: #ffffff;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.product-single-image-slider .swiper-slide-thumb-active {
    opacity: 1 !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.product-single-image-slider .swiper-slide figure,
.product-single-image-slider .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    margin: 0 !important;
    display: block !important;
}

.thumb-nav-btn {
    background: #ffffff;
    border: 1px solid var(--divider-color);
    color: var(--primary-color);
    width: 100%;
    height: 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.thumb-nav-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* Main Display Image Column (Right) */
.main-image-wrapper {
    flex: 1 1 0 !important;
    /* Flexbox auto calculation without collapsing Swiper */
    min-width: 0 !important;
    height: 480px !important;
    position: relative !important;
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden !important;
}

.product-single-image-item {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
}

.product-single-image-item .swiper-wrapper,
.product-single-image-item .swiper-slide {
    height: 100% !important;
    width: 100% !important;
}

.product-single-image-item .swiper-slide figure {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 15px !important;
}

.product-single-image-item .swiper-slide img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

/* Main Navigation Arrows (Desktop hover, Mobile hidden) */
.main-image-wrapper .swiper-button-prev,
.main-image-wrapper .swiper-button-next,
.qv-main-swiper .swiper-button-prev,
.qv-main-swiper .swiper-button-next {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    color: var(--primary-color);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.main-image-wrapper .swiper-button-prev:after,
.main-image-wrapper .swiper-button-next:after,
.qv-main-swiper .swiper-button-prev:after,
.qv-main-swiper .swiper-button-next:after {
    font-size: 13px;
    font-weight: bold;
}

.main-image-wrapper .swiper-button-prev:hover,
.main-image-wrapper .swiper-button-next:hover,
.qv-main-swiper .swiper-button-prev:hover,
.qv-main-swiper .swiper-button-next:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.main-image-wrapper .swiper-button-prev,
.qv-main-swiper .swiper-button-prev {
    left: 14px;
    transform: translateY(-50%) translateX(-6px);
}

.main-image-wrapper .swiper-button-next,
.qv-main-swiper .swiper-button-next {
    right: 14px;
    transform: translateY(-50%) translateX(6px);
}

/* Desktop: display arrows on hover */
@media (min-width: 768px) {

    .main-image-wrapper:hover .swiper-button-prev,
    .main-image-wrapper:hover .swiper-button-next,
    .qv-main-swiper:hover .swiper-button-prev,
    .qv-main-swiper:hover .swiper-button-next {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) translateX(0);
    }
}

/* Mobile: hide arrows completely */
@media (max-width: 767.98px) {

    .main-image-wrapper .swiper-button-prev,
    .main-image-wrapper .swiper-button-next,
    .qv-main-swiper .swiper-button-prev,
    .qv-main-swiper .swiper-button-next {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

.product-single-info-content {
    width: 100%;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE FIX (< 768px)
   ========================================== */

@media (max-width: 991px) {
    .page-product-single .col-lg-6 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

@media (max-width: 767px) {

    /* 1. Main Container column-wise (Main Image Pehle, Thumbs Niche) */
    .product-single-image-box {
        flex-direction: column !important;
        height: auto !important;
        gap: 12px !important;
    }

    /* 2. Main Large Image Top Par Display Hogi */
    .main-image-wrapper {
        order: 1 !important;
        width: 100% !important;
        height: 350px !important;
        flex: none !important;
    }

    .product-single-image-item {
        height: 350px !important;
    }

    /* 3. Thumbnails Main Image ke Niche Aayenge */
    .vertical-thumbs-wrapper {
        order: 2 !important;
        width: 100% !important;
        height: auto !important;
        flex-direction: row !important;
    }

    /* Mobile Par Up/Down Arrows Complete Hide (Finger Touch Swipe On) */
    .thumb-nav-btn {
        display: none !important;
    }

    .vertical-thumbs-wrapper .product-single-image-slider {
        width: 100% !important;
        height: 70px !important;
    }

    .product-single-image-slider .swiper-slide {
        width: 65px !important;
        height: 65px !important;
    }
}

/* ==========================================
   NAVIGATION ARROWS FOR GALLERY & THUMBNAILS
   ========================================== */

/* Thumbnails Outer Wrapper */
.vertical-thumbs-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 480px;
    width: 75px;
    position: relative;
}

.vertical-thumbs-wrapper .product-single-image-slider {
    height: calc(100% - 50px) !important;
    /* Space reserved for arrows */
}

/* Up/Down Arrow Buttons for Thumbnails */
.thumb-nav-btn {
    background: #ffffff;
    border: 1px solid var(--divider-color);
    color: var(--primary-color);
    width: 100%;
    height: 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.thumb-nav-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.thumb-nav-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Main Image Wrapper & Left/Right Arrows */
.main-image-wrapper {
    flex: 1 1 auto;
    width: 0;
    min-width: 0;
    height: 480px;
    position: relative;
}

.product-single-info-content {
    width: 100%;
}

.product-single-price h2,
.product-single-title h1 {
    font-size: 30px;
}

.product-single-price span,
.product-single-title span {
    display: inline-block;
    font-size: 16px;
    line-height: normal;
    margin-top: 10px;
}

.product-single-price {
    margin-top: 30px;
}

.product-single-price h2 sub {
    font-family: var(--default-font);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: line-through;
    bottom: 0;
}

.product-single-description {
    border-top: 1px solid var(--divider-color);
    margin-top: 20px;
    padding-top: 20px;
}

.product-single-description p {
    margin-bottom: 20px;
}

.product-single-description p:last-child {
    margin-bottom: 0;
}

.product-single-details-list {
    margin-top: 30px;
}

.product-single-details-list h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.product-single-details-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-single-details-list ul li input[type="radio"]:checked+label {
    background: var(--primary-color);
    color: var(--white-color);
}

.product-single-details-list ul li input[type="radio"] {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.product-single-details-list ul li label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1em;
    color: var(--primary-color);
    border: 1px solid var(--divider-color);
    border-radius: 4px;
    padding: 9px 16px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.product-single-content-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.qty-box {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    border: 1px solid var(--divider-color);
    padding: 13px 12px;
    border-radius: 4px;
    gap: 10px;
}

.qty-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--primary-color);
    font-size: 26px;
    line-height: 0;
    outline: none;
}

.qty-input {
    width: 44px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    outline: none;
    box-shadow: none !important;
    padding: 0;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-single-content-btn {
    line-height: 0;
}

.product-single-content-btn .btn-default {
    background: var(--primary-color);
    color: var(--white-color);
}

.product-single-content-btn .btn-default:hover {
    color: var(--primary-color);
}

.product-single-content-btn .btn-default::after {
    background: var(--white-color);
}

.product-single-action ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-single-action ul li a {
    display: inline-block;
    border: 1px solid var(--divider-color);
    border-radius: 4px;
    padding: 12px 20px;
    transition: all 0.4s ease-in-out;
}

.product-single-action ul li a:hover {
    background: var(--primary-color);
}

.product-single-action ul li a img {
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
}

.product-single-action ul li a:hover img {
    filter: brightness(0) invert(1);
}

.product-single-content-footer {
    border-top: 1px solid var(--divider-color);
    margin-top: 30px;
    padding-top: 30px;
}

.product-shipping-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-shipping-box ul li {
    line-height: 1.5em;
    margin-bottom: 15px;
}

.product-shipping-box ul li:last-child {
    margin-bottom: 0;
}

.product-shipping-box ul li img {
    width: 100%;
    max-width: 24px;
    margin-right: 10px;
}

.product-step-nav {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.product-step-nav .nav-tabs {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    border: none;
}

.product-step-nav ul li {
    width: auto;
}

.product-step-nav ul li .nav-link {
    position: relative;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 1em;
    padding: 0;
    border-radius: 0;
    margin: 0;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.product-step-nav ul li .nav-link.active,
.product-step-nav ul li .nav-link:hover {
    background: transparent;
    color: var(--primary-color);
}

.product-step-nav ul li .nav-link::before {
    content: '';
    display: block;
    position: absolute;
    top: auto;
    left: auto;
    bottom: -32px;
    right: 0;
    background-color: var(--primary-color);
    width: 0;
    height: 2px;
    transition: all 0.4s ease-in-out;
}

.product-step-nav ul li .nav-link.active::before,
.product-step-nav ul li .nav-link:hover:before {
    width: 100%;
    right: auto;
    left: 0;
}

.product-tab-item-box h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.product-tab-item-box h3 {
    font-size: 22px;
    margin-top: 20px;
}

.product-tab-item-box p {
    margin-bottom: 20px;
}

.product-tab-item-box ul {
    list-style: disc;
    padding: 0 0 0 20px;
    margin: 20px 0 0 0;
}

.product-tab-item-box ul li {
    line-height: 1.4em;
    margin-bottom: 12px;
}

.product-tab-item-box ul:first-child,
.product-tab-item-box p:last-child,
.product-tab-item-box ul li:last-child {
    margin: 0;
}

.product-review-from-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
}

.customer-review-list {
    width: 100%;
}

.customer-review-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

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

.customer-review-item .icon-box img {
    width: 100%;
    max-width: 50px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

.customer-review-item-body {
    width: calc(100% - 65px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.customer-review-item-content p {
    margin: 0 0 5px 0;
}

.customer-review-item-content p:last-child {
    margin-bottom: 0;
}

.customer-review-item-content p span {
    color: var(--primary-color);
    font-weight: 600;
}

.customer-review-item-rating i {
    color: var(--primary-color);
    font-size: 16px;
}

.review-form-content {
    margin-bottom: 30px;
}

.review-form-content h3 {
    font-size: 22px;
    margin: 0 0 5px 0;
}

.review-form-content p {
    margin: 15px 0 0;
}

.review-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--primary-color);
    border: 1px solid var(--divider-color);
    background-color: transparent;
    border-radius: 4px;
    padding: 12px 20px;
    box-shadow: none;
    outline: none;
}

.review-form .form-control::placeholder {
    color: var(--text-color);
    opacity: 50%;
}

.review-form-note {
    display: flex;
    align-items: start;
    gap: 5px;
}

.review-form-note input {
    margin-top: 1px;
}

.review-form-note .form-label {
    margin: 0;
}

.review-form .btn-default {
    width: 100%;
    margin: 20px 0 0 0;
}

/* ==========================================
   PRODUCT DETAILS: SPECIFICATIONS GRID
   ========================================== */

.spec-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #282c3f;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
}

.spec-item-box {
    border-bottom: 1px solid #eaeaec;
    padding-bottom: 14px;
    margin-bottom: 20px;
    margin-right: 15px;
}

.spec-item-label {
    font-size: 13px;
    color: #7e859b;
    font-weight: 400;
    margin-bottom: 4px;
    line-height: 1.3;
}

.spec-item-value {
    font-size: 15px;
    color: #282c3f;
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
}

@media (max-width: 575.98px) {
    .spec-item-box {
        margin-right: 0;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }
}

.related-products {
    padding: 60px 0 60px;
}

.related-product-items-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.related-product-items-list .product-item {
    width: calc(25% - 15px);
}

/****************************************/
/***      	 20. Cart Page css        ***/
/****************************************/

.page-cart {
    padding: 120px 0;
}

.cart-item-header,
.cart-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.cart-item-header span {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4em;
    color: var(--primary-color);
}

.product-header-tag {
    width: calc(46% - 7.5px);
}

.price-header-tag {
    width: calc(18% - 7.5px);
}

.quantity-header-tag {
    width: calc(21% - 7.5px);
}

.subtotal-header-tag {
    width: calc(15% - 7.5px);
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-item-image-content {
    width: calc(63% - 5px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 30px;
}

.cart-item-image {
    position: relative;
    width: 85px;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 5px 0 0;
}

.cart-item-image::before {
    content: '\f00d';
    position: absolute;
    top: -5px;
    right: -5px;
    font-family: 'FontAwesome';
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-color);
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    font-size: 12px;
    color: var(--text-color);
    cursor: pointer;
}

.cart-item-image figure {
    display: block;
    border-radius: 4px;
}

.cart-item-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-info-content {
    width: calc(100% - 120px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-grow: 1;
}

.cart-item-title {
    max-width: 155px;
}

.cart-item-title p {
    color: var(--primary-color);
}

.cart-item-title p:last-child {
    margin-bottom: 0;
}

.cart-item-price {
    width: 35%;
}

.cart-item-price p:last-child {
    margin-bottom: 0;
}

.cart-item-quantity-total {
    width: calc(37% - 5px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cart-item-quantity .qty-box {
    padding: 6px 10px;
    gap: 10px;
}

.cart-item-quantity .qty-btn {
    font-size: 22px;
}

.cart-item-subtotal {
    width: 40%;
}

.cart-item-subtotal p:last-child {
    margin-bottom: 0;
}

.cart-item-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    margin-top: 40px;
}

.cart-item-buttons .btn-default {
    padding: 17px 30px 17px 60px;
}

.cart-item-buttons .btn-default.btn-update::before,
.cart-item-buttons .btn-default.btn-clear::before {
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    color: var(--primary-color);
    background: transparent;
    left: 30px;
    transform: translateY(-50%);
    top: 50%;
    width: auto;
    height: auto;
    right: auto;
    transition: all 0.4s ease-in-out;
}

.cart-item-buttons .btn-default.btn-update:hover::before,
.cart-item-buttons .btn-default.btn-clear:hover::before {
    color: var(--white-color);
}

.cart-item-buttons .btn-default.btn-update::before {
    content: '\f01e';
    font-weight: 700;
}

.cart-item-buttons .btn-default.btn-clear::before {
    content: '\f2ed';
    font-weight: 400;
}

.interested-products-box {
    margin-top: 120px;
}

.interested-products-box-title {
    margin-bottom: 30px;
}

.interested-products-box-title h2 {
    font-size: 30px;
    line-height: 1.1em;
}

.page-single-sidebar.right-side-sidebar {
    margin: 0 0 0 20px;
}

.order-summary-box {
    border: 1px solid var(--divider-color);
    border-radius: 4px;
    padding: 15px;
}

.order-summary-content-box {
    padding: 15px;
    margin-bottom: 15px;
}

.order-summary-box-title,
.order-summary-promocode-box,
.order-summary-shipment-info {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.order-summary-box-title h2 {
    font-size: 20px;
}

.order-summary-promocode-form {
    margin-bottom: 30px;
}

.order-summary-promocode-form .form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 4px;
    padding: 5px;
}

.order-summary-promocode-form .form-group .form-control {
    width: 170px;
    font-size: 16px;
    line-height: normal;
    color: var(--text-color);
    background-image: url('../images/icon-tag.svg');
    background-repeat: no-repeat;
    background-position: left 12px center;
    background-size: 14px auto;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    flex-grow: 1;
    padding: 8px 10px 8px 36px;
}

.order-summary-promocode-form .form-group .form-control::placeholder {
    color: var(--text-color);
}

.order-summary-promocode-form .form-group button.promocode-btn {
    color: var(--white-color);
    background: var(--accent-color);
    line-height: 1em;
    border: none;
    border-radius: 4px;
    outline: none;
    padding: 12px 30px;
    transition: all 0.4s ease-in-out;
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.order-summary-total h3 {
    font-size: 20px;
    line-height: normal;
}

.order-summary-shipment-info h3 {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 20px;
}

.order-summary-shipment-info ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.order-summary-shipment-info ul li {
    margin-bottom: 15px;
}

.order-summary-shipment-info ul li:last-child {
    margin-bottom: 0;
}

.order-summary-shipment-info ul li,
.order-summary-shipment-info ul li span {
    font-size: 16px;
    line-height: normal;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px 10px;
}

.order-summary-shipment-info ul li span {
    flex-grow: 1;
    font-weight: 400;
    color: var(--text-color);
}

.order-summary-shipment-info ul li span label {
    width: calc(100% - 28px);
}

.order-summary-shipment-info ul li input[type=radio] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.order-summary-shipment-info p {
    font-size: 16px;
    margin-bottom: 5px;
}

.order-summary-shipment-info p span {
    font-weight: 600;
    color: var(--primary-color);
}

.order-summary-shipment-info a {
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: underline;
}

.order-checkout-button .btn-default {
    width: 100%;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
}

.order-checkout-button .btn-default:hover {
    color: var(--primary-color);
}

.order-checkout-button .btn-default::after {
    background: var(--bg-color);
}

/****************************************/
/***   21. Order Received Page css    ***/
/****************************************/

.page-order-details {
    padding: 120px 0;
}

.order-detail-sidebar {
    border: 1px solid var(--divider-color);
    border-radius: 4px;
    padding: 30px;
}

.order-detail-sidebar-item {
    margin-bottom: 50px;
}

.order-detail-sidebar-item:last-child {
    margin-bottom: 0;
}

h2.order-sidebar-item-title {
    font-size: 20px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.order-detail-sidebar-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-detail-sidebar-item ul li {
    line-height: 1.5em;
    margin-bottom: 20px;
}

.order-detail-sidebar-item ul li:last-child {
    margin-bottom: 0;
}

.order-detail-sidebar-item ul li a {
    display: block;
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.order-detail-sidebar-item ul li a:hover {
    color: var(--accent-color);
}

.order-detail-box ul li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.order-detail-box ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.order-detail-box ul li span b {
    font-weight: 400;
    color: var(--primary-color);
}

.order-detail-title-box {
    margin-bottom: 40px;
}

.order-detail-title-box h2 {
    font-size: 40px;
}

.order-detail-title-box p {
    font-size: 20px;
    margin: 5px 0 0;
}

.order-detail-content-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-detail-content-list ul li {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    line-height: 1.5em;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.order-detail-content-list ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.order-detail-content-list ul li span {
    width: 67%;
}

li.order-detail-content-list-title {
    font-family: var(--accent-font);
    font-weight: 500;
    color: var(--primary-color);
}

/****************************************/
/***       22. Checkout Page css      ***/
/****************************************/

.page-checkout {
    padding: 120px 0;
}

.checkout-login-box {
    margin-bottom: 40px;
}

.checkout-login-accordion {
    margin-bottom: 30px;
}

.checkout-login-accordion:last-child {
    margin-bottom: 0;
}

.checkout-accordion-header .checkout-accordion-button {
    position: relative;
    width: 100%;
    font-family: var(--default-font);
    font-size: 16px;
    line-height: 1.25em;
    color: var(--text-color);
    background: transparent;
    border: 1px dashed var(--divider-color);
    border-radius: 4px;
    text-align: left;
    padding: 14px 40px 14px 20px;
}

.checkout-accordion-header .checkout-accordion-button::after,
.checkout-accordion-header .checkout-accordion-button.collapsed::after {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
    font-size: 18px;
    color: var(--text-color);
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.checkout-accordion-header .checkout-accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
}

.checkout-accordion-header .checkout-accordion-button b {
    color: var(--primary-color);
    font-weight: 400;
    text-decoration: underline;
}

.checkout-accordion-body {
    margin-top: 30px;
}

.checkout-accordion-body-content {
    margin-bottom: 30px;
}

.checkout-accordion-body-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

.checkout-accordion-body-content p:last-child {
    margin-bottom: 0;
}

.checkout-bill-address-form .form-group,
.checkout-login-form .form-group {
    margin-bottom: 30px;
}

.checkout-bill-address-form .form-group:last-child,
.checkout-login-form .form-group:last-child {
    margin-bottom: 0;
}

.checkout-bill-address-form .form-group label,
.checkout-login-form .form-group label {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.checkout-bill-address-form .form-control,
.checkout-login-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    border: 1px solid var(--divider-color);
    background-color: transparent;
    border-radius: 4px;
    padding: 12px 20px;
    box-shadow: none;
    outline: none;
}

.checkout-bill-address-form .form-control::placeholder,
.checkout-login-form .form-control::placeholder {
    color: var(--text-color);
}

.checkout-bill-address-form select.form-control {
    padding: 12px 35px 12px 20px;
}

.checkout-login-form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.checkout-login-btn .btn-default {
    background: var(--primary-color);
    color: var(--white-color);
}

.checkout-login-btn .btn-default:hover {
    color: var(--primary-color);
}

.checkout-login-btn .btn-default::after {
    background: var(--bg-color);
}

.checkout-form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-form-checkbox input[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.checkout-form-checkbox label {
    font-size: 16px;
    color: var(--text-color);
    cursor: pointer;
    margin: 0;
}

.checkout-bill-address-title {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.checkout-bill-address-title h2 {
    font-size: 20px;
}

.checkout-form-checkbox.different-address-note {
    margin-top: 20px;
}

.checkout-form-checkbox.different-address-note label {
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
}

.checkout-sidebar-box {
    border: 1px solid var(--divider-color);
    border-radius: 4px;
    padding: 15px;
}

.product-total-order-box {
    padding: 15px;
}

.checkout-coupeon-accordion {
    margin-bottom: 30px;
}

.checkout-coupeon-accordion:last-child {
    margin-bottom: 0;
}

.coupeon-accordion-header .coupeon-accordion-button {
    position: relative;
    width: 100%;
    font-family: var(--default-font);
    font-size: 16px;
    line-height: 1.25em;
    color: var(--text-color);
    background: transparent;
    border: 1px dashed var(--divider-color);
    border-radius: 4px;
    text-align: left;
    padding: 14px 40px 14px 20px;
}

.coupeon-accordion-header .coupeon-accordion-button::after,
.coupeon-accordion-header .coupeon-accordion-button.collapsed::after {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
    font-size: 18px;
    color: var(--text-color);
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.coupeon-accordion-header .coupeon-accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
}

.coupeon-accordion-header .coupeon-accordion-button b {
    color: var(--primary-color);
    font-weight: 400;
    text-decoration: underline;
}

.coupeon-accordion-body {
    margin-top: 30px;
}

.coupeon-accordion-body-content {
    margin-bottom: 20px;
}

.coupeon-accordion-body-content p {
    margin-bottom: 15px;
}

.coupeon-accordion-body-content p:last-child {
    margin-bottom: 0;
}

.coupeon-apply-form {
    display: flex;
    align-items: center;
    border: 1px solid var(--divider-color);
    border-radius: 4px;
    padding: 5px;
}

.coupeon-apply-form .form-group {
    min-width: 200px;
    flex: 1;
}

.coupeon-apply-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--primary-color);
    background-color: transparent;
    background-image: url('../images/icon-tag.svg');
    background-repeat: no-repeat;
    background-position: left 13px top 56%;
    background-size: 14px auto;
    border-radius: 0;
    border: none;
    box-shadow: none;
    outline: none;
    padding: 8px 18px 8px 35px;
}

.coupeon-apply-form .form-control::placeholder {
    color: var(--text-color);
    opacity: 50%;
}

.coupeon-apply-btn .btn-default {
    line-height: normal;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
}

.coupeon-apply-btn .btn-default::after {
    background: var(--bg-color);
}

.coupeon-apply-btn .btn-default:hover {
    color: var(--primary-color);
}

.product-total-order-title {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.product-total-order-title h3 {
    font-size: 20px;
}

.product-total-item-tag-list {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.product-total-item-tag {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.product-total-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid var(--divider-color);
    margin-top: 20px;
    padding-top: 20px;
}

.product-total-item-header {
    max-width: 70%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.product-total-item-image {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 4px;
    overflow: hidden;
}

.product-total-item-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-total-item-title {
    width: calc(100% - 65px);
}

.product-total-item-title p,
.product-total-item-subtotal p {
    margin: 0;
}

.all-product-total {
    border-top: 1px solid var(--divider-color);
    margin-top: 20px;
    padding-top: 20px;
}

.all-product-total p {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    line-height: normal;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.all-product-total p:last-child {
    margin-bottom: 0;
}

.product-total-order-list .order-summary-shipment-info {
    border-top: 1px solid var(--divider-color);
    border-bottom: none;
    margin: 20px 0 0 0;
    padding: 20px 0 0 0;
}

.order-payment-info {
    border-top: 1px solid var(--divider-color);
    margin-top: 20px;
    padding-top: 20px;
}

.order-payment-info-item {
    margin-bottom: 20px;
}

.order-payment-info-item:last-child {
    margin-bottom: 0;
}

.order-payment-info-item span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    color: var(--text-color);
}

.order-payment-info-item input[type=radio] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.order-payment-info-item span label {
    width: calc(100% - 28px);
    font-weight: 500;
    color: var(--primary-color);
}

.order-payment-info-item p {
    margin: 10px 0 0 0;
}

.place-order-button {
    margin-top: 15px;
}

.place-order-button .btn-default {
    width: 100%;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
}

.place-order-button .btn-default:hover {
    color: var(--primary-color);
}

.place-order-button .btn-default::after {
    background: var(--bg-color);
}

/* Add New Address Button */
.btn-add-new-address {
    background: transparent;
    border: 1px dashed var(--primary-color);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-add-new-address:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Saved Address Cards */
.address-select-card input[type="radio"] {
    display: none;
}

.address-card-label {
    border: 2px solid var(--divider-color);
    background-color: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.address-select-card input[type="radio"]:checked+.address-card-label {
    border-color: var(--primary-color);
    background-color: #fdfbf7;
    box-shadow: 0 4px 15px rgba(117, 81, 63, 0.1);
}

.deliver-badge {
    display: none;
    font-size: 11px;
    font-weight: 700;
    color: #15803d;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 2px 8px;
    border-radius: 12px;
}

.address-select-card input[type="radio"]:checked+.address-card-label .deliver-badge {
    display: inline-block;
}

/* Payment Method Cards */
.payment-method-card input[type="radio"] {
    display: none;
}

.payment-card-label {
    border: 2px solid var(--divider-color);
    background-color: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-radio-indicator {
    width: 18px;
    height: 18px;
    border: 2px solid var(--divider-color);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.payment-method-card input[type="radio"]:checked+.payment-card-label {
    border-color: var(--primary-color);
    background-color: #fdfbf7;
    box-shadow: 0 4px 15px rgba(117, 81, 63, 0.08);
}

.payment-method-card input[type="radio"]:checked+.payment-card-label .payment-radio-indicator {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    box-shadow: inset 0 0 0 3px #ffffff;
}

/* Collapsible Coupon Bar */
.coupon-toggle-bar {
    background-color: #fcfaf5;
    border: 1px dashed var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-toggle-bar:hover {
    background-color: #f7f3e8;
}

.coupon-toggle-bar .coupon-arrow {
    transition: transform 0.3s ease;
}

.coupon-toggle-bar[aria-expanded="true"] .coupon-arrow {
    transform: rotate(180deg);
}

/* Sticky Summary Bar */
@media (min-width: 992px) {
    .sticky-top-summary {
        position: sticky;
        top: 90px;
        z-index: 5;
    }
}

/* Utility Helpers */
.fs-8 {
    font-size: 12px !important;
}

.fs-7 {
    font-size: 14px !important;
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 1. Price Color Theme Match (Blue to Luxury Primary Theme) */
.price-main,
.checkout-items-list .text-primary,
.order-items-scroll .text-primary,
.order-item-card .text-primary,
.back-order.text-primary,
.support-content-wrapper .text-primary {
    color: var(--primary-color) !important;
}

.primary-text {
    color: var(--primary-color) !important;
}

/* 2. Coupon Toggle Arrow Position Fix */
.coupon-toggle-bar {
    padding: 10px 14px !important;
}

.coupon-toggle-bar .coupon-arrow {
    font-size: 11px !important;
    margin-left: 8px;
}

/* 3. Address Card Equal Height & Radio Circle Fix */
.address-card-label {
    min-height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 4. Smooth Hover on Unselected Address Cards */
.address-select-card:not(.active) .address-card-label:hover {
    border-color: var(--accent-color);
    background-color: #faf8f3;
}

/****************************************/
/***  23. Account Dashboard Page css  ***/
/****************************************/

.page-my-account {
    padding: 120px 0;
}

.my-account-sidebar-item {
    border: 1px solid var(--divider-color);
    border-radius: 4px;
    padding: 40px;
}

.my-account-sidebar-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.my-account-sidebar-item ul li {
    font-weight: 500;
    color: var(--primary-color);
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.my-account-sidebar-item ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.my-account-sidebar-item ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: initial;
    transition: all 0.4s ease-in-out;
}

.my-account-sidebar-item ul li a:hover {
    color: var(--accent-color);
}

.my-account-sidebar-item ul li img {
    width: 100%;
    max-width: 24px;
}

.account-dashboard-detail-box p {
    margin-bottom: 30px;
}

.account-dashboard-detail-box p:last-child {
    margin-bottom: 0;
}

.account-dashboard-detail-box p b {
    font-weight: 600;
    color: var(--primary-color);
}

.account-dashboard-detail-box p a {
    text-decoration: underline;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.account-dashboard-detail-box p {
    font-size: 18px;
}

p.account-dashboard-detail-title {
    font-size: 20px;
}

/****************************************/
/***    24. Account Order Page css    ***/
/****************************************/

.page-account-order {
    padding: 120px 0;
}

.account-order-table-box {
    overflow-x: auto;
    cursor: grab;
}

.account-order-table-box table {
    width: 100%;
    white-space: nowrap;
}

.account-order-table-box::-webkit-scrollbar {
    height: 7px;
}

.account-order-table-box::-webkit-scrollbar-track {
    background-color: var(--primary-color);
}

.account-order-table-box::-webkit-scrollbar-thumb {
    background: var(--secobdary-color);
}

.account-order-table-box table tr th {
    min-width: 100px;
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--primary-color);
    padding: 0 10px 20px 0;
}

.account-order-table-box table tr td {
    border-top: 1px solid var(--divider-color);
    padding: 20px 10px 20px 0;
}

.account-order-table-box table tr:last-child td {
    padding-bottom: 0;
}

.account-order-table-box table tr td:last-child {
    padding-right: 0;
}

.account-order-table-box table tr td.account-order-table-no {
    color: var(--primary-color);
}

.account-order-table-box table tr td .btn-default {
    font-weight: 600;
    padding: 8px 30px;
}

.account-order-table-box table tr td .btn-default::before {
    display: none;
}

.account-order-button {
    margin-top: 40px;
}

/****************************************/
/***  25. Account Order View Page css ***/
/****************************************/

.page-account-view-order {
    padding: 120px 0;
}

.view-order-product-info-box .product-header-tag {
    width: calc(53% - 6.67px);
}

.view-order-product-info-box .quantity-header-tag {
    width: calc(27% - 6.67px);
}

.view-order-product-info-box .subtotal-header-tag {
    width: calc(20% - 6.67px);
}

.view-order-product-info-box .cart-item-image-content {
    width: calc(53% - 5px);
}

.view-order-product-info-box .cart-item-quantity-total {
    width: calc(47% - 5px);
}

.view-order-product-info-box .cart-item-subtotal {
    width: 44%;
}

.view-order-product-info-box .cart-item-quantity p:last-child {
    margin: 0;
}

ul.view-order-product-info-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.view-order-product-info-list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-weight: 500;
    line-height: 1.2em;
    color: var(--primary-color);
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

ul.view-order-product-info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

ul.view-order-product-info-list li span {
    width: 21%;
    font-weight: 400;
    color: var(--text-color);
}

.view-order-address-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 90px;
    margin-top: 80px;
}

.view-order-address-item {
    width: calc(50% - 45px);
}

.view-order-address-item h2 {
    font-size: 20px;
}

.view-order-address-item ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--divider-color);
}

.view-order-address-item ul li {
    line-height: 1.5em;
    margin-bottom: 20px;
}

.view-order-address-item ul li:last-child {
    margin-bottom: 0;
}

.view-order-address-item ul li a {
    display: block;
    color: inherit;
}

/****************************************/
/***  26. Account Download Page css   ***/
/****************************************/

.page-product-download {
    padding: 120px 0;
}

/****************************************/
/***   27. Account Address Page css   ***/
/****************************************/

.page-my-account-address {
    padding: 120px 0;
}

.account-address-content-header {
    margin-bottom: 40px;
}

.account-address-content-header p:last-child {
    margin-bottom: 0;
}

.account-address-item {
    margin-bottom: 50px;
}

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

.account-address-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.account-address-item-title h2 {
    font-size: 20px;
}

.account-address-item-title p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.account-address-item-title p a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.account-address-item-title p a:hover {
    color: var(--primary-color);
}

.account-address-item-title p a img {
    width: 100%;
    max-width: 20px;
    transition: all 0.4s ease-in-out;
}

.account-address-item-title p a:hover img {
    filter: brightness(0) invert(0);
}

.account-address-item-info-list {
    max-width: 415px;
}

.account-address-item-info-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.account-address-item-info-list ul li {
    line-height: 1.5em;
    margin-bottom: 20px;
}

.account-address-item-info-list ul li:last-child {
    margin-bottom: 0;
}

/****************************************/
/***  28. Account Addresses Page css  ***/
/****************************************/

.page-account-addresses {
    padding: 120px 0;
}

.account-address-form-btn {
    margin-top: 10px;
}

/****************************************/
/***   29. Account Details Page css   ***/
/****************************************/

.page-account-details {
    padding: 120px 0;
}

.account-details-content-item {
    margin-bottom: 50px;
}

.account-details-content-item:last-child {
    margin-bottom: 0;
}

/****************************************/
/***   30. Account Wishlist Page css  ***/
/****************************************/

.page-account-wishlist {
    padding: 120px 0;
}

.wishlist-item-header,
.wishlist-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.wishlist-item-header span {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--primary-color);
}

.wishlist-product-tag {
    width: calc(42% - 7.5px);
}

.wishlist-price-tag {
    width: calc(23% - 7.5px);
}

.wishlist-status-tag {
    width: calc(26% - 7.5px);
}

.wishlist-action-tag {
    width: calc(9% - 7.5px);
}

.wishlist-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.wishlist-item-image-content {
    width: calc(65% - 5px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.wishlist-item-image {
    position: relative;
    background: var(--secondary-color);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
}

.wishlist-item-image figure {
    display: block;
    max-width: 60px;
}

.wishlist-item-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.wishlist-item-info-content {
    width: calc(100% - 75px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-grow: 1;
}

.wishlist-item-title p {
    color: var(--primary-color);
    max-width: 160px;
    line-height: normal;
}

.wishlist-item-title p:last-child {
    margin-bottom: 0;
}

.wishlist-item-price {
    width: 43%;
}

.wishlist-item-price p {
    line-height: normal;
    margin-bottom: 5px;
}

.wishlist-item-price p:last-child {
    margin-bottom: 0;
}

.wishlist-item-price p span {
    text-decoration: line-through;
}

.wishlist-item-status-action {
    width: calc(35% - 5px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.wishlist-item-status p:last-child {
    margin-bottom: 0;
}

.wishlist-item-action {
    width: 22%;
}

.wishlist-item-action a {
    display: inline-block;
    color: var(--error-color);
    transition: all 0.4s ease-in-out;
}

.wishlist-item-action a i {
    font-size: 24px;
    color: inherit;
}

.wishlist-item-action a:hover {
    color: var(--primary-color);
}

.wishlist-content-button {
    margin-top: 40px;
}

/****************************************/
/***      	31. Login Page css	      ***/
/****************************************/

.page-login {
    padding: 120px 0;
}

.login-content-box {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 80px;
}

.login-content-form-item {
    width: calc(50% - 40px);
}

.login-content-title-box {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--divider-color);
}

.login-content-title-box h2 {
    font-size: 36px;
}

.login-content-title-box p {
    margin: 15px 0 0;
}

.login-content-form-btn {
    margin-top: 30px;
}

.login-content-form-btn a {
    font-size: 20px;
    color: var(--primary-color);
    text-decoration: underline;
}

.login-form-info p {
    margin-bottom: 15px;
}

.login-form-info p:last-child {
    margin: 0;
}

.login-form-info p a {
    color: var(--primary-color);
    text-decoration: underline;
}

.signup-form-btn {
    margin-top: 30px;
}

.signup-form-btn .btn-default {
    width: 100%;
}

/****************************************/
/***      32. Forgot Password css     ***/
/****************************************/

.page-forgot-password {
    padding: 120px 0;
}

.forgot-password-content-box .login-content-form-item {
    width: auto;
    max-width: 860px;
    margin: 0 auto;
}

/****************************************/
/***    33. Privacy Policy Page css   ***/
/****************************************/

.page-privacy-policy {
    padding: 120px 0;
}

.privacy-policy-sidebar-list ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.page-category-list.privacy-policy-sidebar-list ul li a {
    padding-right: 0;
}

.privacy-policy-sidebar-list ul li a::before {
    display: none;
}

.privacy-policy-entry-header {
    margin-bottom: 60px;
}

.privacy-policy-entry-header h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.privacy-policy-entry-header p {
    margin-bottom: 20px;
}

.privacy-policy-entry-header h3:last-child,
.privacy-policy-entry-header p:last-child {
    margin-bottom: 0;
}

.privacy-policy-entry-header p a {
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.privacy-policy-entry-header p a:hover {
    color: var(--accent-color);
}

.privacy-policy-entry-item {
    margin-bottom: 60px;
}

.privacy-policy-entry-item:last-child {
    margin-bottom: 0;
}

.privacy-policy-entry-item .section-title:last-child {
    margin-bottom: 0;
}

.privacy-policy-entry-item .section-title h2 {
    font-size: 36px;
}

.privacy-policy-entry-item .section-title ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.privacy-policy-entry-item .section-title ul li {
    line-height: 1.4em;
    margin-bottom: 10px;
}

.privacy-policy-entry-item .section-title ul li:last-child {
    margin-bottom: 0;
}

.privacy-policy-entry-item .section-title ul li span {
    color: var(--primary-color);
}

.privacy-policy-entry-item .section-title ul li a {
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.privacy-policy-entry-item .section-title ul li a:hover {
    color: var(--accent-color);
}

.privacy-policy-entry-item-content-box {
    margin-bottom: 50px;
}

.privacy-policy-entry-item-content-box:last-child {
    margin-bottom: 0;
}

.privacy-policy-entry-item-content-box h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.privacy-policy-entry-item-content-box p {
    margin-bottom: 15px;
}

.privacy-policy-entry-item-content-box p:last-child {
    margin-bottom: 0;
}

.privacy-policy-entry-item-content-box p span {
    color: var(--primary-color);
}

.privacy-policy-entry-item-content-box ul {
    list-style: disc;
    margin: 0 0 20px;
    padding: 0 0 0 20px;
}

.privacy-policy-entry-item-content-box.number-list ul {
    list-style: decimal;
    padding-left: 25px;
}

.privacy-policy-entry-item-content-box h3:last-child,
.privacy-policy-entry-item-content-box ul:last-child {
    margin-bottom: 0;
}

.privacy-policy-entry-item-content-box ul li {
    line-height: 1.4em;
    margin-bottom: 10px;
}

.privacy-policy-entry-item-content-box ul li:last-child {
    margin-bottom: 0;
}

.privacy-policy-entry-item-content-box ul li span,
.privacy-policy-entry-item-content-box ul li::marker {
    color: var(--primary-color);
}

.privacy-policy-entry-item-content-box ul li a {
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.privacy-policy-entry-item-content-box ul li a:hover {
    color: var(--accent-color);
}

.privacy-policy-entry-item-content-box ul.contact-list-box {
    padding: 0;
}

.privacy-policy-entry-item-content-box ul.contact-list-box {
    list-style: none;
}

.privacy-policy-entry-item-content-box ul.contact-list-box li b {
    font-weight: 600;
    color: var(--primary-color);
}

/* ==========================================
   POLICY PAGES MODERN STYLING
   ========================================== */

/* Page Switcher Navigation */
.policy-page-nav-list li a {
    background-color: transparent;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.policy-page-nav-list li.active a,
.policy-page-nav-list li a:hover {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.policy-page-nav-list li.active a span {
    color: var(--primary-color) !important;
}

.policy-page-nav-list li.active a i {
    color: var(--accent-color) !important;
}

/* On-Page Table of Contents Links */
.policy-toc-list a {
    transition: all 0.25s ease;
}

.policy-toc-list a:hover {
    color: var(--primary-color) !important;
    padding-left: 4px;
}

/* Offset for Smooth Header Anchor Scroll */
.scroll-margin-top {
    scroll-margin-top: 110px;
}

.policy-section-num {
    font-weight: 700;
    line-height: 1;
}

/****************************************/
/***   34. Term Condition Page css    ***/
/****************************************/

.page-terms-conditions {
    padding: 120px 0;
}

/****************************************/
/***   35. Refund Return Policy css   ***/
/****************************************/

.page-refund-return-policy {
    padding: 120px 0;
}

/****************************************/
/***	36. Cancellation Policy css   ***/
/****************************************/

.page-cancellation-policy {
    padding: 120px 0;
}

/****************************************/
/***   37. Delivery Policy Page css   ***/
/****************************************/

.page-delivery-policy {
    padding: 120px 0;
}

/****************************************/
/***     38. Testimonials Page css    ***/
/****************************************/

.page-testimonials {
    padding: 120px 0 90px;
}

.page-testimonials .testimonial-item {
    min-height: 440px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
}

.page-testimonials .testimonial-item .testimonial-item-author {
    border-color: var(--divider-color);
    padding-right: 0;
    margin-top: 0;
}

.page-testimonials .testimonial-item .testimonial-item-content p,
.page-testimonials .testimonial-item .testimonial-author-content p {
    color: var(--text-color);
}

.page-testimonials .testimonial-item .testimonial-item-rating i,
.page-testimonials .testimonial-item .testimonial-author-content h2 {
    color: var(--accent-color);
}

/****************************************/
/***		 39. Faqs Page css  	  ***/
/****************************************/

.page-faqs {
    padding: 120px 0;
}

.page-category-list {
    border: 1px solid var(--divider-color);
    border-radius: 4px;
    margin-bottom: 30px;
}

.page-category-list ul {
    list-style: none;
    margin: 0;
    padding: 30px;
}

.page-category-list ul li {
    line-height: 1.5em;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-category-list ul li:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.page-category-list ul li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    color: inherit;
    padding-right: 25px;
    transition: all 0.3s ease-in-out;
}

.page-category-list ul li a:hover {
    color: var(--primary-color);
}

.page-category-list ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    background: url('../images/arrow-primary.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before {
    transform: translateY(-50%) rotate(45deg);
}

.sidebar-cta-box {
    border: 1px solid var(--divider-color);
    border-radius: 4px;
    padding: 30px;
}

.sidebar-cta-title {
    max-width: 242px;
}

.sidebar-cta-box h2 {
    font-size: 22px;
    line-height: 1.4em;
}

.sidebar-cta-box ul {
    border-top: 1px solid var(--divider-color);
    margin: 40px 0 0 0;
    padding: 30px 0 0 0;
    list-style: none;
}

.sidebar-cta-box ul li {
    color: var(--text-color);
    line-height: 1.5em;
    margin-bottom: 15px;
}

.sidebar-cta-box ul li:last-child {
    margin-bottom: 0;
}

.sidebar-cta-box ul li a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-box ul li a:hover {
    color: var(--primary-color);
}

.sidebar-cta-box ul li a img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

.page-faq-accordion {
    margin-bottom: 60px;
}

.page-faq-accordion:last-child {
    margin-bottom: 0px;
}

/****************************************/
/***     40. Contact Us Page css  	  ***/
/****************************************/

.page-contact-us {
    padding: 120px 0 60px;
}

.google-map-iframe {
    margin-right: 20px;
}

.google-map-iframe,
.google-map-iframe iframe {
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.google-map-iframe iframe {
    width: 100%;
    filter: grayscale(0.8);
    transition: all 0.6s ease-in-out;
}

.google-map-iframe:hover iframe {
    filter: grayscale(0);
}

.contact-form label {
    font-family: var(--accent-font);
    font-size: 20px;
    color: var(--text-color);
    line-height: 1.2em;
    margin-bottom: 10px;
}

.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--primary-color);
    background: var(--secondary-color);
    border-radius: 4px;
    padding: 12px 20px;
    border: none;
    box-shadow: none;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--text-color);
}

.contact-form-btn {
    margin-top: 15px;
}

.contact-form .btn-default {
    width: 100%;
    text-align: center;
    background: var(--accent-color);
    color: var(--white-color);
}

.contact-form .btn-default:hover {
    color: var(--primary-color);
}

.contact-form .btn-default::after {
    background: var(--secondary-color);
}

.contact-info-box {
    padding: 60px 0 90px;
}

.contact-info-item {
    background: var(--secondary-color);
    border-radius: 4px;
    align-content: center;
    text-align: center;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px;
}

.contact-info-item .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    transition: all 0.5s ease-in-out;
}

.contact-info-item:hover .icon-box {
    background: transparent;
}

.contact-info-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box::before {
    transform: scale(1);
}

.contact-info-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.contact-info-item:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.contact-info-content p {
    line-height: normal;
    margin: 0 0 5px;
}

.contact-info-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-info-content ul li {
    font-family: var(--accent-font);
    font-size: 24px;
    line-height: 1.2em;
    margin-bottom: 5px;
}

.contact-info-content ul li:last-child {
    margin-bottom: 0;
}

.contact-info-content ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.contact-info-content ul li a:hover {
    color: var(--primary-color);
}

/* ==========================================
   CONTACT US PAGE BRAND STYLING
   ========================================== */

.contact-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: var(--accent-color);
}

.contact-card {
    transition: all 0.3s ease-in-out;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(117, 81, 63, 0.12) !important;
}

.contact-card:hover .contact-icon-circle {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
}

.google-map-wrapper iframe {
    min-height: 100%;
}

/* ==========================================
   ABOUT US PAGE BRAND ELEVATION STYLING
   ========================================== */

/* Top Trust Bar Cards */
.stat-trust-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.stat-trust-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(117, 81, 63, 0.1) !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
}

/* Mission & Vision Cards Hover */
.mission-vision-item {
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.mission-vision-item:hover {
    box-shadow: 0 12px 35px rgba(117, 81, 63, 0.18) !important;
}

/* Feature Pillars Card */
.what-we-item {
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(212, 175, 55, 0.18) !important;
}

.what-we-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(117, 81, 63, 0.12) !important;
    border-color: var(--accent-color, #d4af37) !important;
}

.about-image-composition .main-about-img img {
    transition: transform 0.6s ease;
}

.about-image-composition:hover .main-about-img img {
    transform: scale(1.02);
}


/* ==========================================
   ACCOUNT SIDEBAR & PROFILE PAGE STYLING
   ========================================== */

/* User Avatar Box */
.user-avatar-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

/* Sidebar Nav Items */
.account-nav-list .account-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.account-nav-list .account-nav-link i {
    width: 20px;
    font-size: 16px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.account-nav-list .nav-item.active .account-nav-link,
.account-nav-list .account-nav-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.account-nav-list .nav-item.active .account-nav-link i,
.account-nav-list .account-nav-link:hover i {
    color: var(--accent-color);
}

/* Sticky Sidebar Desktop */
@media (min-width: 992px) {
    .sticky-top-sidebar {
        position: sticky;
        top: 120px;
        z-index: 5;
    }
}

/* ==========================================
   ORDER LISTING & TRACKING TIMELINE STYLING
   ========================================== */

/* Order Status Pills Nav */
.custom-order-pills .nav-link {
    color: var(--text-color);
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.custom-order-pills .nav-link.active,
.custom-order-pills .nav-link:hover {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    border-color: var(--primary-color) !important;
}

/* ==========================================
   ORDER DETAILS & TIMELINE MODAL STYLING
   ========================================== */

.max-w-sm {
    max-width: 320px;
}

/* Vertical Tracking Timeline Dots */
.tracking-vertical-timeline {
    border-left-color: var(--divider-color) !important;
}

.timeline-step-item .timeline-dot {
    position: absolute;
    left: -23px;
    top: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

/* ==========================================
   ADVANCED SHIPMENT TRACKING STYLES
   ========================================== */

.tracking-summary-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 16px;
    border: 1px solid #eef2f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    min-height: 82px;
    transition: all 0.2s ease;
}

.tracking-summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.tracking-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tracking-card-body {
    flex: 1;
    min-width: 0;
}

.tracking-card-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
    line-height: 1.2;
}

.tracking-card-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin: 0;
    word-break: break-word;
}

.tracking-journey-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #eef2f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.shipment-stepper {
    position: relative;
    padding: 20px 10px 10px;
}

.shipment-progress-line-bg {
    position: absolute;
    top: 42px;
    left: 8%;
    right: 8%;
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 4px;
    z-index: 1;
}

.shipment-progress-line-fill {
    position: absolute;
    top: 42px;
    left: 8%;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 4px;
    z-index: 1;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.shipment-steps-row {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.shipment-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 4px;
}

.shipment-step-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #f3f4f6;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.shipment-step-node.completed .shipment-step-circle {
    background-color: #10b981;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.35);
}

.shipment-step-node.active .shipment-step-circle {
    background-color: #059669;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25), 0 4px 12px rgba(5, 150, 105, 0.4);
    animation: pulseActiveStep 2s infinite;
}

@keyframes pulseActiveStep {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4), 0 4px 12px rgba(5, 150, 105, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0), 0 4px 12px rgba(5, 150, 105, 0.4);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0), 0 4px 12px rgba(5, 150, 105, 0.4);
    }
}

.shipment-step-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 2px;
}

.shipment-step-node.completed .shipment-step-title,
.shipment-step-node.active .shipment-step-title {
    color: #111827;
}

.shipment-step-subtitle {
    font-size: 0.72rem;
    color: #9ca3af;
    line-height: 1.2;
}

.shipment-step-node.completed .shipment-step-subtitle,
.shipment-step-node.active .shipment-step-subtitle {
    color: #059669;
    font-weight: 600;
}

/* Scans Timeline Container & Items */
.tracking-scans-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #eef2f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.scans-timeline {
    position: relative;
    padding-left: 28px;
    margin-top: 18px;
}

.scans-timeline::before {
    content: '';
    position: absolute;
    top: 18px;
    bottom: 20px;
    left: 8px;
    width: 2px;
    background-color: #e5e7eb;
}

.scan-item-row {
    position: relative;
    margin-bottom: 16px;
}

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

.scan-item-dot {
    position: absolute;
    left: -28px;
    top: 20px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #e2e8f0;
    z-index: 2;
}

.scan-item-row.is-latest .scan-item-dot {
    background-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.scan-item-card {
    border-radius: 12px;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.scan-item-row.is-latest .scan-item-card {
    border: 1.5px solid #86efac;
    background-color: #f0fdf4;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.08);
}

.scan-item-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.scan-badge-latest {
    background: #e2e8f0;
    color: #475569;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.scan-badge-location {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fee2e2;
    font-size: 0.73rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

@media (max-width: 767.98px) {
    .shipment-stepper {
        overflow-x: auto;
        padding-bottom: 15px;
    }

    .shipment-steps-row {
        min-width: 480px;
    }

    .shipment-progress-line-bg,
    .shipment-progress-line-fill {
        left: 40px;
        right: 40px;
    }
}

/* Star Rating Input Cursor */
.star-rating-select .star-btn {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.star-rating-select .star-btn:hover {
    transform: scale(1.2);
}

/* ==========================================
   REFUND STEPPER PERFECT ALIGNMENT FIX
   ========================================== */

.refund-stepper-wrapper {
    padding: 10px 0;
}

/* Background Gray Line */
.refund-line-bg {
    position: absolute;
    top: 23px;
    left: 16.66%;
    right: 16.66%;
    height: 3px;
    background-color: var(--divider-color);
    z-index: 1;
}

/* Active Green Progress Line */
.refund-line-active {
    position: absolute;
    top: 23px;
    left: 16.66%;
    width: 66.68%;
    height: 3px;
    background-color: #16a34a;
    z-index: 1;
    transition: width 0.4s ease;
}

.refund-steps {
    z-index: 2;
}

.refund-step {
    flex: 1;
    position: relative;
    z-index: 2;
}

/* Circular Step Dots */
.refund-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid var(--divider-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-color);
    transition: all 0.3s ease;
}

/* Completed State Style */
.refund-step.completed .refund-dot {
    background-color: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
}

/* ==========================================
   ADDRESS BOOK CARDS STYLING
   ========================================== */

.address-manage-card {
    transition: all 0.3s ease;
}

.address-manage-card:hover {
    box-shadow: 0 8px 25px rgba(117, 81, 63, 0.12) !important;
    transform: translateY(-2px);
}

.border-primary-subtle {
    border-color: #ebd9b8 !important;
}

.border-accent {
    border-color: var(--accent-color) !important;
}


/* ==========================================
   WISHLIST CARDS STYLING
   ========================================== */

.wishlist-card {
    transition: all 0.3s ease;
}

.wishlist-card:hover {
    box-shadow: 0 8px 25px rgba(117, 81, 63, 0.12) !important;
    transform: translateY(-3px);
}

.wishlist-card-img {
    border-bottom: 1px solid var(--divider-color);
}

/* Quick Remove Cross Icon */
.btn-remove-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--white-color);
    border: 1px solid var(--divider-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.25s ease;
}

.btn-remove-wishlist:hover {
    background-color: #ef4444;
    border-color: #ef4444;
    color: #ffffff;
    transform: scale(1.1);
}

/* Out of Stock Image Grayscale */
.grayscale-img {
    filter: grayscale(1);
    opacity: 0.7;
}

/* ==========================================
   SUPPORT HUB PAGE STYLING
   ========================================== */

.support-icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.policy-card-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-card-link:hover {
    background-color: #fdfbf7 !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 4px 15px rgba(117, 81, 63, 0.08);
    transform: translateX(3px);
}

.policy-card-link:hover .policy-arrow {
    color: var(--primary-color) !important;
    transform: translateX(4px);
}

.policy-arrow {
    transition: transform 0.3s ease, color 0.3s ease;
}

/****************************************/
/***     41. 404 Error Page css  	  ***/
/****************************************/

.error-page {
    padding: 120px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 40px;
}

.error-page-image img {
    width: 100%;
    max-width: 630px;
}

.error-page-content {
    text-align: center;
}

.error-page-content .section-title {
    margin-bottom: 15px;
}

/* Offer Cards & Generic Card Boxes */
.top-offer-item,
.collection-item,
.limited-offer-item {
    box-shadow: none;
    /* Default flat look */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect - Subtle Soft Glow */
.top-offer-item:hover,
.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(117, 81, 63, 0.08);
    /* Warm brown theme-matched soft shadow */
}

/* ==========================================
   Full Width Top Search Drawer / Modal Styling
   ========================================== */

.top-search-modal {
    background-color: rgba(15, 23, 42, 0.65) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.top-search-modal .modal-dialog {
    max-width: 820px !important;
    margin: 24px auto !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.top-search-modal .modal-content {
    background: #ffffff !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 24px !important;
    padding: 0 !important;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.25) !important;
    position: relative;
    overflow: hidden;
}

.search-modal-header {
    padding: 18px 24px 14px 24px;
    border-bottom: 1px solid #f1f5f9;
    background: #fafafa;
}

.search-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fffbeb;
    color: #92400e;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid #fef3c7;
}

.search-modal-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.search-modal-close-btn:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fca5a5;
    transform: rotate(90deg);
}

.search-modal-body {
    padding: 22px 24px 26px 24px;
    max-height: calc(85vh - 80px);
    overflow-y: auto;
}

.search-modal-inner {
    max-width: 100%;
    margin: 0 auto;
}

/* Unified Modern Search Input Group */
.search-input-group-modern {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 4px 6px 4px 16px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.search-input-group-modern:focus-within {
    border-color: #d97706;
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.15), 0 6px 20px rgba(217, 119, 6, 0.08);
}

/* Category Dropdown Pill */
.search-category-wrap {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 125px;
    max-width: 155px;
}

.search-category-select-modern {
    border: none !important;
    background: transparent !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    width: 100% !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    padding: 6px 18px 6px 0 !important;
    cursor: pointer !important;
    outline: none !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.category-select-chevron {
    position: absolute;
    right: 2px;
    font-size: 10px;
    color: #94a3b8;
    pointer-events: none;
}

/* Divider Line */
.search-divider {
    display: inline-block;
    width: 1px;
    height: 24px;
    background-color: #e2e8f0;
    margin: 0 10px;
    flex-shrink: 0;
}

/* Search Text Field Wrap */
.search-input-field-wrap {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    position: relative;
}

.search-field-icon {
    font-size: 15px;
    color: #94a3b8;
    margin-right: 8px;
    flex-shrink: 0;
}

.search-text-input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    width: 100%;
    font-size: 15px;
    color: #0f172a;
    padding: 8px 0;
}

.search-text-input::placeholder {
    color: #94a3b8;
    font-size: 14px;
}

.search-clear-input-btn {
    border: none;
    background: transparent;
    color: #94a3b8;
    font-size: 15px;
    padding: 4px;
    cursor: pointer;
    margin-right: 6px;
    transition: color 0.2s;
}

.search-clear-input-btn:hover {
    color: #dc2626;
}

/* Search Submit Button */
.search-submit-btn {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 3px 10px rgba(217, 119, 6, 0.35);
    flex-shrink: 0;
}

.search-submit-btn:hover {
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.45);
    color: #ffffff;
}

/* Trending Chips */
.search-tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.search-tag-chip:hover {
    background: #fffbeb;
    border-color: #fde68a;
    color: #b45309;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.12);
}

/* Category Discovery Grid */
.search-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.search-category-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.search-category-card .search-cat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.search-category-card .search-cat-name {
    font-size: 12.5px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-category-card .search-cat-arrow {
    font-size: 10px;
    color: #cbd5e1;
    margin-left: auto;
    transition: transform 0.2s ease, color 0.2s ease;
}

.search-category-card:hover {
    background: #ffffff;
    border-color: #d97706;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.search-category-card:hover .search-cat-icon {
    background: #fffbeb;
    border-color: #fde68a;
    color: #b45309;
}

.search-category-card:hover .search-cat-arrow {
    transform: translateX(2px);
    color: #d97706;
}

/* Mobile & Tablet Responsive Design */
@media (max-width: 768px) {
    .top-search-modal .modal-dialog {
        max-width: calc(100vw - 20px) !important;
        margin: 10px auto !important;
    }

    .search-modal-header {
        padding: 14px 16px 12px 16px;
    }

    .search-modal-body {
        padding: 16px 16px 20px 16px;
    }

    .search-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .top-search-modal .modal-dialog {
        max-width: 100% !important;
        margin: 0 !important;
        min-height: 100%;
        display: flex;
        align-items: flex-start;
    }

    .top-search-modal .modal-content {
        border-radius: 0 0 20px 20px !important;
        max-height: 90vh;
        overflow-y: auto;
    }

    .search-input-group-modern {
        padding: 4px 6px 4px 12px;
    }

    .search-category-wrap {
        min-width: 90px;
        max-width: 100px;
    }

    .search-category-select-modern {
        font-size: 12px !important;
    }

    .search-text-input {
        font-size: 14px;
    }

    .search-text-input::placeholder {
        font-size: 13px;
    }

    .search-submit-btn {
        width: 38px;
        height: 38px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-tag-chip {
        font-size: 11.5px;
        padding: 5px 12px;
    }
}

/* ==========================================
   PRODUCTION LEVEL AUTH MODALS STYLING
   ========================================== */

/* Modal Window Card */
.auth-theme-modal .modal-content {
    background: var(--white-color) !important;
    border: 1px solid var(--divider-color) !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    position: relative;
    overflow: hidden;
}

#authModal {
    z-index: 1060;
}

/* Modal Title & Typography */
.auth-modal-title {
    font-family: var(--accent-font);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
}

.auth-modal-subtitle {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.4;
}

/* English Note Warning Box */
.auth-notice-note {
    background-color: #fff9e6;
    border: 1px solid #ffe58f;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 13px;
    color: #8a6d3b;
    line-height: 1.5;
}

.auth-notice-note i {
    color: var(--accent-color);
}

/* Close & Skip Buttons */
.auth-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.auth-modal-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.auth-modal-skip {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-family: var(--default-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.auth-modal-skip:hover {
    color: var(--accent-color);
}

/* Form Overrides */
.auth-theme-modal .form-control {
    border: 1px solid var(--divider-color);
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 15px;
    color: var(--primary-color);
    background-color: var(--white-color);
    transition: all 0.3s ease;
}

.auth-theme-modal .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(211, 174, 52, 0.15);
    outline: none;
}

.otp-input-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
}

.otp-digit-box {
    width: 100%;
    height: 52px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--default-font);
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border: 2px solid var(--divider-color);
    border-radius: 8px;
    outline: none;
    transition: all 0.25s ease-in-out;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
}

/* Hover & Focus States */
.otp-digit-box:hover {
    border-color: var(--primary-color);
}

.otp-digit-box:focus {
    border-color: var(--accent-color);
    background-color: var(--white-color);
    box-shadow: 0 0 0 4px rgba(211, 174, 52, 0.18);
    transform: translateY(-2px);
}

/* Filled State Styling */
.otp-digit-box:not(:placeholder-shown) {
    border-color: var(--primary-color);
    background-color: var(--white-color);
}

/* Timer & Resend Link Styles */
.otp-timer-resend-box {
    font-size: 14px;
    min-height: 24px;
}

#otpTimer {
    color: var(--primary-color);
    font-weight: 600;
}

.resend-link-btn {
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.resend-link-btn strong {
    color: var(--accent-color);
    text-decoration: underline;
}

.resend-link-btn:hover strong {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-color) !important;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .otp-input-wrapper {
        gap: 6px;
    }

    .otp-digit-box {
        height: 44px;
        font-size: 18px;
        border-radius: 6px;
    }
}

/* ==========================================
   PRODUCTION LEVEL SIDE CART DRAWER MODAL
   ========================================== */

/* Glassmorphism Dark Backdrop */
.cart-drawer-modal.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
}

/* Right Slide Drawer Position */
.cart-drawer-modal .modal-dialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.cart-drawer-modal.show .modal-dialog {
    transform: translateX(0) !important;
}

.cart-drawer-modal .modal-content {
    height: 100%;
    border-radius: 0 !important;
    border: none !important;
    background-color: var(--white-color) !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15) !important;
    display: flex;
    flex-direction: column;
}

/* Header Styling */
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--divider-color);
}

.cart-drawer-title h2 {
    font-family: var(--accent-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.cart-drawer-title h2 span {
    font-family: var(--default-font);
    font-size: 16px;
    color: var(--accent-color);
}

.cart-drawer-close {
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-drawer-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* Items Body Container */
.cart-drawer-body {
    padding: 20px 25px;
    overflow-y: auto;
    flex-grow: 1;
}

/* ==========================================
   MINI CART ITEM PERFECT ALIGNMENT FIX
   ========================================== */

.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--divider-color);
    position: relative;
}

/* Image Fit */
.mini-cart-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background-color: var(--secondary-color);
    overflow: hidden;
    flex-shrink: 0;
}

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

/* Middle Details Column */
.mini-cart-details {
    flex-grow: 1;
    padding-right: 15px;
}

.mini-cart-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3em;
    margin-bottom: 8px;
}

.mini-cart-title a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.mini-cart-title a:hover {
    color: var(--accent-color);
}

/* Price & Quantity Box in One Row */
.mini-cart-bottom-row {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.mini-cart-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
}

/* Compact Clean Qty Box */
.mini-qty-box {
    display: inline-flex !important;
    align-items: center !important;
    padding: 2px 6px !important;
    gap: 6px !important;
    border-radius: 4px !important;
    border: 1px solid var(--divider-color) !important;
    background-color: var(--white-color) !important;
}

.mini-qty-box .qty-btn {
    font-size: 16px !important;
    line-height: 1 !important;
    color: var(--primary-color) !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 0 3px !important;
}

.mini-qty-box .qty-input {
    width: 32px !important;
    min-width: 26px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-align: center !important;
    border: none !important;
    background: transparent !important;
    color: var(--primary-color) !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Perfectly Centered Delete Trash Icon */
.mini-cart-remove-btn {
    background: transparent;
    border: none;
    color: var(--error-color);
    font-size: 16px;
    cursor: pointer;
    opacity: 0.6;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mini-cart-remove-btn:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* Footer Section */
.cart-drawer-footer {
    padding: 20px 25px 25px 25px;
    border-top: 1px solid var(--divider-color);
    background-color: var(--secondary-color);
}

.cart-drawer-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.subtotal-amount {
    color: var(--primary-color);
    font-family: var(--accent-font);
    font-size: 22px;
}

/* Shipping Notice Badge */
.cart-shipping-notice {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 18px;
    text-align: center;
}

.cart-shipping-notice p {
    margin: 0;
    font-size: 13px;
    color: #166534;
}

/* Buttons Override */
.btn-outline-cart {
    background: transparent !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.btn-outline-cart:hover {
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
    border-color: var(--accent-color) !important;
}

.cart-clear-link-btn {
    background: transparent;
    border: none;
    font-size: 13px;
    color: var(--text-color);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-clear-link-btn:hover {
    color: var(--error-color);
}

/* Mobile Fit */
@media (max-width: 480px) {
    .cart-drawer-modal .modal-dialog {
        max-width: 100%;
    }
}

/* ==========================================
   4-COLUMN PRODUCT GRID & FILTER DRAWER STYLING
   ========================================== */

/* Top Action Bar Styling */
.product-filter-trigger-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-filter-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter-trigger:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.results-count-text p {
    color: var(--text-color);
    font-size: 15px;
}

/* Glassmorphic Backdrop for Filter Drawer */
.filter-drawer-modal.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
}

/* Slide From Left Side Drawer */
.filter-drawer-modal .modal-dialog {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    margin: 0;
    width: 100%;
    max-width: 380px;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.filter-drawer-modal.show .modal-dialog {
    transform: translateX(0) !important;
}

.filter-drawer-modal .modal-content {
    height: 100%;
    border-radius: 0 !important;
    border: none !important;
    background-color: var(--white-color) !important;
    display: flex;
    flex-direction: column;
}

/* Filter Drawer Header */
.filter-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--divider-color);
}

.filter-drawer-title h2 {
    font-family: var(--accent-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.filter-drawer-close {
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-drawer-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* Filter Drawer Body */
.filter-drawer-body {
    padding: 25px;
    overflow-y: auto;
    flex-grow: 1;
}

.filter-drawer-body .product-category-item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--divider-color);
}

.filter-drawer-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-drawer-body ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.filter-drawer-body ul li label {
    font-size: 15px;
    color: var(--text-color);
    cursor: pointer;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.filter-drawer-body ul li label span {
    color: #999;
    font-size: 13px;
}

.filter-drawer-body ul li input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

/* Filter Drawer Footer */
.filter-drawer-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-top: 1px solid var(--divider-color);
    background-color: var(--secondary-color);
}

.btn-clear-filter {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}

.btn-clear-filter:hover {
    color: var(--error-color);
}

.btn-apply-filter {
    flex-grow: 1;
    padding: 12px 20px !important;
    text-align: center;
}

/* ==========================================
   FILTER ACCORDION CUSTOM STYLING
   ========================================== */

.filter-accordion .accordion-item {
    border: none !important;
    border-bottom: 1px solid var(--divider-color) !important;
    background: transparent !important;
}

.filter-accordion .accordion-item:last-child {
    border-bottom: none !important;
}

/* Accordion Header Button */
.filter-accordion .accordion-button {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color) !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 16px 0 !important;
}

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

/* Custom Collapse Arrow Color */
.filter-accordion .accordion-button::after {
    background-size: 14px;
    transition: transform 0.3s ease;
}

.filter-accordion .accordion-body {
    padding: 0 0 16px 0 !important;
}

.filter-accordion .accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-accordion .accordion-body ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.filter-accordion .accordion-body ul li label {
    font-size: 15px;
    color: var(--text-color);
    cursor: pointer;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.filter-accordion .accordion-body ul li label span {
    color: #999;
    font-size: 13px;
}

.filter-accordion .accordion-body ul li input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

/* ==========================================
   PRODUCT CARD HOVER SWIPER SLIDER
   ========================================== */
.product-item-image.product-hover-swiper,
.product-hover-swiper {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    display: block !important;
    background: #ffffff !important;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    isolation: isolate !important;
}

.product-hover-swiper .swiper-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    box-sizing: border-box !important;
}

.product-hover-swiper .swiper-slide {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    background: #ffffff !important;
}

.product-hover-swiper .swiper-slide a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.product-hover-swiper .swiper-slide figure {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    overflow: hidden !important;
}

.product-hover-swiper .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* Dots Styling (Desktop: Visible on Hover, Mobile: Always Visible) */
.product-hover-swiper .swiper-pagination {
    bottom: 8px !important;
    left: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2px !important;
    z-index: 5 !important;
    pointer-events: auto !important;
    transition: opacity 0.3s ease;
}

@media (min-width: 992px) {
    .product-hover-swiper .swiper-pagination {
        opacity: 0;
    }

    .product-item:hover .product-hover-swiper .swiper-pagination {
        opacity: 1;
    }
}

@media (max-width: 991.98px) {
    .product-hover-swiper .swiper-pagination {
        opacity: 1 !important;
        display: flex !important;
    }
}

.product-hover-swiper .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    opacity: 0.65 !important;
    margin: 0 2.5px !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
}

.product-hover-swiper .swiper-pagination-bullet-active {
    background: var(--accent-color, #c89551) !important;
    opacity: 1 !important;
    width: 16px !important;
    border-radius: 4px !important;
    border-color: transparent !important;
    box-shadow: 0 1px 4px rgba(200, 149, 81, 0.45) !important;
}

/* ==========================================
   FIX: PRODUCT ACTION BUTTONS OVER SWIPER SLIDER
   ========================================== */

/* Product Card Header Container Fix */
.product-item-header {
    position: relative !important;
    overflow: hidden !important;
}

/* Swiper Layer Background */
.product-hover-swiper {
    position: relative !important;
    z-index: 1 !important;
}

/* Wishlist, Eye (Preview) & Cart Buttons Layer Fix */
.product-item-action {
    position: absolute !important;
    z-index: 10 !important;
    pointer-events: auto !important;
}

/* Buttons Hover Visibility Ensure */
.product-item-action ul {
    position: relative !important;
    z-index: 11 !important;
}

.product-item-action ul li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* ==========================================
   LUXURY QUICK VIEW MODAL & GALLERY
   ========================================== */

/* Backdrop */
.quickview-theme-modal.modal-backdrop.show {
    background-color: rgba(22, 16, 13, 0.72) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.quickview-theme-modal .qv-modal-dialog {
    max-width: 960px;
    margin: 1.75rem auto;
}

.quickview-theme-modal .qv-modal-content {
    background: var(--white-color) !important;
    border: 1px solid rgba(117, 81, 63, 0.12) !important;
    border-radius: 24px !important;
    box-shadow: 0 30px 70px -15px rgba(35, 20, 14, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.8) inset !important;
    position: relative;
    overflow: hidden;
}

/* Close Icon */
.quickview-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #ffffff;
    border: 1px solid rgba(117, 81, 63, 0.15);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary-color, #75513f);
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.quickview-modal-close:hover {
    background: var(--primary-color, #75513f);
    color: #ffffff;
    border-color: var(--primary-color, #75513f);
    transform: rotate(90deg) scale(1.08);
    box-shadow: 0 6px 18px rgba(117, 81, 63, 0.28);
}

/* Main Swiper Slider Styling */
.qv-main-swiper {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    background-color: #fbf9f6;
    border: 1px solid rgba(117, 81, 63, 0.08);
    box-shadow: 0 8px 24px -6px rgba(117, 81, 63, 0.06);
    overflow: hidden;
}

.qv-main-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: #fbf9f6;
}

.qv-main-swiper .swiper-slide figure {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.qv-main-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center !important;
    display: block;
    transition: transform 0.4s ease;
}

/* Thumbnails Swiper Slider Styling */
.qv-thumbs-swiper {
    width: 100%;
    padding: 4px 2px 2px;
}

.qv-thumbs-swiper .swiper-slide {
    width: 72px;
    cursor: pointer;
}

.qv-thumb-box {
    width: 100%;
    height: 68px;
    border-radius: 12px;
    border: 2px solid #ede7e2;
    background-color: #fbf9f6;
    overflow: hidden;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qv-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qv-thumbs-swiper .swiper-slide:hover .qv-thumb-box {
    border-color: rgba(117, 81, 63, 0.5);
    transform: translateY(-2px);
}

.qv-thumbs-swiper .swiper-slide-thumb-active .qv-thumb-box {
    border-color: var(--primary-color, #75513f);
    box-shadow: 0 4px 14px rgba(117, 81, 63, 0.25);
    transform: translateY(-2px);
}

/* Right Column Content */
.quickview-info-content {
    display: flex;
    flex-direction: column;
}

.qv-badge-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--primary-color, #75513f);
    background: #fbf6f2;
    border: 1px solid rgba(117, 81, 63, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}

.qv-stock-pill {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.2px;
}

.qv-stock-pill.text-success {
    background: #ecfdf5 !important;
    color: #047857 !important;
    border: 1px solid #a7f3d0;
}

.qv-stock-pill.text-danger {
    background: #fef2f2 !important;
    color: #b91c1c !important;
    border: 1px solid #fecaca;
}

.qv-product-title {
    font-family: var(--accent-font, "Playfair Display", serif);
    font-size: 24px;
    font-weight: 600;
    color: #2b211c;
    line-height: 1.32;
    margin: 0;
}

.qv-price-display {
    font-size: 23px;
    font-weight: 700;
    color: var(--primary-color, #75513f);
    font-family: var(--default-font, sans-serif);
}

.qv-price-display sub {
    font-size: 15px;
    color: #9c938d !important;
    font-weight: 500;
    text-decoration: line-through;
    margin-left: 6px;
    bottom: 0;
}

.qv-coupon-tag {
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
    border: 1px dashed #f59e0b;
    border-radius: 8px;
    padding: 4px 10px;
    display: inline-block;
}

.qv-coupon-tag span {
    font-size: 12px;
    font-weight: 600;
    color: #92400e;
    display: inline-flex;
    align-items: center;
}

.qv-description {
    font-size: 13.5px;
    line-height: 1.65;
    color: #635b55 !important;
}

.qv-section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #4a3b32;
}

/* Size Selection Pills */
.qv-carat-options li input[type="radio"] {
    display: none;
}

.qv-carat-options li label {
    padding: 6px 15px;
    border: 1.5px solid #ded6cf;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #44362e;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease;
}

.qv-carat-options li label:hover {
    border-color: var(--primary-color, #75513f);
    color: var(--primary-color, #75513f);
    background: #faf6f3;
}

.qv-carat-options li input[type="radio"]:checked+label {
    background-color: var(--primary-color, #75513f);
    color: #ffffff;
    border-color: var(--primary-color, #75513f);
    box-shadow: 0 4px 12px rgba(117, 81, 63, 0.28);
}

/* Quantity & Action Buttons Row */
.qv-actions-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qv-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #ded6cf;
    border-radius: 10px;
    background: #faf7f5;
    height: 48px;
    padding: 3px;
}

.qv-qty-box .qty-btn {
    width: 34px;
    height: 38px;
    border: none;
    background: #ffffff;
    border-radius: 7px;
    color: #44362e;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.qv-qty-box .qty-btn:hover:not(:disabled) {
    background: var(--primary-color, #75513f);
    color: #ffffff;
}

.qv-qty-box .qty-input {
    width: 36px;
    height: 38px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #2b211c;
    outline: none;
}

.quickview-theme-modal .qv-main-cart-btn {
    position: relative;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #75513f 0%, #583c2e 100%) !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(117, 81, 63, 0.28);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
}

.quickview-theme-modal .product-single-content-btn .qv-main-cart-btn::before,
.quickview-theme-modal .product-single-content-btn .qv-main-cart-btn::after,
.quickview-theme-modal .qv-main-cart-btn::before,
.quickview-theme-modal .qv-main-cart-btn::after {
    display: none !important;
    content: none !important;
}

.quickview-theme-modal .product-single-content-btn .qv-main-cart-btn:hover:not(.disabled),
.quickview-theme-modal .qv-main-cart-btn:hover:not(.disabled) {
    background: linear-gradient(135deg, #8a604b 0%, #684837 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 9px 24px rgba(117, 81, 63, 0.38);
    color: #ffffff !important;
}

.quickview-theme-modal .product-single-content-btn .qv-main-cart-btn:hover:not(.disabled) span,
.quickview-theme-modal .product-single-content-btn .qv-main-cart-btn:hover:not(.disabled) i,
.quickview-theme-modal .qv-main-cart-btn:hover:not(.disabled) span,
.quickview-theme-modal .qv-main-cart-btn:hover:not(.disabled) i {
    color: #ffffff !important;
}

.quickview-theme-modal .qv-main-cart-btn.in-cart {
    background: linear-gradient(135deg, #2d3e38 0%, #1c2723 100%) !important;
    box-shadow: 0 6px 18px rgba(45, 62, 56, 0.3);
    color: #ffffff !important;
}

.quickview-theme-modal .qv-main-cart-btn.disabled,
.quickview-theme-modal .qv-main-cart-btn.disabled-out-of-stock {
    background: #b5aba4 !important;
    box-shadow: none !important;
    opacity: 0.75 !important;
    cursor: not-allowed;
    color: #ffffff !important;
}

.quickview-theme-modal .product-single-action ul li a.qv-wishlist-action-btn,
.quickview-theme-modal .qv-wishlist-action-btn {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    padding: 0 !important;
    border-radius: 10px !important;
    border: 1.5px solid #ded6cf !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    box-sizing: border-box !important;
}

.quickview-theme-modal .product-single-action ul li a.qv-wishlist-action-btn:hover,
.quickview-theme-modal .qv-wishlist-action-btn:hover {
    border-color: var(--primary-color, #75513f) !important;
    background: #faf6f3 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(117, 81, 63, 0.15);
}

.quickview-theme-modal .product-single-action ul li a.qv-wishlist-action-btn img,
.quickview-theme-modal .qv-wishlist-action-btn img {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    min-width: 22px !important;
    display: block !important;
    margin: 0 auto !important;
    filter: none !important;
    transition: transform 0.2s ease;
}

.quickview-theme-modal .product-single-action ul li a.qv-wishlist-action-btn:hover img,
.quickview-theme-modal .qv-wishlist-action-btn:hover img {
    transform: scale(1.15);
    filter: none !important;
}

.quickview-theme-modal .product-single-action ul li a.qv-wishlist-action-btn.in-wishlist,
.quickview-theme-modal .qv-wishlist-action-btn.in-wishlist {
    background: #fdf5f2 !important;
    border-color: #e57373 !important;
}

/* Trust Perks Strip */
.qv-trust-strip {
    border-top: 1px solid #f0ebe5 !important;
    border-bottom: 1px solid #f0ebe5 !important;
}

.qv-trust-item {
    font-size: 11.5px;
    font-weight: 600;
    color: #7a6e66;
    letter-spacing: 0.2px;
}

.qv-trust-item i {
    color: var(--primary-color, #75513f);
    font-size: 13px;
}

/* View Full Details Link */
.btn-view-full-details {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--primary-color, #75513f);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-full-details:hover {
    color: var(--accent-color, #d3ae34);
}

.btn-view-full-details i {
    transition: transform 0.3s ease;
}

.btn-view-full-details:hover i {
    transform: translateX(6px);
}

/* Quick View Responsive */
@media (max-width: 991.98px) {
    .qv-main-swiper {
        height: 320px;
    }

    .qv-product-title {
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .quickview-theme-modal .qv-modal-content {
        border-radius: 18px !important;
    }

    .qv-main-swiper {
        height: 260px;
    }

    .qv-actions-wrap {
        flex-wrap: wrap;
    }

    .qv-cart-btn-wrap {
        order: 2;
        width: calc(100% - 60px);
    }

    .qv-wishlist-wrap {
        order: 3;
    }

    .qv-qty-box {
        order: 1;
        width: 100%;
        justify-content: space-between;
    }

    .qv-qty-box .qty-btn {
        width: 44px;
    }

    .qv-trust-strip {
        justify-content: center;
        gap: 12px 18px;
    }
}

/* ==========================================
   PRODUCT GALLERY VIDEO SLIDER STYLING
   ========================================== */

/* Main Gallery Video Container Frame */
.gallery-video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color, #eee8da);
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.gallery-video-container video,
.gallery-video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--bg-color, #eee8da);
    border: none;
}

/* Thumbnail Play Overlay Icon */
.video-thumb-box {
    position: relative;
    display: block;
    background-color: var(--bg-color, #eee8da);
}

.video-thumb-box video {
    background-color: var(--bg-color, #eee8da);
}

.thumb-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    z-index: 2;
    transition: all 0.3s ease;
}

.thumb-play-icon.youtube-icon {
    background-color: #ff0000;
    font-size: 12px;
}

.swiper-slide:hover .thumb-play-icon {
    transform: translate(-50%, -50%) scale(1.15);
}

/* ==========================================
   ORDER STATUS PAGES STYLING (SUCCESS / FAILED)
   ========================================== */

.status-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.success-icon-wrapper {
    background-color: #f0fdf4;
    color: #16a34a;
}

.failed-icon-wrapper {
    background-color: #fef2f2;
    color: #dc2626;
}

/* Border separator helper for info box */
@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid var(--divider-color);
    }
}

.price-main {
    color: var(--primary-color) !important;
}

.fs-8 {
    font-size: 12px !important;
}

.fs-7 {
    font-size: 14px !important;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS (4-GRID SYSTEM)
   ========================================== */

/* Desktop / Laptop: 4 Items per row */
@media (min-width: 1200px) {
    .product-grid-4 .col-xl-3 {
        width: 25%;
    }
}

/* Tablet (Medium Screens): 2 Items per row */
@media (max-width: 991px) {
    .product-grid-4 .col-lg-4 {
        width: 50%;
    }
}

/* Mobile Screens: 2 Compact Items per row (Standard E-commerce View) */
@media (max-width: 575px) {
    .product-grid-4 .col-12 {
        width: 50%;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .product-item-title {
        font-size: 14px !important;
    }

    .product-item-price h3 {
        font-size: 15px !important;
    }

    .filter-drawer-modal .modal-dialog {
        max-width: 100%;
    }
}

/****************************************/
/***       42. Responsive css         ***/
/****************************************/

@media only screen and (min-width: 769px) {

    .dropdown:hover>.dropdown-menu {
        display: block;
    }
}

@media only screen and (max-width: 1366px) {

    .dropdown-menu {
        padding: 40px 15px;
    }

    .mega-menu-box {
        padding: 0;
    }

    .main-menu ul .nav-item {
        margin: 0 10px;
    }
}

@media only screen and (max-width: 1024px) {

    .navbar {
        padding: 15px 0px;
    }

    .main-menu {
        flex-direction: row-reverse;
        gap: 30px;
    }

    .main-menu .navbar-collapse {
        display: none !important;
    }

    .slicknav_menu ul.dropdown-menu {
        position: initial !important;
        transform: none !important;
        display: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        padding: 30px 15px;
        margin: 0;
        border: none;
        transition: inherit;
    }

    .slicknav_nav .mega-menu-box {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .mega-menu-links-box {
        width: 100%;
        gap: 30px;
    }

    .mega-menu-link {
        width: calc(50% - 15px);
    }

    .mega-menu-link h2 {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .slicknav_menu .mega-menu-link ul {
        padding: 0;
    }

    .slicknav_menu .mega-menu-link ul li {
        margin-bottom: 8px;
    }

    .slicknav_menu .mega-menu-link ul li:last-child {
        margin-bottom: 0;
    }

    .slicknav_menu .mega-menu-link ul li a {
        color: var(--text-color);
        padding: 4px 6px;
        font-size: 14px;
        display: block;
    }

    .slicknav_menu .mega-collection-item.active a.mega-collection-link,
    .slicknav_menu .mega-collection-item a.mega-collection-link:hover {
        color: var(--primary-color) !important;
        font-weight: 600;
    }

    .slicknav_menu .mega-category-panel:not(.active) {
        display: none !important;
    }

    .slicknav_menu .mega-category-panel.active {
        display: block !important;
    }

    .mega-menu-items-list {
        width: 100%;
    }

    .mega-menu-item.big-offer-box {
        padding: 20px;
    }

    .slicknav_menu .mega-menu-item-image a {
        padding: 0;
    }

    .slicknav_menu .mega-menu-item-content h2 a,
    .mega-menu-item-content h2 {
        font-size: 20px;
        color: var(--primary-color);
        padding: 0;
    }

    .mega-menu-item.big-offer-box .mega-menu-item-content h2 {
        font-size: 26px;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .section-content-btn .section-btn {
        margin-top: 20px;
    }

    .section-title-content {
        margin-top: 10px;
    }

    .section-title-content p {
        margin-bottom: 10px;
    }

    .section-title p {
        margin-top: 10px;
    }

    .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .section-title.section-sub-heading,
    .section-title .section-sub-title {
        margin-bottom: 10px;
    }

    .hero {
        padding: 120px 0;
    }

    .hero-content {
        margin: 0;
    }

    .key-benefit-item {
        width: calc(50% - 15px);
    }

    .top-offer-item {
        width: calc(50% - 15px);
    }

    .intro-video {
        min-height: 680px;
    }

    .intro-video-item-list {
        margin-top: 200px;
    }

    .collection-item {
        gap: 20px 30px;
        padding: 30px;
    }

    .collection-item-content {
        width: calc(46% - 15px);
    }

    .collection-item-image-box {
        width: calc(54% - 15px);
    }

    .promise-item-list {
        gap: 30px 40px;
    }

    .promise-item {
        width: calc(20% - 32px);
    }

    .promise-item::before {
        right: -20px;
    }

    .faqs-content-box {
        position: initial;
        margin-bottom: 30px;
    }

    .limited-offer-item {
        min-height: 440px;
    }

    .limited-offer-item-body {
        padding: 30px;
    }

    .post-featured-image img {
        aspect-ratio: 1 / 0.75;
    }

    .about-footer {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .about-footer-content {
        margin-top: 15px;
    }

    .footer-newsletter-form {
        margin-top: 30px;
    }

    .footer-links-box {
        margin: 0;
    }

    .footer-links h2 {
        margin-bottom: 20px;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-contact-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .footer-copyright {
        margin-top: 30px;
        padding: 30px 0;
    }

    .mission-vision-item {
        min-height: 440px;
        padding: 30px;
    }

    .why-customer-choose-video {
        height: 550px;
    }

    .what-we-item .icon-box {
        margin-bottom: 30px;
    }

    .what-we-item-content p {
        margin: 15px 0 0 0;
    }

    .why-customer-choose {
        padding: 120px 15px;
    }

    .why-customer-choose-content {
        padding: 30px 0 0;
    }

    .page-single-sidebar {
        margin: 0;
    }

    .product-category-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .product-category-item-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .product-category-item ul li {
        margin-bottom: 10px;
    }

    .product-item-list .product-item {
        width: calc(50% - 7.5px);
    }

    .page-single-sidebar .product-category-filter-header {
        margin-bottom: 20px;
    }

    .product-single-info-content,
    .product-single-image-box {
        width: 100%;
    }

    .product-single-image-box {
        position: initial;
        max-width: 740px;
        margin: 0 auto;
    }

    .related-product-items-list .product-item {
        width: calc(50% - 10px);
    }

    .page-single-sidebar.right-side-sidebar {
        position: initial;
        margin: 30px 0 0;
    }

    .order-summary-box-title,
    .order-summary-promocode-box,
    .order-summary-shipment-info {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .my-account-sidebar-item {
        padding: 30px;
    }

    .login-content-box {
        gap: 40px;
    }

    .login-content-form-item {
        width: calc(50% - 20px);
    }

    .page-category-list ul {
        padding: 20px;
    }

    .page-category-list ul li {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .sidebar-cta-box {
        padding: 20px;
    }

    .sidebar-cta-box ul {
        margin: 30px 0 0 0;
    }

    .view-order-address-item-list {
        gap: 30px;
    }

    .view-order-address-item {
        width: calc(50% - 15px);
    }

    .google-map-iframe {
        margin: 0 0 30px;
    }

    .google-map-iframe {
        height: 480px;
    }

    .contact-form-btn {
        margin-top: 5px;
    }

    .contact-info-item {
        padding: 20px;
    }

    .contact-info-item .icon-box {
        margin-bottom: 20px;
    }

    .contact-info-content ul li {
        font-size: 20px;
    }
}

@media only screen and (max-width: 991px) {

    .topbar {
        padding: 10px 0;
    }

    .topbar-social-list ul {
        gap: 10px;
    }

    .topbar-info-content p {
        font-size: 14px;
        padding: 0px;
    }

    .topbar-info-content p::before,
    .topbar-info-content p::after {
        display: none;
    }

    .btn-default {
        padding: 15px 20px;
    }

    header.main-header {
        top: 0px;
        right: 0px;
        left: 0px;
    }

    header.main-header .header-sticky {
        width: 100%;
    }

    header.main-header .header-sticky.active {
        width: 100%;
        border-radius: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title .section-sub-title {
        padding: 7px 12px 7px 26px;
    }

    .section-title .section-sub-title::before {
        left: 12px;
    }

    .section-title h1 {
        font-size: 44px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .hero-content-list ul li {
        padding-left: 28px;
    }

    .hero-content-list ul li::before {
        height: 20px;
        width: 20px;
    }

    .hero-content-body {
        margin-top: 30px;
        padding-top: 30px;
        gap: 20px 30px;
    }

    .google-rating-box {
        gap: 10px;
    }

    .google-rating-box .google-rating-logo img {
        max-width: 46px;
    }

    .google-rating-content {
        width: calc(100% - 56px);
    }

    .google-rating-content h2 {
        font-size: 20px;
    }

    .key-benefit-box {
        padding: 20px 0;
    }

    .key-benefit-item-content {
        width: calc(100% - 65px);
    }

    .our-best-sellers {
        padding: 30px 0 30px;
    }

    .top-selling-item-list {
        gap: 30px 20px;
    }

    .top-selling-item {
        width: calc(33.33% - 13.33px);
    }

    .top-selling-item-image {
        max-width: 160px;
        margin-bottom: 20px;
    }

    .top-offer-item-list {
        margin-top: 50px;
    }

    .top-offer-item {
        padding: 20px;
    }

    .top-offer-item-content {
        width: 100%;
    }

    .top-offer-item-content .top-offer-item-title {
        margin-bottom: 10px;
    }

    .top-offer-item-content h3 {
        font-size: 20px;
    }

    .top-offer-item-btn {
        margin-top: 30px;
    }

    .top-offer-item-image {
        margin: -20px -20px -20px 0;
    }

    .top-offer-item-image img {
        max-width: 170px;
    }

    .our-products {
        padding: 30px 0 60px;
    }

    .intro-video {
        min-height: 530px;
    }

    .video-play-button a span {
        width: 60px;
        height: 60px;
    }

    .video-play-button a span i {
        font-size: 24px;
    }

    .intro-video-item-list {
        gap: 30px;
        margin-top: 130px;
    }

    .intro-video-item {
        width: calc(25% - 22.5px);
    }

    .intro-video-item:before {
        right: -15px;
    }

    .intro-video-item .icon-box {
        margin-bottom: 20px;
    }

    .intro-video-item .icon-box img {
        max-width: 50px;
    }

    .our-collection {
        padding: 60px 0 0;
    }

    .collection-item-content,
    .collection-item-image-box {
        gap: 20px;
    }

    .collection-item-title h3 {
        font-size: 22px;
    }

    .collection-item-image img {
        aspect-ratio: 1 / 0.65;
    }

    .our-promise {
        padding: 30px 0;
    }

    .promise-item {
        width: calc(33.33% - 26.67px);
    }

    .promise-item:nth-child(5n + 5)::before {
        display: block;
    }

    .promise-item:last-child::before,
    .promise-item:nth-child(3n + 3)::before {
        display: none;
    }

    .promise-item .icon-box {
        min-height: 120px;
    }

    .promise-item .icon-box img {
        max-width: 55px;
    }

    .our-testimonials {
        padding: 60px 0;
    }

    .testimonials-content-box {
        max-width: 100%;
    }

    .testimonials-content-box .section-title {
        margin-bottom: 30px;
    }

    .testimonial-item-author {
        margin-top: 30px;
        padding-top: 30px;
    }

    .testimonial-item-content p {
        font-size: 16px;
    }

    .our-faqs {
        padding: 60px 0 30px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 18px;
        padding-right: 28px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        font-size: 20px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 10px 28px 0 0;
    }

    .limited-offer-item-list {
        gap: 20px;
        margin-top: 60px;
    }

    .limited-offer-item {
        width: calc(50% - 10px);
    }

    .limited-offer-item-body {
        padding: 30px 25px;
    }

    .limited-offer-item-content span {
        margin-bottom: 10px;
    }

    .limited-offer-item-content h2 {
        font-size: 34px;
    }

    .limited-offer-btn {
        margin-top: 30px;
    }

    .our-blog {
        padding: 30px 0;
    }

    .post-featured-image {
        margin-bottom: 15px;
    }

    .post-item .post-item-btn {
        margin-top: 15px;
        padding-top: 15px;
    }

    .page-header-box h1 {
        font-size: 44px;
    }

    .about-us {
        padding: 60px 0 30px;
    }

    .mission-vision-item {
        min-height: 400px;
    }

    .mission-vision-item-content h3 {
        font-size: 24px;
    }

    .mission-vision-item-content p {
        margin-top: 15px;
    }

    .section-footer-text {
        margin-top: 10px;
    }

    .section-footer-text p {
        margin-bottom: 10px;
    }

    .about-us .section-footer-text {
        margin-top: 40px;
    }

    .what-we-do {
        padding: 30px 0;
    }

    .what-we-item .icon-box img {
        max-width: 50px;
    }

    .why-customer-choose {
        padding: 60px 15px;
    }

    .customer-accordion .accordion-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .customer-accordion .accordion-header .accordion-button {
        font-size: 18px;
        padding-right: 28px;
    }

    .customer-accordion .accordion-item .accordion-button::after,
    .customer-accordion .accordion-item .accordion-button.collapsed::after {
        font-size: 20px;
    }

    .customer-accordion .accordion-item .accordion-body {
        padding: 10px 28px 0 0;
    }

    .our-team {
        padding: 60px 0 30px;
    }

    .team-item-image {
        max-width: 260px;
    }

    .team-item-content {
        margin-top: 15px;
    }

    .page-about-faq {
        padding: 60px 0;
    }

    .page-blog {
        padding: 60px 0px;
    }

    .page-pagination {
        margin-top: 10px;
    }

    .page-single-post {
        padding: 60px 0;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-entry h2 {
        font-size: 34px;
    }

    .post-entry p {
        margin-bottom: 15px;
    }

    .post-entry ol li,
    .post-entry ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .post-entry blockquote {
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-tags .tag-links a {
        padding: 12px 15px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .page-products {
        padding: 60px 0;
    }

    .page-single-sidebar {
        position: initial;
        margin: 0 0 30px;
    }

    .product-category-sorting-list .form-select {
        padding: 8px 35px 8px 12px;
    }

    .product-learn-more-btn {
        margin-top: 30px;
    }

    .page-product-single {
        padding: 30px 0;
    }

    .product-single-breadcrumb-list {
        margin-bottom: 25px;
    }

    .product-single-price h2,
    .product-single-title h1 {
        font-size: 26px;
    }

    .product-single-price h2 sub {
        font-size: 18px;
    }

    .qty-box {
        gap: 10px;
        padding: 10px 12px;
    }

    .product-single-action ul li a {
        padding: 10px 15px;
    }

    .product-shipping-box ul li {
        margin-bottom: 10px;
    }

    .product-step-nav {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .product-step-nav ul li .nav-link {
        font-size: 18px;
    }

    .product-step-nav ul li .nav-link::before {
        bottom: -21px;
    }

    .product-tab-item-box h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .product-tab-item-box p {
        margin: 10px 0 0 0;
    }

    .review-form,
    .customer-review-list {
        width: 100%;
    }

    .customer-review-item {
        margin-bottom: 30px;
    }

    .customer-review-item-content p {
        margin: 0 0 5px 0;
    }

    .review-form .form-control {
        padding: 10px 15px;
    }

    .related-products {
        padding: 30px 0 60px;
    }

    .page-cart {
        padding: 60px 0;
    }

    .cart-item-image-content {
        gap: 15px;
    }

    .cart-item-info-content {
        width: calc(100% - 105px);
    }

    .cart-item-buttons {
        gap: 15px 30px;
        margin-top: 30px;
    }

    .cart-item-buttons .btn-default {
        padding: 15px 16px 15px 40px;
    }

    .cart-item-buttons .btn-default.btn-update::before,
    .cart-item-buttons .btn-default.btn-clear::before {
        left: 14px;
        font-size: 16px;
    }

    .interested-products-box {
        margin-top: 60px;
    }

    .interested-products-box-title {
        margin-bottom: 20px;
    }

    .interested-products-box-title h2 {
        font-size: 26px;
    }

    .order-summary-promocode-form {
        margin-bottom: 20px;
    }

    .order-summary-promocode-form .form-group button.promocode-btn {
        padding: 8px 15px;
        min-width: 80px;
    }

    .page-order-details {
        padding: 60px 0;
    }

    .order-detail-title-box h2 {
        font-size: 34px;
    }

    .page-checkout {
        padding: 60px 0;
    }

    .checkout-login-box {
        margin-bottom: 30px;
    }

    .checkout-accordion-header .checkout-accordion-button {
        padding: 12px 35px 12px 15px;
    }

    .checkout-accordion-header .checkout-accordion-button::after,
    .checkout-accordion-header .checkout-accordion-button.collapsed::after {
        right: 15px;
    }

    .checkout-accordion-body {
        margin-top: 20px;
    }

    .checkout-accordion-body-content {
        margin-bottom: 20px;
    }

    .checkout-bill-address-title {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .checkout-bill-address-form .form-group,
    .checkout-login-form .form-group {
        margin-bottom: 20px;
    }

    .checkout-bill-address-form .form-control,
    .checkout-login-form .form-control {
        padding: 10px 15px;
    }

    .checkout-bill-address-form select.form-control {
        padding: 10px 35px 10px 15px;
    }

    .checkout-form-checkbox.different-address-note {
        margin-top: 15px;
    }

    .checkout-form-checkbox.different-address-note label {
        margin-bottom: 0;
    }

    .checkout-coupeon-accordion {
        margin-bottom: 20px;
    }

    .coupeon-accordion-header .coupeon-accordion-button {
        padding: 12px 35px 12px 15px;
    }

    .coupeon-accordion-header .coupeon-accordion-button::after,
    .coupeon-accordion-header .coupeon-accordion-button.collapsed::after {
        right: 15px;
    }

    .coupeon-accordion-body {
        margin-top: 20px;
    }

    .coupeon-accordion-body-content {
        margin-bottom: 15px;
    }

    .coupeon-apply-form .form-control {
        padding: 7px 18px 7px 35px;
    }

    .product-total-order-title {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .all-product-total,
    .product-total-item {
        margin-top: 15px;
        padding-top: 15px;
    }

    .order-summary-shipment-info ul li {
        margin-bottom: 10px;
    }

    .page-my-account {
        padding: 60px 0;
    }

    .my-account-sidebar-item ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .account-dashboard-detail-box p {
        margin-bottom: 15px;
    }

    .page-account-order {
        padding: 60px 0;
    }

    .account-order-button {
        margin-top: 30px;
    }

    .page-account-view-order {
        padding: 60px 0;
    }

    ul.view-order-product-info-list li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .view-order-address-item-list {
        margin-top: 40px;
    }

    .view-order-address-item ul li {
        margin-bottom: 15px;
    }

    .page-product-download {
        padding: 60px 0;
    }

    .page-my-account-address {
        padding: 60px 0;
    }

    .account-address-content-header {
        margin-bottom: 30px;
    }

    .account-address-item {
        margin-bottom: 30px;
    }

    .account-address-item-title {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .account-address-item-info-list ul li {
        margin-bottom: 15px;
    }

    .page-account-addresses {
        padding: 60px 0;
    }

    .page-account-details {
        padding: 60px 0;
    }

    .account-details-content-item {
        margin-bottom: 30px;
    }

    .page-account-wishlist {
        padding: 60px 0;
    }

    .wishlist-content-button {
        margin-top: 30px;
    }

    .page-login {
        padding: 60px 0;
    }

    .login-content-form-item {
        width: 100%;
    }

    .login-content-title-box {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .login-content-title-box h2 {
        font-size: 30px;
    }

    .login-content-title-box p {
        margin: 10px 0 0;
    }

    .login-content-form-btn {
        margin-top: 20px;
    }

    .login-content-form-btn a {
        font-size: 18px;
    }

    .signup-form-btn {
        margin-top: 20px;
    }

    .page-forgot-password {
        padding: 60px 0;
    }

    .page-privacy-policy {
        padding: 60px 0;
    }

    .privacy-policy-entry-header {
        margin-bottom: 40px;
    }

    .privacy-policy-entry-header h3 {
        margin-bottom: 15px;
    }

    .privacy-policy-entry-item {
        margin-bottom: 40px;
    }

    .privacy-policy-entry-item .section-title h2 {
        font-size: 30px;
    }

    .privacy-policy-entry-item-content-box {
        margin-bottom: 30px;
    }

    .privacy-policy-entry-item-content-box h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .privacy-policy-entry-item-content-box p {
        margin-bottom: 10px;
    }

    .privacy-policy-entry-item-content-box ul {
        margin-bottom: 15px;
    }

    .page-terms-conditions {
        padding: 60px 0;
    }

    .page-refund-return-policy {
        padding: 60px 0;
    }

    .page-cancellation-policy {
        padding: 60px 0;
    }

    .page-delivery-policy {
        padding: 60px 0;
    }

    .page-testimonials {
        padding: 60px 0 30px;
    }

    .page-testimonials .testimonial-item {
        padding: 30px;
        min-height: 350px;
    }

    .page-faqs {
        padding: 60px 0;
    }

    .sidebar-cta-box h2 {
        font-size: 20px;
        max-width: 100%;
    }

    .sidebar-cta-box ul {
        margin: 20px 0 0 0;
        padding: 20px 0 0 0;
    }

    .page-faq-accordion {
        margin-bottom: 40px;
    }

    .page-contact-us {
        padding: 60px 0 30px;
    }

    .contact-form label {
        font-size: 18px;
    }

    .contact-info-box {
        padding: 30px 0;
    }

    .error-page {
        padding: 60px 0px;
    }

    .error-page-image {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {

    .topbar .row .col-0 {
        display: none;
    }

    .main-menu {
        gap: 15px;
    }

    .header-action-details ul {
        gap: 10px;
    }

    .header-action-details ul li button img,
    .header-action-details ul li a img {
        max-width: 20px;
    }

    .slicknav_menu ul.dropdown-menu {
        padding: 20px 15px;
    }

    .mega-menu-links-box {
        gap: 20px;
    }

    .mega-menu-link {
        width: calc(50% - 10px);
    }

    .mega-menu-items-list {
        gap: 20px;
    }

    .mega-menu-item {
        width: calc(50% - 10px);
    }

    .mega-menu-item.big-offer-box {
        width: 100%;
        min-height: 180px;
    }

    .mega-menu-item.last-item {
        width: 100%;
        min-height: 180px;
    }

    .slicknav_menu .mega-menu-item-content h2 a,
    .mega-menu-item-content h2,
    .mega-menu-link h2 {
        font-size: 16px !important;
    }

    .section-row {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content-list ul {
        gap: 10px;
    }

    .hero-content-list ul li {
        width: 100%;
    }

    .hero-content-body {
        gap: 20px;
    }

    .google-rating-box .google-rating-logo img {
        max-width: 40px;
    }

    .google-rating-content {
        width: calc(100% - 50px);
    }

    .google-rating-star i {
        font-size: 14px;
    }

    .google-rating-content h2 {
        font-size: 18px;
    }

    .key-benefit-box {
        padding: 15px 0;
    }

    .key-benefit-item {
        width: calc(50% - 5px);
        padding: 10px 10px;
    }

    .key-benefit-item-list {
        gap: 10px;
    }

    .key-benefit-item .icon-box {
        width: 40px;
        height: 40px;
    }

    .key-benefit-item .icon-box img {
        max-width: 25px;
    }

    .key-benefit-item-content h3 {
        font-size: 16px;
    }

    .key-benefit-item-content p {
        margin: 5px 0 0;
        font-size: 13px;
    }

    .top-selling-item-image {
        margin-bottom: 10px;
    }

    .top-selling-item-content h3 {
        font-size: 18px;
    }

    .top-offer-item-list {
        gap: 20px;
        margin-top: 30px;
    }

    .top-offer-item {
        width: 100%;
    }

    .top-offer-item-content {
        width: 100%;
    }

    .top-offer-item-content h3 {
        font-size: 18px;
    }

    .top-offer-item-btn {
        margin-top: 20px;
    }

    .top-offer-item-image img {
        max-width: 150px;
    }

    .product-item-header {
        margin-bottom: 15px;
    }

    .product-item-content .product-item-title {
        font-size: 18px;
    }

    .product-item-price {
        margin-top: 5px;
    }

    .product-item-price h3 {
        font-size: 16px;
    }

    .product-slider-btn {
        margin-top: 24px !important;
        gap: 12px !important;
    }

    .product-slider-btn .product-slider-button-prev,
    .product-slider-btn .product-slider-button-next {
        height: 42px !important;
        width: 42px !important;
    }

    .product-slider-btn .product-slider-button-prev::before,
    .product-slider-btn .product-slider-button-next::before {
        height: 12px !important;
        width: 12px !important;
    }

    .intro-video-item-list {
        margin-top: 60px;
    }

    .intro-video-item {
        width: calc(50% - 15px);
    }

    .intro-video-item .icon-box {
        margin-bottom: 10px;
    }

    .intro-video-item .icon-box img {
        max-width: 40px;
    }

    .intro-video-item-content h3 {
        font-size: 18px;
    }

    .intro-video-item:nth-child(4n + 4):before {
        display: block;
    }

    .intro-video-item:nth-child(2n + 2):before,
    .intro-video-item:last-child:before {
        display: none;
    }

    .collection-item {
        padding: 20px;
    }

    .collection-item-content,
    .collection-item-image-box {
        width: 100%;
        gap: 15px;
    }

    .promise-item {
        width: calc(50% - 20px);
    }

    .promise-item:nth-child(3n + 3)::before {
        display: block;
    }

    .promise-item:last-child::before,
    .promise-item:nth-child(2n + 2)::before {
        display: none;
    }

    .promise-item .icon-box {
        min-height: 100px;
    }

    .promise-item .icon-box img {
        max-width: 50px;
    }

    .promise-item-content h3 {
        font-size: 18px;
    }

    .testimonial-item-author {
        margin-top: 20px;
        padding: 20px 0 0 0;
    }

    .testimonial-author-content h2 {
        font-size: 18px;
    }

    .testimonial-btn {
        position: initial;
        justify-content: center;
        margin: 20px 0 0;
    }

    .testimonial-slider .testimonial-button-next,
    .testimonial-slider .testimonial-button-prev {
        width: 40px;
        height: 40px;
    }

    .testimonial-slider .testimonial-button-next::before,
    .testimonial-slider .testimonial-button-prev::before {
        background-size: 12px auto;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 16px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding-right: 0;
    }

    .faq-accordion .accordion-item .accordion-body p {
        font-size: 14px;
    }

    .limited-offer-item {
        width: 100%;
        min-height: 360px;
    }

    .limited-offer-item-body {
        padding: 20px;
    }

    .limited-offer-item-content h2 {
        font-size: 26px;
    }

    .post-item-content h2 {
        font-size: 18px;
    }

    .footer-newsletter-form {
        margin-top: 20px;
    }

    .footer-links.footer-contact-box,
    .footer-links {
        max-width: 100%;
    }

    .footer-links h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-contact-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .footer-contact-item-content h3 {
        font-size: 18px;
    }

    .footer-copyright {
        padding: 15px 0;
    }

    .page-header-box h1 {
        font-size: 28px;
    }

    .mission-vision-item {
        min-height: 360px;
        padding: 20px;
        width: 100%;
    }

    .mission-vision-item-content h3 {
        font-size: 22px;
    }

    .mission-vision-item-content p {
        margin-top: 10px;
    }

    .what-we-item .icon-box {
        margin-bottom: 20px;
    }

    .what-we-item-content h3 {
        font-size: 18px;
    }

    .what-we-item-content p {
        margin-top: 10px;
    }

    .why-customer-choose-video {
        height: 300px;
    }

    .customer-accordion .accordion-header .accordion-button {
        font-size: 16px;
    }

    .customer-accordion .accordion-item .accordion-body {
        padding-right: 0;
    }

    .team-item-content h2 {
        font-size: 18px;
    }

    .post-single-meta ol li,
    .post-single-meta ol li i {
        font-size: 16px;
    }

    .post-image img {
        aspect-ratio: 1 / 0.7;
    }

    .post-entry h2 {
        font-size: 26px;
    }

    .post-entry blockquote {
        background-size: 35px;
        padding: 60px 20px 20px 20px;
    }

    .post-entry blockquote p {
        font-size: 16px;
    }

    .tag-links {
        font-size: 18px;
    }

    .product-category-filter-title h2 {
        font-size: 18px;
    }

    .page-single-sidebar .product-category-filter-header {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .product-category-item-title {
        font-size: 18px;
    }

    .product-category-sorting-list .form-select {
        min-width: auto;
    }

    .product-item-list {
        gap: 20px 10px;
    }

    .product-item-list .product-item {
        width: calc(50% - 5px);
    }

    .product-item-list .product-item-action ul {
        gap: 5px;
    }

    .product-item-list .product-item-action ul li a {
        height: 26px;
        width: 26px;
    }

    .product-item-list .product-item-action ul li a img {
        max-width: 14px;
    }

    .product-single-breadcrumb-list ol {
        gap: 10px 40px;
    }

    .product-single-breadcrumb-list ol li {
        font-size: 14px;
    }

    .product-single-breadcrumb-list .breadcrumb li::before {
        right: -24px;
        width: 10px;
        height: 10px;
    }

    .product-single-image-box {
        flex-direction: column-reverse;
    }

    .product-single-image-slider .swiper-wrapper {
        flex-direction: initial;
    }

    .product-single-image-slider {
        width: 100%;
    }

    .product-single-image-slider .swiper-slide {
        width: calc(20% - 6.66px) !important;
        height: 80px !important;
    }

    .product-single-image-item {
        width: 100%;
    }

    .product-single-price h2,
    .product-single-title h1 {
        font-size: 22px;
    }

    .product-single-price h2 sub {
        font-size: 14px;
    }

    .product-single-details-list h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .product-single-details-list ul {
        gap: 10px;
    }

    .product-single-details-list ul li label {
        padding: 6px 11px;
    }

    .product-single-content-body {
        gap: 10px;
    }

    .qty-box {
        gap: 5px;
        padding: 9px 10px;
    }

    .qty-input {
        font-size: 16px;
    }

    .qty-btn {
        font-size: 22px;
    }

    .product-single-action ul {
        gap: 15px;
    }

    .product-single-action ul li a {
        padding: 10px;
    }

    .product-shipping-box ul li img {
        max-width: 20px;
        margin-right: 5px;
    }

    .product-step-nav .nav-tabs {
        gap: 15px;
    }

    .product-step-nav ul li {
        width: calc(33.33% - 10px);
    }

    .product-step-nav ul li .nav-link {
        font-size: 16px;
    }

    .product-step-nav ul li .nav-link::before {
        display: none;
    }

    .product-tab-item-box h2 {
        font-size: 22px;
    }

    .customer-review-item .icon-box {
        margin-right: 10px;
    }

    .customer-review-item .icon-box img {
        max-width: 50px;
    }

    .customer-review-item-body {
        width: calc(100% - 60px);
    }

    .product-additional-content-title {
        margin-bottom: 20px;
    }

    .product-additional-info-table table tr {
        width: 50%;
    }

    .product-additional-info-table table tr td {
        min-width: 100%;
        padding: 15px 10px;
    }

    .related-product-items-list .product-item {
        width: 100%;
    }

    .cart-item-header {
        display: none;
    }

    .cart-item-image-content,
    .cart-item-quantity-total {
        width: 100%;
    }

    .cart-item-quantity-total {
        justify-content: left;
    }

    .cart-item-image {
        width: 75px;
        height: 75px;
    }

    .cart-item-info-content {
        width: calc(100% - 95px);
    }

    .cart-item-title {
        max-width: 100%;
    }

    .cart-item-title p {
        max-width: 100%;
    }

    .cart-item-subtotal {
        width: auto;
    }

    .interested-products-box-title h2 {
        font-size: 22px;
    }

    .order-summary-content-box {
        padding: 5px;
    }

    .order-summary-box-title {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .order-summary-box-title h2,
    .order-summary-total h3,
    .order-summary-shipment-info h3 {
        font-size: 18px;
    }

    .order-summary-promocode-form .form-group .form-control {
        background-size: 14px auto;
        background-position: left 6px center;
        padding: 8px 10px 8px 28px;
    }

    .order-summary-content-box {
        padding: 5px;
    }

    .order-summary-box-title {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .order-summary-total h3,
    .order-summary-shipment-info h3 {
        font-size: 18px;
    }

    .order-summary-promocode-form .form-group .form-control {
        background-size: 14px auto;
        background-position: left 6px center;
        padding: 8px 10px 8px 28px;
    }

    .order-summary-shipment-info ul li {
        margin-bottom: 10px;
    }

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

    h2.order-sidebar-item-title {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .order-detail-sidebar-item ul li {
        margin-bottom: 10px;
    }

    .order-detail-box ul li {
        padding-bottom: 10px;
    }

    .order-detail-title-box h2 {
        font-size: 28px;
    }

    .order-detail-content-list ul li {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .order-detail-content-list ul li span {
        width: auto;
    }

    .checkout-accordion-header .checkout-accordion-button {
        font-size: 14px;
    }

    .checkout-bill-address-title h2 {
        font-size: 18px;
    }

    .checkout-form-checkbox.different-address-note {
        margin-top: 10px;
    }

    .product-total-order-box {
        padding: 5px;
    }

    .coupeon-accordion-header .coupeon-accordion-button {
        font-size: 14px;
    }

    .coupeon-apply-form .form-group {
        min-width: 160px;
    }

    .coupeon-apply-form .form-control {
        padding: 5px 15px;
        background-image: none;
    }

    .coupeon-apply-btn .btn-default {
        padding: 8px 12px;
    }

    .product-total-order-title h3 {
        font-size: 18px;
    }

    .order-payment-info-item p {
        font-size: 14px;
    }

    .my-account-sidebar-item {
        padding: 20px;
    }

    .my-account-sidebar-item ul li img {
        max-width: 22px;
    }

    .account-dashboard-detail-box p {
        font-size: 16px;
    }

    p.account-dashboard-detail-title {
        font-size: 18px;
    }

    .account-order-table-box table {
        min-width: 630px;
        margin-bottom: 15px;
    }

    .account-order-table-box table tr th {
        min-width: auto;
        font-size: 18px;
        padding: 0 10px 15px 0;
    }

    .account-order-table-box table tr td {
        padding: 15px 10px 15px 0;
    }

    .account-order-table-box table tr td .btn-default {
        padding: 6px 20px;
    }

    .view-order-product-info-box .cart-item-header {
        display: flex;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .view-order-product-info-box .product-header-tag {
        width: calc(56% - 6.67px);
    }

    .view-order-product-info-box .quantity-header-tag,
    .view-order-product-info-box .subtotal-header-tag {
        width: calc(22% - 6.67px);
        text-align: center;
    }

    .view-order-product-info-box .cart-item-header span {
        font-size: 16px;
    }

    .view-order-product-info-box .cart-item-image-content {
        width: calc(62% - 5px);
    }

    .view-order-product-info-box .cart-item-quantity-total {
        width: calc(38% - 5px);
        justify-content: space-evenly;
    }

    .view-order-product-info-box .cart-item-subtotal {
        width: auto;
    }

    .view-order-address-item ul li {
        margin-bottom: 10px;
    }

    ul.view-order-product-info-list li span {
        width: 40%;
    }

    .view-order-address-item {
        width: 100%;
    }

    .view-order-address-item h2 {
        font-size: 18px;
    }

    .view-order-address-item ul {
        margin-top: 15px;
        padding-top: 15px;
    }

    .account-address-item-title h2 {
        font-size: 18px;
    }

    .account-address-item-info-list ul li {
        margin-bottom: 10px;
    }

    .wishlist-item-header {
        display: none;
    }

    .wishlist-item {
        align-items: start;
    }

    .wishlist-item-image-content {
        width: calc(75% - 5px);
    }

    .wishlist-item-title p {
        max-width: 100%;
    }

    .wishlist-item-price {
        width: 100%;
    }

    .wishlist-item-status-action {
        flex-direction: column;
        width: calc(25% - 5px);
        align-items: end;
        text-align: end;
    }

    .wishlist-item-action {
        width: 100%;
    }

    .wishlist-item-action a i {
        font-size: 20px;
    }

    .login-content-title-box h2 {
        font-size: 24px;
    }

    .privacy-policy-entry-header h3 {
        font-size: 18px;
    }

    .privacy-policy-entry-item {
        margin-bottom: 30px;
    }

    .privacy-policy-entry-item .section-title {
        margin-bottom: 20px;
    }

    .privacy-policy-entry-item .section-title h2 {
        font-size: 24px;
    }

    .page-testimonials .testimonial-item {
        padding: 20px;
        min-height: auto;
        gap: 20px;
    }

    .google-map-iframe {
        height: 350px;
    }

    .contact-form label {
        font-size: 16px;
    }
}

@media only screen and (max-width: 576px) {
    .product-single-image-slider .swiper-slide {
        width: calc(25% - 6.66px) !important;
        height: 80px !important;
    }
}

@media only screen and (max-width: 480px) {
    .key-benefit-item {
        width: 100%;
    }
}

/* ==========================================
   Header Profile Hover Dropdown Styling
   ========================================== */

.main-menu ul ul.user-profile-menu {
    visibility: visible;
    opacity: 1;
    transform: unset;
    transform-origin: unset;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    border-radius: unset;
    position: unset;
    left: unset;
    top: unset;
    background: inherit;
    transition: unset;
    text-align: left;
}

.user-dropdown-item {
    position: relative;
}

.user-dropdown-item:hover .user-profile-dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.user-profile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: -10px;
    left: auto;
    width: 220px !important;
    min-width: 220px !important;
    background: #ffffff !important;
    border: 1px solid #e5ded8 !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 25px rgba(139, 109, 88, 0.18) !important;
    padding: 15px !important;
    z-index: 1050 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
}

.user-profile-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-top: 1px solid #e5ded8;
    border-left: 1px solid #e5ded8;
    transform: rotate(45deg);
}

.user-profile-dropdown .user-info {
    border-bottom: 1px solid #f0e9e4 !important;
    padding-bottom: 8px !important;
    margin-bottom: 8px !important;
    text-align: left !important;
}

.user-profile-dropdown .user-info h6 {
    color: #2b2b2b !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 2px !important;
    line-height: 1.3 !important;
}

.user-profile-dropdown .user-info small {
    color: #8b6d58 !important;
    font-size: 12px !important;
    display: block !important;
}

/* Reset theme .header-action-details ul inheritance */
.header-action-details ul.user-profile-menu,
.user-profile-dropdown ul {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 6px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

.header-action-details ul.user-profile-menu li,
.user-profile-dropdown ul li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
}

.header-action-details ul.user-profile-menu li a,
.user-profile-dropdown ul li a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #4f4f4f !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 6px 8px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
}

.header-action-details ul.user-profile-menu li a:hover,
.user-profile-dropdown ul li a:hover {
    color: var(--accent-color) !important;
    background-color: var(--secondary-color) !important;
}

.header-action-details ul.user-profile-menu li a i,
.user-profile-dropdown ul li a i {
    font-size: 14px !important;
    width: 16px !important;
    text-align: center !important;
}

/* ==========================================
   Header Cart Icon Badge & Cart Drawer Styling
   ========================================== */
.cart-badge-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #8b6d58;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.mini-cart-size-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.disabled-qty {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* ==========================================
   SELECT2 PINCODE DROPDOWN LUXURY STYLING
   ========================================== */
.select2-container--default .select2-selection--single {
    height: 46px !important;
    padding: 8px 14px !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 0.5rem !important;
    background-color: #fff !important;
    display: flex !important;
    align-items: center !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px !important;
    padding-left: 0 !important;
    padding-right: 20px !important;
    color: #212529 !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
    right: 10px !important;
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default .select2-selection--single:focus {
    border-color: #8b6d58 !important;
    box-shadow: 0 0 0 0.25rem rgba(139, 109, 88, 0.15) !important;
    outline: none !important;
}

/* Select2 Dropdown Container Popup */
.select2-container--default .select2-dropdown {
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    z-index: 1065 !important;
    margin-top: 4px !important;
    background-color: #ffffff !important;
}

/* Search Box Inside Select2 Dropdown */
.select2-container--default .select2-search--dropdown {
    padding: 8px 10px !important;
    background-color: #f8f9fa !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #cbd5e1 !important;
    border-radius: 0.375rem !important;
    padding: 6px 12px !important;
    font-size: 0.85rem !important;
    outline: none !important;
    box-shadow: none !important;
    width: 100% !important;
    background-color: #ffffff !important;
    color: #1e293b !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #8b6d58 !important;
    box-shadow: 0 0 0 0.2rem rgba(139, 109, 88, 0.15) !important;
}

/* Select2 Options List */
.select2-container--default .select2-results>.select2-results__options {
    max-height: 200px !important;
    padding: 4px 0 !important;
}

.select2-container--default .select2-results__option {
    padding: 8px 14px !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #334155 !important;
    transition: background-color 0.15s ease, color 0.15s ease !important;
}

/* Hover / Highlighted State */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #8b6d58 !important;
    color: #ffffff !important;
}

/* Selected Item */
.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #f1f5f9 !important;
    color: #8b6d58 !important;
    font-weight: 700 !important;
}

/* Searching / No Results Text */
.select2-container--default .select2-results__option--no-results,
.select2-container--default .select2-results__option--searching {
    color: #64748b !important;
    font-size: 0.85rem !important;
    padding: 10px 14px !important;
}

.select2-container--default .select2-selection--single {
    height: 46px !important;
    padding: 8px 12px !important;
    font-size: 0.875rem !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 0.5rem !important;
    background-color: #fff !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal !important;
    padding-left: 0 !important;
    color: #212529 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
    right: 8px !important;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #86b7fe !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

#toastContainer {
    z-index: 9999 !important;
}

/* ==========================================
   Full Screen Policy Modal Styling
   ========================================== */
.policy-fullscreen-modal {
    z-index: 10050 !important;
}

.policy-fullscreen-modal .modal-content {
    background: #fdfbf8;
    min-height: 100vh;
}

.policy-modal-header {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(117, 81, 63, 0.12) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.policy-modal-body {
    background: #f8f6f3 !important;
    overflow-y: auto;
}

.policy-modal-footer {
    background: #ffffff !important;
    border-top: 1px solid rgba(117, 81, 63, 0.12) !important;
}

.policy-modal-inner .policy-section-item {
    background: #ffffff !important;
    border: 1px solid rgba(117, 81, 63, 0.1) !important;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.policy-modal-inner .policy-section-item:hover {
    border-color: rgba(117, 81, 63, 0.25) !important;
    box-shadow: 0 4px 15px rgba(117, 81, 63, 0.05);
}

.policy-modal-inner .policy-section-num {
    background: rgba(117, 81, 63, 0.08) !important;
    color: var(--primary-color, #75513f) !important;
    font-weight: 700;
}

.policy-modal-inner .policy-intro-text {
    color: #555555;
    line-height: 1.7;
}

.policy-modal-inner .policy-section-body {
    color: #4a4a4a;
    line-height: 1.7;
}

/* ==========================================
   PRODUCT REVIEWS & USER AVATAR STYLING
   ========================================== */
.user-avatar-circle {
    overflow: hidden;
    position: relative;
}

.user-avatar-circle .user-avatar-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

.profile-avatar-preview {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-avatar-preview:hover {
    transform: scale(1.02);
}

.profile-photo-badge {
    cursor: pointer;
    transition: all 0.2s ease;
}

.profile-photo-badge:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

.star-rating-select .star-pick,
.star-rating-select .prod-star-pick {
    cursor: pointer;
    transition: transform 0.15s ease, color 0.15s ease;
}

.star-rating-select .star-pick:hover,
.star-rating-select .prod-star-pick:hover {
    transform: scale(1.25);
}

.customer-review-card {
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.customer-review-card:hover {
    border-color: rgba(117, 81, 63, 0.2) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
}

.review-photo-fancybox {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-photo-fancybox:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.review-video-fancybox {
    cursor: pointer;
    background: #000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-video-fancybox:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.review-video-fancybox:hover span {
    background-color: var(--primary-color) !important;
}

.existing-photo-item {
    transition: transform 0.2s ease;
}

.existing-photo-item:hover {
    transform: scale(1.02);
}

.btn-remove-existing-photo {
    opacity: 0.9;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.btn-remove-existing-photo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.existing-video-card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.existing-video-card:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Luxury Form & Upload Enhancements */
.form-control-lux {
    border: 1.5px solid #e8e2dc;
    border-radius: 10px;
    padding: 10px 14px;
    background-color: #faf8f6;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-control-lux:focus {
    border-color: var(--primary-color, #75513f);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(117, 81, 63, 0.12);
    outline: none;
}

.lux-upload-box {
    border: 1.5px dashed rgba(138, 93, 59, 0.35);
    background-color: #fdfbf9;
    border-radius: 12px;
    transition: all 0.22s ease;
}

.lux-upload-box:hover {
    border-color: var(--primary-color, #75513f);
    background-color: #f9f5f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(138, 93, 59, 0.08);
}

.lux-upload-box:hover .lux-upload-icon {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    transform: scale(1.08);
}

.lux-upload-icon {
    transition: all 0.2s ease;
}

.btn-remove-existing-photo {
    transition: transform 0.15s ease, background-color 0.15s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.btn-remove-existing-photo:hover {
    transform: scale(1.2);
    background-color: #b02a37 !important;
}

.rating-picker-lux-card {
    box-shadow: 0 2px 10px rgba(138, 93, 59, 0.04);
}

.review-product-preview-thumb img {
    transition: transform 0.2s ease;
}

.review-product-preview-thumb:hover img {
    transform: scale(1.08);
}

/* ========================================================
   MODERN HEADER RESPONSIVE ENHANCEMENTS
   ======================================================== */
@media (max-width: 991px) {
    .header-nav-container {
        height: 68px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .header-brand-wrap {
        margin-right: 10px !important;
    }

    .header-brand-wrap .navbar-brand img {
        max-height: 55px !important;
        max-width: 120px !important;
    }

    .header-action-list {
        gap: 12px !important;
    }

    .header-action-btn {
        min-width: 38px !important;
        padding: 3px 2px !important;
    }

    .header-action-btn .action-icon-wrap {
        font-size: 17px !important;
        height: 20px !important;
    }

    .header-action-btn .action-text-label {
        font-size: 10.5px !important;
        margin-top: 3px !important;
    }

    .header-action-btn .cart-badge-count {
        top: -4px !important;
        right: -8px !important;
        font-size: 9px !important;
        min-width: 15px !important;
        height: 15px !important;
    }

    .navbar-toggle {
        margin-left: 4px;
        display: flex;
        align-items: center;
    }

    .navbar-toggle a.slicknav_btn {
        width: 36px !important;
        height: 36px !important;
        background: transparent !important;
        border: 1px solid #e0d8cf !important;
        border-radius: 6px !important;
    }

    .navbar-toggle a.slicknav_btn .slicknav_icon .slicknav_icon-bar {
        background-color: #282c3f !important;
    }

    .modern-profile-dropdown {
        position: fixed !important;
        top: 68px !important;
        left: 15px !important;
        right: 15px !important;
        width: auto !important;
        min-width: auto !important;
        max-width: none !important;
    }

    .modern-profile-dropdown::before {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .header-action-list {
        gap: 8px !important;
    }

    .header-action-btn {
        min-width: 32px !important;
    }

    .header-brand-wrap .navbar-brand img {
        max-height: 55px !important;
        max-width: 100px !important;
    }
}

@media (max-width: 402px) {
    .header-action-list {
        gap: 6px !important;
    }

    .header-action-btn .action-icon-wrap {
        font-size: 15px !important;
    }

    .header-action-btn .action-text-label {
        font-size: 10px !important;
    }

    .header-modern-actions {
        margin-left: 0px;
    }
}

/* =========================================
   SEARCH "DID YOU MEAN" BANNER
   ========================================= */
.search-did-you-mean-box {
    background: #fdfaf6;
    border-left: 4px solid var(--accent-color, #c8a165);
    border-top: 1px solid #f1e9dd;
    border-right: 1px solid #f1e9dd;
    border-bottom: 1px solid #f1e9dd;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.search-did-you-mean-box .did-you-mean-main {
    font-size: 16px;
    font-weight: 500;
    color: #222222;
    line-height: 1.5;
}

.search-did-you-mean-box .did-you-mean-suggested {
    color: var(--primary-color, #4a2c1b);
    font-weight: 700;
    font-style: italic;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.search-did-you-mean-box .did-you-mean-suggested:hover {
    color: var(--accent-color, #c8a165);
}

.search-did-you-mean-box .did-you-mean-sub {
    font-size: 14px;
    color: #666666;
    margin-top: 5px;
}

.search-did-you-mean-box .did-you-mean-original {
    color: #444444;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.search-did-you-mean-box .did-you-mean-original:hover {
    color: #000000;
}

/* ==========================================================================
   MASTER COMPREHENSIVE RESPONSIVE DESIGN SYSTEM (DOWN TO 350PX SCREENS)
   ========================================================================== */

/* 1. Global Viewport & Base Container Polish */
@media (max-width: 575.98px) {

    body,
    html {
        overflow-x: clip !important;
        max-width: 100vw !important;
    }

    .container,
    .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .row {
        margin-left: -6px !important;
        margin-right: -6px !important;
    }

    .row>* {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    /* Global Headings & Section Titles */
    h1,
    .h1,
    .display-6 {
        font-size: 22px !important;
        line-height: 1.25 !important;
    }

    h2,
    .h2 {
        font-size: 20px !important;
        line-height: 1.25 !important;
    }

    h3,
    .h3 {
        font-size: 17px !important;
        line-height: 1.3 !important;
    }

    h4,
    .h4 {
        font-size: 15px !important;
    }

    .section-title h2 {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    .section-sub-title {
        font-size: 11px !important;
        margin-bottom: 6px !important;
    }

    .page-header-box h1 {
        font-size: 22px !important;
        margin-bottom: 6px !important;
    }

    .page-header {
        padding: 16px 0 !important;
    }

    .page-header-box ol.breadcrumb {
        font-size: 12.5px !important;
        line-height: 1.45 !important;
        gap: 3px 0 !important;
    }

    .page-header-box ol li.breadcrumb-item {
        font-size: 12.5px !important;
        line-height: 1.45 !important;
    }

    .page-header-box ol li.breadcrumb-item a {
        font-size: 12.5px !important;
        text-decoration: none !important;
        border-bottom: none !important;
    }

    .page-header-box ol li.breadcrumb-item.active {
        font-size: 12.5px !important;
        color: var(--accent-color, #d3ae34) !important;
        word-break: break-word !important;
    }

    .page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
        padding: 0 5px !important;
        font-size: 11px !important;
        color: rgba(255, 255, 255, 0.45) !important;
    }

    .btn-default,
    .btn-secondary {
        font-size: 13.5px !important;
        padding: 10px 18px !important;
    }
}

/* 2. Small Mobile Screens (<= 480px) */
@media (max-width: 480px) {

    /* Header Polish */
    .header-nav-container {
        height: 60px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .header-action-list {
        gap: 6px !important;
    }

    .header-action-btn {
        min-width: 28px !important;
        padding: 2px 1px !important;
    }

    .header-action-btn .action-icon-wrap {
        font-size: 15px !important;
        height: 18px !important;
    }

    .header-action-btn .action-text-label {
        font-size: 9px !important;
    }

    .header-action-btn .cart-badge-count {
        top: -4px !important;
        right: -6px !important;
        font-size: 8.5px !important;
        min-width: 14px !important;
        height: 14px !important;
        line-height: 14px !important;
    }

    /* Product Details: Gallery on mobile */
    .product-single-image-box {
        flex-direction: column !important;
        height: auto !important;
        gap: 10px !important;
    }

    .vertical-thumbs-wrapper {
        width: 100% !important;
        height: auto !important;
        flex-direction: row !important;
        order: 2 !important;
    }

    .vertical-thumbs-wrapper .product-single-image-slider {
        width: 100% !important;
        height: 70px !important;
    }

    .vertical-thumbs-wrapper .thumb-nav-btn {
        display: none !important;
    }

    .main-image-wrapper {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        order: 1 !important;
    }

    .product-single-image-item {
        width: 100% !important;
        height: 100% !important;
    }

    .product-single-image-item figure {
        height: 100% !important;
        aspect-ratio: 1 / 1 !important;
    }

    .product-single-image-item figure img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Product Details: Purchase Row Buttons */
    .product-single-content-body {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        margin-top: 18px !important;
    }

    .qty-box {
        padding: 8px 10px !important;
        gap: 6px !important;
        flex-shrink: 0 !important;
    }

    .qty-btn {
        font-size: 20px !important;
    }

    .qty-input {
        width: 32px !important;
        font-size: 14px !important;
    }

    .product-single-content-btn {
        flex: 1 1 auto !important;
        min-width: 120px !important;
    }

    .product-single-content-btn .btn-default {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }

    .product-single-action {
        flex-shrink: 0 !important;
    }

    .product-single-action ul li a {
        width: 44px !important;
        height: 44px !important;
        padding: 10px !important;
    }

    /* Product Details: Trust Card */
    .product-trust-assurance-card {
        padding: 12px 10px !important;
    }

    .trust-pillar-item {
        padding: 4px 2px !important;
        gap: 6px !important;
    }

    .trust-pillar-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 11px !important;
    }

    .trust-pillar-text h6 {
        font-size: 11px !important;
    }

    .trust-pillar-text p {
        font-size: 9.5px !important;
    }

    /* Product Details: Available Coupons */
    .coupon-item-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        padding: 10px 12px !important;
    }

    .coupon-item-action {
        width: 100% !important;
        justify-content: space-between !important;
    }

    /* Cart & Checkout Pages */
    .cart-table-wrapper,
    .checkout-card-box,
    .cart-sidebar-box {
        padding: 14px 10px !important;
        border-radius: 12px !important;
    }

    .saved-address-grid .col-md-6 {
        width: 100% !important;
    }

    .address-card-label {
        padding: 12px 10px !important;
    }

    .payment-option-label {
        padding: 10px !important;
    }

    /* Modals & Dialogs */
    .auth-theme-modal .modal-dialog,
    .quickview-theme-modal .modal-dialog,
    .custom-theme-modal .modal-dialog {
        margin: 8px !important;
        max-width: calc(100vw - 16px) !important;
    }

    .auth-theme-modal .modal-body {
        padding: 22px 14px !important;
    }

    .auth-modal-title {
        font-size: 19px !important;
    }

    .auth-modal-subtitle {
        font-size: 12px !important;
    }

    /* Pre-Footer Features Bar */
    .footer-features-box {
        padding: 16px 10px !important;
    }

    .footer-feature-item {
        gap: 8px !important;
        padding: 6px 4px !important;
    }

    .footer-feature-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 13px !important;
    }

    .footer-feature-text h6 {
        font-size: 11px !important;
    }

    .footer-feature-text p {
        font-size: 9px !important;
    }
}

/* ==========================================================================
   CHECKOUT, ORDERS, ORDER DETAILS & POPUP MODALS RESPONSIVE SYSTEM (DOWN TO 350PX)
   ========================================================================== */

/* Tablet & Mobile Screens (<= 991.98px) */
@media (max-width: 991.98px) {

    .page-account-orders,
    .page-account-order-details,
    .page-account-address,
    .page-checkout,
    .page-order-success {
        padding-top: 25px !important;
        padding-bottom: 35px !important;
    }
}

/* Mobile Screens (<= 767.98px) */
@media (max-width: 767.98px) {

    /* 1. Checkout Page */
    .checkout-card-box {
        padding: 16px 14px !important;
        border-radius: 14px !important;
    }

    .payment-method-card .payment-card-label {
        padding: 12px 10px !important;
    }

    .address-card-label {
        padding: 12px 10px !important;
    }

    /* 2. Order Listing Page */
    .orders-header-bar {
        padding: 12px !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .orders-header-bar .custom-order-pills {
        width: 100% !important;
        padding-bottom: 4px !important;
    }

    .orders-header-bar .ms-auto {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .orders-header-bar select {
        width: 100% !important;
        min-width: 100% !important;
    }

    /* 3. Order Details Page */
    .order-details-wrapper {
        gap: 16px !important;
    }

    .order-item-card {
        padding: 12px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .order-item-card>div:last-child {
        width: 100% !important;
        margin-top: 8px !important;
        display: flex !important;
        justify-content: flex-end !important;
    }

    /* 4. Order Success Page */
    .order-success-card {
        padding: 20px 14px !important;
    }

    .border-end-md {
        border-right: none !important;
    }
}

/* Mobile Screens (<= 575.98px) */
@media (max-width: 575.98px) {

    /* 1. Checkout Page */
    .checkout-card-box h3 {
        font-size: 15px !important;
    }

    .btn-open-add-address {
        font-size: 11.5px !important;
        padding: 6px 12px !important;
    }

    .saved-address-grid .col-md-6 {
        width: 100% !important;
    }

    .payment-radio-indicator {
        width: 18px !important;
        height: 18px !important;
        margin-top: 2px !important;
    }

    .payment-radio-indicator::after {
        width: 8px !important;
        height: 8px !important;
    }

    .payment-method-card h6 {
        font-size: 13.5px !important;
    }

    .payment-method-card p {
        font-size: 11.5px !important;
    }

    .checkout-item-single {
        padding: 8px !important;
        gap: 10px !important;
    }

    .checkout-item-single .checkout-item-img {
        width: 48px !important;
        height: 48px !important;
    }

    .checkout-coupon-toggle-box .coupon-toggle-bar {
        padding: 10px 12px !important;
        font-size: 12px !important;
    }

    .place-order-action .btn-default {
        padding: 12px 14px !important;
        font-size: 14px !important;
    }

    /* 2. Order Listing Page */
    .custom-order-pills {
        scrollbar-width: thin !important;
        scrollbar-color: rgba(139, 109, 88, 0.3) transparent !important;
        -webkit-overflow-scrolling: touch !important;
        display: flex !important;
        overflow-x: auto !important;
        gap: 6px !important;
    }

    .custom-order-pills::-webkit-scrollbar {
        height: 3px !important;
    }

    .custom-order-pills::-webkit-scrollbar-thumb {
        background-color: rgba(139, 109, 88, 0.3) !important;
        border-radius: 3px !important;
    }

    .custom-order-pills::-webkit-scrollbar-track {
        background: transparent !important;
    }

    .custom-order-pills .nav-link {
        padding: 6px 12px !important;
        font-size: 12px !important;
        border-radius: 6px !important;
    }

    .order-card-header {
        padding: 12px !important;
    }

    .order-card-header .fs-7 {
        font-size: 12px !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px 12px !important;
        width: 100% !important;
    }

    .order-card-header .border-start {
        border-left: none !important;
        padding-left: 0 !important;
    }

    .order-card-header>div:last-child {
        width: 100% !important;
        display: flex !important;
        justify-content: flex-start !important;
        margin-top: 4px !important;
    }

    .order-card-body {
        padding: 12px !important;
    }

    .order-card-body img {
        width: 48px !important;
        height: 48px !important;
    }

    .order-card-footer {
        padding: 10px 12px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .order-card-footer>div:last-child {
        width: 100% !important;
        display: flex !important;
        gap: 6px !important;
    }

    .order-card-footer .btn {
        flex: 1 1 0 !important;
        padding: 6px 4px !important;
        font-size: 11px !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    .order-card-footer .btn i {
        display: none !important;
    }

    /* 3. Order Details Page */
    .page-account-order-details .badge {
        font-size: 11px !important;
        padding: 4px 8px !important;
    }

    .refund-metadata-grid .col-6 {
        padding: 6px !important;
    }

    .refund-stepper-wrapper {
        overflow-x: auto !important;
        padding: 10px 0 !important;
    }

    .refund-steps {
        min-width: 300px !important;
    }

    /* 4. Live Shipment Tracking Modal */
    #trackingDetailsModal .modal-dialog {
        margin: 6px !important;
        max-width: calc(100vw - 12px) !important;
    }

    #trackingDetailsModal .modal-content {
        padding: 12px 10px !important;
        border-radius: 14px !important;
    }

    #trackingDetailsModal .modal-header {
        padding: 12px 10px !important;
        margin: -12px -10px 0 !important;
        border-top-left-radius: 14px !important;
        border-top-right-radius: 14px !important;
    }

    #trackingDetailsModal .modal-header h4 {
        font-size: 15px !important;
    }

    #trackingDetailsModal .modal-header small {
        font-size: 10.5px !important;
        line-height: 1.3 !important;
    }

    #trackingDetailsModal .modal-body {
        padding: 12px 2px !important;
    }

    /* 4 Metric Summary Cards on Mobile */
    .tracking-summary-card {
        padding: 8px 8px !important;
        border-radius: 10px !important;
        min-height: 64px !important;
        gap: 8px !important;
        align-items: center !important;
    }

    .tracking-card-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
        flex-shrink: 0 !important;
    }

    .tracking-card-label {
        font-size: 0.6rem !important;
        letter-spacing: 0 !important;
        margin-bottom: 2px !important;
    }

    .tracking-card-value {
        font-size: 0.72rem !important;
        line-height: 1.2 !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
    }

    /* Stepper on Mobile */
    .tracking-journey-container {
        padding: 14px 10px !important;
        border-radius: 12px !important;
    }

    .shipment-stepper {
        overflow-x: auto !important;
        padding: 10px 4px 6px !important;
        scrollbar-width: thin !important;
        scrollbar-color: #cbd5e1 transparent !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .shipment-stepper::-webkit-scrollbar {
        height: 3px !important;
    }

    .shipment-stepper::-webkit-scrollbar-thumb {
        background-color: #cbd5e1 !important;
        border-radius: 3px !important;
    }

    .shipment-stepper::-webkit-scrollbar-track {
        background: transparent !important;
    }

    .shipment-steps-row {
        min-width: 400px !important;
    }

    .shipment-progress-line-bg,
    .shipment-progress-line-fill {
        top: 26px !important;
        left: 30px !important;
        right: 30px !important;
    }

    .shipment-step-circle {
        width: 34px !important;
        height: 34px !important;
        font-size: 0.85rem !important;
        margin-bottom: 6px !important;
    }

    .shipment-step-title {
        font-size: 0.72rem !important;
    }

    .shipment-step-subtitle {
        font-size: 0.64rem !important;
    }

    /* Scans Timeline */
    .tracking-scans-container {
        padding: 14px 10px !important;
        border-radius: 12px !important;
    }

    .scans-timeline {
        padding-left: 20px !important;
        margin-top: 14px !important;
    }

    .scans-timeline::before {
        left: 5px !important;
    }

    .scan-item-dot {
        left: -20px !important;
        top: 14px !important;
        width: 12px !important;
        height: 12px !important;
    }

    .scan-item-card {
        padding: 10px 12px !important;
        border-radius: 10px !important;
    }

    .scan-badge-location {
        font-size: 0.65rem !important;
        padding: 2px 6px !important;
    }

    .scan-badge-latest {
        font-size: 0.65rem !important;
        padding: 2px 6px !important;
    }

    /* 5. Review Modal & Cancel Modal & Address Modal */
    #itemReviewModal .modal-dialog,
    #cancelOrderConfirmModal .modal-dialog,
    #manageAddressModal .modal-dialog,
    #deleteAddressConfirmModal .modal-dialog {
        margin: 6px !important;
        max-width: calc(100vw - 12px) !important;
    }

    #itemReviewModal .modal-content,
    #cancelOrderConfirmModal .modal-content,
    #manageAddressModal .modal-content,
    #deleteAddressConfirmModal .modal-content {
        padding: 16px 12px !important;
        border-radius: 14px !important;
    }

    .lux-upload-box {
        padding: 10px !important;
    }

    .lux-upload-inner .lux-upload-icon {
        width: 32px !important;
        height: 32px !important;
    }

    .star-rating-select {
        font-size: 1.6rem !important;
        gap: 6px !important;
    }
}

/* Extra-Small Mobile Screens (<= 380px down to 350px) */
@media (max-width: 380px) {

    /* Tracking summary metric cards on 350px */
    .tracking-summary-card {
        padding: 6px 6px !important;
        min-height: 58px !important;
        gap: 6px !important;
    }

    .tracking-card-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
        border-radius: 6px !important;
    }

    .tracking-card-label {
        font-size: 0.55rem !important;
    }

    .tracking-card-value {
        font-size: 0.68rem !important;
    }

    /* Order listing action buttons on 350px */
    .order-card-footer .btn {
        font-size: 10px !important;
        padding: 5px 2px !important;
    }

    /* Star rating on 350px */
    .star-rating-select {
        font-size: 1.35rem !important;
        gap: 4px !important;
    }
}

/* ==========================================================================
   Return & Exchange Request & Live Progress Stepper Styles
   ========================================================================== */
.return-status-box {
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(234, 88, 12, 0.06);
    overflow: hidden;
}

.return-status-box .card-header {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-bottom: 1px solid #fed7aa;
    padding: 16px 20px;
}

.return-stepper-container {
    width: 100%;
    padding: 12px 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.return-stepper-track {
    position: relative;
    width: 100%;
    min-width: 520px;
    padding: 10px 0 16px;
}

.return-track-bg {
    position: absolute;
    top: 31px;
    left: 10%;
    right: 10%;
    height: 4px;
    background-color: #e2e8f0;
    z-index: 1;
    border-radius: 4px;
}

.return-track-fill {
    position: absolute;
    top: 31px;
    left: 10%;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 4px;
    z-index: 1;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.return-steps-row {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.return-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 4px;
}

.return-step-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.return-step-node.completed .return-step-dot {
    background-color: #10b981;
    border-color: #10b981;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.35);
}

.return-step-node.active .return-step-dot {
    background-color: #d97706;
    border-color: #fef3c7;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.2), 0 4px 12px rgba(217, 119, 6, 0.35);
    animation: pulseReturnActiveDot 2s infinite;
}

@keyframes pulseReturnActiveDot {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.4), 0 4px 12px rgba(217, 119, 6, 0.35);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(217, 119, 6, 0), 0 4px 12px rgba(217, 119, 6, 0.35);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0), 0 4px 12px rgba(217, 119, 6, 0.35);
    }
}

.return-step-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 2px;
    line-height: 1.3;
}

.return-step-node.completed .return-step-title,
.return-step-node.active .return-step-title {
    color: #0f172a;
}

.return-step-subtitle {
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.2;
}

.return-step-node.completed .return-step-subtitle {
    color: #059669;
    font-weight: 600;
}

.return-step-node.active .return-step-subtitle {
    color: #d97706;
    font-weight: 600;
}

/* Return / Exchange Modal Styles */
.return-type-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #ffffff;
}

.return-type-card:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.return-type-card.active {
    border-color: #ea580c;
    background: #fff7ed;
}

.return-type-card input[type="radio"] {
    accent-color: #ea580c;
}

.refund-option-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #ffffff;
}

.refund-option-card:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.refund-option-card.active {
    border-color: #10b981;
    background: #ecfdf5;
}

.refund-option-card input[type="radio"] {
    accent-color: #10b981;
}

.unboxing-upload-dropzone {
    border: 2px dashed #ea580c;
    background: #fffbf7;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.unboxing-upload-dropzone:hover {
    background: #fff7ed;
    border-color: #c2410c;
}

.photos-upload-dropzone {
    border: 2px dashed #cbd5e1;
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.photos-upload-dropzone:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

/* Mobile & Tablet Overrides for Return Modal & Stepper */
@media (max-width: 768px) {
    #returnExchangeModal .modal-dialog {
        margin: 8px !important;
        max-width: calc(100vw - 16px) !important;
    }

    #returnExchangeModal .modal-content {
        padding: 14px 10px !important;
        border-radius: 14px !important;
    }

    #returnExchangeModal .modal-header {
        padding: 12px 10px !important;
    }

    #returnExchangeModal .modal-body {
        padding: 12px 6px !important;
    }
}

@media (max-width: 576px) {
    .return-status-box .card-header {
        padding: 12px 14px !important;
    }

    .return-stepper-container {
        padding: 8px 0 10px !important;
    }

    .return-stepper-track {
        min-width: 460px !important;
        padding: 6px 0 12px !important;
    }

    .return-track-bg,
    .return-track-fill {
        top: 25px !important;
        left: 10% !important;
        right: 10% !important;
    }

    .return-step-dot {
        width: 36px !important;
        height: 36px !important;
        font-size: 13px !important;
    }

    .return-step-title {
        font-size: 11px !important;
    }

    .return-step-subtitle {
        font-size: 9.5px !important;
    }
}

@media (max-width: 380px) {
    #returnExchangeModal .modal-dialog {
        margin: 4px !important;
        max-width: calc(100vw - 8px) !important;
    }

    #returnExchangeModal .modal-content {
        padding: 10px 6px !important;
    }

    .return-type-card {
        padding: 10px !important;
    }

    .refund-option-card {
        padding: 10px 8px !important;
    }
}

/* ==========================================
   Infinite Scroll Loader & End Notice Styles
   ========================================== */

#infinite-scroll-container {
    position: relative;
    width: 100%;
    clear: both;
}

#infinite-scroll-loading .infinite-loader-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: #ffffff;
    border: 1.5px solid rgba(217, 119, 6, 0.25);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.12);
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    animation: infiniteLoaderPulse 1.8s ease-in-out infinite;
}

@keyframes infiniteLoaderPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(217, 119, 6, 0.12);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 8px 24px rgba(217, 119, 6, 0.22);
        transform: translateY(-2px);
    }
}

#infinite-scroll-end .infinite-end-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
}

.set-icon {
    color: var(--accent-color) !important;
}

body.shop-scroll-locked {
    overflow: hidden !important;
    touch-action: none !important;
    -ms-touch-action: none !important;
}