/* =========================================================
   GOOGLE FONTS
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* =========================================================
   ROOT VARIABLES
========================================================= */
:root {
    --primary: #008f8c;
    --primary-dark: #006d6a;
    --secondary: #e84a3c;
    --accent: #f3a22f;

    --dark: #1d2430;
    --text: #5f6673;
    --muted: #8c929d;

    --white: #ffffff;
    --light: #f9f9f9;
    --light-two: #f2f5f4;
    --border: #e7e8e8;

    --heading-font: "Cormorant Garamond", serif;
    --body-font: "DM Sans", sans-serif;

    --container-width: 1320px;
    --container2-width: 1200px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;

    --shadow-sm: 0 8px 24px rgba(24, 35, 45, 0.06);
    --shadow-md: 0 18px 45px rgba(24, 35, 45, 0.10);
    --shadow-lg: 0 25px 70px rgba(24, 35, 45, 0.14);

    --transition: all 0.35s ease;
}

/* =========================================================
   RESET
========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    padding-right: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
}

h1 {
    font-size: clamp(42px, 6vw, 78px);
}

h2 {
    font-size: clamp(36px, 5vw, 58px);
}

h3 {
    font-size: clamp(28px, 4vw, 38px);
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

p {
    margin: 0 0 15px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--border);
    background-color: var(--white);
    color: var(--dark);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 143, 140, 0.10);
    box-shadow: none;
}

::selection {
    color: var(--white);
    background-color: var(--primary);
}

/* =========================================================
   BOOTSTRAP OVERRIDES
========================================================= */
.container-fluid {
    max-width: var(--container-width);
}

.container {
    max-width: var(--container2-width);
}

.row {
    --bs-gutter-x: 24px;
}

.btn {
    border-radius: var(--radius-pill);
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: var(--transition);
}

.btn-primary {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    color: var(--white);
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-outline-primary {
    color: var(--primary);
    background-color: transparent;
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: none;
}

.form-control,
.form-select {
    min-height: 52px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-color: var(--border);
    font-size: 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 143, 140, 0.10);
}

.modal-content {
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* =========================================================
   COMMON LAYOUT
========================================================= */
.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 70px 0;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-light-two {
    background-color: var(--light-two);
}

.text-primary {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.max-content {
    max-width: 720px;
}

.mx-width-auto {
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   SECTION TITLE
========================================================= */
.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-subtitle::before {
    content: "";
    width: 28px;
    height: 2px;
    background-color: var(--secondary);
}

.section-title {
    margin-bottom: 18px;
}

.section-description {
    max-width: 650px;
    color: var(--text);
}

/* =========================================================
   BUTTONS
========================================================= */
.theme-btn {
    position: relative;
    min-height: 50px;
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    color: var(--white);
    background-color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.theme-btn:hover {
    color: var(--white);
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.theme-btn-outline {
    color: var(--dark);
    background-color: transparent;
    border: 1px solid var(--dark);
}

.theme-btn-outline:hover {
    color: var(--white);
    background-color: var(--dark);
}

/* =========================================================
   IMAGE SETTINGS
========================================================= */
.image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hover-image {
    overflow: hidden;
}

.hover-image img {
    transition: transform 0.6s ease;
}

.hover-image:hover img {
    transform: scale(1.06);
}

/* =========================================================
   UTILITY CLASSES
========================================================= */
.position-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rounded-custom {
    border-radius: var(--radius-md);
}

.shadow-custom {
    box-shadow: var(--shadow-md);
}

.transition {
    transition: var(--transition);
}

/* =========================================================
   SCROLLBAR
========================================================= */
::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-dark);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1199.98px) {
    :root {
        --container-width: 1140px;
    }

    .section-padding {
        padding: 85px 0;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 75px 0;
    }

    .section-padding-sm {
        padding: 55px 0;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-padding-sm {
        padding: 45px 0;
    }

    .btn,
    .theme-btn {
        padding: 13px 22px;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 29px;
    }

    .row {
        --bs-gutter-x: 18px;
    }
}



/* =========================================================
   HEADER VARIABLES
========================================================= */

:root {
    --primary: #008f87;
    --primary-dark: #006f69;
    --dark: #14202b;
    --text: #46505a;
    --muted: #7d858d;
    --light: #faf9f7;
    --white: #ffffff;
    --border: #e4e6e8;
    --danger: #ef4444;
    --transition: 0.25s ease;
}

/* =========================================================
   TOP BAR
========================================================= */

.topBar {
    position: relative;
    z-index: 101;
    min-height: 44px;
    background: var(--light);
    border-bottom: 1px solid var(--border);
}

.topBarInner {
    min-height: 43px;
    display: grid;
    grid-template-columns: minmax(175px, 1fr) auto minmax(220px, 1fr);
    align-items: center;
    gap: 20px;
}

/* Top left and right */

.topBarLeft {
    justify-self: start;
}

.topBarRight {
    justify-self: end;
}

.topBarLeft a,
.topBarRight a {
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition);
}

.topBarLeft a:hover,
.topBarRight a:hover {
    color: var(--primary);
}

.topBarLeft a svg,
.topBarRight a svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

/* Center menu */

.topBarMenu {
    height: 43px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 29px;
    list-style: none;
}

.topBarMenu>li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.topBarMenu>li>a {
    position: relative;
    height: 100%;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition);
}

.topBarMenu>li>a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    margin: auto;
    background: var(--primary);
    transition: width var(--transition);
}

.topBarMenu>li>a:hover,
.topBarMenu>li>a.active {
    color: var(--primary);
}

.topBarMenu>li>a:hover::after,
.topBarMenu>li>a.active::after {
    width: 100%;
}

.topBarMenu>li>a+button {
    background: transparent;
    border: 0;
}

.topBarMenu>li>a+button svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.topHasDropdown:hover>a {
    color: var(--primary);
}

.topHasDropdown:hover>a+button svg,
.topHasDropdown:focus-within>a+button svg {
    transform: rotate(180deg);
    color: var(--primary);
}

/* =========================================================
   TOP BAR DROPDOWN
========================================================= */

.topSubMenu {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 1200;
    width: 225px;
    margin: 0;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--white);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    box-shadow: 0 15px 40px rgba(20, 32, 43, 0.12);
    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.topHasDropdown:hover>.topSubMenu,
.topHasDropdown:focus-within>.topSubMenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.topSubMenu li+li {
    border-top: 1px solid #eeeeee;
}

.topSubMenu a {
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 5px;
    color: var(--text);
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition:
        color var(--transition),
        background-color var(--transition),
        padding-left var(--transition);
}

.topSubMenu a:hover {
    padding-left: 16px;
    color: var(--primary);
    background: #f2f9f8;
}

/* Prevent dropdown closing while moving cursor */

.topHasDropdown::before {
    content: "";
    position: absolute;
    top: 70%;
    right: -12px;
    bottom: -12px;
    left: -12px;
}


/* =========================================================
   TOP BAR MOBILE MENU TOGGLE
========================================================= */

.topBarMenuToggle {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    color: var(--dark);
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.topBarMenuToggle span {
    width: 22px;
    height: 2px;
    border-radius: 5px;
    background: currentColor;
    display: block;
    transition:
        transform var(--transition),
        opacity var(--transition);
}

/* Active hamburger animation */

.topBarMenuToggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.topBarMenuToggle.active span:nth-child(2) {
    opacity: 0;
}

.topBarMenuToggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}



/* =========================================================
   MAIN HEADER
========================================================= */

.header {
    position: relative;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--light-two);
    transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease, padding .35s ease;
}

.header.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    animation: headerSlideDown .35s ease;
}

@keyframes headerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.headerInner {
    min-height: 75px;
    display: grid;
    grid-template-columns: 320px 212px minmax(320px, 1fr) auto;
    align-items: center;
    gap: 22px;
}

/* =========================================================
   LOGO
========================================================= */

.headerLogo {
    min-width: 0;
}

.headerLogo a {
    display: inline-flex;
    align-items: center;
}

.headerLogo img {
    width: 100%;
    max-width: 210px;
    max-height: 62px;
    object-fit: contain;
    object-position: left center;
}

/* =========================================================
   CATEGORY MENU BUTTON
========================================================= */
.categoryMenu {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.categoryBtn {
    width: max-content;
    min-width: 130px;
    height: 40px;
    padding: 0 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--white);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition:
        color var(--transition),
        border-color var(--transition),
        background-color var(--transition);
}

.categoryBtn:hover,
.categoryMenu:focus-within .categoryBtn {
    color: var(--primary);
    border-color: var(--primary);
    background: #fbfefe;
}

.categoryMenuIcon {
    width: 20px;
    flex: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.categoryMenuIcon span {
    width: 16px;
    height: 2px;
    border-radius: 3px;
    background: currentColor;
}

/* =========================================================
   MAIN CATEGORY DROPDOWN
========================================================= */

.categoryDropdown {
    position: absolute;
    top: calc(100% - 15px);
    left: 0;
    z-index: 1200;
    width: 270px;
    padding: 0;
    overflow: visible;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    box-shadow: 0 18px 45px rgba(20, 32, 43, 0.14);
    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.categoryMenu:hover .categoryDropdown,
.categoryMenu:focus-within .categoryDropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.categoryList {
    margin: 0;
    padding: 0;
    list-style: none;
}

.categoryList>li {
    position: relative;
    border-bottom: 1px solid #eeeeee;
}

.categoryList>li:last-child {
    border-bottom: 0;
}

.categoryList>li>a {
    min-height: auto;
    padding: 8px 15px;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition:
        color var(--transition),
        background-color var(--transition),
        padding-left var(--transition);
}

.categoryList>li>a:hover,
.categoryList>li:hover>a {
    padding-left: 19px;
    color: var(--primary);
    background: #f3f9f8;
}

.categoryLinkLeft {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.categoryLinkLeft svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.categoryList>li>a>svg {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    color: var(--muted);
    transition:
        color var(--transition),
        transform var(--transition);
}

.categoryList>li>a:hover>svg,
.categoryList>li:hover>a>svg {
    color: var(--primary);
    transform: translateX(3px);
}

.viewAllCategory>a {
    min-height: 50px !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
}

/* =========================================================
   RIGHT SIDE SUBCATEGORY MENU
========================================================= */

.categorySubMenu {
    position: absolute;
    top: -1px;
    left: calc(100% + 1px);
    z-index: 1300;

    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;

    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--white);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(10px);

    box-shadow: 0 18px 45px rgba(20, 32, 43, 0.14);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.categoryList>li:hover>.categorySubMenu,
.categoryList>li:focus-within>.categorySubMenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.categorySubMenu>li {
    border-bottom: 1px solid #eeeeee;
}

.categorySubMenu>li:last-child {
    border-bottom: 0;
}

.categorySubMenu>li>a {
    min-height: auto;
    padding: 10px 15px;

    color: var(--dark);

    display: flex;
    align-items: center;

    text-decoration: none;
    font-size: 13px;
    font-weight: 500;

    transition:
        color var(--transition),
        background-color var(--transition),
        padding-left var(--transition);
}

.categorySubMenu>li>a:hover,
.categorySubMenu>li>a:focus {
    padding-left: 22px;
    color: var(--primary);
    background: #f3f9f8;
}

/* Submenu hover bridge */

.categoryList>li:has(.categorySubMenu)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -14px;
    width: 14px;
    height: 100%;
}

/* =========================================================
   MAIN DROPDOWN HOVER BRIDGE
========================================================= */

.categoryMenu::after {
    content: "";
    position: absolute;
    top: 65%;
    right: 0;
    bottom: -18px;
    left: 0;
}

/* =========================================================
   SEARCH
========================================================= */

.headerSearch {
    width: 100%;
    min-width: 0;
    max-width: 400px;
}

.headerSearch form {
    position: relative;
    width: 100%;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--white);
    overflow: hidden;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.headerSearch form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 143, 135, 0.08);
}

.headerSearch input {
    width: 100%;
    height: 100%;
    padding: 0 54px 0 19px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--dark);
    font-size: 13px;
}

.headerSearch input::placeholder {
    color: #9a9fa5;
}

.headerSearch button {
    position: absolute;
    top: 50%;
    right: 5px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: #5c6873;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    transition:
        color var(--transition),
        background-color var(--transition);
}

.headerSearch button:hover {
    color: var(--primary);
    background: var(--white);
}

.headerSearch button svg {
    width: 18px;
    height: 18px;
}

/* =========================================================
   HEADER ACTIONS
========================================================= */

.headerRight {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.headerItem {
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.headerItem .icon {
    position: relative;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: 1px solid #ebedef;
    border-radius: 50%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        color var(--transition),
        border-color var(--transition),
        background-color var(--transition);
}

.headerItem .icon svg {
    width: 21px;
    height: 21px;
}

.headerItem .count {
    position: absolute;
    top: -5px;
    right: -3px;
    z-index: 2;
    min-width: 19px;
    height: 19px;
    padding: 0 2px;
    border: 2px solid var(--white);
    border-radius: 20px;
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

.headerItem .content {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    white-space: nowrap;
}

.headerItem .content small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
}

.headerItem .content strong {
    margin-top: 4px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
}

.headerItem:hover .icon {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
}

.headerItem:hover .content strong {
    color: var(--primary);
}

/* =========================================================
   HOME HERO SLIDER
========================================================= */

.homeHero {
    padding: 20px 0 0;
    background: #fff;
}

.homeHeroSlider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #f4f4f4;
}

.heroSlide {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 600;
    overflow: hidden;
}

.heroSlide img {
    width: 100%;
    height: auto;
    display: block;
    object-position: center;
}

/* =========================================================
   NAVIGATION ARROWS
========================================================= */

.heroPrev,
.heroNext {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    transition: 0.25s ease;
}

.heroPrev {
    left: 18px;
}

.heroNext {
    right: 18px;
}

.heroPrev:hover,
.heroNext:hover {
    border-color: var(--primary);
    background: var(--primary);
}

/* =========================================================
   PAGINATION
========================================================= */

.homeHeroSlider .heroPagination {
    bottom: 18px;
}

.homeHeroSlider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    background: rgba(255, 255, 255, 0.75);
    opacity: 1;
    transition: 0.25s ease;
}

.homeHeroSlider .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 20px;
    background: var(--primary);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
    .homeHero {
        padding-top: 15px;
    }

    .homeHeroSlider {
        border-radius: 12px;
    }

    .heroPrev,
    .heroNext {
        width: 40px;
        height: 40px;
    }

    .heroPrev {
        left: 12px;
    }

    .heroNext {
        right: 12px;
    }
}

@media (max-width: 767.98px) {
    .heroSlide {
        aspect-ratio: 16 / 7;
    }

    .heroPrev,
    .heroNext {
        width: 36px;
        height: 36px;
    }

    .homeHeroSlider .heroPagination {
        bottom: 12px;
    }
}

@media (max-width: 575.98px) {
    .homeHero .container {
        padding-right: 10px;
        padding-left: 10px;
    }

    .homeHeroSlider {
        border-radius: 9px;
    }

    .heroSlide {
        aspect-ratio: 16 / 8.5;
    }

    .heroPrev,
    .heroNext {
        display: none;
    }
}




/* =========================================================
   SHOP BY CATEGORIES
========================================================= */

.shopCategories {
    background:
        radial-gradient(circle at top left,
            rgba(0, 143, 135, 0.05),
            transparent 35%),
        #ffffff;
    padding: 30px 0;
}



/* =========================================================
   SECTION HEADING
========================================================= */


.sectionHeading {
    margin-bottom: 20px;
}

.sectionHeading>span {
    color: var(--primary);
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
}

.sectionHeading .sectionHeadingTitle,
.sectionHeading h2 {
    margin: 0;
    color: var(--primary-dark);
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
}

.sectionHeading p {
    margin: 14px auto 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

/* =========================================================
   CATEGORY CARD
========================================================= */

.categoryCard {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #111;
    isolation: isolate;
    box-shadow: 0 14px 35px rgba(20, 32, 43, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.categoryCardSm {
    min-height: 290px;
}

.categoryCardLg {
    min-height: 310px;
}

.categoryCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(20, 32, 43, 0.16);
}

/* =========================================================
   CATEGORY IMAGE
========================================================= */

.categoryCard>img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.categoryCard:hover>img {
    transform: scale(1.08);
}

/* =========================================================
   OVERLAY
========================================================= */

.categoryOverlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg,
            rgba(5, 16, 22, 0.86) 0%,
            rgba(5, 16, 22, 0.58) 48%,
            rgba(5, 16, 22, 0.10) 100%);
    transition: background 0.35s ease;
}

.categoryCard:hover .categoryOverlay {
    background:
        linear-gradient(90deg,
            rgba(0, 68, 64, 0.91) 0%,
            rgba(0, 68, 64, 0.57) 48%,
            rgba(0, 68, 64, 0.08) 100%);
}

/* =========================================================
   CONTENT
========================================================= */

.categoryContent {
    position: relative;
    z-index: 2;
    width: min(320px, 78%);
    min-height: inherit;
    padding: 34px 28px;
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.categoryTag {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.categoryContent .categoryContentTitle {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 27px;
    font-weight: 500;
    line-height: 1.16;
}

.categoryContent .categoryContentTitle a {
    color: #fff;
    text-decoration: none;
}

.categoryContent .categoryContentTitle strong {
    display: block;
    font-weight: 700;
}

/* =========================================================
   BADGE
========================================================= */

.categoryBadge {
    margin-bottom: 10px;
    padding: 5px 9px;
    border-radius: 4px;
    color: #fff;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.categoryBadgeRed {
    background: #d94f57;
}

/* =========================================================
   BUTTON
========================================================= */

.categoryContent .categoryBtn {
    min-height: 42px;
    margin-top: 22px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 30px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.categoryContent .categoryBtn:hover {
    color: var(--primary);
    border-color: #fff;
    background: #fff;
}

.categoryContent .categoryBtn svg {
    transition: transform 0.3s ease;
}

.categoryContent .categoryBtn:hover svg {
    transform: translateX(4px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {


    .categoryCardSm,
    .categoryCardLg {
        min-height: 280px;
    }

    .categoryContent {
        padding: 28px 24px;
    }
}

@media (max-width: 767.98px) {
    .sectionHeading {
        margin-bottom: 32px;
    }

    .categoryCardSm,
    .categoryCardLg {
        min-height: 270px;
    }

    .categoryContent {
        width: 82%;
    }
}

@media (max-width: 575.98px) {


    .shopCategories .container {
        padding-right: 14px;
        padding-left: 14px;
    }

    .categoryCardSm,
    .categoryCardLg {
        min-height: 200px;
        border-radius: 12px;
    }

    .categoryContent {
        width: 88%;
        padding: 24px 21px;
    }

    .categoryContent h3 {
        font-size: 24px;
    }

    .categoryBtn {
        min-height: 40px;
        margin-top: 18px;
        padding: 0 16px;
    }
}

/*==================================================
FEATURED PRODUCTS
==================================================*/

.featuredProducts {
    background: #fff;
    padding: 0 0 30px;
}

.productCard {

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 16px;

    overflow: hidden;

    transition: .35s;

    height: 100%;

}

.productCard:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.productImage {

    position: relative;

    background: #fafafa;

    overflow: hidden;
    border-bottom: 1px solid #ddd;

}

.productImage img {

    width: 100%;

    height: 300px;

    object-fit: contain;

    transition: .5s;

    padding: 0;

}

.productCard:hover img {

    transform: scale(1.08);

}

.productBadge {

    position: absolute;

    top: 15px;

    left: 15px;

    background: #008f87;

    color: #fff;

    padding: 6px 12px;

    border-radius: 30px;

    font-size: 10px;

    font-weight: 700;

    z-index: 2;

}

.productOverlay {

    position: absolute;

    top: 15px;

    right: 15px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    opacity: 0;

    transition: .3s;

}

.productCard:hover .productOverlay {

    opacity: 1;

}

.productOverlay a {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary);

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.productOverlay a:hover {

    background: #008f87;

    color: #fff;

}

.productContent {

    padding: 18px;

}

.productContent small {

    color: #888;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-size: 13px;

}

.productContent .productContentTitle {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 48px;
    align-content: center;
}

.productContent .productContentTitle a {
    color: var(--dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

.productContent .productContentTitle a:hover {
    color: var(--primary);
}

.productBottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.price {
    color: var(--text);
    font-size: 20px;
    font-weight: 700;

}

.cartBtn {

    width: 46px;

    height: 46px;

    border-radius: 50%;

    background: #008f87;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

}

.cartBtn:hover {

    background: #0d6b65;

    color: #fff;

}

.viewAllBtn {

    color: #008f87;

    font-weight: 600;

    text-decoration: none;

}

.viewAllBtn:hover {

    color: #000;

}


/*==================================================
FEATURE SECTION
==================================================*/

.featureSection {
    padding: 30px 0 30px;
    background: #fff;
}

.featureBox {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 15px;

    height: 100%;

    background: #f9f9f9;

    border: 1px solid #eee;

    border-radius: 12px;

    transition: .35s;

}

.featureBox:hover {

    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    border-color: #008f87;

}

.featureIcon {

    width: 62px;

    height: 62px;

    flex: 0 0 62px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f4fbfb;

    border: 2px solid rgba(0, 143, 135, .12);

    color: #008f87;

    transition: .35s;

}

.featureIcon svg {
    width: 30px;
    height: 30px;
}

.featureBox:hover .featureIcon {

    background: #008f87;

    color: #fff;

    border-color: #008f87;

}

.featureContent {

    flex: 1;

}

.featureContent .featureContentTitle {
    margin: 0 0 5px;
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 800;
    color: var(--primary-dark);

}

.featureContent p {

    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 1.4;

}

/*=========================
Responsive
==========================*/

@media(max-width:767px) {

    .featureBox {

        padding: 18px;
        flex-direction: column;
        text-align: center;
        align-items: center;

    }

    .featureIcon {

        width: 56px;
        height: 56px;
        flex: 0 0 56px;

    }

    .featureIcon i {

        font-size: 24px;

    }

    .featureContent h4 {

        font-size: 17px;

    }

}


/*==================================================
VIDEO SECTION
==================================================*/

.videoSection {
    padding: 0 0 30px;
    background: #fff;
}

.videoWrapper {

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);

}

.videoWrapper img {

    width: 100%;

    display: block;

    height: auto;

    object-fit: cover;

    transition: .6s;

}

.videoWrapper:hover img {

    transform: scale(1.05);

}

.videoOverlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(rgba(0, 0, 0, .15),
            rgba(0, 0, 0, .35));

}

.videoPlayBtn {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 95px;

    height: 95px;

    border-radius: 50%;

    background: #008f87;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 42px;

    text-decoration: none;

    z-index: 5;

    transition: .35s;

    box-shadow: 0 15px 35px rgba(0, 143, 135, .35);

}

.videoPlayBtn svg {
    width: 36px;
    height: 36px;
}

.videoPlayBtn:hover {

    color: #fff;

    background: #006f69;

    transform: translate(-50%, -50%) scale(1.08);

}

/* Pulse */

.videoPlayBtn::before {

    content: "";

    position: absolute;

    inset: -10px;

    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, .45);

    animation: pulse 2s infinite;

}

@keyframes pulse {

    0% {

        transform: scale(1);
        opacity: 1;

    }

    100% {

        transform: scale(1.5);
        opacity: 0;

    }

}

@media(max-width:991px) {

    .videoWrapper img {

        height: 420px;

    }

    .videoPlayBtn {

        width: 80px;
        height: 80px;

        font-size: 36px;

    }

}

@media(max-width:767px) {

    .videoSection {

        padding: 60px 0;

    }

    .videoWrapper {

        border-radius: 16px;

    }

    .videoWrapper img {

        height: 300px;

    }

    .videoPlayBtn {

        width: 70px;
        height: 70px;

        font-size: 30px;

    }

}


/* =========================================================
   BEST ITEMS SECTION
========================================================= */

.bestItemsSection {
    background:
        radial-gradient(circle at top right,
            rgba(0, 143, 135, 0.05),
            transparent 35%),
        #ffffff;
    background: #fff;
    padding: 30px 0 30px;
}

.bestItemsHeader {
    margin-bottom: 36px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
}



.bestItemsControls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bestItemsPrev,
.bestItemsNext {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--dark);
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.bestItemsPrev:hover,
.bestItemsNext:hover {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

.bestItemsPrev.swiper-button-disabled,
.bestItemsNext.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* =========================================================
   SLIDER
========================================================= */

.bestItemsSlider {
    padding: 4px 3px 52px;
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.productCard {
    height: 100%;
    overflow: hidden;
    border: 1px solid #eceeef;
    border-radius: 15px;
    background: #fff;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.productCard:hover {
    border-color: rgba(0, 143, 135, 0.22);
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(20, 32, 43, 0.10);
}

/* =========================================================
   PRODUCT IMAGE
========================================================= */

.productImage {
    position: relative;
    overflow: hidden;
    background: #f8f8f7;
}

.productImageLink {
    aspect-ratio: 1/1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productImage img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.55s ease;
}

.productCard:hover .productImage img {
    transform: scale(1.07);
}

/* =========================================================
   BADGES
========================================================= */

.productBadge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    max-width: calc(100% - 28px);
    padding: 6px 12px;
    border-radius: 30px;
    color: #fff;
    background: var(--primary);
    font-size: 10px;
    font-weight: 700;
}

.productBadgeSale {
    background: #d94f57;
}

/* =========================================================
   PRODUCT ACTIONS
========================================================= */

.productActions {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 9px;
    opacity: 0;
    transform: translateX(12px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.productCard:hover .productActions {
    opacity: 1;
    transform: translateX(0);
}

.productActions a {
    width: 40px;
    height: 40px;
    border: 1px solid #ececec;
    border-radius: 50%;
    color: var(--dark);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(20, 32, 43, 0.08);
    transition: 0.25s ease;
}

.productActions a:hover {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

/* =========================================================
   PRODUCT CONTENT
========================================================= */

.productContent {
    padding: 20px;
}

.productCategory {
    color: var(--muted);
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   RATING
========================================================= */

.productRating {
    display: flex;
    align-items: center;
    gap: 7px;
}

.productRating span {
    color: #d79b25;
    font-size: 14px;
    letter-spacing: 1px;
}

.productRating small {
    color: var(--muted);
    font-size: 11px;
}

/* =========================================================
   PRODUCT FOOTER
========================================================= */

.productFooter {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.productPrice {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
}

.productPrice del {
    color: #999;
    font-size: 12px;
}

.productPrice strong {
    color: var(--primary);
    font-size: 19px;
    font-weight: 700;
}

.addCartBtn {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.addCartBtn:hover {
    color: #fff;
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* =========================================================
   PAGINATION
========================================================= */

.bestItemsSlider .bestItemsPagination {
    bottom: 0;
}

.bestItemsSlider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    border-radius: 10px;
    background: #c7cecf;
    opacity: 1;
    transition: 0.3s ease;
}

.bestItemsSlider .swiper-pagination-bullet-active {
    width: 26px;
    background: var(--primary);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
    .bestItemsHeader {
        align-items: center;
    }

}

@media (max-width: 767.98px) {
    .bestItemsHeader {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 28px;
    }

    .bestItemsControls {
        align-self: flex-end;
    }


}

@media (max-width: 575.98px) {

    .bestItemsPrev,
    .bestItemsNext {
        width: 40px;
        height: 40px;
    }



    .productContent {
        padding: 18px;
    }
}

/* =========================================================
   BRAND STORY SECTION
========================================================= */

.brandStorySection {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%,
            rgba(0, 143, 135, 0.07),
            transparent 28%),
        linear-gradient(135deg,
            #fbfaf8 0%,
            #ffffff 55%,
            #f5faf9 100%);
    padding: 30px 0;
}

/* =========================================================
   IMAGE AREA
========================================================= */

.brandStoryVisual {
    position: relative;
    max-width: 610px;
    padding: 0 36px 40px 0;
}

.brandMainImage {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #eee;
    box-shadow: 0 28px 65px rgba(20, 32, 43, 0.14);
}

.brandMainImage::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            transparent 55%,
            rgba(5, 20, 24, 0.18));
    pointer-events: none;
}

.brandMainImage img {
    width: 100%;
    height: 600px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.brandStoryVisual:hover .brandMainImage img {
    transform: scale(1.035);
}

/* Experience card */

.brandExperienceCard {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    min-width: 220px;
    padding: 21px 24px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(20, 32, 43, 0.14);
}

.brandExperienceCard strong,
.brandExperienceCard span {
    display: block;
}

.brandExperienceCard strong {
    color: var(--primary);
    font-family: "Playfair Display", serif;
    font-size: 29px;
    font-weight: 700;
    line-height: 1;
}

.brandExperienceCard span {
    margin-top: 8px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
}

/* Pattern */

.brandPattern {
    position: absolute;
    top: -34px;
    left: -38px;
    z-index: 2;
    width: 115px;
    color: rgba(0, 143, 135, 0.24);
}

.brandPattern svg {
    width: 100%;
    display: block;
}

/* =========================================================
   CONTENT
========================================================= */

.brandStoryContent {
    max-width: 650px;
    padding-left: 20px;
}

.sectionEyebrow {
    margin-bottom: 13px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.sectionEyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 10px;
    background: var(--primary);
}

.brandStoryContent .brandStoryContentTitle,
.brandStoryContent h2 {
    max-width: 630px;
    margin: 0;
    color: var(--dark);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1px;
}

.brandStoryContent .brandStoryContentTitle span,
.brandStoryContent h2 span {
    color: var(--primary);
    display: block;
}

.brandStoryContent p {
    margin: 19px 0 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.85;
}

.brandStoryContent .brandLead {
    color: #344247;
    font-size: 17px;
    line-height: 1.75;
}

/* =========================================================
   BENEFITS
========================================================= */

.brandBenefits {
    margin-top: 27px;
}

.brandBenefit {
    height: 100%;
    padding: 13px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefitIcon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    border-radius: 50%;
    color: var(--primary);
    background: rgba(0, 143, 135, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.benefitIcon svg {
    width: 17px;
    height: 17px;
}

.brandBenefit strong,
.brandBenefit small {
    display: block;
}

.brandBenefit strong {
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
}

.brandBenefit small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

/* =========================================================
   ACTIONS
========================================================= */

.brandStoryActions {
    margin-top: 33px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brandPrimaryBtn {
    min-height: 50px;
    padding: 0 23px;
    border-radius: 6px;
    color: #fff;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(0, 143, 135, 0.18);
    transition: 0.3s ease;
}

.brandPrimaryBtn:hover {
    color: #fff;
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.brandPrimaryBtn svg {
    transition: transform 0.3s ease;
}

.brandPrimaryBtn:hover svg {
    transform: translateX(4px);
}

.brandTextLink {
    position: relative;
    padding-bottom: 4px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.brandTextLink::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--dark);
    transition: background-color 0.25s ease;
}

.brandTextLink:hover {
    color: var(--primary);
}

.brandTextLink:hover::after {
    background: var(--primary);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
    .brandStoryVisual {
        max-width: 720px;
        margin: auto;
    }

    .brandMainImage img {
        height: 520px;
    }

    .brandStoryContent {
        max-width: 720px;
        margin: auto;
        padding-left: 0;
    }
}

@media (max-width: 767.98px) {
    .brandStoryVisual {
        padding-right: 20px;
        padding-bottom: 35px;
    }

    .brandMainImage {
        border-radius: 18px;
    }

    .brandMainImage img {
        height: 430px;
    }

    .brandExperienceCard {
        min-width: 190px;
        padding: 17px 19px;
    }

    .brandExperienceCard strong {
        font-size: 25px;
    }

    .brandPattern {
        top: -24px;
        left: -13px;
        width: 86px;
    }

    .brandStoryContent h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .brandStoryVisual {
        padding-right: 0;
        padding-bottom: 72px;
    }

    .brandMainImage img {
        height: 360px;
    }

    .brandExperienceCard {
        right: 14px;
        bottom: 20px;
    }

    .brandStoryContent h2 {
        font-size: 34px;
        letter-spacing: -0.5px;
    }

    .brandStoryContent .brandLead {
        font-size: 15px;
    }

    .brandBenefit {
        padding: 8px 0;
    }

    .brandStoryActions {
        align-items: stretch;
        flex-direction: column;
    }

    .brandPrimaryBtn {
        width: 100%;
    }

    .brandTextLink {
        align-self: center;
    }
}


/*==================================================
BRANDS
==================================================*/

.brandLogoSection {
    background: #fff;
    overflow: hidden;
    padding: 30px 0;
}

.brandLogoSlider {
    padding: 10px 0;
}

.brandLogoSlider .swiper-slide {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brandLogoSlider a {
    width: 100%;
    height: 100%;
    padding: 20px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.brandLogoSlider a:hover {

    transform: translateY(-6px);

    border-color: #007d76;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

}

.brandLogoSlider img {

    max-width: 160px;

    max-height: 60px;

    width: auto;

    height: auto;

    filter: grayscale(100%);

    opacity: .75;

    transition: .35s;

}

.brandLogoSlider a:hover img {

    filter: none;

    opacity: 1;

}



/* =========================================================
   REVIEW SECTION
========================================================= */

.reviewSection {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%,
            rgba(0, 143, 135, 0.07),
            transparent 30%),
        linear-gradient(135deg,
            #f8faf9 0%,
            #ffffff 55%,
            #f0f8f6 100%);
    padding: 30px 0;
}

.reviewHeader {
    margin-bottom: 38px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.reviewHeader .sectionHeading {
    max-width: 700px;
}

.reviewControls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewPrev,
.reviewNext {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--dark);
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.reviewPrev:hover,
.reviewNext:hover {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

.reviewPrev.swiper-button-disabled,
.reviewNext.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* =========================================================
   SLIDER
========================================================= */

.reviewSlider {
    padding: 5px 3px 52px;
}

.reviewSlider .swiper-slide {
    height: auto;
}

/* =========================================================
   REVIEW CARD
========================================================= */

.reviewCard {
    position: relative;
    height: 100%;
    min-height: 315px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid #e9edec;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 40px rgba(20, 32, 43, 0.06);
    display: flex;
    flex-direction: column;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.reviewCard::before {
    content: "";
    position: absolute;
    top: -55px;
    right: -30px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: rgba(0, 143, 135, 0.055);
}

.reviewCard:hover {
    border-color: rgba(0, 143, 135, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(20, 32, 43, 0.11);
}

/* =========================================================
   REVIEW TOP
========================================================= */

.reviewTop {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.reviewRating {
    display: flex;
    align-items: center;
    gap: 9px;
}

.reviewRating span {
    color: #e1a126;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1;
}

.reviewRating small {
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
}

.reviewQuote {
    width: 44px;
    height: 44px;
    color: rgba(0, 143, 135, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.reviewQuote svg {
    width: 38px;
    height: 38px;
}

/* =========================================================
   REVIEW TEXT
========================================================= */

.reviewText {
    position: relative;
    z-index: 2;
    margin: 24px 0 28px;
    color: #46535a;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
}

/* =========================================================
   CUSTOMER
========================================================= */

.reviewCustomer {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid #edf0ef;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    line-height: normal;
}

.reviewCustomer .textIcon {
    width: 52px;
    height: 52px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    font-size: 24px;
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(20, 32, 43, 0.12);
}

.reviewCustomer strong,
.reviewCustomer div>span {
    display: block;
}

.reviewCustomer strong {
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
}

.reviewCustomer div>span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 13px;
}

.verifiedReview {
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.verifiedReview i {
    font-size: 14px;
}

/* =========================================================
   PAGINATION
========================================================= */

.reviewSlider .reviewPagination {
    bottom: 0;
}

.reviewSlider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    border-radius: 20px;
    background: #c8cfce;
    opacity: 1;
    transition: 0.3s ease;
}

.reviewSlider .swiper-pagination-bullet-active {
    width: 27px;
    background: var(--primary);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
    .reviewCard {
        padding: 26px;
    }

    .reviewText {
        font-size: 17px;
    }
}

@media (max-width: 767.98px) {
    .reviewHeader {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 28px;
    }

    .reviewControls {
        align-self: flex-end;
    }

    .reviewCard {
        min-height: 300px;
    }
}

@media (max-width: 575.98px) {

    .reviewPrev,
    .reviewNext {
        width: 40px;
        height: 40px;
    }

    .reviewCard {
        min-height: 290px;
        padding: 22px;
        border-radius: 14px;
    }

    .reviewText {
        margin-top: 20px;
        font-size: 16px;
    }

    .reviewCustomer {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .reviewCustomer img {
        width: 46px;
        height: 46px;
    }

    .verifiedReview {
        grid-column: 2;
        margin-top: -6px;
    }
}


/* =========================================================
   FOOTER
========================================================= */

.siteFooter {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    background: #12282a;
    background-color: #f5f5f5;
}

/* =========================================================
   MAIN FOOTER
========================================================= */

.footerMain {
    position: relative;
    padding: 40px 0 40px;
    overflow: hidden;
}

.footerMain::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -130px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
}

.footerMain::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -130px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

/* =========================================================
   FOOTER ABOUT
========================================================= */

.footerAbout {
    position: relative;
    z-index: 2;
    max-width: 370px;
}

.footerLogo {
    width: 205px;
    display: inline-flex;
    align-items: center;
}

.footerLogo img {
    width: 100%;
    display: block;
}

.footerAbout p {
    margin: 24px 0 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.85;
}

/* Social links */

.footerSocial {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.footerSocial a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.25s ease;
}

.footerSocial a:hover {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-3px);
}

/* =========================================================
   FOOTER WIDGET
========================================================= */

.footerWidget {
    position: relative;
    z-index: 2;
}

.footerWidget .footerWidgetTitle {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 13px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    font-family: var(--heading-font);
}

.footerWidget .footerWidgetTitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 2px;
    border-radius: 10px;
    background: var(--primary);
}

.footerWidget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footerWidget:not(.footerContact) li+li {
    margin-top: 12px;
}

.footerWidget:not(.footerContact) a {
    position: relative;
    padding-left: 0;
    color: var(--text);
    font-size: 16px;
    text-decoration: none;
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.footerWidget:not(.footerContact) a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transform: translateY(-50%);
    transition: width 0.25s ease;
}

.footerWidget:not(.footerContact) a:hover {
    padding-left: 14px;
    color: var(--primary);
}

.footerWidget:not(.footerContact) a:hover::before {
    width: 8px;
}

/* =========================================================
   FOOTER CONTACT
========================================================= */

.footerContact li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.footerContact li+li {
    margin-top: 19px;
}

.footerContactIcon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    color: var(--primary);
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footerContactIcon i {
    font-size: 14px;
}

.footerContact small,
.footerContact div>span,
.footerContact div>a {
    display: block;
}

.footerContact small {
    margin-bottom: 4px;
    color: var(--text);
    font-size: 14px;
}

.footerContact div>a,
.footerContact div>span {
    color: var(--text);
    font-size: 16px;
    line-height: 1.55;
    text-decoration: none;
    word-break: break-word;
    font-weight: 600;
}

.footerContact div>a:hover {
    color: var(--primary);
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: #0e2022;
}

.footerBottomInner {
    min-height: 50px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 25px;
}

.footerBottom p {
    margin: 0;
    color: var(--white);
    font-size: 14px;
}

.footerBottomLinks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footerBottomLinks a {
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footerBottomLinks a:hover {
    color: var(--primary);
}

.footerPayments {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footerPayments>span {
    color: var(--white);
    font-size: 14px;
}

.footerPayments div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footerPayments i {
    color: rgba(255, 255, 255, 0.74);
    font-size: 21px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
    .newsletterInner {
        grid-template-columns: minmax(300px, 1fr) minmax(380px, 1fr);
        gap: 30px;
    }

    .footerMain {
        padding: 65px 0 55px;
    }
}

@media (max-width: 991.98px) {
    .newsletterInner {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .newsletterContent {
        justify-content: center;
        text-align: center;
    }

    .newsletterForm {
        max-width: 620px;
        margin: auto;
    }

    .footerBottomInner {
        padding: 20px 0;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footerPayments {
        justify-self: center;
    }
}

@media (max-width: 767.98px) {
    .footerNewsletter {
        padding: 30px 0;
    }

    .newsletterContent {
        align-items: center;
        flex-direction: column;
    }

    .newsletterContent h3 {
        font-size: 24px;
    }

    .footerMain {
        padding: 55px 0 45px;
    }

    .footerAbout {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .newsletterForm {
        height: auto;
        padding: 0;
        background: transparent;
        flex-direction: column;
        gap: 10px;
    }

    .newsletterForm input {
        width: 100%;
        height: 49px;
        padding: 0 15px;
        border-radius: 6px;
        background: #fff;
    }

    .newsletterForm button {
        width: 100%;
        height: 49px;
    }

    .footerMain .col-6 {
        width: 100%;
    }

    .footerWidget h4 {
        margin-bottom: 18px;
    }

    .footerBottomLinks {
        flex-wrap: wrap;
        gap: 10px 17px;
    }

    .footerPayments {
        align-items: center;
        flex-direction: column;
    }
}

#scroll-up {
    position: fixed;
    z-index: 8030;
    bottom: 65px;
    right: 30px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--primary);
    color: var(--white);

    cursor: pointer;
    text-decoration: none;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: all .3s ease;
}

#scroll-up.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scroll-up svg {
    width: 24px;
    height: 24px;
}

#scroll-up:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-4px);
}


/* =========================================================
   GALLERY COVERFLOW SLIDER
========================================================= */

.gallerySliderSection {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left,
            rgba(0, 143, 135, 0.07),
            transparent 30%),
        linear-gradient(180deg,
            #ffffff 0%,
            #f7faf9 100%);
    padding: 30px 0;
}

.gallerySectionHead {
    max-width: 700px;
    margin: 0 auto 42px;
}

.gallerySubTitle {
    margin-bottom: 10px;
    color: var(--primary);
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallerySectionHead h2 {
    margin: 0;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
}

.gallerySectionHead p {
    max-width: 610px;
    margin: 16px auto 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================================
   SLIDER WRAPPER
========================================================= */

.gallerySliderWrap {
    position: relative;
}

.galleryCoverflowSlider {
    padding: 10px 0 70px;
    overflow: visible;
}

.galleryCoverflowSlider .swiper-slide {
    width: 430px;
    height: 420px;
    opacity: 0.45;
    transform: scale(0.88);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.galleryCoverflowSlider .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.galleryCoverflowSlider .swiper-slide-prev,
.galleryCoverflowSlider .swiper-slide-next {
    opacity: 0.72;
}

/* =========================================================
   GALLERY CARD
========================================================= */

.gallerySlideCard {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: #eaeaea;
    display: block;
    box-shadow: 0 20px 50px rgba(20, 32, 43, 0.13);
}

.gallerySlideCard img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallerySlideCard:hover img {
    transform: scale(1.07);
}

.galleryOverlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(7, 20, 22, 0.02) 25%,
            rgba(7, 20, 22, 0.82) 100%);
    transition: background 0.35s ease;
}

.gallerySlideCard:hover .galleryOverlay {
    background:
        linear-gradient(180deg,
            rgba(7, 20, 22, 0.10) 15%,
            rgba(7, 20, 22, 0.88) 100%);
}

/* =========================================================
   CONTENT
========================================================= */

.gallerySlideContent {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    z-index: 2;
}

.gallerySlideContent small,
.gallerySlideContent strong {
    display: block;
}

.gallerySlideContent small {
    margin-bottom: 8px;
    color: #c7ece8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.gallerySlideContent strong {
    max-width: 320px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

/* =========================================================
   ZOOM ICON
========================================================= */

.galleryZoomIcon {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    color: #fff;
    background: rgba(7, 20, 22, 0.32);
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-8px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        background-color 0.3s ease;
}

.gallerySlideCard:hover .galleryZoomIcon {
    opacity: 1;
    transform: translateY(0);
}

.galleryZoomIcon:hover {
    background: var(--primary);
}

/* =========================================================
   NAVIGATION
========================================================= */

.gallerySliderNavigation {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.galleryPrev,
.galleryNext {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #dfe6e4;
    border-radius: 50%;
    color: var(--dark);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.galleryPrev:hover,
.galleryNext:hover {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

.galleryPagination {
    position: static !important;
    width: auto !important;
    display: flex;
    align-items: center;
}

.galleryPagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 4px !important;
    border-radius: 20px;
    background: #bfc9c7;
    opacity: 1;
    transition: 0.3s ease;
}

.galleryPagination .swiper-pagination-bullet-active {
    width: 28px;
    background: var(--primary);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
    .galleryCoverflowSlider .swiper-slide {
        width: 390px;
        height: 480px;
    }
}

@media (max-width: 991.98px) {
    .galleryCoverflowSlider .swiper-slide {
        width: 350px;
        height: 440px;
    }

    .gallerySlideContent strong {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .gallerySectionHead {
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .galleryCoverflowSlider .swiper-slide {
        width: 300px;
        height: 390px;
    }

    .gallerySlideCard {
        border-radius: 16px;
    }

    .gallerySlideContent {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .gallerySlideContent strong {
        font-size: 18px;
    }

    .galleryZoomIcon {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575.98px) {
    .galleryCoverflowSlider {
        padding-bottom: 66px;
    }

    .galleryCoverflowSlider .swiper-slide {
        width: 270px;
        height: 360px;
    }

    .galleryPrev,
    .galleryNext {
        width: 40px;
        height: 40px;
    }
}


/**/
.outlets {
    float: left;
    width: 100%;
    margin: 30px 0 0px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
}

.outlets li {
    width: 30%;
    list-style: none;
    border-left: 1px solid #ddd;
    text-align: center;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 17px;
    line-height: 24px;
}

.outlets li a {
    color: var(--text);
    padding: 10px 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.outlets li a img {
    max-width: 150px;
    max-height: 60px;
    margin-bottom: 8px;
}

.outlets li a span {
    display: block;
    font-size: 15px;
}

.outlets li:first-child {
    border-left: 0;
}

.outlets li a:hover,
.outlets li a:focus {
    color: var(--primary);
}

/* =========================================================
   OUTLETS RESPONSIVE
========================================================= */

@media (max-width: 767.98px) {

    .outlets {
        margin-top: 22px;
        padding: 0;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        overflow: hidden;
        border-radius: 10px;
    }

    .outlets li {
        width: 50%;
        height: 115px;
        padding: 0;
        border-left: 0;
        border-bottom: 1px solid #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Right column divider */
    .outlets li:nth-child(even) {
        border-left: 1px solid #ddd;
    }

    /* Last row bottom border remove */
    .outlets li:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .outlets li a {
        width: 100%;
        height: 100%;
        padding: 12px 8px;
    }

    .outlets li a img {
        max-width: 125px;
        max-height: 52px;
        margin-bottom: 7px;
    }

    .outlets li a span {
        font-size: 12px;
        line-height: 1.35;
        word-break: break-word;
    }
}

@media (max-width: 479.98px) {

    .outlets li {
        height: 105px;
    }

    .outlets li a {
        padding: 10px 6px;
    }

    .outlets li a img {
        max-width: 105px;
        max-height: 45px;
        margin-bottom: 6px;
    }

    .outlets li a span {
        font-size: 11px;
        line-height: 1.3;
    }
}


/* banner section */
.page_breadcrumbs {
    background: #f8f8f8;
    padding-top: 12px;
    padding-bottom: 12px;
}

.page_breadcrumbs ul {
    position: relative;
    margin: 0;
    padding: 0;
}

.page_breadcrumbs li {
    color: var(--primary);
    list-style: none;
    line-height: 25px;
    display: inline-block;
}

.page_breadcrumbs li+li:before {
    color: #999999;
    content: " / ";
    margin: 0 2px;
}

.page_breadcrumbs li a {
    color: #333;
    display: inline-block;
}

.page_breadcrumbs li a:hover {
    color: var(--primary);
}

.page_breadcrumbs .active {
    color: #999999;
}

.page_breadcrumbs .active a {
    color: #999999;
}



/*==================================================
ABOUT SECTION
==================================================*/

.aboutSection {
    position: relative;
    padding: 50px 0;
}

.aboutImage {
    position: relative;
    padding-right: 60px;
}

.aboutImage img {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.aboutBadge {
    position: absolute;
    top: 30px;
    left: -20px;
    width: 140px;
    height: 140px;
    background: var(--primary);
    border-radius: 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: normal;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}

.aboutBadge .aboutYearExp {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.aboutBadge p {
    margin: 0;
    font-size: 14px;
    line-height: normal;
}

.aboutExperience {

    position: absolute;

    right: 0;
    bottom: 40px;

    background: #fff;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 20px 25px;

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.expIcon {

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: rgba(0, 128, 128, .1);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);
}

.aboutExperience strong {
    display: block;
    font-size: 17px;
    color: #222;
}

.aboutExperience span {
    display: block;
    color: #777;
    font-size: 14px;
}

.sectionTag {

    display: inline-block;

    padding: 8px 18px;

    background: rgba(0, 128, 128, .08);

    color: var(--primary);

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.pageTitle_1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: var(--heading-font);
    color: var(--primary);
}

.aboutContent h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
}

.aboutContent p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/*==================================================
ABOUT FEATURES
==================================================*/

.aboutFeatures {
    margin: 35px 0;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;

    list-style: none;
}

.aboutFeatures li {
    position: relative;
    padding: 12px 15px 12px 50px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.6;
    transition: all .35s ease;
}

.aboutFeatures li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.aboutFeatures li:hover {

    border-color: var(--primary);

    transform: translateY(-5px);

    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

@media(max-width:991px) {

    .aboutImage {

        padding-right: 0;

        margin-bottom: 40px;

    }

    .aboutBadge {

        left: 20px;

    }

    .aboutExperience {

        position: relative;

        right: auto;

        bottom: auto;

        margin-top: -45px;

        margin-left: auto;

        width: 90%;

    }

    .aboutContent h2 {

        font-size: 36px;

    }

}

@media(max-width:767px) {

    .aboutFeatures {

        grid-template-columns: 1fr;

    }

    .aboutBadge {

        width: 110px;
        height: 110px;

    }

    .aboutBadge h3 {

        font-size: 32px;

    }

    .aboutContent h2 {

        font-size: 30px;

    }

    .aboutExperience {

        width: 100%;

    }

}


/*==================================================
OUR VALUES
==================================================*/

.ourValues {
    background: #f8fafb;
    padding: 50px 0;
}

.sectionTitle {
    max-width: 760px;
    margin: 0 auto 20px;
}

.sectionTitle h2 {
    margin: 18px 0;
    font-size: 36px;
    line-height: 1.2;
}

.sectionTitle h2 span {
    color: var(--primary);
}

.sectionTitle p {
    color: #666;
    line-height: 1.9;
    margin: 0;
}

.valueCard {

    position: relative;

    height: 100%;

    padding: 45px 35px;

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 18px;

    text-align: center;

    transition: .35s;
}

.valueCard:hover,
.valueCard.active {

    transform: translateY(-10px);

    border-color: var(--primary);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.valueIcon {

    width: 80px;
    height: 80px;

    margin: 0 auto 28px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 128, 128, .08);

    color: var(--primary);

    font-size: 34px;

    transition: .35s;
}

.valueIcon svg {
    width: 36px;
    height: 36px;
}

.valueCard:hover .valueIcon,
.valueCard.active .valueIcon {

    background: var(--primary);

    color: #fff;

    transform: rotateY(180deg);
}

.valueCard h3 {

    margin-bottom: 18px;

    font-size: 26px;

    font-weight: 700;
}

.valueCard p {

    margin: 0;

    color: #666;

    line-height: 1.9;

    font-size: 15px;
}


/*==================================================
WAREHOUSE INFORMATION
==================================================*/

.warehouseInfo {
    position: relative;
    overflow: hidden;
    background: #f7f5f0;
    padding: 50px 0;
}

.warehouseInfo::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(25, 126, 132, .07);
}

.warehouseInfo::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -160px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(198, 136, 44, .08);
}

.warehouseInfo .container {
    position: relative;
    z-index: 2;
}

.warehouseHeading {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.warehouseHeading h2 {
    margin: 15px 0 18px;
    font-size: 44px;
    line-height: 1.25;
    color: #1f2629;
}

.warehouseHeading h2 span {
    color: var(--primary);
}

.warehouseHeading p {
    max-width: 660px;
    margin: 0 auto;
    color: #6b6f72;
    font-size: 16px;
    line-height: 1.8;
}

/* Card */

.warehouseCard {
    height: 100%;
    padding: 34px 30px;
    background: #fff;
    border: 1px solid rgba(31, 38, 41, .09);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(30, 34, 38, .07);
    transition: transform .35s ease, box-shadow .35s ease;
}

.warehouseCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(30, 34, 38, .12);
}

.cardHeading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid #ece9e2;
    line-height: normal;
}

.cardHeadingIcon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 23px;
}

.cardHeadingIcon svg {
    width: 24px;
    height: 24px;
}

.cardHeading span {
    display: block;
    margin-bottom: 2px;
    color: #999;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cardHeading .cardHeadingTitle {
    margin: 0;
    color: #1f2629;
    font-size: 28px;
    font-weight: 600;
    font-family: var(--heading-font);
}

/* Contact */

.contactInfoList {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contactInfoList li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 19px;
}

.contactIcon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(25, 126, 132, .09);
    color: var(--primary);
    font-size: 16px;
}

.contactInfoList li>div:last-child {
    min-width: 0;
}

.contactInfoList span {
    display: block;
    margin-bottom: 3px;
    color: #8a8f92;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.contactInfoList a,
.contactInfoList address {
    margin: 0;
    color: #252a2d;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.65;
    text-decoration: none;
    word-break: break-word;
}

.contactInfoList a:hover {
    color: var(--primary);
}

.contactAction {
    width: 100%;
    min-height: 50px;
    margin-top: 7px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    background: #1f2629;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.contactAction:hover {
    background: var(--primary);
    color: #fff;
}

.contactAction i {
    transition: transform .3s ease;
}

.contactAction:hover i {
    transform: translateX(5px);
}

/* Warehouse Image */

.warehouseImageCard {
    position: relative;
    height: 100%;
    min-height: 530px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(31, 38, 41, .09);
    box-shadow: 0 16px 40px rgba(30, 34, 38, .09);
}

.warehouseImageCard::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(20, 25, 28, .02) 30%,
            rgba(20, 25, 28, .78) 100%);
}

.warehouseImageCard img {
    width: 100%;
    height: 100%;
    min-height: 530px;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.warehouseImageCard:hover img {
    transform: scale(1.06);
}

.warehouseImageOverlay {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 22px;
}

.locationBadge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 18px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 14px;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(12px);
    color: #fff;
}

.locationBadge i {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    font-size: 17px;
}

.locationBadge span {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.locationBadge strong {
    display: block;
    color: #fff;
    font-size: 16px;
}

/* Shipping */

.shippingList {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shippingList li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #363c3f;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.shippingList li i {
    flex: 0 0 auto;
    margin-top: 4px;
    color: var(--primary);
    font-size: 16px;
}

.volumeDiscount {
    margin-top: 27px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(198, 136, 44, .24);
    border-radius: 14px;
    background: #fffaf0;
}

.discountLabel {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(198, 136, 44, .12);
    color: #a56b18;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.volumeDiscount .volumeDiscountTitle {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 18px;
}

.volumeDiscount p {
    margin: 0 0 5px;
    color: #6a6f72;
    font-size: 14px;
    line-height: 1.7;
}

.volumeDiscount a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.discountEmail {
    display: inline-block;
    margin-top: 2px;
    word-break: break-word;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1199.98px) {

    .warehouseCard {
        padding: 30px 24px;
    }

    .warehouseHeading h2 {
        font-size: 40px;
    }

}

@media (max-width:991.98px) {

    .warehouseImageCard,
    .warehouseImageCard img {
        min-height: 450px;
    }

    .warehouseHeading h2 {
        font-size: 36px;
    }

}

@media (max-width:767.98px) {

    .warehouseInfo {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .warehouseHeading h2 {
        font-size: 30px;
    }

    .warehouseHeading p {
        font-size: 15px;
    }

    .warehouseCard {
        padding: 28px 22px;
        border-radius: 15px;
    }

    .warehouseImageCard,
    .warehouseImageCard img {
        min-height: 390px;
    }

    .cardHeading h3 {
        font-size: 24px;
    }

}

@media (max-width:575.98px) {

    .warehouseHeading h2 {
        font-size: 27px;
    }

    .warehouseImageCard,
    .warehouseImageCard img {
        min-height: 330px;
    }

    .warehouseImageOverlay {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .locationBadge {
        padding: 14px;
    }

}

/*==================================================
VISION MISSION
==================================================*/

.ourPromise {
    background: #fff;
    padding: 30px 0 10px;
}

.promiseCard {

    position: relative;

    height: 100%;

    background: #fff;

    border-radius: 18px;

    padding: 80px 30px 35px;

    text-align: center;

    border: 1px solid #ececec;

    transition: .35s;

    overflow: hidden;
}

.promiseCard::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: var(--primary);

    transform: scaleX(0);

    transition: .35s;
}

.promiseCard:hover {

    transform: translateY(-12px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.promiseCard:hover::before {

    transform: scaleX(1);
}

.promiseIcon {

    position: absolute;

    left: 50%;
    top: 40px;

    transform: translate(-50%, -50%);

    width: 82px;
    height: 82px;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    border: 6px solid #fff;

    transition: .35s;
}

.promiseIcon svg {
    width: 30px;
    height: 30px;
}

.promiseCard:hover .promiseIcon {

    transform: translate(-50%, -50%) rotateY(180deg);

    background: #222;
}

.promiseCard .promiseCardTitle {
    margin-bottom: 12px;
    font-size: 28px;
    font-family: var(--heading-font);
    font-weight: 600;
}

.promiseCard p {
    margin: 0;
    color: var(--text);
    line-height: 1.7;
}



/*==================================================
PRODUCT LISTING
==================================================*/

.productListingSection {
    background: #fff;
    padding: 20px 0;
}

.listingTopBar {
    margin-bottom: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.listingTopBar h1 {
    margin: 12px 0 0;
    color: #1e2528;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
}

.mobileFilterBtn {
    display: none;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 600;
}


/*==================================================
SIDEBAR
==================================================*/


.sidebar {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;

    position: sticky;
    top: 110px;
    border: 1px solid #e8e5de;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(32, 38, 42, .05);

}

.sidebar .sidebar_title1 {
    float: left;
    padding: 10px 15px;
    color: var(--primary);
    line-height: 24px;
    font-size: 18px;
    width: 100%;
    font-weight: 600;
    background: #fff;
    border-bottom: 1px solid #e3e3e3;
    text-transform: uppercase;
}

.sidebar .sidebar_title1 svg {
    float: right;
}

.sidebar .sidebar_body {
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
}

.sidebar .sidebar_body .sidebar_group {
    float: left;
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.sidebar .sidebar_body .sidebar_group .sidebar_inner {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    display: none;
}

.sidebar .sidebar_body .sidebar_group .sidebar_inner.active {
    display: block;
}

.sidebar .sidebar_body .sidebar_group .sidebar_heading .sidebar_toggle_1 {
    clear: both;
    display: block;
    font-size: 14px;
    line-height: 28px;
    color: #333;
    font-weight: 600;
}

.sidebar .sidebar_body .sidebar_group .sidebar_heading .sidebar_toggle {
    clear: both;
    display: block;
    font-size: 14px;
    line-height: 28px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}

.sidebar .sidebar_body .sidebar_group .sidebar_heading .sidebar_toggle:after {
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>");
    float: right;
    color: #999;
    font-size: 12px;
    font-weight: normal;
    position: relative;
    top: 5px;
}

.sidebar .sidebar_body .sidebar_group .sidebar_heading .sidebar_toggle.sidebar_collapsed:after {
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.sidebar_inner ul {
    margin: 0px;
    padding: 0;
    float: left;
    width: 100%;
}

.sidebar_inner ul li {
    padding: 4px 0;
    line-height: normal;
    list-style: none;
}

.sidebar_inner ul a {
    color: var(--text);
    padding: 0;
    font-size: 14px;
}

.sidebar_inner ul a:hover,
.sidebar_inner ul a:focus {
    color: var(--primary);
}

.price_filter_1 {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0 0 10px;
}

.price_filter_1 label {
    font-size: 14px;
    color: #333;
    font-weight: normal;
    display: block;
}

/*=========================================
PRICE FILTER
=========================================*/


.price_filter_1 #amount {
    width: 100%;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    outline: none;
    box-shadow: none;
    margin-bottom: 10px;
    border: 0;
    letter-spacing: 0.5px;

}

.price_filter_1 #slider-range {
    margin: 0 8px;
}

/* Slider */

.price_filter_1 .ui-slider {
    position: relative;
    height: 6px;
    border: none;
    border-radius: 50px;
    background: #e5e5e5;
}

/* Selected Range */

.price_filter_1 .ui-slider-range {
    background: #197e84;
    border-radius: 50px;
}

/* Handles */

.price_filter_1 .ui-slider-handle {
    position: absolute;
    top: -6px !important;
    width: 18px !important;
    height: 18px !important;
    margin-left: -9px !important;
    border: none !important;
    border-radius: 50%;
    background: #197e84 !important;
    cursor: pointer;
    transition: .25s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}

.price_filter_1 .ui-slider-handle:hover {
    transform: scale(1.12);
}

.price_filter_1 .ui-slider-handle:focus {
    outline: none;
}


.product_filter {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.product_filter ul {
    margin: 0 0 20px;
    padding: 0;
}

.product_filter ul li {
    text-transform: capitalize;
    display: block;
    color: #888;
    font-size: 14px;
    line-height: 34px;
    position: relative;
    padding: 0px;
}

.product_filter li label {
    font-size: 13px;
    line-height: 28px;
    font-weight: normal;
    cursor: pointer;
    color: var(--text);
    display: block;
}

.product_filter li label:before,
.product_filter li label:after {
    content: "";
    display: table
}

.product_filter li label:after {
    clear: both
}

.product_filter li label {
    line-height: 28px;
    margin: 0
}

.product_filter li label:hover {
    color: var(--primary)
}

.product_filter li label>span {
    display: block;
    position: relative;
    padding-left: 27px
}

.product_filter li label>span:before {
    content: '';
    width: 18px;
    height: 18px;
    line-height: 18px;
    background: #fff;
    display: block;
    position: absolute;
    left: 0;
    top: 7px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.product_filter li label input[type=checkbox] {
    visibility: hidden;
    position: absolute
}

.product_filter li label input[type=checkbox]:checked+span {
    color: var(--primary)
}

.product_filter li label input[type=checkbox]:checked+span:before {
    background: var(--primary);
    border: 1px solid var(--primary);
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'><path d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z'/></svg>");
}


.category_list ul {
    margin: 0 0 20px;
    padding: 0;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.category_list ul li {
    text-transform: capitalize;
    display: block;
    color: #888;
    font-size: 14px;
    line-height: 34px;
    position: relative;
    border-bottom: 1px solid #eee
}

.category_list ul li a {
    color: #333;
    text-decoration: none;
    padding: 0 10px;
    display: block;
}

.category_list ul li a:hover,
.category_list ul li a:focus {
    background: var(--primary);
    color: #fff;
    outline: 0;
}




/*==================================================
TOOLBAR
==================================================*/

.productToolbar {
    min-height: 72px;
    margin-bottom: 24px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #e8e5de;
    border-radius: 12px;
    background: #fff;
}

.productToolbar p {
    margin: 0;
    color: #6c7174;
    font-size: 14px;
}

.productToolbar strong {
    color: #252b2e;
}

.toolbarActions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.viewSwitch {
    display: flex;
    align-items: center;
    gap: 5px;
}

.viewSwitch button {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd9d2;
    border-radius: 7px;
    background: #fff;
    color: #777;
    transition: .3s;
}

.viewSwitch button:hover,
.viewSwitch button.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.sortSelect {
    height: 42px;
    min-width: 200px;
    padding: 0 36px 0 13px;
    border: 1px solid #ddd9d2;
    border-radius: 7px;
    background: #fff;
    color: #444;
    outline: none;
}

/*==================================================
PRODUCT GRID
==================================================*/

.productGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


.productRating {
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.productRating span {
    color: #d69b2d;
    font-size: 13px;
    letter-spacing: 1px;
}

.productRating small {
    color: #929698;
    font-size: 12px;
}

.productPrice {
    display: flex;
    align-items: center;
    gap: 10px;
}

.productPrice strong {
    color: #1f2629;
    font-size: 18px;
}

.productPrice del {
    color: #9b9fa1;
    font-size: 14px;
}

/*==================================================
PAGINATION
==================================================*/

.listingPagination {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.listingPagination a,
.listingPagination span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1ddd6;
    border-radius: 8px;
    background: #fff;
    color: #4d5356;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.listingPagination a:hover,
.listingPagination a.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.paginationArrow {
    font-size: 24px !important;
}

/*==================================================
OFFCANVAS
==================================================*/

.mobileFilterCanvas {
    width: min(360px, 90vw) !important;
}

.mobileFilterCanvas .offcanvas-header {
    border-bottom: 1px solid #eee;
}

.mobileFilterCanvas .offcanvas-header h5 {
    margin: 0;
    font-size: 22px;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1199.98px) {

    .productGrid {
        gap: 18px;
    }

    .productContent {
        padding: 17px;
    }

    .listingSidebar {
        padding: 23px;
    }

}

@media (max-width:991.98px) {

    .mobileFilterBtn {
        display: inline-flex;
    }

    .listingTopBar h1 {
        font-size: 36px;
    }

    .productGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .productActions,
    .addCartBtn {
        opacity: 1;
        transform: none;
    }

}

@media (max-width:767.98px) {

    .productListingSection {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .listingTopBar {
        align-items: center;
    }

    .listingTopBar h1 {
        font-size: 30px;
    }

    .productToolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .toolbarActions {
        width: 100%;
        justify-content: space-between;
    }

    .sortSelect {
        flex: 1;
        min-width: 0;
    }

}

@media (max-width:575.98px) {

    .listingTopBar {
        align-items: flex-start;
        flex-direction: column;
    }

    .mobileFilterBtn {
        width: 100%;
    }

    .productGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .productToolbar {
        padding: 14px;
    }

    .viewSwitch {
        display: none;
    }

    .sortSelect {
        width: 100%;
    }

    .productImage {
        aspect-ratio: 1 / 1;
    }

}


/*==================================================
PRODUCT DETAIL SECTION
==================================================*/

.productDetailSection {
    padding: 50px 0;
    background: #fff;
}

/*==================================================
GALLERY
==================================================*/

.productGallery {
    position: sticky;
    top: 110px;
}

.productGalleryGrid {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
}

.productThumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.productThumbnails a {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    overflow: hidden;
    border: 2px solid #eee;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: .3s ease;
}

.productThumbnails a:hover,
.productThumbnails a.mz-thumb-selected {
    border-color: var(--primary);
    box-shadow: 0 7px 20px rgba(0, 0, 0, .08);
}

.productThumbnails img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.productMainImage {
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e7e3dc;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(31, 37, 40, .07);
}

.productMainImage .MagicZoom {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productMainImage .MagicZoom>img {
    width: 100%;
    max-height: 590px;
    object-fit: contain;
}

.productDetailBadge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    padding: 7px 14px;
    border-radius: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
}

/*==================================================
PRODUCT CONTENT
==================================================*/

.productDetailContent {
    padding: 25px;
    border: 1px solid #e7e3dc;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(31, 37, 40, .06);
}

.productCategoryName {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.productDetailContent h1 {
    margin: 0 0 10px;
    color: #202628;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.productMetaRow {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.productSku {
    color: #74797b;
    font-size: 13px;
}

.productSku span {
    color: #262c2f;
    font-weight: 700;
}

.stockStatus {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 30px;
    background: #edf9f0;
    color: #24843b;
    font-size: 12px;
    font-weight: 700;
}

/* Review */

.productReview {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ratingStars {
    display: flex;
    gap: 2px;
    color: #e5a52f;
    font-size: 17px;
}

.ratingStars .emptyStar {
    color: #d8d8d8;
}

.productReview a {
    color: #656b6d;
    font-size: 13px;
    text-decoration: none;
}

.productReview a:hover {
    color: var(--primary);
}

.reviewDivider {
    width: 1px;
    height: 15px;
    background: #d9d6d0;
}

/* Price */

.productPriceBox {
    margin-bottom: 12px;
    padding: 12px 15px;
    border-radius: 13px;
    background: #f7f6f2;
}

.priceRow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.offerPrice {
    color: #1f2528;
    font-size: 24px;
    font-weight: 800;
}

.mrpPrice {
    color: #969a9c;
    font-size: 16px;
    text-decoration: line-through;
}

.offPercentage {
    padding: 5px 10px;
    border-radius: 20px;
    background: #e9f7ee;
    color: #258041;
    font-size: 12px;
    font-weight: 700;
}

.taxText {
    margin: 3px 0 0;
    color: #818688;
    font-size: 12px;
}

.productShortDescription {
    margin-bottom: 26px;
}

.productShortDescription p {
    margin: 0;
    color: #62686a;
    font-size: 14px;
    line-height: 1.8;
}

/* Options */

.productOptionBlock {
    margin-bottom: 25px;
}

.optionHeading {
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.optionHeading .optionTitle {
    margin: 0;
    color: #252b2e;
    font-size: 16px;
    font-weight: 700;
}

.optionHeading h4 span {
    color: var(--primary);
}

.sizeChartLink {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.sizeChartLink:hover {
    color: #1f2528;
}



/* Quantity */

.quantitySelector {
    width: 145px;
    height: 48px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    overflow: hidden;
    border: 1px solid #ddd9d2;
    border-radius: 9px;
    background: #fff;
}

.quantityButton {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #f5f3ef;
    color: #272d2f;
    transition: .3s;
}

.quantityButton:hover {
    background: var(--primary);
    color: #fff;
}

.quantitySelector .qty {
    width: 100%;
    border: 0;
    background: #fff;
    color: #242a2c;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    outline: none;
}

/* Action Buttons */

.productActionButtons {
    margin-top: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 12px;
}

.addToCartButton,
.wishlistButton {
    min-height: 55px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: .3s ease;
}

.addToCartButton {
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #fff;
}

.addToCartButton:hover {
    border-color: #22292b;
    background: #22292b;
}

.wishlistButton {
    border: 1px solid #dcd8d1;
    background: #fff;
    color: #33393b;
}

.wishlistButton:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Benefits */

.productBenefits {
    margin-top: 27px;
    padding-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    border-top: 1px solid #ebe8e2;
}

.benefitItem {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--primary);
}

.benefitItem svg {
    width: 24px;
    height: 24px;
}

.benefitItem span {
    display: flex;
    flex-direction: column;
    color: #777c7e;
    font-size: 12px;
    line-height: 1.5;
}

.benefitItem strong {
    color: #2c3234;
    font-size: 13px;
}


/*==================================================
HELP + BULK SAVING SECTION
==================================================*/

.supportOfferBox {
    width: 100%;
    margin-top: 28px;
}

/* Help Link */

.helpLink {
    margin-bottom: 16px;
    padding: 15px 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e4e0d8;
    border-radius: 12px;
    background: #fff;
    color: #252b2e;
    text-decoration: none;
    transition: .3s ease;
}

.helpLink:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .07);
    transform: translateY(-2px);
}

.helpIcon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(25, 126, 132, .1);
    color: var(--primary);
}

.helpLink span:nth-child(2) {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.helpLink small {
    margin-bottom: 2px;
    color: #7d8284;
    font-size: 11px;
    line-height: 1.2;
}

.helpLink strong {
    color: #252b2e;
    font-size: 14px;
    line-height: 1.3;
}

.helpArrow {
    color: #989d9f;
    transition: .3s ease;
}

.helpLink:hover .helpArrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* Main Offer Card */

.bulkSavingCard {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid #e4dfd5;
    border-radius: 16px;
    background:
        radial-gradient(circle at top right,
            rgba(25, 126, 132, .08),
            transparent 36%),
        #fff;
    box-shadow: 0 14px 35px rgba(26, 31, 33, .06);
}

.bulkSavingCard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary),
            #d4a45f);
}

/* Header */

.bulkSavingHeader {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.bulkSavingIcon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 9px 20px rgba(25, 126, 132, .18);
}

.offerLabel {
    display: block;
    margin-bottom: 3px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.bulkSavingHeader .bulkSavingHeaderTitle {
    margin: 0;
    color: #22292b;
    font-size: 20px;
    font-weight: 750;
    line-height: 1.25;
    font-family: var(--heading-font);
}

/* Tiers */

.savingTiers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.savingTier {
    position: relative;
    min-height: 115px;
    padding: 15px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #e6e1d9;
    border-radius: 12px;
    background: #faf9f6;
    text-align: center;
    transition: .3s ease;
}

.savingTier:hover {
    border-color: var(--primary);
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.savingTier.featured {
    border-color: var(--primary);
    background: rgba(25, 126, 132, .06);
}

.popularBadge {
    position: absolute;
    top: -9px;
    left: 50%;
    padding: 4px 9px;
    border-radius: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.savingDiscount {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
}

.savingDiscount strong {
    color: #22292b;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.savingDiscount span {
    margin-bottom: 2px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
}

.savingInfo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: normal;
}

.savingInfo span {
    color: #858a8c;
    font-size: 14px;
}

.savingInfo strong {
    color: #3b4143;
    font-size: 16px;
}

/* Note */

.offerNote {
    margin-top: 18px;
    padding-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    border-top: 1px solid #ebe7e0;
    color: #5e6466;
}

.offerNote svg {
    flex: 0 0 16px;
    margin-top: 2px;
    color: #2c8b47;
}

.offerNote p {
    margin: 0;
    color: #727779;
    font-size: 13px;
    line-height: 1.6;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:575.98px) {

    .bulkSavingCard {
        padding: 21px 17px;
    }

    .savingTiers {
        grid-template-columns: 1fr;
    }

    .savingTier {
        min-height: auto;
        padding: 15px 18px;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        text-align: left;
    }

    .savingDiscount {
        margin: 0;
    }

    .savingInfo {
        align-items: flex-end;
    }

    .popularBadge {
        top: 7px;
        left: auto;
        right: 8px;
        transform: none;
    }

}



/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1199.98px) {

    .productMainImage {
        min-height: 520px;
    }

    .productMainImage .MagicZoom>img {
        max-height: 520px;
    }

    .productDetailContent {
        padding: 30px;
    }

    .productDetailContent h1 {
        font-size: 30px;
    }

}

@media (max-width:991.98px) {

    .productGallery {
        position: static;
    }

    .productMainImage {
        min-height: 500px;
    }

}

@media (max-width:767.98px) {

    .productDetailSection {
        padding: 60px 0;
    }

    .productGalleryGrid {
        display: flex;
        flex-direction: column-reverse;
    }

    .productThumbnails {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .productThumbnails a {
        flex: 0 0 72px;
        width: 72px;
    }

    .productMainImage {
        min-height: 430px;
        border-radius: 15px;
    }

    .productDetailContent {
        padding: 24px;
        border-radius: 15px;
    }

    .productDetailContent h1 {
        font-size: 26px;
    }

    .productActionButtons {
        grid-template-columns: 1fr;
    }

}

@media (max-width:575.98px) {

    .productMainImage {
        min-height: 350px;
    }

    .productMainImage .MagicZoom>img {
        max-height: 350px;
    }

    .productDetailContent {
        padding: 20px;
    }

    .productDetailContent h1 {
        font-size: 23px;
    }

    .offerPrice {
        font-size: 27px;
    }

    .productBenefits {
        grid-template-columns: 1fr;
    }

    .optionHeading {
        align-items: flex-start;
        flex-direction: column;
    }

    .deliveryForm button {
        min-width: 76px;
        padding: 0 12px;
    }

}


:root {
    --primary: #197e84;
    --dark: #242a2c;
    --text: #6f7577;
    --border: #e8e3db;
    --light: #faf8f4;
}

/*==================================================
SECTION
==================================================*/

.product-info-section {
    padding: 30px 0 0;
}

.product-info-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(35, 40, 42, .07);
}

/*==================================================
HEADING
==================================================*/

.product-info-heading {
    padding: 15px 25px 15px;
    background:
        radial-gradient(circle at top right,
            rgba(25, 126, 132, .09),
            transparent 35%),
        #fff;
}

.product-info-heading>span,
.content-kicker {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.product-info-heading .productInfoTitle {
    margin: 0;
    color: var(--dark);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.product-info-heading p {
    max-width: 650px;
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

/*==================================================
TAB NAV
==================================================*/

.product-info-nav {
    margin: 0;
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--light);
}

.product-info-nav .nav-item {
    margin: 0;
}

.product-info-nav .nav-link {
    position: relative;
    width: 100%;
    min-height: 84px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #777d7f;
    text-align: left;
    transition: .3s ease;
}

.product-info-nav .nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 4px 4px 0 0;
    background: var(--primary);
    transform: scaleX(0);
    transition: .3s ease;
}

.product-info-nav .nav-link:hover {
    background: rgba(25, 126, 132, .05);
    color: var(--dark);
}

.product-info-nav .nav-link.active {
    background: #fff;
    color: var(--dark);
}

.product-info-nav .nav-link.active::after {
    transform: scaleX(1);
}

.product-tab-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ece8e0;
    color: #8b9092;
    transition: .3s ease;
}

.product-tab-icon svg {
    width: 20px;
    height: 20px;
}

.product-info-nav .nav-link.active .product-tab-icon {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 9px 20px rgba(25, 126, 132, .2);
}

.product-tab-text {
    display: flex;
    flex-direction: column;
    line-height: normal;
}

.product-tab-text strong {
    font-size: 16px;
    font-weight: 700;
}

.product-tab-text small {
    margin-top: 2px;
    color: #9a9fa1;
    font-size: 13px;
}

/*==================================================
TAB CONTENT
==================================================*/

.product-info-content {
    padding: 25px;
}

.description-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
    gap: 48px;
    align-items: start;
}

.description-copy h3,
.disclaimer-box h3,
.terms-heading h3 {
    margin: 0;
    color: var(--dark);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.35;
}

.description-copy p,
.disclaimer-box p,
.terms-heading p {
    margin: 0 0 13px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

.description-points {
    display: grid;
    gap: 13px;
}

.description-point {
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--light);
    transition: .3s ease;
}

.description-point:hover {
    border-color: var(--primary);
    background: #fff;
    transform: translateX(4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
}

.point-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(25, 126, 132, .1);
    color: var(--primary);
}

.description-point strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dark);
    font-size: 13px;
}

.description-point p {
    margin: 0;
    color: #7e8486;
    font-size: 12px;
    line-height: 1.55;
}

/*==================================================
DISCLAIMER
==================================================*/

.disclaimer-box {
    max-width: 850px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border: 1px solid #ecd79f;
    border-radius: 16px;
    background: #fffaf0;
}

.disclaimer-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #d7a23a;
    color: #fff;
}

/*==================================================
TERMS
==================================================*/

.terms-heading {
    max-width: 700px;
    margin-bottom: 26px;
}

.terms-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.term-row {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--light);
    transition: .3s ease;
}

.term-row:hover {
    border-color: var(--primary);
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .05);
}

.term-index {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(25, 126, 132, .1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.term-row .termRowTitle {
    margin: 0 0 7px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    font-family: var(--heading-font);
}

.term-row p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.4;
}

.terms-note {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 11px;
    background: rgba(25, 126, 132, .08);
    color: var(--text);
    font-size: 14px;
    text-align: center;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:991.98px) {

    .description-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

@media (max-width:767.98px) {

    .product-info-section {
        padding: 50px 0;
    }

    .product-info-card {
        border-radius: 16px;
    }

    .product-info-heading {
        padding: 28px 24px 24px;
    }

    .product-info-heading h2 {
        font-size: 24px;
    }

    .product-info-nav {
        padding: 0;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .product-info-nav .nav-link {
        min-height: 68px;
        padding: 13px 20px;
        border-bottom: 1px solid var(--border);
    }

    .product-info-nav .nav-link::after {
        top: 0;
        right: auto;
        bottom: 0;
        width: 3px;
        height: auto;
        transform: scaleY(0);
    }

    .product-info-nav .nav-link.active::after {
        transform: scaleY(1);
    }

    .product-info-content {
        padding: 28px 23px;
    }

    .terms-list {
        grid-template-columns: 1fr;
    }

}

@media (max-width:575.98px) {

    .product-info-heading h2 {
        font-size: 22px;
    }

    .description-copy h3,
    .disclaimer-box h3,
    .terms-heading h3 {
        font-size: 21px;
    }

    .disclaimer-box {
        padding: 21px;
        flex-direction: column;
    }

}



.box-display-section {
    background: #fff;
    padding: 0 0 30px;
}

/* Heading */

.section-heading {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-heading .sectionHeadingTitle2 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    font-family: var(--heading-font);
}

.section-heading p {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

/* Main Card */

.box-display-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(27, 34, 36, .09);
}

/* Image Area */

.box-product-media {
    position: relative;
    height: 100%;
    padding: 25px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at top left,
            rgba(25, 126, 132, .11),
            transparent 38%),
        var(--light);
}

.product-image-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrap img {
    width: 100%;
    max-width: 340px;
    height: 350px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: .4s ease;

}

.box-product-media:hover img {
    transform: scale(1.04);
}

.discount-badge,
.stock-badge {
    position: absolute;
    top: 22px;
    z-index: 2;
    padding: 7px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.discount-badge {
    left: 22px;
    background: var(--accent);
    color: #fff;
}

.stock-badge {
    right: 22px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #e7f7ed;
    color: #218147;
}

.stock-badge>span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #28a655;
}

.media-footer {
    padding-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--border);
    line-height: normal;
}

.media-footer div {
    padding: 0 15px;
}

.media-footer div:first-child {
    padding-left: 0;
    border-right: 1px solid var(--border);
}

.media-footer small {
    display: block;
    margin-bottom: 0;
    color: #969b9d;
    font-size: 12px;
    letter-spacing: .5px;
}

.media-footer strong {
    color: var(--dark);
    font-size: 14px;
}

/* Product Content */

.box-product-content {
    height: 100%;
    padding: 25px;
}

.product-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sku-tag {
    padding: 6px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
}

.sku-tag {
    background: rgba(25, 126, 132, .1);
    color: var(--primary);
}


.box-product-content h3 {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.product-description {
    max-width: 700px;
    margin: 0 0 15px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

/* Product Specs */

.product-specs {
    margin-bottom: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.spec-item {
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--light);
    line-height: normal;
}

.spec-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(25, 126, 132, .1);
    color: var(--primary);
}

.spec-item div {
    min-width: 0;
}

.spec-item small {
    display: block;
    margin-bottom: 2px;
    color: #999ea0;
    font-size: 12px;
}

.spec-item strong {
    display: block;
    overflow: hidden;
    color: var(--dark);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.price-offer-grid {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
    gap: 14px;
    align-items: stretch;
}




/* Free Offer Card */

.free-display-offer {
    position: relative;
    margin: 0;
    padding: 15px 15px;
    display: flex;
    align-items: center;
    gap: 13px;
    overflow: hidden;
    border: 1px dashed #e0b76e;
    border-radius: 15px;
    background:
        linear-gradient(135deg,
            #fffaf0,
            #fff);
    height: max-content;
}

.free-offer-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #d9a144;
    color: #fff;
}

.free-offer-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.free-offer-text>span {
    margin-bottom: 3px;
    color: #aa7b2f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.free-offer-text strong {
    margin-bottom: 4px;
    color: #202729;
    font-size: 13px;
    line-height: 1.35;
}

.free-offer-text p {
    margin: 0;
    color: #858077;
    font-size: 10px;
    line-height: 1.5;
}

.free-label {
    position: absolute;
    top: 8px;
    right: 14px;
    padding: 5px 9px;
    border-radius: 30px;
    background: #d9a144;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* Price Card */

.display-price-card {
    padding: 10px 15px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    border: 1px solid #d7e9e8;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(25, 126, 132, .08), rgba(255, 255, 255, .96));
}

.price-label {
    display: block;
    margin-bottom: 7px;
    color: #7d8587;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
}

.price-line {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-wrap: wrap;
}

.sale-price {
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.regular-price {
    color: #a0a5a7;
    font-size: 13px;
    text-decoration: line-through;
}

.price-content p {
    margin: 7px 0 0;
    color: #858b8d;
    font-size: 12px;
}

.saving-content {
    min-width: 140px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #d2e2e1;
}

.saving-content span {
    color: #8d9395;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}

.saving-content strong {
    margin: 0;
    color: #218147;
    font-size: 19px;
}

.saving-content small {
    color: #6f7779;
    font-size: 12px;
}



/* Action */

.product-action-row {
    display: grid;
    grid-template-columns: auto minmax(260px, 360px);
    gap: 18px;
    align-items: end;
}

.quantity-box label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}

.quantity-control {
    height: 50px;
    display: flex;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: #fff;
    width: max-content;
}

.quantity-control input {
    width: 52px;
    border: 0;
    outline: 0;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

.quantity-btn {
    width: 43px;
    border: 0;
    background: #edf1f2;
    color: #4f585a;
    font-size: 18px;
    transition: .25s ease;
}

.quantity-btn:hover {
    background: var(--primary);
    color: #fff;
}

.add-display-cart {
    height: 52px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 11px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
    box-shadow: 0 12px 25px rgba(255, 113, 56, .23);
    transition: .3s ease;
    max-width: max-content;
    margin-left: auto;
}

.add-display-cart:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(25, 126, 132, .3);
}

/* Responsive */

@media (max-width:991.98px) {

    .box-product-media {
        min-height: auto;
    }

    .box-product-content {
        padding: 32px;
    }

    .price-offer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

}

@media (max-width:767.98px) {

    .section-heading h2 {
        font-size: 28px;
    }

    .box-display-card {
        border-radius: 16px;
    }

    .box-product-media {
        padding: 28px 22px 22px;
    }

    .product-image-wrap img {
        height: 290px;
    }

    .box-product-content {
        padding: 27px 22px;
    }

    .box-product-content h3 {
        font-size: 23px;
    }

    .product-specs {
        grid-template-columns: 1fr;
    }

    .display-price-card {
        grid-template-columns: 1fr;
    }

    .saving-content {
        padding: 15px 0 0;
        border-top: 1px solid #d2e2e1;
        border-left: 0;
    }

    .product-action-row {
        grid-template-columns: 1fr;
    }

    .quantity-control {
        width: 138px;
    }

    .add-display-cart {
        width: 100%;
    }

}

@media (max-width:575.98px) {

    .section-heading h2 {
        font-size: 24px;
    }

    .sale-price {
        font-size: 26px;
    }

    .free-display-offer {
        padding-right: 16px;
        align-items: flex-start;
    }

    .free-label {
        position: static;
        margin-left: auto;
        transform: none;
    }


    .media-footer {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .media-footer div {
        padding: 0;
    }

    .media-footer div:first-child {
        padding-bottom: 12px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .price-offer-grid {
        gap: 12px;
    }

    .display-price-card {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .saving-content {
        margin-top: 15px;
        padding-top: 15px;
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid #d8e2e2;
        align-items: flex-start;
    }

    .free-display-offer {
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 18px;
    }

    .free-offer-icon {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .free-offer-text {
        flex: 1;
    }

    .free-label {
        position: static;
        margin-top: 12px;
        margin-left: auto;
        transform: none;
    }


}

/* =========================================================
   CART PAGE
========================================================= */

.cart-page {
    width: 100%;
    background: var(--light);
    color: var(--text);
    font-family: var(--body-font);
}



/* =========================================================
   CART CONTENT
========================================================= */

.cart-content-section {
    padding: 48px 0 90px;
    background: var(--white);
}

/* =========================================================
   CART ALERT
========================================================= */

.cart-alert {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;

    padding: 18px 20px;

    background: linear-gradient(135deg, #eefaf5, #f8fffd);

    border: 1px solid #cde8da;

    border-left: 5px solid var(--primary);

    border-radius: 14px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

}

.cart-alert-left {

    display: flex;

    align-items: center;

    gap: 16px;

}

.cart-alert-icon {

    width: 52px;

    height: 52px;

    flex: 0 0 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(0, 143, 140, .12);

    color: var(--primary);

}

.cart-alert-content strong {

    display: block;

    color: var(--dark);

    font-size: 17px;

    font-weight: 700;

    margin-bottom: 4px;

}

.cart-alert-content p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: normal;

}

.cart-alert-close {

    width: 40px;

    height: 40px;

    border: none;

    background: #fff;

    border-radius: 50%;

    color: #999;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;

    cursor: pointer;

}

.cart-alert-close:hover {

    background: #ffe9e9;

    color: var(--secondary);

}

@media(max-width:767px) {

    .cart-alert {

        flex-direction: column;

        align-items: flex-start;

    }

    .cart-alert-left {

        align-items: flex-start;

    }

    .cart-alert-close {

        align-self: flex-end;

    }

}


/* =========================================================
   FREE SHIPPING PROGRESS
========================================================= */

.shipping-progress-card {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.shipping-progress-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(0, 143, 140, 0.09);
    border-radius: 14px;
}

.shipping-progress-content {
    width: 100%;
}

.shipping-progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
}

.shipping-progress-top p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.shipping-progress-top p strong {
    color: var(--dark);
}

.shipping-progress-top>span {
    flex: 0 0 auto;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.shipping-progress {
    width: 100%;
    height: 8px;
    overflow: hidden;
    background: #edf0ef;
    border-radius: var(--radius-pill);
}

.shipping-progress-bar {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(90deg,
            var(--primary-dark),
            var(--primary));
    border-radius: inherit;
}

.shipping-progress-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
}


/* =========================================================
   CART MAIN CARD
========================================================= */

.cart-main-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.cart-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 28px;
    border-bottom: 1px solid var(--border);
}

.cart-card-heading span,
.summary-heading>span {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.cart-card-heading h1,
.cart-card-heading h2,
.summary-heading h2,
.summary-heading h3 {
    margin: 0;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.cart-item-count {
    padding: 7px 14px;
    color: var(--primary-dark);
    background: rgba(0, 143, 140, 0.08);
    border: 1px solid rgba(0, 143, 140, 0.14);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   CART PRODUCT ITEM
========================================================= */

.cart-product-item {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 24px;
    padding: 28px;
    border-bottom: 1px solid var(--border);
}

.cart-product-image {
    position: relative;
    min-height: 172px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #edf0ef;
    border-radius: var(--radius-md);
}

.cart-product-image a {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 172px;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.cart-product-image img {
    width: 100%;
    height: 145px;
    object-fit: contain;
    transition: var(--transition);
}

.cart-product-image:hover img {
    transform: scale(1.05);
}

.cart-stock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 9px;
    color: #267c51;
    background: #e9f8ef;
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.cart-product-details {
    min-width: 0;
}

.cart-product-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.cart-product-title {
    min-width: 0;
}

.cart-product-category {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-product-title h3 {
    margin: 0 0 10px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.cart-product-title h3 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.cart-product-title h3 a:hover {
    color: var(--primary);
}

.cart-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.cart-product-meta span {
    position: relative;
    color: var(--muted);
    font-size: 12px;
}

.cart-product-meta span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 3px;
    height: 3px;
    background: #c5c8cc;
    border-radius: 50%;
    transform: translateY(-50%);
}

.cart-product-meta strong {
    color: var(--text);
    font-weight: 600;
}

.cart-remove-btn {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #a0a5ac;
    background: #fafafa;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: var(--transition);
}

.cart-remove-btn:hover {
    color: var(--secondary);
    background: rgba(232, 74, 60, 0.08);
    border-color: rgba(232, 74, 60, 0.18);
}

.cart-product-bottom {
    display: grid;
    grid-template-columns:
        minmax(145px, 1fr) minmax(100px, 0.6fr) minmax(110px, 0.7fr);
    gap: 18px;
    align-items: end;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #dfe1e1;
}

.cart-field-label,
.cart-unit-price span,
.cart-total-price span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cart-quantity {
    width: 128px;
    height: 44px;
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 11px;
}

.cart-qty-btn {
    padding: 0;
    color: var(--dark);
    background: transparent;
    border: 0;
    font-size: 20px;
    transition: var(--transition);
}

.cart-qty-btn:hover {
    color: var(--white);
    background: var(--primary);
}

.cart-quantity input {
    width: 100%;
    padding: 0;
    color: var(--dark);
    background: transparent;
    border: 0;
    border-right: 1px solid var(--border);
    border-left: 1px solid var(--border);
    outline: 0;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    appearance: textfield;
}

.cart-quantity input::-webkit-inner-spin-button,
.cart-quantity input::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

.cart-unit-price strong {
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
}

.cart-total-price {
    text-align: right;
}

.cart-total-price strong {
    color: var(--primary-dark);
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 700;
}


/* =========================================================
   CART FOOTER ACTIONS
========================================================= */

.cart-footer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
}

.cart-continue-btn,
.cart-update-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.cart-continue-btn {
    color: var(--primary-dark);
    background: rgba(0, 143, 140, 0.07);
    border: 1px solid rgba(0, 143, 140, 0.15);
}

.cart-continue-btn:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.cart-update-btn {
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--border);
}

.cart-update-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}


/* =========================================================
   COUPON CARD
========================================================= */

.cart-coupon-card {
    display: grid;
    grid-template-columns: 58px minmax(180px, 1fr) minmax(320px, 1.35fr);
    gap: 18px;
    align-items: center;
    margin-top: 22px;
    padding: 22px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.coupon-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: rgba(243, 162, 47, 0.12);
    border-radius: 15px;
}

.coupon-icon svg {
    width: 24px;
    height: 24px;
}

.coupon-content>span {
    display: block;
    margin-bottom: 2px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.coupon-content h3 {
    margin: 0 0 3px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 23px;
    font-weight: 700;
}

.coupon-content p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.coupon-form {
    display: grid;
    grid-template-columns: 1fr auto;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 11px;
}

.coupon-form input {
    min-width: 0;
    height: 50px;
    padding: 0 15px;
    color: var(--dark);
    background: var(--white);
    border: 0;
    outline: 0;
    font-size: 13px;
}

.coupon-form input::placeholder {
    color: #a1a6ae;
}

.coupon-form button {
    min-width: 130px;
    padding: 0 18px;
    color: var(--white);
    background: var(--dark);
    border: 0;
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.coupon-form button:hover {
    background: var(--primary);
}


/* =========================================================
   ORDER SUMMARY
========================================================= */

.cart-summary-card {
    position: sticky;
    top: 110px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.summary-heading {
    margin-bottom: 15px;
}

.summary-list {
    padding: 4px 0 18px;
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 5px 0;
}

.summary-row span {
    color: var(--text);
    font-size: 14px;
}

.summary-row strong {
    max-width: 170px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    text-align: right;
}

.summary-row .summary-discount {
    color: #2f8e59;
}

.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 0;
}

.summary-total span {
    display: block;
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
}

.summary-total small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.summary-total>strong {
    color: var(--primary-dark);
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 700;
}

.cart-checkout-btn {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 20px;
    color: var(--white);
    background: linear-gradient(135deg,
            var(--secondary),
            #f16445);
    border-radius: 13px;
    box-shadow: 0 13px 26px rgba(232, 74, 60, 0.22);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.cart-checkout-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 17px 34px rgba(232, 74, 60, 0.30);
}

.secure-checkout-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.secure-checkout-text svg {
    color: var(--primary);
}

.summary-divider {
    height: 1px;
    margin: 24px 0;
    background: var(--border);
}

.cart-trust-list {
    display: grid;
    gap: 15px;
}

.cart-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-trust-item>span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(0, 143, 140, 0.07);
    border-radius: 11px;
}

.cart-trust-item strong,
.cart-trust-item small {
    display: block;
}

.cart-trust-item strong {
    margin-bottom: 2px;
    color: var(--dark);
    font-size: 14px;
}

.cart-trust-item small {
    color: var(--muted);
    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .cart-summary-card {
        position: static;
    }

}


@media (max-width: 991.98px) {

    .cart-content-section {
        padding: 38px 0 70px;
    }

    .cart-product-item {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .cart-coupon-card {
        grid-template-columns: 54px 1fr;
    }

    .coupon-form {
        grid-column: 1 / -1;
    }

}


@media (max-width: 767.98px) {

    .cart-hero {
        padding: 38px 0 42px;
    }

    .shipping-progress-card {
        align-items: flex-start;
        padding: 18px;
    }

    .shipping-progress-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .cart-card-heading {
        padding: 22px 20px;
    }

    .cart-product-item {
        grid-template-columns: 125px minmax(0, 1fr);
        gap: 18px;
        padding: 22px 20px;
    }

    .cart-product-image,
    .cart-product-image a {
        min-height: 135px;
    }

    .cart-product-image img {
        height: 110px;
    }

    .cart-product-title h3 {
        font-size: 22px;
    }

    .cart-product-meta {
        gap: 6px 12px;
    }

    .cart-product-meta span:not(:last-child)::after {
        display: none;
    }

    .cart-product-bottom {
        grid-template-columns: 1fr 1fr;
    }

    .cart-quantity-group {
        grid-column: 1 / -1;
    }

    .cart-total-price {
        text-align: right;
    }

    .cart-footer-actions {
        padding: 20px;
    }

    .cart-coupon-card {
        padding: 20px;
    }

}


@media (max-width: 575.98px) {

    .cart-hero-content h1 {
        font-size: 40px;
    }

    .shipping-progress-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .cart-card-heading {
        align-items: flex-start;
    }

    .cart-card-heading h2,
    .summary-heading h2 {
        font-size: 27px;
    }

    .cart-product-item {
        display: block;
    }

    .cart-product-image {
        min-height: 220px;
        margin-bottom: 18px;
    }

    .cart-product-image a {
        min-height: 220px;
    }

    .cart-product-image img {
        height: 190px;
    }

    .cart-product-meta {
        display: grid;
        gap: 4px;
    }

    .cart-product-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .cart-quantity {
        width: 100%;
        max-width: 150px;
    }

    .cart-footer-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cart-continue-btn,
    .cart-update-btn {
        width: 100%;
    }

    .cart-coupon-card {
        display: block;
    }

    .coupon-icon {
        margin-bottom: 14px;
    }

    .coupon-form {
        grid-template-columns: 1fr;
        margin-top: 18px;
        overflow: visible;
        border: 0;
    }

    .coupon-form input {
        margin-bottom: 10px;
        border: 1px solid var(--border);
        border-radius: 10px;
    }

    .coupon-form button {
        min-height: 48px;
        border-radius: 10px;
    }

    .cart-summary-card {
        padding: 24px 20px;
    }

    .summary-row strong {
        max-width: 145px;
    }

}


@media (max-width: 399.98px) {

    .shipping-progress-card {
        display: block;
    }

    .shipping-progress-icon {
        margin-bottom: 12px;
    }

    .cart-item-count {
        display: none;
    }

    .cart-product-bottom {
        grid-template-columns: 1fr;
    }

    .cart-total-price {
        text-align: left;
    }

    .summary-total {
        align-items: flex-end;
    }

    .summary-total>strong {
        font-size: 27px;
    }

}


/* =========================================================
   CHECKOUT SECTION
========================================================= */

.modern-checkout-section {
    width: 100%;
    padding: 70px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 143, 140, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7f9f8 100%);
    position: relative;
    overflow: hidden;
}

.modern-checkout-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(243, 162, 47, 0.07);
    pointer-events: none;
}

.modern-checkout-section .container {
    position: relative;
    z-index: 1;
}

#guestEmailBlock {
    display: block;
}

#guestEmailBlock.hide {
    display: none !important;
}

/* =========================================================
   CHECKOUT STEPPER
========================================================= */

.checkout-stepper {
    margin: 0 auto 45px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(29, 36, 48, 0.06);
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 150px;
    position: relative;
}

.checkout-step-number {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-two);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.checkout-step-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.checkout-step-content small {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-step-content strong {
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.checkout-step-line {
    height: 1px;
    flex: 1;
    min-width: 30px;
    margin: 0 15px;
    background: var(--border);
    position: relative;
}

.checkout-step-line::before {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    inset: 0 auto 0 0;
    background: var(--primary);
    transition: width 0.4s ease;
}

.checkout-step.active .checkout-step-number {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 143, 140, 0.22);
}

.checkout-step.active .checkout-step-content small {
    color: var(--primary);
}

.checkout-step.completed .checkout-step-number {
    color: var(--white);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.checkout-step.completed+.checkout-step-line::before {
    width: 100%;
}


/* =========================================================
   INFORMATION CARD
========================================================= */

.checkout-information-card {
    width: 100%;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(29, 36, 48, 0.07);
}

.checkout-information-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.checkout-section-label {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.checkout-information-header h1 {
    margin: 0 0 8px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.05;
}

.checkout-information-header p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

.secure-info-badge {
    min-width: max-content;
    padding: 9px 13px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary-dark);
    background: rgba(0, 143, 140, 0.08);
    border: 1px solid rgba(0, 143, 140, 0.14);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

.secure-info-badge svg {
    display: block;
}


/* =========================================================
   EMAIL BLOCK
========================================================= */

.checkout-email-block {
    padding: 20px;
    margin-bottom: 28px;
    background: var(--light-two);
    border: 1px solid var(--border);
    border-radius: 15px;
}

.checkout-field {
    width: 100%;
}

.checkout-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
}

.checkout-field label span {
    color: var(--secondary);
}

.checkout-input-wrapper {
    position: relative;
}

.checkout-input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transform: translateY(-50%);
    pointer-events: none;
}

.checkout-input-wrapper input {
    padding-left: 46px;
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 15px;
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    transition: all 0.25s ease;
}

.checkout-field input::placeholder,
.checkout-field textarea::placeholder {
    color: #a7acb4;
}

.checkout-field input:hover,
.checkout-field select:hover,
.checkout-field textarea:hover {
    border-color: #cfd5d3;
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 143, 140, 0.09);
}

.checkout-field-note {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   CHECKOUT OPTION GRID
========================================================= */

.checkout-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.checkout-option-card {
    min-height: 220px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.checkout-option-card::before {
    content: "";
    width: 90px;
    height: 90px;
    position: absolute;
    top: -50px;
    right: -50px;
    border-radius: 50%;
    background: rgba(0, 143, 140, 0.08);
    transition: all 0.35s ease;
}

.checkout-option-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 143, 140, 0.4);
    box-shadow: 0 14px 30px rgba(29, 36, 48, 0.08);
}

.checkout-option-card:hover::before {
    width: 120px;
    height: 120px;
}

.checkout-option-card.active {
    background: linear-gradient(180deg,
            rgba(0, 143, 140, 0.06) 0%,
            rgba(0, 143, 140, 0.015) 100%);
    border-color: var(--primary);
    box-shadow: 0 14px 34px rgba(0, 143, 140, 0.12);
}

.checkout-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


/* =========================================================
   OPTION CUSTOM RADIO
========================================================= */

.checkout-option-radio {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 18px;
    right: 18px;
    border: 2px solid #c8cecc;
    border-radius: 50%;
    background: var(--white);
    transition: all 0.25s ease;
}

.checkout-option-radio::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    background: var(--white);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.25s ease;
}

.checkout-option-card.active .checkout-option-radio {
    border-color: var(--primary);
    background: var(--primary);
}

.checkout-option-card.active .checkout-option-radio::after {
    transform: translate(-50%, -50%) scale(1);
}


/* =========================================================
   OPTION ICON
========================================================= */

.checkout-option-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(0, 143, 140, 0.09);
    border: 1px solid rgba(0, 143, 140, 0.12);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.checkout-option-card:hover .checkout-option-icon,
.checkout-option-card.active .checkout-option-icon {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 9px 20px rgba(0, 143, 140, 0.2);
}

.checkout-option-icon svg {
    display: block;
    width: 22px;
    height: 22px;
}


/* =========================================================
   OPTION CONTENT
========================================================= */

.checkout-option-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.checkout-option-content>strong {
    display: block;
    margin-bottom: 9px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.checkout-option-content>small {
    display: block;
    margin-bottom: 18px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.6;
}

.checkout-option-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    transition: gap 0.25s ease;
}

.checkout-option-card:hover .checkout-option-link {
    gap: 11px;
}


/* =========================================================
   RESPONSIVE - PART 1
========================================================= */

@media (max-width: 1199.98px) {

    .checkout-stepper {
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: thin;
    }

    .checkout-step {
        min-width: 165px;
    }

    .checkout-step-line {
        flex: 0 0 55px;
    }

    .checkout-information-card {
        padding: 28px;
    }

}

@media (max-width: 991.98px) {

    .modern-checkout-section {
        padding: 50px 0;
    }

    .checkout-option-grid {
        grid-template-columns: 1fr;
    }

    .checkout-option-card {
        min-height: auto;
        padding: 20px;
        flex-direction: row;
        gap: 16px;
    }

    .checkout-option-icon {
        flex: 0 0 52px;
        margin-bottom: 0;
    }

    .checkout-option-content {
        padding-right: 24px;
    }

}

@media (max-width: 767.98px) {

    .modern-checkout-section {
        padding: 35px 0;
    }

    .checkout-stepper {
        margin-bottom: 28px;
        padding: 16px;
        border-radius: 14px;
    }

    .checkout-step {
        min-width: 145px;
    }

    .checkout-step-number {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .checkout-step-content strong {
        font-size: 13px;
    }

    .checkout-step-content small {
        font-size: 10px;
    }

    .checkout-information-card {
        padding: 22px;
        border-radius: 16px;
    }

    .checkout-information-header {
        flex-direction: column;
    }

    .checkout-information-header h1 {
        font-size: 31px;
    }

    .secure-info-badge {
        align-self: flex-start;
    }

}

@media (max-width: 575.98px) {

    .modern-checkout-section {
        padding: 25px 0;
    }

    .checkout-information-card {
        padding: 18px;
    }

    .checkout-information-header {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .checkout-information-header h1 {
        font-size: 27px;
    }

    .checkout-email-block {
        padding: 15px;
    }

    .checkout-option-card {
        padding: 17px;
    }

    .checkout-option-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 12px;
    }

    .checkout-option-content>strong {
        font-size: 15px;
    }

    .checkout-option-content>small {
        font-size: 12px;
    }

}


/* =========================================================
   DYNAMIC CHECKOUT PANELS
========================================================= */

.checkout-dynamic-panel {
    display: none;
    margin-top: 24px;
    padding: 24px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 16px;
    animation: checkoutPanelFade 0.35s ease;
}

.checkout-dynamic-panel.active {
    display: block;
}

@keyframes checkoutPanelFade {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   PANEL HEADING
========================================================= */

.checkout-panel-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.checkout-panel-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(0, 143, 140, 0.09);
    border: 1px solid rgba(0, 143, 140, 0.14);
    border-radius: 12px;
}

.checkout-panel-heading h2 {
    margin: 0 0 4px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.1;
}

.checkout-panel-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   FORM FIELDS
========================================================= */

.checkout-dynamic-panel .checkout-field {
    margin-bottom: 20px;
}

.checkout-dynamic-panel .checkout-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
}

.checkout-dynamic-panel .checkout-field input,
.checkout-dynamic-panel .checkout-field select,
.checkout-dynamic-panel .checkout-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 15px;
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    transition: all 0.25s ease;
}

.checkout-dynamic-panel .checkout-field textarea {
    min-height: 120px;
    resize: vertical;
}

.checkout-dynamic-panel .checkout-field input:hover,
.checkout-dynamic-panel .checkout-field select:hover,
.checkout-dynamic-panel .checkout-field textarea:hover {
    border-color: #cfd5d3;
}

.checkout-dynamic-panel .checkout-field input:focus,
.checkout-dynamic-panel .checkout-field select:focus,
.checkout-dynamic-panel .checkout-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 143, 140, 0.09);
}

.checkout-dynamic-panel .checkout-field input::placeholder,
.checkout-dynamic-panel .checkout-field textarea::placeholder {
    color: #a7acb4;
}


/* =========================================================
   LABEL ROW
========================================================= */

.checkout-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 8px;
}

.checkout-label-row label {
    margin-bottom: 0;
}

.forgot-password-link {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease;
}

.forgot-password-link:hover {
    color: var(--primary-dark);
}


/* =========================================================
   PASSWORD FIELD
========================================================= */

.checkout-password-wrapper {
    position: relative;
}

.checkout-password-wrapper input {
    padding-right: 48px !important;
}

.password-toggle-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    position: absolute;
    top: 50%;
    right: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-radius: 8px;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.25s ease;
}

.password-toggle-btn:hover {
    color: var(--primary);
    background: rgba(0, 143, 140, 0.08);
}

.password-toggle-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}


/* =========================================================
   CUSTOM CHECKBOX
========================================================= */

.checkout-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    cursor: pointer;
    user-select: none;
}

.checkout-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-checkbox-mark {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-top: 1px;
    position: relative;
    background: var(--white);
    border: 1.5px solid #c9cfcd;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.checkout-checkbox-mark::after {
    content: "";
    width: 5px;
    height: 9px;
    position: absolute;
    top: 3px;
    left: 6px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    opacity: 0;
    transform: rotate(45deg) scale(0.6);
    transition: all 0.2s ease;
}

.checkout-checkbox input:checked+.checkout-checkbox-mark {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 143, 140, 0.2);
}

.checkout-checkbox input:checked+.checkout-checkbox-mark::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.checkout-checkbox input:focus-visible+.checkout-checkbox-mark {
    outline: 3px solid rgba(0, 143, 140, 0.18);
    outline-offset: 2px;
}

.checkout-checkbox-text {
    color: var(--text);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   INFORMATION FOOTER
========================================================= */

.checkout-information-footer {
    margin-top: 28px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--border);
}

.back-to-cart-btn {
    min-height: 48px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.back-to-cart-btn:hover {
    color: var(--primary);
    border-color: rgba(0, 143, 140, 0.35);
    background: rgba(0, 143, 140, 0.04);
}

.back-to-cart-btn svg {
    transition: transform 0.25s ease;
}

.back-to-cart-btn:hover svg {
    transform: translateX(-3px);
}

.checkout-continue-btn {
    min-height: 50px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 143, 140, 0.18);
    transition: all 0.25s ease;
}

.checkout-continue-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 143, 140, 0.24);
}

.checkout-continue-btn:active {
    transform: translateY(0);
}

.checkout-continue-btn svg {
    transition: transform 0.25s ease;
}

.checkout-continue-btn:hover svg {
    transform: translateX(4px);
}

.checkout-continue-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}


/* =========================================================
   VALIDATION STATES
========================================================= */

.checkout-field.has-error input,
.checkout-field.has-error select,
.checkout-field.has-error textarea {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.08);
}

.checkout-field.has-success input,
.checkout-field.has-success select,
.checkout-field.has-success textarea {
    border-color: var(--success);
}

.checkout-error-message {
    display: none;
    margin-top: 7px;
    color: var(--danger);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.checkout-field.has-error .checkout-error-message {
    display: block;
}

.checkout-success-message {
    display: none;
    margin-top: 7px;
    color: var(--success);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.checkout-field.has-success .checkout-success-message {
    display: block;
}


/* =========================================================
   GLOBAL CHECKOUT ALERT
========================================================= */

.checkout-form-alert {
    display: none;
    margin-bottom: 20px;
    padding: 14px 16px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.checkout-form-alert.show {
    display: flex;
}

.checkout-form-alert.error {
    color: #a52834;
    background: #fff1f2;
    border: 1px solid #f5c2c7;
}

.checkout-form-alert.success {
    color: #176746;
    background: #edf9f4;
    border: 1px solid #bfe5d2;
}

.checkout-form-alert svg {
    flex: 0 0 auto;
    margin-top: 2px;
}


/* =========================================================
   BUTTON LOADING STATE
========================================================= */

.checkout-continue-btn.is-loading {
    pointer-events: none;
}

.checkout-continue-btn.is-loading .continue-btn-text {
    opacity: 0.8;
}

.checkout-continue-btn.is-loading svg {
    display: none;
}

.checkout-continue-btn.is-loading::after {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: checkoutButtonSpin 0.7s linear infinite;
}

@keyframes checkoutButtonSpin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   CHECKOUT-SPECIFIC ORDER PRODUCT CSS
========================================================= */

.checkout-order-summary {
    position: sticky;
    top: 100px;
}

.checkout-summary-products {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.checkout-summary-product {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
}

.summary-product-image {
    width: 64px;
    height: 64px;
    position: relative;
    overflow: visible;
    background: var(--light-two);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.summary-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}

.summary-product-qty {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    position: absolute;
    top: -8px;
    right: -8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--dark);
    border: 2px solid var(--white);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
}

.summary-product-content {
    min-width: 0;
}

.summary-product-content strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.summary-product-content small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

.summary-product-price {
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.edit-cart-link {
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    float: right;
}

.edit-cart-link:hover {
    color: var(--primary-dark);
}


/* =========================================================
   RESPONSIVE - PART 2
========================================================= */

@media (max-width: 1199.98px) {

    .checkout-order-summary {
        position: static;
    }

}

@media (max-width: 767.98px) {

    .checkout-dynamic-panel {
        padding: 20px;
    }

    .checkout-panel-heading h2 {
        font-size: 22px;
    }

    .checkout-information-footer {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .back-to-cart-btn,
    .checkout-continue-btn {
        width: 100%;
    }

}

@media (max-width: 575.98px) {

    .checkout-dynamic-panel {
        margin-top: 20px;
        padding: 16px;
        border-radius: 12px;
    }

    .checkout-panel-heading {
        align-items: flex-start;
        gap: 11px;
        margin-bottom: 18px;
        padding-bottom: 16px;
    }

    .checkout-panel-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .checkout-panel-heading h2 {
        font-size: 20px;
    }

    .checkout-label-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .checkout-information-footer {
        margin-top: 22px;
        padding-top: 20px;
    }

    .checkout-summary-product {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .summary-product-image {
        width: 56px;
        height: 56px;
    }

    .summary-product-price {
        grid-column: 2;
        margin-top: -4px;
    }

}



/* =========================================================
   DELIVERY CHECKOUT
========================================================= */

.delivery-information-card {
    overflow: visible;
}


/* =========================================================
   COMPLETED STEPPER
========================================================= */

.checkout-step.completed .checkout-step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.checkout-step.completed .checkout-step-content small,
.checkout-step.completed .checkout-step-content strong {
    color: var(--primary);
}

.checkout-step-line.completed {
    background: var(--primary);
}


/* =========================================================
   DELIVERY FORM SECTION
========================================================= */

.delivery-form-section,
.delivery-method-section,
.delivery-instructions-section {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.delivery-form-section {
    padding-top: 10px;
}

.delivery-panel-heading {
    margin-bottom: 24px;
}


/* =========================================================
   FORM LABEL OPTIONAL TEXT
========================================================= */

.checkout-field label small {
    margin-left: 5px;
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
}


/* =========================================================
   INPUTS AND SELECT
========================================================= */

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--dark);
    font-family: var(--body-font);
    font-size: 14px;
    outline: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.checkout-field input,
.checkout-field select {
    height: 52px;
    padding: 0 15px;
}

.checkout-field textarea {
    min-height: 110px;
    padding: 14px 15px;
    resize: vertical;
}

.checkout-field input::placeholder,
.checkout-field textarea::placeholder {
    color: #a2a7af;
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 143, 140, 0.09);
}


/* =========================================================
   CUSTOM SELECT
========================================================= */

.checkout-select-wrapper {
    position: relative;
}

.checkout-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 45px;
    cursor: pointer;
}

.checkout-select-wrapper>svg {
    position: absolute;
    top: 50%;
    right: 16px;
    color: var(--muted);
    pointer-events: none;
    transform: translateY(-50%);
}


/* =========================================================
   BILLING ADDRESS OPTION
========================================================= */

.delivery-billing-option {
    margin: 28px 0 0;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--light);
}

.delivery-billing-option .checkout-checkbox {
    align-items: flex-start;
}

.delivery-billing-option .checkout-checkbox-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.delivery-billing-option .checkout-checkbox-text strong {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
}

.delivery-billing-option .checkout-checkbox-text small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   BILLING ADDRESS PANEL
========================================================= */

.billing-address-panel {
    display: none;
    margin-top: 25px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--light);
}


/* =========================================================
   DELIVERY METHOD GRID
========================================================= */

.delivery-method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.delivery-method-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 108px;
    margin: 0;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    cursor: pointer;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease,
        background-color 0.25s ease;
}

.delivery-method-card:hover {
    border-color: rgba(0, 143, 140, 0.45);
    box-shadow: 0 10px 30px rgba(29, 36, 48, 0.07);
    transform: translateY(-2px);
}

.delivery-method-card.active {
    border-color: var(--primary);
    background: rgba(0, 143, 140, 0.045);
    box-shadow: 0 0 0 3px rgba(0, 143, 140, 0.08);
}

.delivery-method-card>input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}


/* =========================================================
   DELIVERY METHOD RADIO
========================================================= */

.delivery-method-radio {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 2px solid #c5c9ce;
    border-radius: 50%;
    background: var(--white);
}

.delivery-method-card.active .delivery-method-radio {
    border-color: var(--primary);
}

.delivery-method-card.active .delivery-method-radio::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    content: "";
    transform: translate(-50%, -50%);
}


/* =========================================================
   DELIVERY METHOD ICON
========================================================= */

.delivery-method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--light-two);
    color: var(--primary);
}

.delivery-method-icon svg {
    width: 22px;
    height: 22px;
}

.delivery-method-card.active .delivery-method-icon {
    background: var(--primary);
    color: var(--white);
}


/* =========================================================
   DELIVERY METHOD CONTENT
========================================================= */

.delivery-method-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.delivery-method-content strong {
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
}

.delivery-method-content small {
    margin-bottom: 8px;
    color: var(--text);
    font-size: 12px;
    line-height: 1.5;
}

.delivery-estimate {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

.delivery-method-price {
    flex: 0 0 auto;
    padding-left: 15px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
}

.delivery-method-card.active .delivery-method-price {
    color: var(--primary);
}


/* =========================================================
   DELIVERY INSTRUCTION META
========================================================= */

.checkout-field-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 8px;
}

.checkout-field-meta small,
.checkout-field-meta span {
    color: var(--muted);
    font-size: 11px;
}


/* =========================================================
   SELECTED DELIVERY SUMMARY
========================================================= */

.selected-delivery-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    padding: 14px;
    border: 1px solid rgba(0, 143, 140, 0.18);
    border-radius: 10px;
    background: rgba(0, 143, 140, 0.05);
}

.selected-delivery-summary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--primary);
    color: var(--white);
}

.selected-delivery-summary-icon svg {
    width: 22px;
    height: 22px;
}

.selected-delivery-summary div {
    display: flex;
    flex-direction: column;
}

.selected-delivery-summary small {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 13px;
}

.selected-delivery-summary strong {
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   VALIDATION
========================================================= */

.checkout-field.has-error input,
.checkout-field.has-error select,
.checkout-field.has-error textarea {
    border-color: var(--secondary);
    background: rgba(232, 74, 60, 0.025);
}

.checkout-field.has-error input:focus,
.checkout-field.has-error select:focus,
.checkout-field.has-error textarea:focus {
    box-shadow: 0 0 0 4px rgba(232, 74, 60, 0.09);
}

.checkout-field.has-success input,
.checkout-field.has-success select,
.checkout-field.has-success textarea {
    border-color: var(--primary);
}

.checkout-error-message {
    display: block;
    margin-top: 7px;
    color: var(--secondary);
    font-size: 11px;
    font-weight: 500;
}


/* =========================================================
   FORM ALERT
========================================================= */

.checkout-form-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.checkout-form-alert.error {
    border-color: rgba(232, 74, 60, 0.25);
    background: rgba(232, 74, 60, 0.07);
    color: var(--secondary);
}

.checkout-form-alert.success {
    border-color: rgba(0, 143, 140, 0.25);
    background: rgba(0, 143, 140, 0.07);
    color: var(--primary);
}

.checkout-form-alert svg {
    flex: 0 0 auto;
    margin-top: 1px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .delivery-form-section,
    .delivery-method-section,
    .delivery-instructions-section {
        padding: 22px 0;
    }

    .billing-address-panel {
        padding: 20px 16px;
    }

    .delivery-method-card {
        align-items: flex-start;
        flex-wrap: wrap;
        min-height: auto;
        padding: 17px;
    }

    .delivery-method-content {
        flex-basis: calc(100% - 100px);
    }

    .delivery-method-price {
        width: 100%;
        padding-top: 10px;
        padding-left: 80px;
    }

    .checkout-field-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

}

@media (max-width: 575px) {

    .delivery-method-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .delivery-method-content {
        flex-basis: calc(100% - 82px);
    }

    .delivery-method-price {
        padding-left: 67px;
    }

}




/* =========================================================
   CONFIRM ADDRESS SECTION
========================================================= */

.confirm-address-card {
    overflow: visible;
}


/* =========================================================
   COMPLETED STEPPER
========================================================= */

.checkout-step.completed .checkout-step-number {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.checkout-step.completed .checkout-step-content small,
.checkout-step.completed .checkout-step-content strong {
    color: var(--primary);
}

.checkout-step-line.completed {
    background: var(--primary);
}


/* =========================================================
   CONFIRM ADDRESS GRID
========================================================= */

.confirm-address-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 10px 0 20px;
}


/* =========================================================
   CONFIRM DETAIL CARD
========================================================= */

.confirm-detail-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 10px 35px rgba(29, 36, 48, 0.045);
    overflow: hidden;
}

.confirm-detail-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--light);
}

.confirm-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: normal;
}

.confirm-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(0, 143, 140, 0.09);
    color: var(--primary);
}

.confirm-card-title small {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 13px;
    font-weight: normal;
}

.confirm-card-title h2 {
    margin: 0;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}


/* =========================================================
   EDIT BUTTON
========================================================= */

.confirm-edit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid rgba(0, 143, 140, 0.22);
    border-radius: 8px;
    background: var(--white);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.confirm-edit-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}


/* =========================================================
   CONFIRM DETAIL CONTENT
========================================================= */

.confirm-detail-content {
    padding: 22px 20px;
}

.confirm-detail-content>strong {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
}

.confirm-detail-content>p {
    min-height: 54px;
    margin: 0 0 18px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   CONTACT LIST
========================================================= */

.confirm-contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.confirm-contact-list>div {
    padding: 10px 12px;
    border-radius: 9px;
    background: var(--light);
    line-height: normal;
}

.confirm-contact-list span {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.confirm-contact-list strong {
    display: block;
    color: var(--dark);
    font-size: 12px;
    font-weight: 650;
    word-break: break-word;
}


/* =========================================================
   SAME ADDRESS BADGE
========================================================= */

.same-address-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 5px 9px;
    border-radius: 50px;
    background: rgba(0, 143, 140, 0.09);
    color: var(--primary);
    font-size: 12px;
    font-weight: normal;
}


/* =========================================================
   DELIVERY CARD
========================================================= */

.confirm-delivery-card,
.confirm-instruction-card {
    margin-top: 18px;
}

.confirm-delivery-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 20px;
}

.confirm-delivery-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.confirm-delivery-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
}

.confirm-delivery-icon svg {
    width: 25px;
    height: 25px;
}

.confirm-delivery-left strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
}

.confirm-delivery-left small {
    display: block;
    color: var(--text);
    font-size: 12px;
    line-height: 1.5;
}

.confirm-delivery-price {
    color: var(--primary);
    font-size: 16px;
    font-weight: 750;
}


/* =========================================================
   DELIVERY INSTRUCTION
========================================================= */

.confirm-instruction-text {
    margin: 0;
    padding: 20px;
    color: var(--text);
    font-size: 13px;
    font-style: italic;
    line-height: 1.7;
}


/* =========================================================
   CONFIRM AGREEMENT
========================================================= */

.confirm-address-agreement {
    margin-top: 22px;
    padding: 20px;
    border: 1px solid rgba(0, 143, 140, 0.18);
    border-radius: 13px;
    background: rgba(0, 143, 140, 0.045);
}

.confirm-address-agreement.has-error {
    border-color: rgba(232, 74, 60, 0.4);
    background: rgba(232, 74, 60, 0.06);
}

.confirm-address-agreement .checkout-checkbox {
    align-items: flex-start;
}

.confirm-address-agreement .checkout-checkbox-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.confirm-address-agreement .checkout-checkbox-text strong {
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
}

.confirm-address-agreement .checkout-checkbox-text small {
    color: var(--text);
    font-size: 11px;
    line-height: 1.55;
}


/* =========================================================
   ALERT
========================================================= */

.confirm-address-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 20px;
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 13px;
    line-height: 1.5;
}

.confirm-address-alert.error {
    border-color: rgba(232, 74, 60, 0.25);
    background: rgba(232, 74, 60, 0.07);
    color: var(--secondary);
}

.confirm-address-alert.success {
    border-color: rgba(0, 143, 140, 0.25);
    background: rgba(0, 143, 140, 0.07);
    color: var(--primary);
}


/* =========================================================
   EMPTY CHECKOUT STATE
========================================================= */

.confirm-empty-state {
    padding: 35px 20px;
    border: 1px dashed var(--border);
    border-radius: 14px;
    text-align: center;
}

.confirm-empty-state h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 20px;
}

.confirm-empty-state p {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 13px;
}

.confirm-empty-state a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 9px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .confirm-address-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 575px) {

    .confirm-detail-card-header {
        align-items: flex-start;
        padding: 16px;
    }

    .confirm-card-title {
        align-items: flex-start;
    }

    .confirm-card-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .confirm-card-title h2 {
        font-size: 19px;
    }

    .confirm-detail-content {
        padding: 18px 16px;
    }

    .confirm-contact-list {
        grid-template-columns: 1fr;
    }

    .confirm-delivery-method {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 16px;
    }

    .confirm-delivery-price {
        padding-left: 62px;
    }

}


/* =========================================================
   PAYMENT METHOD SECTION
========================================================= */

.payment-method-section {
    padding-bottom: 28px;
}

.checkout-block-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.checkout-block-heading span {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-block-heading h2 {
    margin: 0;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 23px;
    font-weight: 700;
}


/* =========================================================
   PAYMENT METHOD GRID
========================================================= */

.payment-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.payment-method-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 96px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    cursor: pointer;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.payment-method-card:hover {
    border-color: rgba(0, 143, 140, 0.4);
    transform: translateY(-2px);
}

.payment-method-card.active {
    border: 2px solid var(--primary);
    background: #f4fffd;
    box-shadow: 0 10px 28px rgba(0, 143, 140, 0.08);
}

.payment-method-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-radio-indicator {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 17px;
    height: 17px;
    border: 1px solid #cfd4d7;
    border-radius: 50%;
    background: var(--white);
}

.payment-method-card.active .payment-radio-indicator {
    border: 5px solid var(--primary);
}

.payment-method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 47px;
    width: 47px;
    height: 47px;
    border-radius: 12px;
    background: rgba(0, 143, 140, 0.09);
    color: var(--primary);
    font-size: 23px;
    font-weight: 800;
}

.payment-paypal-icon {
    background: #eef5ff;
    color: #1769aa;
}

.payment-google-icon {
    background: #f5f5f5;
    color: #4285f4;
}

.payment-apple-icon {
    background: #f1f1f1;
    color: #111;
}

.payment-method-content {
    display: block;
    padding-right: 20px;
}

.payment-method-content strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}

.payment-method-content small {
    display: block;
    color: var(--text);
    font-size: 11px;
    line-height: 1.45;
}


/* =========================================================
   PAYMENT PANEL
========================================================= */

.payment-panel {
    display: none;
    margin-top: 2px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--light);
}

.payment-panel.active {
    display: block;
}


/* =========================================================
   ACCEPTED CARDS
========================================================= */

.accepted-card-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.accepted-card-list span {
    margin: 0;
    padding: 5px 7px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--white);
    color: var(--dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0;
}


/* =========================================================
   PAYMENT INPUTS
========================================================= */

.checkout-input-wrapper {
    position: relative;
}

.checkout-input-wrapper input {
    width: 100%;
    height: 52px;
    padding: 0 50px 0 44px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--dark);
    font-family: var(--body-font);
    font-size: 13px;
    outline: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.checkout-input-wrapper input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 143, 140, 0.09);
}

.checkout-input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    display: inline-flex;
    color: var(--muted);
    transform: translateY(-50%);
    pointer-events: none;
}

.detected-card-type {
    position: absolute;
    top: 50%;
    right: 14px;
    margin: 0;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    transform: translateY(-50%);
}

.cvv-toggle-btn {
    position: absolute;
    top: 50%;
    right: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 0;
    background: transparent;
    color: var(--muted);
    transform: translateY(-50%);
}

.checkout-field-help {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 10px;
}


/* =========================================================
   FIELD ERROR
========================================================= */

.checkout-field.has-error input {
    border-color: var(--secondary);
    background: rgba(232, 74, 60, 0.025);
}

.checkout-field.has-success input {
    border-color: var(--primary);
}

.checkout-error-message {
    display: block;
    margin-top: 6px;
    color: var(--secondary);
    font-size: 11px;
}


/* =========================================================
   SAVE CARD
========================================================= */

.save-card-checkbox {
    margin-top: 20px;
}


/* =========================================================
   ALTERNATIVE PAYMENT
========================================================= */

.alternative-payment-box {
    padding: 25px;
    text-align: center;
}

.alternative-payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 27px;
    font-weight: 800;
}

.alternative-payment-box h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
}

.alternative-payment-box p {
    max-width: 470px;
    margin: 0 auto;
    color: var(--text);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   BILLING SUMMARY
========================================================= */

.payment-billing-summary {
    margin-top: 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.payment-summary-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--light);
}

.payment-summary-heading>div {
    display: flex;
    align-items: center;
    gap: 11px;
}

.payment-summary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 143, 140, 0.09);
    color: var(--primary);
}

.payment-summary-heading small {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 9px;
    text-transform: uppercase;
}

.payment-summary-heading strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
}

.payment-summary-heading a {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.payment-billing-content {
    padding: 18px;
}

.payment-billing-content strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 14px;
}

.payment-billing-content p {
    margin: 0 0 7px;
    color: var(--text);
    font-size: 12px;
    line-height: 1.6;
}

.payment-billing-content span {
    color: var(--muted);
    font-size: 11px;
}


/* =========================================================
   PAYMENT TERMS
========================================================= */

.payment-terms-box {
    margin-top: 20px;
    padding: 18px;
    border: 1px solid rgba(0, 143, 140, 0.2);
    border-radius: 13px;
    background: rgba(0, 143, 140, 0.045);
}

.payment-terms-box.has-error {
    border-color: rgba(232, 74, 60, 0.45);
    background: rgba(232, 74, 60, 0.06);
}


/* =========================================================
   PAYMENT ADDRESS MINI
========================================================= */

.payment-address-mini {
    margin-top: 18px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--light);
}

.payment-address-mini-heading {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 8px;
}

.payment-address-mini-heading span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.payment-address-mini-heading a {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.payment-address-mini>strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 15px;
}

.payment-address-mini>p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   SECURITY LIST
========================================================= */

.payment-security-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.payment-security-list>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-security-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 143, 140, 0.09);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}

.payment-security-list strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
}

.payment-security-list small {
    display: block;
    color: var(--muted);
    font-size: 12px;
}


/* =========================================================
   PAYMENT ALERT
========================================================= */

.payment-form-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 13px;
}

.payment-form-alert.error {
    border-color: rgba(232, 74, 60, 0.25);
    background: rgba(232, 74, 60, 0.07);
    color: var(--secondary);
}

.payment-form-alert.success {
    border-color: rgba(0, 143, 140, 0.25);
    background: rgba(0, 143, 140, 0.07);
    color: var(--primary);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .payment-method-grid {
        grid-template-columns: 1fr;
    }

    .payment-panel {
        padding: 20px 16px;
    }

    .checkout-block-heading {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 575px) {

    .payment-method-card {
        min-height: 88px;
        padding: 15px;
    }

    .payment-method-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .payment-summary-heading {
        align-items: flex-start;
    }

}


/* =========================================================
           SUCCESS PAGE
        ========================================================= */

.checkout-success-section {
    position: relative;
    padding: 48px 0 80px;
    overflow: hidden;
}

.checkout-success-section::before,
.checkout-success-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.checkout-success-section::before {
    width: 280px;
    height: 280px;
    top: -120px;
    left: -90px;
    background: rgba(0, 143, 140, .09);
}

.checkout-success-section::after {
    width: 220px;
    height: 220px;
    top: 180px;
    right: -90px;
    background: rgba(243, 162, 47, .09);
}

/* =========================================================
           HERO
        ========================================================= */

.success-hero {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 44px 28px;
    border: 1px solid rgba(0, 143, 140, .16);
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 24px 70px rgba(29, 36, 48, .08);
    text-align: center;
    backdrop-filter: blur(8px);
}

.success-icon-wrap {
    position: relative;
    display: inline-flex;
    width: 96px;
    height: 96px;
    margin-bottom: 22px;
    align-items: center;
    justify-content: center;
}

.success-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0, 143, 140, .10);
    animation: pulseRing 2s infinite;
}

.success-icon {
    position: relative;
    display: inline-flex;
    width: 76px;
    height: 76px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 16px 34px rgba(0, 143, 140, .28);
    animation: successPop .55s ease both;
}

@keyframes pulseRing {

    0%,
    100% {
        transform: scale(1);
        opacity: .7
    }

    50% {
        transform: scale(1.12);
        opacity: .25
    }
}

@keyframes successPop {
    from {
        transform: scale(.55);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.success-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 143, 140, .08);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.success-hero h1 {
    margin: 0 0 10px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.05;
}

.success-hero p {
    max-width: 650px;
    margin: 0 auto 20px;
    font-size: 15px;
    line-height: 1.7;
}

.order-number-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--light);
    color: var(--dark);
    font-size: 13px;
}

.order-number-chip span {
    color: var(--muted)
}

.order-number-chip strong {
    font-weight: 800;
    letter-spacing: .03em
}

/* =========================================================
           STATUS STRIP
        ========================================================= */

.success-status-strip {
    display: flex;
    justify-content: center;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 25px;
}

.success-status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    line-height: normal;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(29, 36, 48, .04);
    text-align: left;
}

.success-status-item>span {
    display: inline-flex;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 143, 140, .10);
    color: var(--primary);
    font-weight: 800;
}

.success-status-item strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
}

.success-status-item small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

/* =========================================================
           CONTENT CARDS
        ========================================================= */

.success-card {
    margin-bottom: 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 42px rgba(29, 36, 48, .05);
    overflow: hidden;
}

.success-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 20px;
    line-height: normal;
    border-bottom: 1px solid var(--border);
    background: var(--light);
}

.success-card-header small {
    display: block;
    margin-bottom: 2px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.success-card-header h2 {
    margin: 0;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
}

.success-card-body {
    padding: 20px
}

/* =========================================================
           ORDER DETAILS
        ========================================================= */

.order-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.order-detail-item {
    padding: 10px 15px;
    border-radius: 12px;
    background: var(--light);
    line-height: normal;
}

.order-detail-item span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.order-detail-item strong {
    color: var(--dark);
    font-size: 13px;
}

/* =========================================================
           ADDRESS
        ========================================================= */

.address-card-content strong {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 15px;
}

.address-card-content p {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.7;
}

.address-card-content span {
    color: var(--muted);
    font-size: 12px;
}

.same-address-tag {
    display: none;
    margin-bottom: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(0, 143, 140, .09);
    color: var(--primary) !important;
    font-size: 10px !important;
    font-weight: 700;
}

/* =========================================================
           PRODUCT SUMMARY
        ========================================================= */

.success-product {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 14px;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.success-product-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light);
}

.success-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-product-content strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 13px;
}

.success-product-content small {
    color: var(--muted);
    font-size: 12px;
}

.success-product-price {
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
}

.price-summary {
    display: grid;
    gap: 11px;
    padding-top: 18px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
}

.price-row strong {
    color: var(--dark)
}

.price-row.total {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 16px;
    font-weight: 700;
}

.price-row.total strong {
    color: var(--primary);
    font-size: 21px;
}

/* =========================================================
           TIMELINE
        ========================================================= */

.order-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.order-timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border);
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.timeline-step span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.timeline-step.active span,
.timeline-step.completed span {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.timeline-step strong {
    display: block;
    margin-top: 10px;
    color: var(--dark);
    font-size: 11px;
}

.timeline-step small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px;
}

/* =========================================================
           ACTIONS
        ========================================================= */

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

.success-btn {
    display: inline-flex;
    min-height: 48px;
    padding: 12px 20px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: .25s ease;
}

.success-btn.primary {
    background: var(--primary);
    color: #fff;
}

.success-btn.primary:hover {
    background: var(--primary-dark);
    color: #fff
}

.success-btn.secondary {
    border-color: var(--border);
    background: #fff;
    color: var(--dark);
}

.success-btn.secondary:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.success-btn.outline {
    border-color: rgba(0, 143, 140, .35);
    background: rgba(0, 143, 140, .04);
    color: var(--primary);
}

/* =========================================================
           HELP BOX
        ========================================================= */

.success-help-box {
    margin-top: 24px;
    padding: 22px;
    border-radius: 16px;
    background: var(--dark);
    color: #fff;
    text-align: center;
}

.success-help-box h3 {
    margin: 0 0 6px;
    font-family: var(--heading-font);
    font-size: 25px;
    color: var(--white);
}

.success-help-box p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
}

.success-help-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
}

.success-help-links a {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

/* =========================================================
           RESPONSIVE
        ========================================================= */

@media(max-width:991px) {
    .success-status-strip {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

@media(max-width:767px) {
    .checkout-success-section {
        padding-top: 28px
    }

    .success-hero {
        padding: 34px 18px
    }

    .order-detail-grid {
        grid-template-columns: 1fr
    }

    .order-timeline {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .order-timeline::before {
        display: none
    }

    .timeline-step {
        display: grid;
        grid-template-columns: 40px 1fr;
        text-align: left;
        column-gap: 12px
    }

    .timeline-step span {
        grid-row: 1/3
    }

    .timeline-step strong {
        margin-top: 2px
    }

    .success-product {
        grid-template-columns: 58px 1fr
    }

    .success-product-image {
        width: 58px;
        height: 58px
    }

    .success-product-price {
        grid-column: 2
    }
}

@media(max-width:575px) {
    .success-card-header {
        align-items: flex-start;
        flex-direction: column
    }

    .success-actions {
        flex-direction: column
    }

    .success-btn {
        width: 100%
    }
}



/* =========================================================
           PAGE BANNER
========================================================= */

.contact-page-banner {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    color: #fff;
    background:
        radial-gradient(circle at 84% 24%, rgba(255, 255, 255, .18), transparent 21%),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.contact-page-banner:before,
.contact-page-banner:after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
}

.contact-page-banner:before {
    width: 260px;
    height: 260px;
    right: -70px;
    top: -100px;
}

.contact-page-banner:after {
    width: 170px;
    height: 170px;
    right: 150px;
    bottom: -110px;
}

.contact-page-banner h1 {
    margin: 0 0 12px;
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.contact-page-banner p {
    max-width: 710px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .8);
    font-size: 15px;
    line-height: 1.5;
}


.contact-banner-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: auto;
    text-align: center;
}


/* =========================================================
           CONTACT AREA
        ========================================================= */

.contact-page-section {
    padding: 50px 0;
    background: var(--white);
}

.contact-info-column {
    height: 100%;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
    box-shadow: 0 20px 55px rgba(29, 36, 48, .06);
}

.section-mini-title {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.contact-info-column h2,
.contact-form-card h2 {
    margin: 0 0 12px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
}

.contact-info-column>p,
.contact-form-card>p {
    margin: 0 0 28px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.75;
}

.contact-info-list {
    display: grid;
    gap: 14px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 15px;
    line-height: normal;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 143, 140, .28);
    box-shadow: 0 12px 26px rgba(0, 143, 140, .08);
}

.contact-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 143, 140, .09);
    color: var(--primary);
}

.contact-info-item strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}

.contact-info-item a,
.contact-info-item span {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.contact-social span {
    margin-right: 5px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
}

.contact-social .footerSocial {
    margin: 0;

}

/* =========================================================
           CONTACT FORM
        ========================================================= */

.contact-form-card {
    height: 100%;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 20px 55px rgba(29, 36, 48, .07);
}

.contact-field {
    margin-bottom: 16px;
}

.contact-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}

.contact-field label span {
    color: var(--secondary);
}

.contact-input-wrap {
    position: relative;
}

.contact-input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    display: inline-flex;
    color: var(--muted);
    transform: translateY(-50%);
    pointer-events: none;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--light);
    color: var(--dark);
    font-family: var(--body-font);
    font-size: 14px;
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.contact-field input,
.contact-field select {
    height: 45px;
    padding: 0 15px 0 44px;
}

.contact-field select {
    cursor: pointer;
}

.contact-field textarea {
    min-height: 110px;
    padding: 14px 15px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 143, 140, .09);
}

.contact-field.has-error input,
.contact-field.has-error select,
.contact-field.has-error textarea {
    border-color: var(--secondary);
    background: rgba(232, 74, 60, .025);
}

.contact-field-error {
    display: block;
    margin-top: 6px;
    color: var(--secondary);
    font-size: 13px;
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 8px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 165px;
    height: 50px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    transition: .25s ease;
}

.contact-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 143, 140, .23);
}

.contact-submit-btn:disabled {
    cursor: not-allowed;
    opacity: .72;
    transform: none;
}

.contact-btn-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: contactSpin .75s linear infinite;
}

.contact-submit-btn.is-loading .contact-btn-loader {
    display: inline-block;
}

.contact-submit-btn.is-loading svg {
    display: none;
}

@keyframes contactSpin {
    to {
        transform: rotate(360deg);
    }
}

.contact-form-alert {
    display: none;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 11px;
    font-size: 12px;
    line-height: 1.55;
}

.contact-form-alert.success {
    display: flex;
    border: 1px solid rgba(0, 143, 140, .2);
    background: rgba(0, 143, 140, .07);
    color: var(--primary);
}

.contact-form-alert.error {
    display: flex;
    border: 1px solid rgba(232, 74, 60, .2);
    background: rgba(232, 74, 60, .07);
    color: var(--secondary);
}

/* =========================================================
           MAP & SUPPORT
        ========================================================= */

.contact-map-section {
    padding: 0 0 90px;
}

.contact-map-wrap {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--light);
    box-shadow: 0 18px 48px rgba(29, 36, 48, .06);
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    min-height: 430px;
    border: 0;
    filter: grayscale(.12);
}


/* =========================================================
           RESPONSIVE
        ========================================================= */

@media (max-width:991px) {
    .contact-page-banner {
        padding: 80px 0;
    }

    .contact-info-column,
    .contact-form-card {
        padding: 26px;
    }

    .contact-support-actions {
        justify-content: flex-start;
        margin-top: 18px;
    }
}

@media (max-width:575px) {
    .contact-page-section {
        padding: 65px 0;
    }

    .contact-page-banner {
        padding: 68px 0;
    }

    .contact-banner-content h1 {
        font-size: 43px;
    }

    .contact-info-column,
    .contact-form-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .contact-info-column h2,
    .contact-form-card h2 {
        font-size: 31px;
    }

    .contact-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-submit-btn {
        width: 100%;
    }

    .contact-map-wrap iframe {
        min-height: 340px;
    }

}


/* =========================================================
           LOGIN PAGE
        ========================================================= */

.login-page {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.login-page::before,
.login-page::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.login-page::before {
    width: 360px;
    height: 360px;
    top: -190px;
    right: 7%;
    border: 1px solid rgba(0, 143, 140, .13);
}

.login-page::after {
    width: 240px;
    height: 240px;
    left: 4%;
    bottom: -120px;
    background: rgba(0, 143, 140, .045);
}

.login-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(231, 232, 232, .95);
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(29, 36, 48, .12);
    max-width: 850px;
    margin: 0 auto;
}

/* =========================================================
           LEFT VISUAL
        ========================================================= */

.login-visual {
    position: relative;
    height: 100%;
    padding: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    background:
        linear-gradient(160deg, rgba(0, 109, 106, .94), rgba(0, 143, 140, .86)),
        url("../images/about1.webp") center/cover no-repeat;
}

.login-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, .16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .14));
}

.login-brand,
.login-visual-content,
.login-visual-footer {
    position: relative;
    z-index: 2;
}

.login-brand {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    padding: 15px;
    max-width: max-content;
    border-radius: 12px;
    margin-bottom: 10px;
}

.login-brand img {
    max-width: 150px;
}

.login-visual-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    background: rgba(255, 255, 255, .09);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.login-visual-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.login-visual-content h1 {
    max-width: 520px;
    margin: 0 0 16px;
    font-family: var(--heading-font);
    color: var(--white);
    font-size: 30px;
    font-weight: 700;
    line-height: .98;
}

.login-visual-content p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.8;
}

.login-benefits {
    display: grid;
    gap: 10px;
    margin-top: 15px;
}

.login-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, .88);
}

.login-benefit-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
}

.login-visual-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: var(--white);
    font-size: 14px;
}

/* =========================================================
           LOGIN FORM
        ========================================================= */

.login-form-area {
    height: 100%;
    padding: 25px 25px 25px 10px;
    display: flex;
    align-items: center;
    background: var(--white);
}

.login-form-inner {
    width: 100%;
    margin: auto;
}


.login-form-heading {
    margin-bottom: 26px;
}

.login-form-heading span {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.login-form-heading h2 {
    margin: 0 0 8px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.login-form-heading p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

.login-alert {
    display: none;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    line-height: normal;
}

.login-alert.error {
    display: flex;
    color: var(--secondary);
    background: rgba(232, 74, 60, .07);
    border: 1px solid rgba(232, 74, 60, .18);
}

.login-alert.success {
    display: flex;
    color: var(--primary);
    background: rgba(0, 143, 140, .07);
    border: 1px solid rgba(0, 143, 140, .18);
}

.login-field {
    margin-bottom: 16px;
}

.login-field label {
    align-items: center;
    gap: 12px;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}

.login-field label span {
    color: var(--secondary);
}

.login-input-wrap {
    position: relative;
}

.login-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    color: var(--muted);
    pointer-events: none;
}

.login-field input {
    width: 100%;
    height: 52px;
    padding: 0 45px 0 44px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--light);
    color: var(--dark);
    font-family: var(--body-font);
    font-size: 12px;
    outline: none;
    transition: .25s ease;
}

.login-field input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 143, 140, .09);
}

.login-field.has-error input {
    border-color: var(--secondary);
    background: rgba(232, 74, 60, .025);
}

.login-field-error {
    display: block;
    margin-top: 6px;
    color: var(--secondary);
    font-size: 13px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    display: inline-flex;
    cursor: pointer;
}

.password-toggle:hover {
    color: var(--primary);
}

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 2px 0 22px;
}

.login-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 13px;
    cursor: pointer;
}

.login-check input {
    width: 15px;
    height: 15px;
    accent-color: var(--primary);
}

.forgot-password-link {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.forgot-password-link:hover {
    color: var(--primary-dark);
}

.login-submit-btn {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: .25s ease;
}

.login-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 143, 140, .22);
}

.login-submit-btn:disabled {
    cursor: not-allowed;
    opacity: .72;
    transform: none;
}

.login-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: loginSpin .75s linear infinite;
}

.login-submit-btn.is-loading .login-loader {
    display: inline-block;
}

.login-submit-btn.is-loading svg {
    display: none;
}

@keyframes loginSpin {
    to {
        transform: rotate(360deg);
    }
}

.login-register-text {
    margin: 24px 0 0;
    text-align: center;
    color: var(--text);
    font-size: 14px;
}

.login-register-text a {
    color: var(--primary);
    font-weight: 700;
}

/* =========================================================
           RESPONSIVE
        ========================================================= */

@media (max-width:991px) {
    .login-page {
        padding: 24px 0;
    }


    .login-form-area {
        min-height: auto;
    }
}

@media (max-width:575px) {
    .login-page {
        padding: 14px 0;
    }

    .login-wrapper {
        border-radius: 18px;
    }

    .login-visual-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .login-form-area {
        padding: 36px 20px;
    }

    .login-back-link {
        margin-bottom: 28px;
    }

    .login-options {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }


}

/* =========================================================
           REGISTER PAGE
        ========================================================= */

.register-page {
    position: relative;
    min-height: 100vh;
    padding: 40px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.register-page::before,
.register-page::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.register-page::before {
    width: 360px;
    height: 360px;
    top: -190px;
    right: 7%;
    border: 1px solid rgba(0, 143, 140, .13);
}

.register-page::after {
    width: 240px;
    height: 240px;
    left: 4%;
    bottom: -120px;
    background: rgba(0, 143, 140, .045);
}

.register-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(231, 232, 232, .95);
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(29, 36, 48, .12);
    max-width: 980px;
    margin: 0 auto;
}

/* =========================================================
           LEFT VISUAL
        ========================================================= */

.register-visual {
    position: relative;
    height: 100%;
    padding: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    background: linear-gradient(160deg, rgba(0, 109, 106, .94), rgba(0, 143, 140, .86)),
        url("../images/about1.webp") center/cover no-repeat;
}

.register-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, .16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .14));
}

.register-brand,
.register-visual-content,
.register-visual-footer {
    position: relative;
    z-index: 2;
}

.register-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.register-brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .24);
    backdrop-filter: blur(8px);
}

.register-visual-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    background: rgba(255, 255, 255, .09);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.register-visual-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.register-visual-content h1 {
    max-width: 520px;
    margin: 0 0 16px;
    font-family: var(--heading-font);
    color: var(--white);
    font-size: 30px;
    font-weight: 700;
    line-height: .98;
}

.register-visual-content p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.8;
}

.register-benefits {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.register-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, .88);
}

.register-benefit-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
}

.register-visual-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: var(--white);
    font-size: 14px;
}

/* =========================================================
           REGISTER FORM
        ========================================================= */

.register-form-area {
    height: 100%;
    padding: 25px 25px 25px 10px;
    display: flex;
    align-items: center;
    background: var(--white);
}

.register-form-inner {
    width: 100%;
    margin: auto;
}


.register-form-heading {
    margin-bottom: 15px;
}

.register-form-heading span {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.register-form-heading h2 {
    margin: 0 0 8px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.register-form-heading p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

.register-alert {
    display: none;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 18px;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.register-alert.error {
    display: flex;
    color: var(--secondary);
    background: rgba(232, 74, 60, .07);
    border: 1px solid rgba(232, 74, 60, .18);
}

.register-alert.success {
    display: flex;
    color: var(--primary);
    background: rgba(0, 143, 140, .07);
    border: 1px solid rgba(0, 143, 140, .18);
}

.register-field {
    margin-bottom: 15px;
}

.register-field label {
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}

.register-field label span {
    color: var(--secondary);
}

.register-input-wrap {
    position: relative;
}

.register-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    color: var(--muted);
    pointer-events: none;
}

.register-input-icon svg {
    width: 18px;
    height: 18px;
}

.register-field input {
    width: 100%;
    height: 50px;
    padding: 0 45px 0 44px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--light);
    color: var(--dark);
    font-family: var(--body-font);
    font-size: 13px;
    outline: none;
    transition: .25s ease;
}

.register-field input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 143, 140, .09);
}

.register-field.has-error input {
    border-color: var(--secondary);
    background: rgba(232, 74, 60, .025);
}

.register-field-error {
    display: block;
    margin-top: 6px;
    color: var(--secondary);
    font-size: 13px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    display: inline-flex;
    cursor: pointer;
}

.password-toggle:hover {
    color: var(--primary);
}

.password-strength {
    margin-top: 8px;
}

.strength-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.strength-track span {
    height: 4px;
    border-radius: 10px;
    background: var(--border);
    transition: .25s ease;
}

.strength-text {
    margin-top: 5px;
    font-size: 11px;
    color: var(--muted);
}

.password-strength.weak .strength-track span:nth-child(1) {
    background: var(--secondary);
}

.password-strength.fair .strength-track span:nth-child(-n+2) {
    background: var(--accent);
}

.password-strength.good .strength-track span:nth-child(-n+3) {
    background: #5aaa72;
}

.password-strength.strong .strength-track span {
    background: var(--primary);
}

.register-check {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 15px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
}

.register-check input {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    margin-top: 1px;
    accent-color: var(--primary);
}

.register-check a {
    color: var(--primary);
    font-weight: 700;
}

.register-submit-btn {
    width: 100%;
    height: 52px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: .25s ease;
}

.register-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 143, 140, .22);
}

.register-submit-btn:disabled {
    cursor: not-allowed;
    opacity: .72;
    transform: none;
}

.register-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: registerSpin .75s linear infinite;
}

.register-submit-btn.is-loading .register-loader {
    display: inline-block;
}

.register-submit-btn.is-loading svg {
    display: none;
}

@keyframes registerSpin {
    to {
        transform: rotate(360deg);
    }
}

.register-login-text {
    margin: 22px 0 0;
    text-align: center;
    color: var(--text);
    font-size: 14px;
}

.register-login-text a {
    color: var(--primary);
    font-weight: 700;
}

/* =========================================================
           RESPONSIVE
        ========================================================= */

@media (max-width:991px) {
    .register-page {
        padding: 24px 0;
    }


    .register-form-area {
        min-height: auto;
        padding: 44px 34px;
    }
}

@media (max-width:575px) {
    .register-page {
        padding: 14px 0;
    }

    .register-wrapper {
        border-radius: 18px;
    }


    .register-visual-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .register-form-area {
        padding: 36px 20px;
    }

    .register-back-link {
        margin-bottom: 24px;
    }


}


#resetMsg {
    display: none;
    margin-bottom: 20px;
}

.login-alert-success {
    background: #e8f8f4;
    color: #008f8c;
    border: 1px solid rgba(0, 143, 140, .25);
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
}

.login-alert-error {
    background: #fff1f1;
    color: #e84a3c;
    border: 1px solid rgba(232, 74, 60, .25);
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
}

/* =========================================================
   ACCOUNT BREADCRUMB
========================================================= */

.account-layout {
    padding: 28px 0 55px
}

.account-sidebar {
    position: sticky;
    top: 102px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 44px rgba(29, 36, 48, .08);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px 15px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border);
    line-height: normal;
}

.sidebar-user .userImg img,
.sidebar-user .userImg {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: var(--primary);
    color: var(--white);
}

.sidebar-user .userName {
    margin: 0 0 3px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 700
}

.sidebar-user p {
    margin: 0;
    font-size: 13px;
    color: var(--muted)
}

.account-menu {
    display: grid;
    gap: 5px
}

.account-menu a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 13px;
    border-radius: 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    transition: .25s
}

.account-menu a:hover {
    color: var(--primary);
    background: rgba(0, 143, 140, .06)
}

.account-menu a.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 10px 22px rgba(0, 143, 140, .2)
}

.account-menu a.logout-link {
    margin-top: 8px;
    color: var(--secondary);
    border: 1px solid rgba(232, 74, 60, .12);
    background: rgba(232, 74, 60, .04)
}

.welcome-card {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border-radius: 24px;
    color: #fff;
    background: radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .22), transparent 24%), linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 20px 46px rgba(0, 143, 140, .2)
}

.welcome-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 11px;
    padding: 6px 15px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    background: rgba(255, 255, 255, .09);
    font-size: 13px;
    font-weight: normal;
    letter-spacing: .07em;
}

.welcome-card h1 {
    margin: 0 0 7px;
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.welcome-card p {
    max-width: 590px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.5
}

.welcome-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px
}

.welcome-btn {
    min-height: 42px;
    padding: 0 25px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary-dark);
    background: #fff;
    font-size: 14px;
    font-weight: normal
}

.welcome-btn.secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .09)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 18px 0
}

.stat-card {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(29, 36, 48, .05);
    transition: .25s;
    display: flex;
    gap: 15px;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.stat-icon {
    width: 39px;
    height: 39px;
    margin-bottom: 5px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(0, 143, 140, .08)
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.statInfo {
    line-height: normal;
}

.stat-card .statTitle {
    margin: 0;
    color: var(--dark);
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
}

.stat-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.dashboard-card {
    padding: 21px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(29, 36, 48, .055);
    margin-bottom: 20px;
}

.card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px
}

.card-head span {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

.card-head h3 {
    margin: 0;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 700
}

.card-link {
    color: var(--primary);
    font-size: 9px;
    font-weight: 700
}

/* ============================================================
   PERSONAL INFORMATION
============================================================ */

.profile-info-card {
    margin-top: 25px;
}

.profile-item {
    height: 100%;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    transition: .3s;
    line-height: normal;

}

.profile-item:hover {

    border-color: rgba(0, 143, 140, .25);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .05);

}

.profile-item label {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;

}

.profile-item p {
    margin: 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;

}

.gender-badge-wrap {

    display: flex;
    gap: 10px;

}

.gender-badge {

    padding: 8px 18px;
    border-radius: 40px;
    background: #f4f6f8;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;

}

.gender-badge.active {

    background: var(--primary);
    color: #fff;

}

.edit-profile-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: .3s;

}

.edit-profile-btn:hover {

    background: var(--primary-dark);
    color: #fff;

}

@media(max-width:767px) {

    .profile-item {
        padding: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);

    }
}


/* ============================================================
   MY ORDERS
============================================================ */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hero-stat {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    background: rgba(255, 255, 255, .09)
}

.hero-stat strong {
    display: block;
    font-size: 24px
}

.hero-stat small {
    font-size: 13px;
    color: var(--white)
}


.orders-toolbar {
    margin: 18px 0;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(29, 36, 48, .045)
}

.order-search {
    position: relative
}

.order-search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted)
}

.order-search input,
.order-filter {
    width: 100%;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 11px;
    outline: 0;
    background: #fff;
    color: var(--dark);
    font-size: 14px
}

.order-search input {
    padding: 0 15px 0 41px
}

.order-filter {
    padding: 0 13px
}

.orders-list {
    display: grid;
    gap: 16px
}

.order-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(29, 36, 48, .05);
    transition: .25s
}

.order-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.order-card-top {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #fff, #fbfcfc)
}

.order-top-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    line-height: normal;
}

.order-meta small {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 14px;
}

.order-meta strong {
    color: var(--dark);
    font-size: 13px
}

.order-status {
    min-width: 84px;
    padding: 6px 15px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600
}

.order-status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor
}

.delivered {
    color: var(--primary-dark);
    background: rgba(0, 143, 140, .1)
}

.processing {
    color: #9a6800;
    background: rgba(243, 162, 47, .16)
}

.shipped {
    color: #5164bb;
    background: rgba(81, 100, 187, .1)
}

.cancelled {
    color: var(--secondary);
    background: rgba(232, 74, 60, .09)
}

.order-card-body {
    padding: 18px
}

.order-product {
    display: flex;
    align-items: center;
    gap: 14px;
    line-height: normal;
}

.order-product img {
    width: 82px;
    height: 82px;
    border-radius: 14px;
    object-fit: cover;
    background: var(--light-two);
    border: 1px solid var(--border);
}

.order-product h4 {
    margin: 0 0 6px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700
}

.order-product p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 14px
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.product-tags span {
    padding: 5px 10px;
    border-radius: 12px;
    background: var(--light-two);
    font-size: 13px;
    line-height: normal;
    font-weight: normal
}

.delivery-box {
    height: 100%;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(0, 143, 140, .1);
    background: linear-gradient(135deg, #f4fbfa, #fcfefe);
    line-height: normal;
}

.delivery-box span {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.delivery-box strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 13px
}

.delivery-box p {
    margin: 0;
    color: var(--muted);
    font-size: 12px
}

.order-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px
}

.order-btn {
    min-height: 35px;
    padding: 0 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: #fff;
    font-size: 13px;
    font-weight: normal
}

.order-btn.primary {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary)
}

.order-card-bottom {
    padding: 13px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    background: #fcfdfd;
    font-size: 13px
}

.order-card-bottom strong {
    color: var(--dark)
}

.help-link {
    color: var(--primary);
    font-weight: 700
}

.orders-empty {
    display: none;
    padding: 55px 25px;
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    background: #fff
}

.orders-empty h3 {
    font-family: var(--heading-font);
    color: var(--dark);
    font-size: 28px
}

.mobile-account-btn {
    display: none;
    width: 100%;
    min-height: 46px;
    margin-bottom: 15px;
    padding: 0 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    color: var(--dark);
    font-size: 11px;
    font-weight: 700
}

@media(max-width:991px) {
    .desktop-sidebar {
        display: none
    }

    .mobile-account-btn {
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .hero-stats {
        margin-top: 20px
    }
}

@media(max-width:767px) {
    .orders-hero {
        padding: 22px
    }

    .order-card-top {
        align-items: flex-start;
        flex-direction: column
    }

    .order-top-left {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 13px
    }

    .order-actions {
        justify-content: flex-start;
        margin-top: 12px
    }

    .order-card-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px
    }
}


/* ============================================================
   TRACK ORDER
============================================================ */

.track-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.track-summary-card {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    background: rgba(255, 255, 255, .09);
    line-height: normal;
}

.track-summary-card small {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
}

.track-summary-card strong {
    font-size: 14px
}

.track-card {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow)
}

.track-search-card label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 10px;
    font-weight: 700
}

.track-input-wrap {
    position: relative
}

.track-input-wrap svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted)
}

.track-input {
    width: 100%;
    height: 46px;
    padding: 0 14px 0 42px;
    border: 1px solid var(--border);
    border-radius: 11px;
    outline: 0;
    color: var(--dark);
    font-size: 11px
}

.track-input:focus {
    border-color: rgba(0, 143, 140, .45);
    box-shadow: 0 0 0 3px rgba(0, 143, 140, .07)
}

.track-btn {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    font-size: 10px;
    font-weight: 700
}

.track-message {
    display: none;
    margin-top: 12px;
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 10px
}

.track-message.error {
    display: block;
    color: var(--secondary);
    border: 1px solid rgba(232, 74, 60, .18);
    background: rgba(232, 74, 60, .06)
}

.track-message.success {
    display: block;
    color: var(--primary-dark);
    border: 1px solid rgba(0, 143, 140, .18);
    background: rgba(0, 143, 140, .06)
}

.track-card {
    padding: 22px;
    border-radius: 20px
}

.section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
    line-height: normal;
}

.section-head span {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

.section-head h3 {
    margin: 0;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700
}

.status-badge {
    min-width: 92px;
    padding: 6px 15px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #5164bb;
    background: rgba(81, 100, 187, .1);
    font-size: 13px;
    font-weight: 600
}

.status-badge:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor
}

.order-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
}

.order-meta-item {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: linear-gradient(180deg, #fff, #fbfcfc);
    line-height: normal;
}

.order-meta-item small {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 13px;
}

.order-meta-item strong {
    color: var(--dark);
    font-size: 14px
}

.tracking-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 26px
}

.tracking-timeline:before {
    content: "";
    position: absolute;
    top: 21px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e9eeee;
    z-index: 0
}

.tracking-timeline:after {
    content: "";
    position: absolute;
    top: 21px;
    left: 10%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #32aaa7);
    z-index: 1
}

.track-step {
    position: relative;
    z-index: 2;
    text-align: center
}

.track-step-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    border: 4px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #d7dddd;
    box-shadow: 0 0 0 1px var(--border)
}

.track-step.completed .track-step-icon {
    background: var(--primary)
}

.track-step.current .track-step-icon {
    background: #5164bb;
    box-shadow: 0 0 0 6px rgba(81, 100, 187, .09)
}

.track-step strong {
    display: block;
    color: var(--dark);
    font-size: 13px
}

.track-step span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45
}

.shipment-product {
    display: flex;
    align-items: center;
    gap: 14px
}

.shipment-product-image {
    width: 84px;
    height: 84px;
    flex: 0 0 84px;
    overflow: hidden;
    border-radius: 14px;
    background: var(--light-two)
}

.shipment-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.shipment-product h4 {
    margin: 0 0 6px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700
}

.shipment-product p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 13px
}

.shipment-info {
    height: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 143, 140, .11);
    border-radius: 15px;
    background: linear-gradient(135deg, #f4fbfa, #fcfefe);
    line-height: normal;
    height: max-content;
}

.shipment-info span {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

.shipment-info strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 15px
}

.shipment-info p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55
}

.support-actions {
    display: grid;
    gap: 8px
}

.support-btn {
    min-height: 40px;
    padding: 0 13px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: #fff;
    font-size: 14px;
    font-weight: normal
}

.support-btn.primary {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary)
}


@media(max-width:991px) {
    .demo-nav {
        display: none
    }

    .track-summary {
        margin-top: 20px
    }

    .order-meta-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:767px) {
    .account-breadcrumb-inner {
        align-items: flex-start;
        flex-direction: column
    }

    .account-breadcrumb h1 {
        font-size: 34px
    }

    .track-hero {
        padding: 22px
    }

    .track-hero h2 {
        font-size: 30px
    }

    .tracking-timeline {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 18px
    }

    .tracking-timeline:before,
    .tracking-timeline:after {
        display: none
    }

    .track-step {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 12px;
        text-align: left;
        align-items: center
    }

    .track-step-icon {
        margin: 0
    }

    .track-card {
        padding: 18px
    }
}

@media(max-width:480px) {
    .order-meta-grid {
        grid-template-columns: 1fr
    }

    .track-summary {
        grid-template-columns: 1fr 1fr
    }

    .shipment-product {
        align-items: flex-start
    }

    .shipment-product-image {
        width: 68px;
        height: 68px;
        flex-basis: 68px
    }
}

/* =========================================================
           ORDER DETAILS
        ========================================================= */

.details-card {
    margin-top: 18px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
}

.details-card .order-product {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}


.order-product:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.order-product-image {
    width: 86px;
    height: 86px;
    flex: 0 0 86px;
    overflow: hidden;
    border-radius: 14px;
    background: var(--light-two);
}

.order-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-product-info {
    min-width: 0;
    flex: 1;
}

.order-product-info h4 {
    margin: 0 0 6px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
}

.order-product-info p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 13px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.product-tags span {
    padding: 5px 8px;
    border-radius: 8px;
    color: var(--text);
    background: var(--light-two);
    font-size: 12px;
    font-weight: 600;
}

.product-price {
    text-align: right;
}

.product-price strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
}

.product-price span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}


/* =========================================================
           PRICE SUMMARY
        ========================================================= */

.details-card .price-summary {
    display: grid;
    gap: 11px;
    padding: 0;
}


.price-row strong {
    color: var(--dark);
}

.price-row.discount {
    color: var(--primary);
}

.price-total {
    margin-top: 5px;
    padding-top: 13px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    font-weight: 700;
}

.price-total strong {
    color: var(--primary-dark);
    font-size: 17px;
}

/* =========================================================
           ADDRESS & PAYMENT
        ========================================================= */

.info-box {
    height: 100%;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: linear-gradient(180deg, #fff, #fbfcfc);
}

.info-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}

.info-box-title svg {
    color: var(--primary);
}

.info-box p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.5;
}

.info-box strong {
    color: var(--dark);
}

/* =========================================================
           ACTIONS
        ========================================================= */

.details-card .order-actions {
    display: flex;
    gap: 10px;
    justify-content: start;
}

.order-action-btn {
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: .22s ease;
}

.order-action-btn:hover {
    color: var(--primary);
    border-color: rgba(0, 143, 140, .28);
}

.order-action-btn.primary {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

.order-action-btn.primary:hover {
    color: #fff;
    background: var(--primary-dark);
}


/* =========================================================
           WISHLIST
========================================================= */


.wishlist-hero-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap
}

.hero-action-btn {
    min-height: 43px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    font-size: 13px;
    font-weight: 600
}

.hero-action-btn.primary,
.hero-action-btn:hover {
    color: var(--primary-dark);
    background: #fff
}

.wishlist-count {
    min-height: 44px;
    padding: 0 13px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    background: rgba(0, 143, 140, .08);
    font-size: 13px;
    font-weight: 700
}

.wishlist-stock {
    position: absolute;
    left: 13px;
    bottom: 13px;
    padding: 6px 9px;
    border-radius: 30px;
    color: var(--primary-dark);
    background: rgba(255, 255, 255, .92);
    font-size: 12px;
    font-weight: 600;
    z-index: 9;
}

.wishlist-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    padding: 6px 9px;
    border-radius: 30px;
    color: #fff;
    background: var(--secondary);
    font-size: 10px;
    font-weight: 600;
    z-index: 2;
}

.wishlist-stock.out {
    color: var(--danger);
}

.wishlist-item {
    margin-bottom: 20px;
}


/* =========================================================
           ACCOUNT LAYOUT
========================================================= */

.profile-status-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.profile-status-box {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    background: rgba(255, 255, 255, .09);
    line-height: normal;
}

.profile-status-box small {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
}

.profile-status-box strong {
    font-size: 14px;
}


.profile-card {
    margin-top: 18px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
}

/* =========================================================
           PROFILE PHOTO
        ========================================================= */

.profile-photo-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, #fbfcfc);
}

.profile-photo {
    position: relative;
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    overflow: hidden;
    border: 4px solid #fff;
    border-radius: 24px;
    background: var(--light-two);
    box-shadow: 0 10px 28px rgba(29, 36, 48, .11);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-info h4 {
    margin: 0 0 5px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 700;
}

.photo-info p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.photo-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.small-btn {
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: .22s ease;
    cursor: pointer;
}

.small-btn:hover {
    color: var(--primary);
    border-color: rgba(0, 143, 140, .28);
}

.small-btn.primary {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

.small-btn.danger {
    color: var(--secondary);
}

#photoInput {
    display: none;
}

.form-group {
    margin-bottom: 17px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
}




.form-control:focus,
.form-select:focus {
    border-color: rgba(0, 143, 140, .45);
    box-shadow: 0 0 0 3px rgba(0, 143, 140, .07);
}

.form-note {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
}

.input-group-custom {
    position: relative;
}

.verified-badge {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 8px;
    border-radius: 30px;
    color: var(--primary-dark);
    background: rgba(0, 143, 140, .09);
    font-size: 12px;
    font-weight: normal;
    line-height: normal;
}

.form-control.has-badge {
    padding-right: 82px;
}

.gender-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gender-option input {
    display: none;
}

.gender-option label {
    min-width: max-content;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--border);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
}

.gender-option input:checked+label {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}


/* =========================================================
           SAVE ACTIONS
        ========================================================= */

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.action-btn {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: .22s ease;
}

.action-btn.primary {
    color: #fff;
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.action-btn:hover {
    transform: translateY(-2px);
}

.form-message {
    display: none;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 11px;
    font-size: 12px;
}

.form-message.success {
    display: block;
    color: var(--primary-dark);
    border: 1px solid rgba(0, 143, 140, .18);
    background: rgba(0, 143, 140, .06);
}

.form-message.error {
    display: block;
    color: var(--secondary);
    border: 1px solid rgba(232, 74, 60, .18);
    background: rgba(232, 74, 60, .06);
}

/* =========================================================
           ADDRESS
========================================================= */
.address-hero-actions {
    display: flex;
    justify-content: flex-end;
}

.hero-btn {
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid #fff;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary-dark);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: .22s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    color: var(--primary-dark);
}


/* =========================================================
           ADDRESS CARD
        ========================================================= */

.address-grid {
    row-gap: 20px;
    margin-top: 30px;
}

.address-card {
    position: relative;
    height: 100%;
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(29, 36, 48, .05);
    transition: .25s ease;
}

.address-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.address-card.default {
    border-color: rgba(0, 143, 140, .32);
    box-shadow: 0 16px 38px rgba(0, 143, 140, .10);
}

.address-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(0, 143, 140, .035);
}

.address-card-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 15px;
}

.address-type {
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(0, 143, 140, .08);
}

.address-icon svg {
    width: 20px;
    height: 20px;
}

.address-type span {
    display: block;
    margin-bottom: 3px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

.address-type h3 {
    margin: 0;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 600;
}

.default-badge {
    padding: 6px 12px;
    border-radius: 30px;
    color: var(--primary-dark);
    background: rgba(0, 143, 140, .09);
    font-size: 12px;
    font-weight: 600;
}

.address-content {
    position: relative;
    z-index: 2;
    min-height: 122px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: linear-gradient(180deg, #fff, #fbfcfc);
}

.address-content strong {
    display: block;
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 15px;
}

.address-content p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

.address-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.address-btn {
    min-height: 39px;
    padding: 0 13px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: .22s ease;
}

.address-btn:hover {
    color: var(--primary);
    border-color: rgba(0, 143, 140, .28);
}

.address-btn.primary {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

.address-btn.danger {
    color: var(--secondary);
}

.address-btn.default-action {
    margin-left: auto;
}

/* =========================================================
           EMPTY STATE
        ========================================================= */

.address-empty {
    display: none;
    padding: 58px 25px;
    border: 1px solid var(--border);
    border-radius: 22px;
    text-align: center;
    background: #fff;
    box-shadow: var(--shadow);
}

.address-empty-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 17px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(0, 143, 140, .08);
    font-size: 32px;
}

.address-empty h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 700;
}

.address-empty p {
    max-width: 430px;
    margin: 0 auto 18px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}





/* =========================================================
           MODAL FORM
========================================================= */

#addressModal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(29, 36, 48, .18);
}

#addressModal .modal-header {
    padding: 20px 22px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 88% 20%, rgba(0, 143, 140, .10), transparent 24%),
        linear-gradient(135deg, #f7fbfa, #fff);
}

#addressModal .modal-title {
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 27px;
    font-weight: 700;
}

#addressModal .modal-body {
    padding: 22px
}

#addressModal .modal-footer {
    padding: 16px 22px;
    border-top: 1px solid var(--border);
}






.type-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.type-option input {
    display: none
}

.type-option label {
    min-width: 92px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.type-option input:checked+label {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

.modal-btn {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--dark);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
}

.modal-btn.primary {
    color: #fff;
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* =========================================================
           PASSWORD HERO
========================================================= */

.password-security {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.security-box {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    background: rgba(255, 255, 255, .09);
    line-height: normal;
}

.security-box small {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
}

.security-box strong {
    font-size: 13px;
}



/* =========================================================
           MAIN CARD
        ========================================================= */

.password-card {
    margin-top: 18px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
}


/* =========================================================
           PASSWORD FORM
        ========================================================= */

.form-group {
    margin-bottom: 18px;
}

.password-field {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    color: var(--muted);
    background: transparent;
    font-size: 13px;
}


.forgot-link {
    display: inline-flex;
    margin-top: 3px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
}

/* =========================================================
           STRENGTH
        ========================================================= */

.strength-wrap {
    margin-top: 9px;
}

.strength-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 7px;
    font-size: 12px;
}

.strength-head span:first-child {
    color: var(--muted);
}

.strength-label {
    color: var(--secondary);
    font-weight: 700;
}

.password-card .strength-track {
    height: 6px;
    overflow: hidden;
    border-radius: 20px;
    background: #eef1f1;
    grid-template-columns: repeat(1, 1fr);
}

.password-card .strength-bar {
    width: 0;
    height: 100%;
    border-radius: 20px;
    background: var(--secondary);
    transition: .3s ease;
}


/* =========================================================
           SECURITY SIDEBAR
        ========================================================= */

.security-panel {
    margin-top: 18px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
}

.security-panel-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(0, 143, 140, .08);
    font-size: 22px;
}

.security-panel h3 {
    margin: 0 0 7px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 700;
}

.security-panel>p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.security-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.security-tip:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.security-tip-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(0, 143, 140, .07);
    font-size: 14px;
    font-weight: 600;
}

.security-tip strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dark);
    font-size: 15px;
}

.security-tip p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: normal;
}

.login-info {
    margin-top: 18px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: linear-gradient(180deg, #fff, #fbfcfc);
}

.login-info span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 13px;
}

.login-info strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
}

.login-info small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
}

/* =========================================================
           ACTIONS
        ========================================================= */

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
    padding-top: 19px;
    border-top: 1px solid var(--border);
}

.action-btn:disabled {
    cursor: not-allowed;
    opacity: .65;
    transform: none;
}

.form-message {
    display: none;
    margin-top: 15px;
    padding: 13px 14px;
    border-radius: 11px;
    font-size: 10px;
}

.form-message.success {
    display: block;
    color: var(--primary-dark);
    border: 1px solid rgba(0, 143, 140, .18);
    background: rgba(0, 143, 140, .06);
}

.form-message.error {
    display: block;
    color: var(--secondary);
    border: 1px solid rgba(232, 74, 60, .18);
    background: rgba(232, 74, 60, .06);
}

/* =========================================================
           SUCCESS STATE
        ========================================================= */

.password-success {
    display: none;
    padding: 45px 25px;
    text-align: center;
}

.success-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 17px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 15px 30px rgba(0, 143, 140, .2);
    font-size: 29px;
}

.success-icon svg {
    width: 30px;
    height: 30px;
}

.password-success h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 31px;
    font-weight: 700;
}

.password-success p {
    max-width: 460px;
    margin: 0 auto 19px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}



/* =========================================================
   Terms & Conditions
========================================================= */

.terms-hero {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    color: #fff;
    background:
        radial-gradient(circle at 84% 24%, rgba(255, 255, 255, .18), transparent 21%),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.terms-hero::before,
.terms-hero::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
}

.terms-hero::before {
    width: 260px;
    height: 260px;
    right: -70px;
    top: -100px;
}

.terms-hero::after {
    width: 170px;
    height: 170px;
    right: 150px;
    bottom: -110px;
}

.terms-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}


.terms-hero h1 {
    margin: 0 0 12px;
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.terms-hero p {
    max-width: 710px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    line-height: 1.5;
}



/* =========================================================
   PAGE LAYOUT
========================================================= */

.terms-page {
    padding: 38px 0 70px
}

.terms-sidebar {
    position: sticky;
    top: 80px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
}

.terms-sidebar>span {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
}

.terms-sidebar h3 {
    margin: 0 0 14px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 600;
}

.terms-nav {
    display: grid;
    gap: 5px;
}

.terms-nav a {
    position: relative;
    min-height: 35px;
    padding: 0 10px 0 31px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: var(--text);
    font-size: 13px;
    font-weight: normal;
    transition: .2s ease;
}

.terms-nav a::before {
    content: "";
    position: absolute;
    left: 12px;
    width: 6px;
    height: 6px;
    border: 1px solid var(--primary);
    border-radius: 50%;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--primary-dark);
    background: rgba(0, 143, 140, .06);
}

.terms-nav a.active::before {
    background: var(--primary)
}

.support-box {
    margin-top: 16px;
    padding: 16px;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.support-box .supportTitle {
    margin: 0 0 5px;
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.support-box p {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 13px;
    line-height: 1.5;
}

.support-box a {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    color: var(--primary-dark);
    background: #fff;
    font-size: 13px;
    font-weight: normal;
}

/* =========================================================
   CONTENT
========================================================= */

.terms-content {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.terms-intro {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 143, 140, .14);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 143, 140, .06), rgba(0, 143, 140, .02));
}

.terms-intro strong {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 23px;
    text-transform: capitalize;
}

.terms-intro p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.terms-section {
    padding-bottom: 26px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 28px;
}

.terms-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.section-number {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    font-size: 13px;
    font-weight: 600;
}

.terms-section h2 {
    margin: 0 0 12px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
}

.terms-section h3 {
    margin: 18px 0 8px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
}

.terms-section p {
    margin: 0 0 11px;
    font-size: 14px;
    line-height: 1.5;
}

.terms-section ul {
    margin: 11px 0 0;
    padding-left: 0;
}

.terms-section li {
    margin-bottom: 8px;
    padding-left: 4px;
    font-size: 14px;
    line-height: 1.5;
}

.terms-section li::marker {
    color: var(--primary)
}

.notice-box {
    padding: 14px 15px;
    margin-top: 14px;
    border-left: 3px solid var(--accent);
    border-radius: 0 12px 12px 0;
    background: rgba(243, 162, 47, .07);
}

.notice-box strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dark);
    font-size: 16px;
}

.notice-box p {
    margin: 0;
    font-size: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.contact-item {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: linear-gradient(180deg, #fff, #fbfcfc);
    line-height: normal;
}

.contact-item span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 15px;
}

.contact-item strong,
.contact-item a {
    color: var(--dark);
    font-size: 13px;
}

.acceptance-box {
    margin-top: 20px;
    padding: 22px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, .18), transparent 22%),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 18px 42px rgba(0, 143, 140, .17);
}

.acceptance-box h3 {
    margin: 0 0 6px;
    font-family: var(--heading-font);
    font-size: 27px;
    font-weight: 600;
    color: var(--white);
}

.acceptance-box p {
    max-width: 650px;
    margin: 0 auto 14px;
    color: var(--white);
    font-size: 13px;
    line-height: 1.5;
}

.acceptance-box a {
    min-height: 42px;
    padding: 0 17px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    color: var(--primary-dark);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
}






/* =========================================================
   SITEMAP PAGE
========================================================= */

.sitemap-page {
    padding: 16px 0 72px;
}

.sidebar-card {
    position: sticky;
    top: 80px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
}

.sidebar-card small {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
}

.sidebar-card h2,
.sidebar-card h3 {
    margin: 0 0 15px;
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
}

.sidebar-nav {
    display: grid;
    gap: 5px;
}

.sidebar-nav a {
    min-height: 35px;
    padding: 8px 12px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: .2s ease;
}



.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: var(--primary-dark);
    background: rgba(0, 143, 140, .07);
}

.sidebar-help {
    margin-top: 17px;
    padding: 17px;
    border-radius: 15px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 0%, rgba(255, 255, 255, .17), transparent 30%),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.sidebar-help .sidebarTitle {
    margin: 0 0 5px;
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.sidebar-help p {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--white);
}

.sidebar-help a {
    display: inline-flex;
    min-height: 36px;
    padding: 0 12px;
    align-items: center;
    border-radius: 9px;
    background: #fff;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 500;
}



.map-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 18px;
}


.map-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: .3s ease;
    scroll-margin-top: 28px;
}

.map-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 143, 140, .2);
}

.map-card::after {
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(0, 143, 140, .035);
}

.map-card-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.map-title-wrap {
    display: flex;
    gap: 12px;
    align-items: center;
}

.map-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    font-size: 17px;
    box-shadow: 0 10px 22px rgba(0, 143, 140, .19);
}

.map-card h2 {
    margin: 0 0 3px;
    font-family: var(--heading-font);
    font-size: 27px;
    font-weight: 700;
    color: var(--dark);
}

.map-card-head p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

.map-count {
    padding: 6px 15px;
    border-radius: 20px;
    background: rgba(0, 143, 140, .07);
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 500;
}

.map-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.map-link {
    min-height: 40px;
    padding: 0 11px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--text);
    background: linear-gradient(180deg, #fff, #fcfdfd);
    font-size: 14px;
    font-weight: 500;
    transition: .2s ease;
}

.map-link span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.map-link i {
    font-style: normal;
    color: #bcc1c6;
    transition: .2s ease;
}

.map-link:hover {
    padding-left: 14px;
    color: var(--primary-dark);
    border-color: rgba(0, 143, 140, .12);
    background: rgba(0, 143, 140, .05);
}

.map-link:hover i {
    color: var(--primary);
    transform: translateX(2px);
}

.map-card.full-width {
    grid-column: 1/-1;
}

.map-card.full-width .map-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* =========================================================
   CTA
========================================================= */

.sitemap-cta {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    padding: 34px;
    border-radius: 22px;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at 85% 0%, rgba(255, 255, 255, .18), transparent 26%),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 22px 52px rgba(0, 143, 140, .18);
}

.sitemap-cta h3 {
    margin: 0 0 7px;
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
}

.sitemap-cta p {
    max-width: 650px;
    margin: 0 auto 16px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--white)
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.cta-actions a {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.cta-primary {
    background: #fff;
    color: var(--primary-dark);
}

.cta-outline {
    border: 1px solid rgba(255, 255, 255, .32);
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.cta-outline:hover {
    background: #fff;
    color: var(--primary-dark);
}

@media(max-width:1199px) {
    .map-card.full-width .map-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media(max-width:991px) {
    .mobile-sitemap-btn {
        display: flex
    }

    .map-grid {
        grid-template-columns: 1fr
    }

    .map-card.full-width {
        grid-column: auto
    }

    .map-card.full-width .map-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:767px) {
    .sitemap-hero {
        padding: 62px 0 100px;
    }

    .search-count {
        min-width: 74px;
        font-size: 8px;
    }

    .quick-access {
        margin-top: -38px
    }

    .quick-card {
        padding: 17px
    }

    .breadcrumb-wrap {
        align-items: flex-start;
        flex-direction: column;
    }

    .map-card {
        padding: 20px
    }

    .map-links,
    .map-card.full-width .map-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sitemap-cta {
        padding: 27px 20px
    }

    .sitemap-cta h3 {
        font-size: 30px
    }

    .map-card-head {
        flex-direction: column;
    }
}



/* =========================================================
   FAQs HERO
========================================================= */
.faq-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 0 50px;
    color: #fff;
    text-align: center;
    background: radial-gradient(circle at 84% 20%, rgba(255, 255, 255, .17), transparent 21%), linear-gradient(135deg, var(--primary-dark), var(--primary))
}

.faq-hero:before,
.faq-hero:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .14)
}

.faq-hero:before {
    width: 270px;
    height: 270px;
    right: -65px;
    top: -90px
}

.faq-hero:after {
    width: 160px;
    height: 160px;
    left: -55px;
    bottom: -90px
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: auto;
    text-align: center
}

.faq-hero h1 {
    margin: 0 0 13px;
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 600;
    color: var(--white);
}

.faq-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .82)
}

.faq-page {
    padding: 14px 0 72px
}

.faq-sidebar {
    position: sticky;
    top: 20px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow)
}

.faq-sidebar small {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary)
}

.faq-sidebar h2,
.faq-sidebar h3 {
    margin: 0 0 15px;
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 600;
    color: var(--dark)
}

.faq-nav {
    display: grid;
    gap: 5px
}

.faq-nav button {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    border: 0;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text);
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    transition: .2s ease
}

.faq-nav button:hover,
.faq-nav button.active {
    color: var(--primary-dark);
    background: rgba(0, 143, 140, .07)
}


/* =========================================================
   FAQ CONTENT
========================================================= */
.faq-content-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow)
}

.faq-content-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border)
}

.faq-content-head small {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary)
}

.faq-content-head h2 {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark)
}

.expand-btn {
    min-height: 39px;
    padding: 0 13px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500
}

.faq-group {
    margin-bottom: 26px
}

.faq-group:last-child {
    margin-bottom: 0
}

.group-head {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 12px
}

.group-icon {
    width: 39px;
    height: 39px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    font-size: 15px
}

.group-head h3 {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 700;
    color: var(--dark)
}

.group-head span {
    display: block;
    font-size: 14px;
    color: var(--muted)
}

.accordion-item {
    margin-bottom: 9px;
    border: 1px solid var(--border) !important;
    border-radius: 13px !important;
    overflow: hidden
}

.accordion-button {
    padding: 15px 17px;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    box-shadow: none !important
}

.accordion-button:not(.collapsed) {
    color: var(--primary-dark);
    background: rgba(0, 143, 140, .055)
}

.accordion-button::after {
    background-size: 18px
}

.accordion-body {
    padding: 0 17px 16px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    background: rgba(0, 143, 140, .025)
}

.accordion-body a {
    color: var(--primary-dark);
    font-weight: 700
}

.no-results {
    display: none;
    padding: 48px 24px;
    text-align: center;
    border: 1px dashed rgba(0, 143, 140, .3);
    border-radius: 18px;
    background: rgba(0, 143, 140, .035)
}

.no-results h3 {
    margin: 0 0 5px;
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark)
}

.no-results p {
    margin: 0;
    font-size: 9px
}

/* =========================================================
   CTA
========================================================= */
.faq-cta {
    margin-top: 20px;
    padding: 34px;
    border-radius: 22px;
    text-align: center;
    color: #fff;
    background: radial-gradient(circle at 86% 0%, rgba(255, 255, 255, .18), transparent 25%), linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 22px 52px rgba(0, 143, 140, .18)
}

.faq-cta h3 {
    margin: 0 0 7px;
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
}

.faq-cta p {
    max-width: 650px;
    margin: 0 auto 16px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .8)
}


@media(max-width:767px) {
    .faq-hero {
        padding: 60px 0 92px
    }

    .faq-categories {
        margin-top: -35px
    }

    .breadcrumb-wrap {
        align-items: flex-start;
        flex-direction: column
    }

    .faq-content-card {
        padding: 20px
    }

    .faq-content-head {
        align-items: flex-start;
        flex-direction: column
    }

    .faq-cta {
        padding: 28px 20px
    }

    .faq-cta h3 {
        font-size: 30px
    }

    .address-hero-actions {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }
}


/* =========================================================
   SHOP CONTENT SECTION
========================================================= */

.shopContentSection {
    padding: 10px 0 30px;
    background: #ffffff;
}

.shopContentSection h2 {
    margin: 0 0 15px;
    color: #008f8c;
    font-family: var(--heading-font);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}



.shop-content-box {
    padding: 24px 26px;
    border: 1px solid #e3eceb;
    border-left: 4px solid #008f8c;
    border-radius: 12px;
    background: #f7fbfa;
    box-shadow: 0 8px 25px rgba(29, 36, 48, 0.05);
}

.shop-content-box h2 {
    margin: 0 0 10px;
    color: var(--primary);
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
}

.shop-content-box h3 {
    margin: 0 0 10px;
    color: #1d2430;
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
}

.shop-content-box p {
    margin: 0 0 8px;
    color: #5f6673;
    font-size: 16px;
    line-height: 1.7;
}

.shop-content-box p:last-child {
    margin-bottom: 0;
}

.shop-content-box strong {
    color: #1d2430;
    font-weight: 700;
}

@media (max-width: 767px) {

    .shopContentSection {
        padding: 25px 0 35px;
    }
}



.megaMenuParent {
    position: static;
}

.megaMenuToggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.megaMenuToggle svg {
    transition: transform .25s ease;
}

.megaMenu {
    position: absolute;
    top: 100%;
    left: 100%;
    width: min(1320px, calc(100vw - 30px));
    padding: 28px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: .25s ease;
    z-index: 9999;
}

.megaMenuParent:hover>.megaMenu {
    opacity: 1;
    visibility: visible;

    transform: translate(-50%, 0);
}

.megaMenuParent:hover>.megaMenuToggle svg {
    transform: rotate(180deg);
}

.megaMenuInner {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}

.megaMenuCol {
    min-width: 0;
}

.megaMenuTitle {
    display: block;

    margin-bottom: 10px;

    color: #111;

    font-size: 14px;
    font-weight: 700;
}

.megaMenuCol ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.megaMenuCol li {
    margin-bottom: 7px;
}

.megaMenuCol li a {
    color: #666;

    font-size: 13px;
    line-height: 1.45;
}

.megaMenuTitle:hover,
.megaMenuCol li a:hover {
    color: #008b8b;
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 991px) {

    .megaMenuParent {
        position: relative;
    }

    .megaMenuParent:hover>.megaMenu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .megaMenu {
        position: static;

        width: 100%;

        display: none;

        padding: 10px 0;

        border: 0;
        border-top: 1px solid #e5e5e5;
        border-radius: 0;

        background: #f9f9f9;

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;
    }

    .megaMenuParent.open>.megaMenu {
        display: block;
    }

    .megaMenuParent.open>.megaMenuToggle svg {
        transform: rotate(180deg);
    }

    .megaMenuInner {
        display: block;
    }

    .megaMenuCol {
        padding: 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .megaMenuCol:last-child {
        border-bottom: 0;
    }

    .megaMenuTitle {
        display: block;

        margin: 0;
        padding: 11px 18px;

        font-size: 14px;
        font-weight: 600;

        background: #fff;
    }

    .megaMenuCol ul {
        padding: 5px 18px 12px 30px;
    }

    .megaMenuCol li {
        margin: 0;
    }

    .megaMenuCol li a {
        display: block;

        padding: 6px 0;

        font-size: 13px;

        white-space: normal;
    }

}



/* =========================================================
   CATEGORY HERO
========================================================= */

.category-hero {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background:
        radial-gradient(circle at 90% 10%,
            rgba(0, 143, 140, 0.14),
            transparent 27%),
        linear-gradient(135deg,
            #f8fbfb 0%,
            #edf7f6 100%);
}

.category-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 143, 140, 0.08) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(0, 143, 140, 0.08) 1px,
            transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to right,
            transparent,
            #000,
            transparent);
}

.category-hero-content {
    position: relative;
    z-index: 2;
}

.category-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: var(--primary-dark);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 700;
}

.category-subtitle::before {
    content: "";
    width: 25px;
    height: 2px;
    background: var(--primary);
}

.category-hero h1 {
    max-width: 660px;
    margin: 0 0 18px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 700;
    line-height: 0.98;
}

.category-hero h1 span {
    display: block;
    color: var(--primary);
}

.category-hero-content p {
    max-width: 650px;
    margin: 0;
    color: var(--text);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
}

.category-hero-btn {
    min-height: 50px;
    margin-top: 27px;
    padding: 0 22px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-dark));
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 14px 34px rgba(0, 143, 140, 0.22);
    transition: all 0.3s ease;
}

.category-hero-btn span {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.category-hero-btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 143, 140, 0.3);
}

.category-hero-btn:hover span {
    transform: translateX(5px);
}

/* =========================================================
   HERO IMAGES
========================================================= */

.category-hero-images {
    position: relative;
    aspect-ratio: 1/1;
}

.category-hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: 25px;
    background: var(--white);
    box-shadow: 0 25px 65px rgba(29, 36, 48, 0.14);
}

.category-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-img-large {
    top: 0;
    right: 0;
    width: 90%;
    height: auto;
    border: 5px solid var(--white);
}

.category-img-small {
    left: -30%;
    bottom: 10%;
    width: 44%;
    height: 190px;
    border: 8px solid var(--white);
}

.category-hero-badge {
    position: absolute;
    top: 30px;
    left: 10px;
    width: 120px;
    height: 120px;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-dark));
    box-shadow: 0 18px 40px rgba(0, 143, 140, 0.25);
}

.category-hero-badge strong {
    font-family: var(--heading-font);
    font-size: 21px;
    line-height: 1;
}

.category-hero-badge span {
    margin-top: 5px;
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 1.4;
}

/* =========================================================
   CATEGORY INTRO
========================================================= */

.category-intro-section {
    padding: 75px 0 30px;
    background: var(--white);
}

.category-intro-content {
    max-width: 820px;
    margin: auto;
    text-align: center;
}

.category-intro-content>span {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
}

.category-intro-content h2 {
    margin: 0 0 13px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.05;
}

.category-intro-content h2 strong {
    color: var(--primary);
    font-weight: 700;
}

.category-intro-content p {
    max-width: 720px;
    margin: auto;
    color: var(--text);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
}

/* =========================================================
   CATEGORY GRID
========================================================= */

.category-grid-section {
    padding: 35px 0 80px;
    background: var(--white);
}

.collection-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    display: block;
    background: var(--white);
    box-shadow: 0 14px 40px rgba(29, 36, 48, 0.06);
    transition: all 0.35s ease;
}

.collection-card:hover {
    border-color: rgba(0, 143, 140, 0.24);
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(0, 143, 140, 0.14);
}

.collection-card-image {
    position: relative;
    overflow: hidden;
    height: 330px;
    background: var(--light-two);
}

.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.collection-card:hover .collection-card-image img {
    transform: scale(1.07);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 22px;
    opacity: 0;
    background: linear-gradient(to top,
            rgba(0, 109, 106, 0.85),
            transparent 58%);
    transition: opacity 0.35s ease;
}

.collection-overlay span {
    min-height: 40px;
    padding: 0 17px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    color: var(--primary-dark);
    background: var(--white);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    transform: translateY(12px);
    transition: transform 0.35s ease;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-card:hover .collection-overlay span {
    transform: translateY(0);
}

.collection-card-content {
    min-height: 155px;
    padding: 21px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.collection-label {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 500;
}

.collection-card-content .collectionTitle {
    margin: 0 0 7px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.collection-card-content p {
    max-width: 280px;
    margin: 0;
    color: var(--text);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.65;
}

.collection-arrow {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    background: rgba(0, 143, 140, 0.09);
    font-size: 18px;
    transition: all 0.3s ease;
}

.collection-card:hover .collection-arrow {
    color: var(--white);
    background: var(--primary);
    transform: translateX(4px);
}



/* =========================================================
   COLLECTION BENEFITS
========================================================= */

.collection-benefits-section {
    padding: 40px 0;
    background: var(--light);
    margin-bottom: 30px;
}

.collection-section-heading {
    max-width: 760px;
    margin: 0 auto 35px;
    text-align: center;
}

.collection-section-heading span {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
}

.collection-section-heading h2 {
    margin: 0;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
}

.collection-benefit-card {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 19px;
    text-align: center;
    background: var(--white);
    box-shadow: 0 14px 40px rgba(29, 36, 48, 0.06);
    transition: all 0.3s ease;
}

.collection-benefit-card:hover {
    border-color: rgba(0, 143, 140, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 143, 140, 0.13);
}

.collection-benefit-icon {
    width: 57px;
    height: 57px;
    margin: 0 auto 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    background: rgba(0, 143, 140, 0.09);
    font-size: 22px;
}

.collection-benefit-card h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 27px;
    font-weight: 700;
}

.collection-benefit-card p {
    margin: 0;
    color: var(--text);
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .category-hero h1 {
        font-size: 58px;
    }

    .collection-card-image {
        height: 300px;
    }

}

@media (max-width: 991px) {

    .category-hero {
        padding: 70px 0;
    }

    .category-hero-images {
        min-height: 390px;
        margin-top: 25px;
    }

    .category-img-large {
        height: 370px;
    }

    .featured-collection-content {
        padding: 40px;
    }

    .featured-collection-image {
        min-height: 390px;
    }

}

@media (max-width: 767px) {

    .category-hero h1 {
        font-size: 48px;
    }

    .category-intro-content h2,
    .featured-collection-content h2,
    .collection-section-heading h2,
    .category-cta-box h2 {
        font-size: 37px;
    }

    .collection-card-image {
        height: 320px;
    }

}

@media (max-width: 575px) {

    .category-hero {
        padding: 50px 0;
    }

    .category-hero h1 {
        font-size: 41px;
    }

    .category-hero-content p {
        font-size: 13px;
    }

    .category-hero-images {
        min-height: 320px;
    }

    .category-img-large {
        width: 82%;
        height: 300px;
    }

    .category-img-small {
        width: 46%;
        height: 140px;
        border-width: 5px;
        left: 0;
    }

    .category-hero-badge {
        width: 94px;
        height: 94px;
    }

    .category-hero-badge strong {
        font-size: 18px;
    }

    .category-intro-section {
        padding-top: 55px;
    }

    .category-intro-content h2 {
        font-size: 34px;
    }

    .category-grid-section {
        padding-bottom: 60px;
    }

    .collection-card-image {
        height: 290px;
    }


    .collection-benefits-section {
        padding: 60px 0;
    }

    .featured-collection-content {
        padding: 32px 22px;
    }

    .featured-collection-content h2 {
        font-size: 34px;
    }

    .category-cta-box {
        padding: 42px 20px;
    }

}