:root {
    --shop-primary: #072B61;
    --shop-primary-dark: #072B61;
    --shop-text: #1f1f1f;
    --shop-muted: #777777;
    --shop-border: #e9e9e9;
    --shop-soft-bg: #f7f5f0;
}

body.drawer-open {
    overflow: hidden;
}

.shop-header.main-header {
    position: relative;
    top: auto;
    border-bottom: 1px solid #efefef;
    background: var(--white-color);
    z-index: 999;
}

.shop-header .header-sticky {
    background: var(--white-color);
    transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.shop-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white-color);
    border-bottom: 1px solid rgba(7, 43, 97, 0.08);
    box-shadow: 0 12px 30px rgba(7, 43, 97, 0.1);
    transform: translateY(0);
}

.shop-announcement {
    background: var(--shop-primary-dark);
    color: var(--white-color);
    font-size: 13px;
    line-height: 1.4;
    padding: 8px 0;
}

.shop-announcement-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.shop-announcement-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.shop-announcement a {
    color: var(--white-color);
    transition: color 0.3s ease;
}

.shop-announcement a:hover {
    color: var(--accent-color);
}

.shop-header .navbar {
    padding: 5px 0;
}

.shop-header .shop-header-grid {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    align-items: center;
    gap: 24px;
}

.shop-header .navbar-brand img {
    max-width: 130px;
}

.shop-header .main-menu {
    display: flex !important;
    justify-content: center;
}

.shop-header .main-menu .nav-menu-wrapper {
    margin: 0;
    text-align: center;
}

.shop-header .main-menu .nav-menu-wrapper>ul {
    display: inline-flex;
    justify-content: center;
}

.shop-header .main-menu ul li a {
    color: #222222;
    font-weight: 600;
    padding: 15px 10px !important;
}

.shop-header .main-menu ul li a.active,
.shop-header .main-menu ul li a:hover,
.shop-header .main-menu ul li a:focus {
    color: var(--shop-primary);
}

.shop-header .main-menu ul ul li a {
    color: var(--white-color);
}

.shop-header .main-menu ul ul li a:hover,
.shop-header .main-menu ul ul li a:focus {
    color: var(--primary-color);
}

.shop-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.shop-header-actions a,
.mobile-drawer-actions a {
    position: relative;
    color: #222222;
    font-size: 19px;
    line-height: 1;
    transition: color 0.3s ease;
}

.shop-header-actions a:hover,
.mobile-drawer-actions a:hover {
    color: var(--shop-primary);
}

.hc-cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--shop-primary);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.hc-cart-count.is-empty {
    display: none;
}

.product-search-popup {
    position: fixed;
    inset: 0;
    z-index: 2147483600;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 20px 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.product-search-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-search-popup-overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(7, 43, 97, 0.42);
    cursor: pointer;
}

.product-search-popup-dialog {
    position: relative;
    width: min(720px, 100%);
    border: 1px solid rgba(7, 43, 97, 0.08);
    border-radius: 16px;
    background: var(--white-color);
    padding: 32px;
    box-shadow: 0 24px 70px rgba(7, 43, 97, 0.22);
    transform: translateY(-12px);
    transition: transform 0.25s ease;
}

.product-search-popup.active .product-search-popup-dialog {
    transform: translateY(0);
}

.product-search-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--shop-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-search-popup-dialog h3 {
    color: var(--shop-primary);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 48px 24px 0;
}

.product-search-popup-field {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    border: 1px solid var(--shop-border);
    border-radius: 10px;
    background: var(--white-color);
    padding: 0 0 0 18px;
}

.product-search-popup-field i {
    color: var(--shop-muted);
    font-size: 16px;
}

.product-search-popup-field input[type="search"] {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--shop-text);
    font-size: 17px;
}

.product-search-popup-field button {
    align-self: stretch;
    border: 0;
    border-radius: 0 10px 10px 0;
    background: var(--shop-primary);
    color: #fff;
    font-weight: 700;
    padding: 0 28px;
}

body.product-search-open {
    overflow: hidden;
}

.product-search-results {
    display: none;
    width: 100%;
    margin-top: 12px;
    border: 1px solid var(--shop-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(7, 43, 97, 0.12);
    overflow: hidden;
}

.product-search-results.active {
    display: block;
}

.product-search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--shop-border);
    color: var(--shop-text);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.product-search-result-item:last-child {
    border-bottom: 0;
}

.product-search-result-item:hover,
.product-search-result-item:focus {
    background: var(--secondary-color);
    color: var(--shop-primary);
}

.product-search-result-item img {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    object-fit: contain;
    background: #f8f8f8;
    flex-shrink: 0;
}

.product-search-result-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.product-search-result-content strong {
    color: var(--shop-primary);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
}

.product-search-result-content small {
    color: var(--shop-text);
    font-size: 14px;
    font-weight: 600;
}

.product-search-empty {
    color: var(--shop-muted);
    padding: 14px 16px;
    font-size: 15px;
}

.shop-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: var(--shop-primary);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.shop-menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 10px;
    background: var(--white-color);
}

.shop-header .responsive-menu,
.shop-header .navbar-toggle {
    display: none !important;
}

.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(7, 43, 97, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    width: min(360px, 88vw);
    height: 100vh;
    background: var(--white-color);
    box-shadow: -20px 0 45px rgba(7, 43, 97, 0.18);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--shop-border);
}

.mobile-drawer-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 8px;
    background: var(--shop-soft-bg);
    color: var(--shop-text);
}

.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 18px 0;
    overflow-y: auto;
}

.mobile-drawer-nav a {
    color: var(--shop-text);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    padding: 14px 0;
    border-bottom: 1px solid var(--shop-border);
}

.mobile-drawer-nav a:hover,
.mobile-drawer-nav a:focus {
    color: var(--shop-primary);
}

.mobile-drawer-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--shop-border);
}

.page-banner {
    background: var(--shop-soft-bg);
    padding: 55px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: var(--shop-muted);
    font-size: 14px;
}

.shop-section {
    padding: 70px 0;
}

.variation-selector-section {
    padding: 34px 0 0;
    background: var(--white-color);
}

.variation-selector {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.variation-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 104px;
    border: 1px solid var(--shop-border);
    border-radius: 8px;
    padding: 12px 14px;
    background: var(--white-color);
    color: var(--shop-text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.variation-card:hover,
.variation-card.active {
    border-color: rgba(7, 43, 97, 0.18);
    box-shadow: 0 12px 28px rgba(7, 43, 97, 0.08);
    transform: translateY(-2px);
}

.variation-image {
    flex: 0 0 70px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.variation-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.variation-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.variation-content strong {
    color: var(--shop-primary);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.variation-content small {
    color: var(--shop-text);
    font-size: 12px;
    line-height: 1.35;
}

.variation-content em {
    color: var(--accent-color);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.2;
}

.sidebar-box {
    border: 1px solid var(--shop-border);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.category-list li {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #666666;
    font-size: 15px;
    line-height: 1.4;
}

.category-list li a,
.category-list li a:hover,
.category-list li a:focus {
    color: inherit;
}

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

.filter-label {
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    color: var(--shop-text);
}

.form-check {
    margin-bottom: 12px;
}

.form-check-label {
    color: #666666;
}

.form-check-label a,
.form-check-label a:hover,
.form-check-label a:focus {
    color: inherit;
}

.form-check-input:checked {
    background-color: var(--shop-primary);
    border-color: var(--shop-primary);
}

.form-range::-webkit-slider-thumb {
    background: var(--shop-primary);
}

.form-range::-moz-range-thumb {
    background: var(--shop-primary);
}

.shop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 35px;
}

.shop-topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex: 0 0 auto;
}

.shop-filter-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    border: 0;
    border-radius: 10px;
    background: var(--shop-primary);
    color: var(--white-color);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0 18px;
}

.view-icons {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.view-icons i {
    width: 42px;
    height: 42px;
    border: 1px solid var(--shop-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shop-muted);
    cursor: pointer;
}

.view-icons i.active {
    background: var(--shop-primary);
    color: var(--white-color);
    border-color: var(--shop-primary);
}

.sorting-select {
    width: 220px;
    border-radius: 10px;
    height: 48px;
    border: 1px solid var(--shop-border);
}

.woocommerce-ordering {
    margin: 0;
}

.woocommerce-ordering .orderby {
    width: 220px;
    height: 48px;
    border: 1px solid var(--shop-border);
    border-radius: 10px;
    color: var(--shop-text);
    padding: 0 36px 0 14px;
}

.shop-filter-offcanvas {
    width: min(390px, 92vw) !important;
}

.shop-filter-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--shop-border);
}

.shop-filter-offcanvas .offcanvas-title {
    color: var(--shop-primary);
    font-size: 20px;
    font-weight: 800;
}

.shop-filter-offcanvas .sidebar-box {
    margin-bottom: 20px;
}

.variation-filter-list li {
    list-style: none;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--shop-border);
    color: var(--shop-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.variation-filter-list li:first-child {
    padding-top: 0;
}

.variation-filter-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.variation-filter-list img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.variation-filter-list em {
    color: var(--accent-color);
    font-style: normal;
    font-size: 13px;
}

.product-card {
    border: 1px solid var(--shop-border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white-color);
    margin-bottom: 30px;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.product-image {
    position: relative;
    background: #fafafa;
    padding: 25px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 180px;
    width: 100%;
    object-fit: contain;
}

.badge-custom {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--shop-primary);
    color: var(--white-color);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.product-content {
    padding: 22px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.product-category {
    color: #999999;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 6px;
}

.product-category a,
.product-category a:hover,
.product-category a:focus {
    color: inherit;
}

.product-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-weight-options {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
}

.weight-option {
    min-width: 52px;
    min-height: 34px;
    border: 1px solid var(--shop-border);
    border-radius: 6px;
    background: var(--white-color);
    color: var(--shop-text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0 12px;
    transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    text-align: justify;
}

.weight-option:hover,
.weight-option.active {
    border-color: var(--shop-primary);
    background: var(--shop-primary);
    color: var(--white-color);
}

.product-price h3 {
    color: var(--shop-text);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 16px;
}

.product-price h3 del {
    color: #999999;
    font-size: 18px;
    font-weight: 500;
    margin-right: 8px;
    opacity: 0.45;
}

.product-price h3 ins {
    color: var(--shop-text);
    font-weight: 800;
    text-decoration: none;
}

.product-cart-btn a.button,
.woocommerce .product-cart-btn a.button {
    color: var(--white-color) !important;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%) !important;
    background-size: 200% auto !important;
    border: 0 !important;
}

.product-cart-btn a.button:hover,
.woocommerce .product-cart-btn a.button:hover {
    color: var(--primary-color) !important;
    background-position: right center !important;
}

.page-pagination ul li .current,
.page-pagination ul li.active span {
    background: var(--accent-color);
    color: var(--white-color);
}

.product-bottom {
    display: block;
    /* justify-content: space-between; */
    align-items: center;
    /* gap: 16px;
    margin-top: auto; */
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: var(--shop-text);
}

.product-price h3 .price {
    color: var(--shop-text);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    opacity: 1;
    text-decoration: none;
}

.product-price h3 .price>span {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    opacity: 1;
    text-decoration: none;
}

.product-price h3 .price del {
    color: #b8b8b8;
    font-size: 18px;
    font-weight: 500;
    opacity: 1;
    text-decoration: line-through;
}

.product-price h3 .price del .woocommerce-Price-amount,
.product-price h3 .price del .woocommerce-Price-currencySymbol {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    opacity: 1;
    text-decoration: inherit;
}

.product-price h3 .price ins {
    color: #050505;
    font-size: 24px;
    font-weight: 800;
    opacity: 1;
    text-decoration: none;
}

.product-price h3 .price ins .woocommerce-Price-amount,
.product-price h3 .price ins .woocommerce-Price-currencySymbol {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    opacity: 1;
    text-decoration: none;
}

.cart-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--shop-primary);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cart-btn:hover {
    background: var(--shop-primary-dark);
    color: var(--white-color);
}

@media (max-width: 1199px) {
    .shop-header .shop-header-grid {
        grid-template-columns: 145px 1fr 145px;
        gap: 16px;
    }

    .shop-header .main-menu ul li {
        margin: 0 2px;
    }

    .shop-header .main-menu ul li a {
        font-size: 15px;
        padding: 14px 7px !important;
    }

    .variation-selector {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .shop-header .shop-header-grid {
        display: flex;
        justify-content: space-between;
    }

    .shop-header .shop-desktop-menu {
        display: none !important;
    }

    .shop-header-actions {
        margin-left: auto;
    }

    .shop-menu-toggle {
        display: inline-flex;
    }

    .page-banner h1 {
        font-size: 38px;
    }

    .shop-section {
        padding: 55px 0;
    }

    .variation-selector-section {
        padding-top: 26px;
    }

    .variation-selector {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x proximity;
    }

    .variation-card {
        flex: 0 0 265px;
        min-height: 96px;
        scroll-snap-align: start;
    }

    .shop-sidebar {
        display: none !important;
    }

    .shop-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .shop-topbar-actions {
        width: 100%;
    }

    .sorting-select,
    .woocommerce-ordering,
    .woocommerce-ordering .orderby {
        width: 100%;
    }

    .shop-filter-toggle {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    .shop-announcement-inner {
        justify-content: center;
        text-align: center;
    }

    .shop-announcement-links {
        display: none;
    }

    .shop-header .navbar {
        padding: 14px 0;
    }

    .shop-header-actions {
        display: none;
    }

    .page-banner {
        padding: 42px 0;
    }

    .page-banner h1 {
        font-size: 34px;
    }

    .shop-section {
        padding: 45px 0;
    }

    .shop-topbar>div {
        align-items: flex-start !important;
        flex-direction: column;
    }

    .shop-topbar {
        gap: 14px;
        margin-bottom: 28px;
    }

    .shop-topbar-actions {
        flex-direction: row !important;
        align-items: stretch !important;
        gap: 10px;
    }

    .shop-topbar-actions .sorting-select,
    .shop-topbar-actions .woocommerce-ordering,
    .shop-topbar-actions .woocommerce-ordering .orderby,
    .shop-topbar-actions .shop-filter-toggle {
        width: 50%;
        min-width: 0;
    }

    .shop-topbar-actions .sorting-select,
    .shop-topbar-actions .woocommerce-ordering .orderby {
        font-size: 13px;
        padding-left: 10px;
        padding-right: 28px;
    }

    .shop-filter-toggle {
        padding: 0 12px;
        font-size: 14px;
    }

    .product-image {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .variation-card {
        flex-basis: 245px;
        padding: 10px;
    }

    .variation-image {
        flex-basis: 62px;
        height: 70px;
    }

    .variation-content strong {
        font-size: 13px;
    }

    .variation-content small,
    .variation-content em {
        font-size: 11px;
    }

    .sidebar-box {
        padding: 20px;
    }

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

    .mobile-drawer {
        width: 86vw;
        padding: 20px;
    }
}

.home-mobile-search {
    display: none;
}

.mobile-drawer-group {
    border-bottom: 1px solid var(--shop-border);
}

.mobile-drawer-group summary {
    position: relative;
    list-style: none;
    color: var(--shop-text);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    padding: 14px 28px 14px 0;
}

.mobile-drawer-group summary::-webkit-details-marker {
    display: none;
}

.mobile-drawer-group summary::after {
    content: '\f107';
    position: absolute;
    top: 50%;
    right: 2px;
    font-family: 'FontAwesome';
    font-size: 13px;
    font-weight: 900;
    transform: translateY(-50%);
    transition: transform 0.25s ease;
}

.mobile-drawer-group[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-drawer-subnav {
    display: flex;
    flex-direction: column;
    padding: 0 0 8px 14px;
}

.mobile-drawer-subnav a {
    border-bottom: 0;
    color: var(--shop-muted);
    font-size: 15px;
    padding: 10px 0;
}

@media (max-width: 991px) {
    .home-header .navbar {
        flex-direction: column;
        align-items: stretch;
        padding: 5px 0 10px;
    }

    .home-header .shop-header-grid {
        display: grid;
        grid-template-columns: 72px 1fr 72px;
        width: 100%;
        gap: 12px;
    }

    .home-header .shop-menu-toggle {
        display: inline-flex;
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        order: 0;
    }

    .home-header .navbar-brand {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
    }

    .home-header .navbar-brand img {
        max-width: 128px;
    }

    .home-header .shop-header-actions {
        display: flex;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        margin-left: 0;
        gap: 13px;
    }

    .home-header .shop-action-search {
        display: none;
    }

    .home-header .shop-header-actions a {
        font-size: 20px;
    }

    .home-header .home-mobile-search {
        display: block;
        width: 100%;
        margin: 12px 0 0;
        padding: 0 15px;
    }

    .home-mobile-search-field {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        min-height: 46px;
        border: 1px solid var(--shop-border);
        border-radius: 8px;
        background: var(--white-color);
        padding: 0 15px;
    }

    .home-mobile-search-field i {
        color: var(--shop-muted);
        font-size: 15px;
    }

    .home-mobile-search-field input {
        width: 100%;
        min-width: 0;
        border: 0;
        outline: 0;
        color: var(--shop-text);
        font-size: 15px;
        line-height: 1.4;
        background: transparent;
    }

    .home-mobile-search .product-search-results {
        max-height: 320px;
        overflow-y: auto;
    }
}

@media (max-width: 575px) {
    .home-header .shop-header-grid {
        grid-template-columns: 66px 1fr 66px;
        gap: 8px;
    }

    .home-header .shop-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .home-header .navbar-brand img {
        max-width: 118px;
    }

    .home-header .shop-header-actions {
        gap: 10px;
    }

    .home-header .shop-header-actions a {
        font-size: 18px;
    }
}

/* =========================================
SINGLE PRODUCT PAGE
========================================= */

.single-product-page {
    --single-primary: #4DA8FF;
    --single-primary-dark: #072B61;
    --single-text: #1d1d1d;
    --single-muted: #777777;
    --single-border: #ececec;
    --single-bg: #faf8f3;
    color: var(--single-text);
}

.single-product-page .product-details-section {
    padding: 80px 0;
}

.single-product-page .product-gallery-main {
    background: #f7f7f7;
    border-radius: 18px;
    overflow: hidden;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.single-product-page .product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-product-page .product-gallery-main .hc-product-zoom {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.single-product-page .discount-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--single-primary);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 40px;
}

.single-product-page .thumbnail-wrapper {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.single-product-page .thumb-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    color: #666666;
    flex: 0 0 42px;
}

.single-product-page .product-thumb {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease;
    flex: 0 0 90px;
}

.single-product-page .product-thumb.active {
    border-color: var(--single-primary);
}

.single-product-page .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-product-page .breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #999999;
    font-size: 14px;
    flex-wrap: wrap;
}

.single-product-page .breadcrumb-custom a {
    color: #999999;
}

.single-product-page .product-category {
    /* color: var(--single-primary);
    font-weight: 600; */
    /* margin-bottom: 12px; */
    display: block;
}

.single-product-page .product-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.single-product-page .product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px !important;
    flex-wrap: wrap;
}

.single-product-page .stars {
    color: #ffb400;
}

.single-product-page .product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    /* margin-bottom: 25px; */
    flex-wrap: wrap;
}

.single-product-page .product-price h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 0;
}

.single-product-page .product-price h2 .price {
    color: var(--single-text);
    font-size: 30px;
    font-weight: 800;
}

.single-product-page .product-price h2 del {
    color: #999999;
    font-size: 24px;
    font-weight: 500;
    margin-right: 10px;
}

.single-product-page .product-price h2 ins {
    color: var(--single-text);
    font-size: 30px;
    font-weight: 800;
    text-decoration: none;
}

.single-product-page .product-price h2 .woocommerce-Price-amount,
.single-product-page .product-price h2 .woocommerce-Price-currencySymbol {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    opacity: 1;
    text-decoration: inherit;
}

.single-product-page .product-price del {
    color: #999999;
    font-size: 24px;
}

.single-product-page .product-description {
    font-size: 18px;
    line-height: 1.9;
    color: #666666;
    margin-bottom: 35px;
}

.single-product-page .feature-list {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    margin-top: 20px;
}

.single-product-page .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444444;
    font-weight: 500;
}

.single-product-page .feature-item i {
    color: var(--single-primary);
}

.single-product-page .single-weight-selector {
    margin: 0 0 28px;
}

.single-product-page .hc-hidden-variation-select,
.single-product-page .reset_variations {
    display: none !important;
}

.single-product-page .single-option-label {
    display: block;
    color: var(--single-text);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.single-product-page .product-weight-options {
    gap: 12px;
    margin-bottom: 0;
}

.single-product-page .weight-option {
    min-width: 74px;
    min-height: 44px;
    border-radius: 8px;
    border-color: var(--single-border);
    font-size: 14px;
    padding: 0 18px;
}

.single-product-page .weight-option:hover,
.single-product-page .weight-option.active {
    border-color: var(--single-primary);
    background: var(--single-primary);
}

.single-product-page .cart-area {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.single-product-page .quantity-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--single-border);
    border-radius: 12px;
    overflow: hidden;
    height: 60px;
}

.single-product-page .quantity-box button {
    width: 55px;
    height: 100%;
    border: none;
    background: var(--white-color);
    font-size: 22px;
}

.single-product-page .quantity-box input {
    width: 70px;
    height: 100%;
    text-align: center;
    border: none;
    outline: none;
    font-weight: 700;
}

.single-product-page .add-cart-btn {
    height: 60px;
    padding: 0 50px !important;
    border: none !important;
    border-radius: 12px !important;
    background: var(--single-primary) !important;
    color: var(--white-color) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    transition: background-color 0.3s ease;
}

.single-product-page .add-cart-btn.button {
    background: var(--single-primary) !important;
    color: var(--white-color) !important;
}

.single-product-page .add-cart-btn:hover {
    background: var(--single-primary-dark) !important;
}

.single-product-page .woocommerce-variation-price {
    display: none !important;
}

.single-product-page .wishlist-btn {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 1px solid var(--single-border);
    background: var(--white-color);
    font-size: 20px;
}

.single-product-page .product-meta {
    margin-top: 25px;
}

.single-product-page .product-meta p {
    margin-bottom: 14px;
    color: #666666;
}

.single-product-page .product-meta strong {
    color: #111111;
}

.single-product-page .share-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.single-product-page .share-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555555;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.single-product-page .share-icons a:hover {
    background: var(--single-primary);
    color: var(--white-color);
}

.single-product-page .trust-cards {
    margin-top: 60px;
}

.single-product-page .trust-card {
    background: var(--single-bg);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    height: 100%;
}

.single-product-page .trust-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--single-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex: 0 0 58px;
}

.single-product-page .trust-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.single-product-page .trust-card p {
    color: #666666;
    margin: 0;
}

.single-product-page .details-box {
    margin-top: 80px;
    border: 1px solid var(--single-border);
    border-radius: 20px;
    padding: 50px;
}

.single-product-page .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
}

.single-product-page .details-box p {
    color: #666666;
    line-height: 2;
    font-size: 17px;
}

.single-product-page .details-box img {
    max-width: 100%;
    height: auto;
}

.single-product-page .details-box .alignleft {
    float: left;
    margin: 6px 24px 16px 0;
}

.single-product-page .details-box .alignright {
    float: right;
    margin: 6px 0 16px 24px;
}

.single-product-page .details-box .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.single-product-page .comments-section {
    margin-top: 80px;
}

.single-product-page .comment-card {
    border: 1px solid var(--single-border);
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 25px;
}

.single-product-page .comment-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.single-product-page .comment-name {
    font-size: 20px;
    font-weight: 700;
}

.single-product-page .comment-date {
    color: #999999;
    font-size: 14px;
    flex: 0 0 auto;
}

.single-product-page .comment-text {
    color: #666666;
    line-height: 1.9;
}

.single-product-page .comment-form {
    margin-top: 50px;
    border: 1px solid var(--single-border);
    border-radius: 20px;
    padding: 40px;
}

.single-product-page .form-control {
    height: 58px;
    border-radius: 12px;
    border: 1px solid var(--single-border);
    box-shadow: none !important;
}

.single-product-page textarea.form-control {
    height: 180px;
    resize: none;
    padding-top: 18px;
}

.single-product-page .submit-btn {
    background: var(--single-primary);
    border: none;
    height: 58px;
    padding: 0 40px;
    border-radius: 12px;
    color: var(--white-color);
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.single-product-page .submit-btn:hover {
    background: var(--single-primary-dark);
}

.single-product-page .related-products {
    margin-top: 90px;
}

.single-product-page .product-card {
    border: 1px solid var(--single-border);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white-color);
    /* height: 100%; */
}

.single-product-page .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.single-product-page .product-image {
    height: 280px;
    overflow: hidden;
    background: #f7f7f7;
    position: relative;
}

.single-product-page .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .single-product-page .product-content {
    padding: 28px;
} */

.single-product-page .product-content small {
    color: #999999;
}

.single-product-page .product-content h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
}

/* .single-product-page .product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.single-product-page .product-bottom h5 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
}

.single-product-page .product-cart {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--single-primary);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
}

.single-product-page .related-products .product-card {
    border-radius: 14px;
    height: calc(100% - 30px);
}

.single-product-page .related-products .product-image {
    height: 240px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-product-page .related-products .product-image img {
    max-height: 180px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.single-product-page .comment-form-rating {
    width: 100%;
    margin-bottom: 0;
}

.single-product-page .comment-form-rating label {
    display: block;
    color: var(--single-text);
    font-weight: 700;
    margin-bottom: 10px;
}

.single-product-page .comment-form-rating select {
    width: min(240px, 100%);
    height: 48px;
    border: 1px solid var(--single-border);
    border-radius: 12px;
    padding: 0 14px;
}

@media(max-width: 991px) {
    .single-product-page .product-title {
        font-size: 36px;
    }

    .single-product-page .product-price h2 {
        font-size: 30px;
    }

    .single-product-page .product-gallery-main {
        height: 480px;
        margin-bottom: 40px;
    }

    .single-product-page .details-box,
    .single-product-page .comment-form {
        padding: 30px;
    }
}

@media(max-width: 767px) {
    .single-product-page .product-details-section {
        padding: 55px 0;
    }

    .single-product-page .product-title {
        font-size: 32px;
    }

    .single-product-page .product-gallery-main {
        height: 380px;
    }

    .single-product-page .feature-list {
        gap: 20px;
    }

    .single-product-page .cart-area {
        flex-direction: column;
    }

    .single-product-page .add-cart-btn,
    .single-product-page .wishlist-btn {
        width: 100%;
    }

    .single-product-page .details-box,
    .single-product-page .comment-form {
        padding: 25px;
    }

    .single-product-page .comment-top {
        flex-direction: column;
    }
}

@media(max-width: 575px) {
    .single-product-page .product-gallery-main {
        height: 320px;
    }

    .single-product-page .product-thumb {
        width: 78px;
        height: 78px;
        flex-basis: 78px;
    }

    .single-product-page .product-price h2 {
        font-size: 30px;
    }

    .single-product-page .product-price del {
        font-size: 20px;
    }

    .single-product-page .section-title {
        font-size: 30px;
    }

    .single-product-page .trust-card {
        padding: 22px;
    }
}


/* =========================================
   CART PAGE
========================================= */

body.woocommerce-cart .main>.container {
    width: 100%;
    max-width: none;
    margin: 0 !important;
    padding: 0;
}

.woocommerce-cart .woocommerce {
    width: 100%;
}

.shop-page-header {
    background: var(--secondary-color);
    padding: 65px 0;
}

.shop-page-header h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

.shop-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #777;
}

.shop-breadcrumb a {
    color: #777;
}

.cart-page-section {
    padding: 70px 0 100px;
}

.cart-page-section>.container {
    max-width: 1170px;
}

.cart-table-wrap {
    border: 1px solid #EAF5FF;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.cart-table {
    margin: 0;
}

.cart-table thead th {
    padding: 22px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid #EAF5FF;
}

.cart-table tbody td {
    padding: 22px;
    border-color: #EAF5FF;
}

.product-col {
    width: 45%;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product-image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-product-info h6 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 600;
}

.cart-product-info h6 a {
    color: inherit;
}

.cart-product-info span {
    color: #888;
    font-size: 13px;
}

.cart-qty {
    width: 95px;
    height: 42px;
    border: 1px solid #EAF5FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cart-qty button {
    width: 30px;
    border: none;
    background: none;
    font-weight: 600;
}

.cart-qty input {
    width: 35px;
    border: none;
    text-align: center;
    font-weight: 600;
}

.remove-cart-item {
    color: #999;
}

.cart-bottom {
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.continue-shopping {
    color: var(--shop-primary);
    font-size: 14px;
    font-weight: 500;
}

.continue-shopping i {
    margin-right: 6px;
}

.theme-btn {
    background: var(--shop-primary);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
}

.theme-btn.button,
.woocommerce .theme-btn.button {
    background: var(--shop-primary) !important;
    color: #fff !important;
}

.theme-btn.button:disabled,
.woocommerce .theme-btn.button:disabled,
.theme-btn.button.disabled,
.woocommerce .theme-btn.button.disabled {
    background: var(--shop-primary) !important;
    color: #fff !important;
    opacity: 1 !important;
}

.cart-total-card {
    background: var(--secondary-color);
    border: 1px solid #EAF5FF;
    border-radius: 12px;
    padding: 30px;
    color: #111111;
    font-family: inherit;
}

.cart-total-card h3 {
    color: var(--shop-primary);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.woocommerce .cart-total-card,
.woocommerce .cart-total-card p,
.woocommerce .cart-total-card span,
.woocommerce .cart-total-card label,
.woocommerce .cart-total-card strong,
.woocommerce .cart-total-card .woocommerce-Price-amount,
.woocommerce .cart-total-card .woocommerce-Price-currencySymbol {
    color: #111111;
}

.cart-total-row,
.cart-grand-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111111;
    font-size: 16px;
    line-height: 1.4;
}

.cart-total-row {
    margin-bottom: 0;
}

.cart-total-row span,
.cart-grand-total span {
    color: #111111;
}

.cart-divider {
    height: 1px;
    background: #cbe6ff;
    margin: 22px 0;
}

.shipping-section h6,
.shipping-address h6,
.coupon-section h6 {
    color: var(--shop-primary);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.woocommerce .cart-total-card .shipping-section h6,
.woocommerce .cart-total-card .shipping-address h6,
.woocommerce .cart-total-card .coupon-section h6 {
    color: var(--shop-primary);
}

.shipping-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    color: #111111;
}

.shipping-option input {
    margin-right: 5px;
}

.shipping-address strong {
    display: block;
    margin-bottom: 8px;
    color: #111111;
    line-height: normal;
    font-size: 15px;
    font-weight: 400;
}

.shipping-address a {
    color: var(--accent-secondary-color);
    font-size: 14px;
}

.woocommerce .cart-total-card .shipping-address a {
    color: var(--accent-secondary-color);
}

.cart-grand-total strong {
    color: #111111;
    font-size: 20px;
    font-weight: 700;
}

.coupon-section {
    margin-top: 18px;
}

.coupon-form {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.coupon-form input {
    flex: 1;
    height: 50px;
    border: 1px solid #EAF5FF;
    border-radius: 8px;
    padding: 0 15px;
    color: #111111;
    font-size: 16px;
    line-height: 50px;
    background: #fff;
}

.coupon-form button {
    border: none;
    background: var(--shop-primary);
    color: #fff;
    border-radius: 8px;
    width: 80px;
    height: 50px;
    padding: 0;
    font-weight: 600;
    line-height: 50px;
}

.coupon-form button.button,
.woocommerce .coupon-form button.button {
    background: var(--shop-primary) !important;
    color: #fff !important;
    padding: 0 !important;
    min-height: 50px;
    height: 50px;
    border-radius: 8px;
    font-weight: 600;
    line-height: 50px;
}

.checkout-btn {
    width: 100%;
    height: 56px;
    margin-top: 24px;
    border: none;
    border-radius: 8px;
    background: var(--shop-primary);
    color: #fff;
    font-weight: 600;
    line-height: 56px;
}

a.checkout-btn,
.woocommerce a.checkout-btn.button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--shop-primary) !important;
    color: #fff !important;
    text-align: center;
    padding: 0 !important;
    min-height: 56px;
    border-radius: 8px !important;
    font-weight: 600;
    line-height: 56px;
}

.woocommerce .cart-total-card a.checkout-btn,
.woocommerce .cart-total-card a.checkout-btn span {
    color: #fff !important;
}

/* Mobile */

@media (max-width: 991px) {

    .cart-total-card {
        padding: 20px;
        border-radius: 10px;
    }

    .cart-total-card h3 {
        font-size: 28px;
    }

    .cart-grand-total strong {
        font-size: 18px;
    }

    .cart-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 767px) {

    .shop-page-header {
        padding: 45px 0;
    }

    .shop-page-header h1 {
        font-size: 36px;
    }

    .cart-table-wrap {
        border: none;
    }

    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        position: relative;
        border: 1px solid #ececec;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 15px;
    }

    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cart-table td:nth-child(2)::before {
        content: "Price";
        font-weight: 600;
    }

    .cart-table td:nth-child(3)::before {
        content: "Quantity";
        font-weight: 600;
    }

    .cart-table td:nth-child(4)::before {
        content: "Subtotal";
        font-weight: 600;
    }

    .cart-table tr td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .cart-product {
        margin-bottom: 10px;
    }

    .cart-qty {
        margin-top: 5px;
    }

    .checkout-btn {
        height: 54px;
        position: sticky;
        bottom: 10px;
        z-index: 10;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    }

    .remove-cart-item {
        position: absolute;
        top: 15px;
        right: 15px;
        color: #999;
        font-size: 18px;
        line-height: 1;
    }
}


/* =========================================
   MY ACCOUNT PAGE
========================================= */

.account-page-section {
    padding: 70px 0 100px;
}

body.woocommerce-account-page .main>.container,
body.woocommerce-account .main>.container {
    width: 100%;
    max-width: none;
    margin: 0 !important;
    padding: 0;
}

body.woocommerce-account-page .woocommerce,
body.woocommerce-account .woocommerce {
    width: 100%;
}

body.woocommerce-account-page .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account-page .woocommerce-MyAccount-content,
body.woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
}

body.woocommerce-account-page .account-page-section .row,
body.woocommerce-account .account-page-section .row {
    align-items: flex-start;
}

body.woocommerce-account-page .woocommerce-MyAccount-content,
body.woocommerce-account .woocommerce-MyAccount-content {
    line-height: 1.65;
}

/* Mobile Menu Button */

.account-mobile-nav {
    margin-bottom: 20px;
}

.account-menu-btn {
    width: 100%;
    height: 52px;
    border: none;
    background: var(--shop-primary);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
}

.account-menu-btn i {
    margin-right: 8px;
}

/* Sidebar */

.account-sidebar {
    border: 1px solid #ececec;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.account-nav {
    padding: 12px;
    list-style: none;
    margin: 0;
}

.account-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 16px;
    margin-bottom: 6px;
    text-align: left;
    text-decoration: none;
    width: 100%;
}

.account-nav .nav-link i {
    width: 18px;
    text-align: center;
}

.account-nav .nav-link.active {
    background: var(--shop-primary);
    color: #fff;
}

.woocommerce-MyAccount-navigation li {
    list-style: none;
}

/* Dashboard Header */

.dashboard-header {
    margin-bottom: 30px;
}

.dashboard-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.dashboard-header p {
    color: #777;
    line-height: 1.8;
    max-width: 700px;
}

/* Stat Cards */

.dashboard-stat-card {
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    height: 100%;
}

.dashboard-stat-card span {
    display: block;
    color: #888;
    font-size: 13px;
    margin-bottom: 8px;
}

.dashboard-stat-card h3 {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
    color: #222;
}

/* Generic Account Card */

.account-card {
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fff;
    padding: 25px;
}

.woocommerce-MyAccount-content>p,
.woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-MyAccount-content .woocommerce-Message,
.woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-MyAccount-content .woocommerce-error {
    border-radius: 12px;
    line-height: 1.65;
}

.woocommerce-MyAccount-content>form,
.woocommerce-MyAccount-content .woocommerce-order-details,
.woocommerce-MyAccount-content .woocommerce-customer-details,
.woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address,
.woocommerce-MyAccount-content .woocommerce-address-fields,
.woocommerce-MyAccount-content .woocommerce-EditAccountForm,
.woocommerce-MyAccount-content .woocommerce-table--order-downloads {
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fff;
    padding: 25px;
}

.account-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3,
.woocommerce-MyAccount-content legend {
    color: var(--shop-primary);
    font-weight: 700;
    line-height: 1.25;
}

/* Tables */

.account-table,
.account-card table {
    margin-bottom: 0;
}

.account-card table th {
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid #ececec;
    padding: 14px;
}

.account-card table td {
    padding: 14px;
    vertical-align: middle;
}

.account-card table a {
    color: var(--shop-primary);
    font-weight: 500;
}

.account-card .table-responsive {
    overflow-x: visible;
}

.woocommerce-MyAccount-content table.shop_table {
    margin-bottom: 0;
}

.woocommerce-MyAccount-content table.shop_table th {
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid #ececec;
    padding: 14px;
}

.woocommerce-MyAccount-content table.shop_table td {
    padding: 14px;
    vertical-align: middle;
}

.woocommerce-MyAccount-content table.shop_table a {
    color: var(--shop-primary);
    font-weight: 500;
}

.woocommerce-MyAccount-content .woocommerce-button,
.woocommerce-MyAccount-content .button,
.account-auth-card .woocommerce-button,
.account-auth-card .button {
    border: none;
    background: var(--shop-primary) !important;
    color: #fff !important;
    height: 48px;
    padding: 0 22px !important;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Status */

.status-completed {
    color: #5e8c34;
    font-weight: 600;
}

.status-processing {
    color: #f59e0b;
    font-weight: 600;
}

.status-pending,
.status-on-hold,
.status-draft,
.status-checkout-draft {
    color: #f59e0b;
    font-weight: 600;
}

.status-cancelled,
.status-failed,
.status-refunded {
    color: #dc2626;
    font-weight: 600;
}

/* Small Table Buttons */

.table-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 36px;
    background: var(--shop-primary);
    color: #fff !important;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
}

.table-btn:hover {
    color: #fff !important;
}

.woocommerce-MyAccount-content .table-btn,
.woocommerce-MyAccount-content table.shop_table .button,
.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .button,
.woocommerce-MyAccount-content .woocommerce-table--order-downloads .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 70px;
    height: 36px;
    min-height: 36px;
    padding: 0 16px !important;
    border-radius: 6px;
    background: var(--shop-primary) !important;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 36px;
    text-decoration: none;
}

.woocommerce-MyAccount-content .woocommerce-info .button,
.woocommerce-MyAccount-content .woocommerce-Message .button,
.woocommerce-MyAccount-content .woocommerce-message .button {
    float: none;
    width: auto;
    min-width: 140px;
    height: 42px;
    min-height: 42px;
    padding: 0 18px !important;
    border-radius: 6px;
    background: var(--shop-primary) !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 42px;
}

.woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-MyAccount-content .woocommerce-Message,
.woocommerce-MyAccount-content .woocommerce-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.account-pagination {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
}

.account-view-order {
    display: grid;
    gap: 24px;
}

.account-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--shop-primary);
    font-weight: 700;
    margin-bottom: 18px;
}

.account-order-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.account-order-meta div {
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 16px;
    background: #fbfdff;
}

.account-order-meta span {
    display: block;
    margin-bottom: 7px;
    color: #777;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.account-order-meta strong,
.account-order-meta strong .woocommerce-Price-amount,
.account-order-meta strong .woocommerce-Price-currencySymbol,
.account-order-meta strong bdi {
    color: var(--shop-primary);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.account-view-order .woocommerce-order-details,
.account-view-order .woocommerce-customer-details {
    margin: 0;
}

.account-view-order .woocommerce-order-details__title,
.account-view-order .woocommerce-column__title {
    margin-bottom: 16px;
    color: var(--shop-primary);
    font-size: 24px;
    font-weight: 700;
}

.account-view-order .woocommerce-customer-details .woocommerce-columns {
    display: block;
    /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
    gap: 24px;
}

.account-view-order .woocommerce-customer-details .col-1,
.account-view-order .woocommerce-customer-details .col-2,
.account-view-order .woocommerce-column--billing-address,
.account-view-order .woocommerce-column--shipping-address {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    flex: 0 1 auto !important;
    padding: 0 !important;
}

.account-view-order .woocommerce-customer-details address {
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 18px;
    background: #fff;
}

.account-order-notes-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.account-order-notes-card li {
    border-bottom: 1px solid #ececec;
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.account-order-notes-card li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Address */

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

.address-header h4 {
    margin: 0;
}

.address-header a {
    color: var(--shop-primary);
    font-weight: 600;
}

.account-card p {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.65;
}

.woocommerce-MyAccount-content address,
.woocommerce-MyAccount-content .woocommerce-customer-details address,
.woocommerce-MyAccount-content .woocommerce-Address address {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.woocommerce-MyAccount-content address br,
.woocommerce-MyAccount-content .woocommerce-customer-details address br,
.woocommerce-MyAccount-content .woocommerce-Address address br {
    content: "";
    display: block;
    margin-bottom: 4px;
}

/* Forms */

.account-card label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.account-card .form-control {
    height: 52px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: none;
}

.account-page-section input.input-text,
.account-page-section input[type="text"],
.account-page-section input[type="email"],
.account-page-section input[type="password"],
.account-page-section input[type="tel"],
.account-page-section select,
.account-page-section textarea {
    width: 100%;
    min-height: 52px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: none;
    padding: 0 15px;
    background: #fff;
}

.account-page-section textarea {
    min-height: 140px;
    padding-top: 12px;
}

.account-page-section label {
    color: #111;
    font-weight: 500;
    margin-bottom: 8px;
}

.account-auth-card {
    height: 100%;
}

.account-auth-card h4 {
    color: var(--shop-primary);
}

.account-auth-card p {
    color: #666;
    line-height: 1.65;
}

.account-auth-card .form-row {
    margin-bottom: 18px;
}

.account-auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.account-auth-actions label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.account-auth-actions input[type="checkbox"] {
    width: auto;
    min-height: auto;
}

.account-auth-actions a,
.woocommerce-MyAccount-content a {
    color: var(--shop-primary);
}

.account-password-card {
    max-width: 100%;
}

.account-password-card .theme-btn,
.account-auth-card .theme-btn {
    min-width: 110px;
}

.account-auth-link {
    display: inline-flex;
    margin-top: 8px;
    color: var(--shop-primary);
    font-weight: 600;
}

.account-card textarea.form-control {
    height: 140px;
}

.account-card h5 {
    font-size: 18px;
    font-weight: 600;
}

/* Wishlist */

.wishlist-item {
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 20px;
    background: #fff;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.wishlist-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wishlist-product img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.wishlist-product h5 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
}

.wishlist-product span {
    color: var(--accent-secondary-color);
    font-weight: 600;
}

.wishlist-actions {
    display: flex;
    gap: 10px;
}

.remove-wishlist {
    border: none;
    background: none;
    color: #dc2626;
    font-weight: 600;
}

/* Theme Button */

.theme-btn {
    border: none;
    background: var(--shop-primary);
    color: #fff;
    height: 48px;
    padding: 0 22px;
    border-radius: 6px;
    font-weight: 600;
}

.theme-btn:hover {
    color: #fff;
}

/* Offcanvas */

.offcanvas {
    max-width: 300px;
}

body.woocommerce-account-page #accountMenu,
body.woocommerce-account #accountMenu {
    position: fixed !important;
    top: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 2147483647 !important;
    width: 300px;
    max-width: 85vw;
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100vh !important;
    max-height: 100dvh !important;
    margin: 0 !important;
    overflow-y: auto;
    background: #fff;
    transform: translateX(-100%);
}

body.woocommerce-account-page .offcanvas-backdrop,
body.woocommerce-account .offcanvas-backdrop {
    z-index: 2147483646 !important;
}

body.woocommerce-account-page #accountMenu.show,
body.woocommerce-account #accountMenu.show {
    transform: none !important;
}

body.woocommerce-account-page #accountMenu.hiding,
body.woocommerce-account #accountMenu.hiding,
body.woocommerce-account-page #accountMenu.showing,
body.woocommerce-account #accountMenu.showing {
    transition: transform 0.3s ease-in-out;
}

.post-entry img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.post-entry .alignleft {
    float: left;
    margin: 6px 24px 18px 0;
}

.post-entry .alignright {
    float: right;
    margin: 6px 0 18px 24px;
}

.post-entry .aligncenter {
    display: block;
    margin: 24px auto;
}

.post-entry .wp-caption {
    max-width: 100%;
}

.post-entry .wp-caption-text {
    color: #777;
    font-size: 14px;
    margin-top: 8px;
    text-align: center;
}

.post-page-links {
    margin-top: 25px;
}

.post-comments {
    margin-top: 50px;
}

.theme-comments {
    border: 1px solid #ececec;
    border-radius: 20px;
    background: #fff;
    padding: 35px;
}

.theme-comments .comments-title,
.theme-comments .comment-reply-title {
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 24px;
}

.theme-comments .comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.theme-comments .comment-list .comment,
.theme-comments .comment-list .pingback,
.theme-comments .comment-list .trackback {
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.theme-comments .comment-list .children {
    list-style: none;
    margin: 20px 0 0 28px;
    padding: 0;
}

.theme-comments .comment-body {
    position: relative;
}

.theme-comments .comment-author {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.theme-comments .comment-author .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.theme-comments .comment-author .says {
    display: none;
}

.theme-comments .comment-metadata,
.theme-comments .comment-meta {
    color: #777;
    font-size: 14px;
    margin-bottom: 14px;
}

.theme-comments .comment-metadata a,
.theme-comments .comment-meta a {
    color: #777;
}

.theme-comments .comment-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 12px;
}

.theme-comments .comment-content p:last-child {
    margin-bottom: 0;
}

.theme-comments .reply {
    margin-top: 14px;
}

.theme-comments .comment-reply-link,
.theme-comments .comment-edit-link,
.theme-comments .comment-navigation a {
    color: var(--accent-color);
    font-weight: 700;
}

.theme-comments .comment-reply-link:hover,
.theme-comments .comment-edit-link:hover,
.theme-comments .comment-navigation a:hover {
    color: var(--primary-color);
}

.theme-comments .comment-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 35px;
}

.theme-comment-form {
    border-top: 1px solid #ececec;
    padding-top: 30px;
}

.theme-comment-form p {
    margin-bottom: 18px;
}

.theme-comment-form label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.theme-comment-form input[type="text"],
.theme-comment-form input[type="email"],
.theme-comment-form input[type="url"],
.theme-comment-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    color: var(--text-color);
    padding: 14px 16px;
    box-shadow: none;
}

.theme-comment-form input[type="text"],
.theme-comment-form input[type="email"],
.theme-comment-form input[type="url"] {
    height: 52px;
}

.theme-comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.theme-comment-form .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.theme-comment-form .comment-form-cookies-consent input {
    margin-top: 5px;
}

.theme-comment-form .comment-form-cookies-consent label {
    color: #666;
    font-weight: 500;
    margin-bottom: 0;
}

.theme-comment-form .form-submit {
    margin-bottom: 0;
}

.theme-comment-form .submit.theme-btn {
    border: 0;
    background: var(--primary-color);
    color: #fff;
    height: 52px;
    padding: 0 26px;
    border-radius: 8px;
    font-weight: 700;
}

.theme-comment-form .submit.theme-btn:hover {
    background: var(--accent-color);
}

@media (max-width: 767px) {
    .theme-comments {
        padding: 22px;
        border-radius: 16px;
    }

    .theme-comments .comments-title,
    .theme-comments .comment-reply-title {
        font-size: 24px;
    }

    .theme-comments .comment-list .comment,
    .theme-comments .comment-list .pingback,
    .theme-comments .comment-list .trackback {
        padding: 18px;
    }

    .theme-comments .comment-list .children {
        margin-left: 12px;
    }
}

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

.offcanvas-header h5 {
    margin: 0;
    font-weight: 700;
}

.offcanvas .account-nav {
    padding: 0;
}

.offcanvas .nav-link {
    border-radius: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #f2f2f2;
}

/* Dashboard Recent Orders */

#dashboard-tab .table td {
    padding: 16px 12px;
}

#dashboard-tab .table tr:last-child td {
    border-bottom: none;
}

/* Responsive */

@media(max-width:1199px) {

    .dashboard-stat-card h3 {
        font-size: 28px;
    }

}

@media(max-width:991px) {

    .account-page-section {
        padding: 40px 0 80px;
    }

    .dashboard-header h2 {
        font-size: 28px;
    }

    .dashboard-stat-card {
        padding: 18px;
    }

}

@media(max-width:767px) {

    .dashboard-header {
        margin-bottom: 20px;
    }

    .dashboard-header h2 {
        font-size: 24px;
    }

    .dashboard-header p {
        font-size: 14px;
    }

    .account-card {
        padding: 18px;
    }

    .account-card h4 {
        font-size: 20px;
    }

    .dashboard-stat-card {
        text-align: center;
    }

    .dashboard-stat-card h3 {
        font-size: 24px;
    }

    /* Mobile Tables */

    .account-card .table-responsive {
        overflow-x: visible;
    }

    .account-card table.my_account_orders,
    .account-card table.my_account_orders tbody,
    .account-card table.my_account_orders tr,
    .account-card table.my_account_orders td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .account-card table.my_account_orders thead {
        display: none;
    }

    .account-card table.my_account_orders tr {
        border: 1px solid #e6eef8;
        border-radius: 12px;
        padding: 14px;
        margin-bottom: 14px;
        background: #fff;
        box-shadow: 0 10px 24px rgba(7, 43, 97, .05);
    }

    .account-card table.my_account_orders tr:last-child {
        margin-bottom: 0;
    }

    .account-card table.my_account_orders td {
        display: grid;
        grid-template-columns: minmax(92px, 36%) minmax(0, 1fr);
        gap: 12px;
        align-items: center;
        padding: 10px 0;
        border: 0;
        border-bottom: 1px solid #edf3fa;
        color: #506760;
        line-height: 1.45;
        word-break: break-word;
    }

    .account-card table.my_account_orders td::before {
        content: attr(data-title);
        color: #111;
        font-weight: 700;
    }

    .account-card table.my_account_orders td:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .account-card table.my_account_orders .woocommerce-orders-table__cell-order-actions,
    .account-card table.my_account_orders td[data-title="Actions"] {
        grid-template-columns: 1fr;
        padding-top: 12px;
    }

    .account-card table.my_account_orders .woocommerce-orders-table__cell-order-actions::before,
    .account-card table.my_account_orders td[data-title="Actions"]::before {
        display: none;
    }

    .account-card table.my_account_orders .table-btn,
    .account-card table.my_account_orders .button {
        width: 100%;
    }

    .account-order-meta,
    .account-view-order .woocommerce-customer-details .woocommerce-columns {
        grid-template-columns: 1fr;
    }

    .account-view-order .woocommerce-order-details,
    .account-view-order .woocommerce-customer-details,
    .account-view-order .woocommerce-Addresses .woocommerce-Address {
        padding: 18px;
    }

    .account-view-order .woocommerce-order-details__title,
    .account-view-order .woocommerce-column__title {
        font-size: 22px;
    }

    .account-view-order table.shop_table,
    .account-view-order table.shop_table tbody,
    .account-view-order table.shop_table tfoot,
    .account-view-order table.shop_table tr,
    .account-view-order table.shop_table th,
    .account-view-order table.shop_table td {
        display: block;
        width: 100%;
    }

    .account-view-order table.shop_table thead {
        display: none;
    }

    .account-view-order table.shop_table tr {
        border-bottom: 1px solid #edf3fa;
    }

    .account-view-order table.shop_table th,
    .account-view-order table.shop_table td {
        border: 0;
        padding: 10px 0;
    }

    .account-view-order table.shop_table td {
        color: #506760;
        line-height: 1.45;
    }

    .account-view-order table.shop_table tfoot th {
        color: #111;
        padding-bottom: 4px;
    }

    /* Wishlist */

    .wishlist-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .wishlist-actions {
        width: 100%;
        flex-direction: column;
    }

    .wishlist-actions .theme-btn {
        width: 100%;
    }

    .remove-wishlist {
        width: 100%;
        text-align: center;
        padding: 10px;
        border: 1px solid #ececec;
        border-radius: 6px;
    }

    /* Address */

    .address-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Form */

    .account-card .form-control {
        height: 48px;
    }

}

@media(max-width:575px) {

    .dashboard-stat-card {
        padding: 15px;
    }

    .dashboard-stat-card h3 {
        font-size: 22px;
    }

}


/* Cart Page */

.woocommerce .cart-total-card a.checkout-btn {
    margin-top: 20px;
}

.woocommerce-message:focus-visible,
.woocommerce-info:focus-visible,
.woocommerce-info:focus,
.woocommerce-Message:focus {
    --bs-focus-ring-color: white !important;
    outline: none !important;
    box-shadow: 0 0 0 .25rem var(--bs-focus-ring-color) !important;
}

.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--primary-color) !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--primary-color) !important;
}

.wc-block-components-address-card address {
    font-size: 15px;
    color: #2b2d2f;
}

.wc-block-components-address-card address .wc-block-components-address-card__address-section--primary {
    color: var(--primary-color);
}

.wc-block-components-checkout-order-summary__title-text,
.wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item-tax-value {
    color: var(--primary-color);
}

.wc-block-components-totals-coupon__button {
    background: var(--primary-color) !important;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-weight: 600;
}

.wc-block-components-product-badge {
    background: var(--accent-secondary-color) !important;
    color: #fff !important;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-name {
    color: var(--primary-color) !important;
}

.wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button--full-width {
    background: var(--primary-color) !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    height: 56px;
}

/* Order Received Page */

body.woocommerce-order-received-page .main>.container,
body.woocommerce-order-received .main>.container {
    width: 100%;
    max-width: none;
    margin: 0 !important;
    padding: 0;
}

.order-confirmation-section {
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 44%);
    padding: 64px 0 96px;
}

.order-confirmation-section>.container {
    max-width: 1170px;
}

.order-confirmation-hero {
    position: relative;
    overflow: hidden;
    background: var(--secondary-color);
    border: 1px solid #d9eeff;
    border-radius: 16px;
    padding: 42px 44px;
    margin-bottom: 28px;
}

.order-confirmation-hero::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(77, 168, 255, .16);
}

.order-confirmation-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--shop-primary);
    color: #fff;
    margin-bottom: 18px;
    font-size: 24px;
}

.order-confirmation-hero--failed .order-confirmation-icon {
    background: var(--error-color);
}

.order-confirmation-kicker {
    margin: 0 0 8px;
    color: var(--accent-secondary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.order-confirmation-hero h1 {
    max-width: 720px;
    margin-bottom: 12px;
    color: var(--shop-primary);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.14;
}

.order-confirmation-hero p:last-child {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 17px;
}

.order-confirmation-overview {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 28px !important;
    padding: 0 !important;
    list-style: none;
}

.order-confirmation-overview li {
    float: none !important;
    clear: none !important;
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    padding: 20px !important;
    border: 1px solid #EAF5FF !important;
    border-right: 1px solid #EAF5FF !important;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(7, 43, 97, .06);
}

.order-confirmation-overview li::before,
.order-confirmation-overview li::after {
    display: none !important;
}

.order-confirmation-overview span {
    display: block;
    margin-bottom: 8px;
    color: #667D72;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.order-confirmation-overview strong {
    display: block;
    color: var(--shop-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.order-confirmation-overview strong .woocommerce-Price-amount,
.order-confirmation-overview strong .woocommerce-Price-currencySymbol,
.order-confirmation-overview strong bdi {
    display: inline !important;
    color: var(--shop-primary) !important;
    font-size: inherit !important;
    font-weight: 700 !important;
    line-height: inherit !important;
}

.order-confirmation-note,
.order-confirmation-content>p,
.order-confirmation-content .woocommerce-bacs-bank-details {
    border: 1px solid #EAF5FF;
    border-radius: 12px;
    background: #fff;
    padding: 22px;
    margin-bottom: 28px;
}

.order-confirmation-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--shop-primary);
    font-size: 18px;
}

.order-confirmation-note p,
.order-confirmation-content>p {
    margin-bottom: 0;
}

.order-confirmation-content .woocommerce-order-details,
.order-confirmation-content .woocommerce-customer-details {
    margin-bottom: 34px;
}

.order-confirmation-content .woocommerce-order-details {
    margin-top: 34px;
}

.order-confirmation-content .woocommerce-order-details__title,
.order-confirmation-content .woocommerce-column__title {
    margin-bottom: 14px;
    color: var(--shop-primary);
    font-size: 30px;
    font-weight: 700;
}

.order-confirmation-content table.shop_table {
    overflow: hidden;
    margin: 0;
    border: 1px solid #EAF5FF !important;
    border-radius: 12px;
    background: #fff;
}

.order-confirmation-content table.shop_table th,
.order-confirmation-content table.shop_table td {
    padding: 17px 20px !important;
    border-color: #EAF5FF !important;
    color: #506760;
    line-height: 1.5;
}

.order-confirmation-content table.shop_table th {
    color: var(--shop-primary);
    font-weight: 700;
}

.order-confirmation-content table.shop_table a {
    color: #005eff;
}

.order-confirmation-content table.shop_table tfoot th,
.order-confirmation-content table.shop_table tfoot td {
    background: #fbfdff;
}

.order-confirmation-content table.shop_table tfoot tr:last-child th,
.order-confirmation-content table.shop_table tfoot tr:last-child td {
    color: var(--shop-primary);
    font-size: 18px;
    font-weight: 800;
}

/* .order-confirmation-content .woocommerce-customer-details .woocommerce-columns {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
} */

.woocommerce-column--2 .woocommerce-column__title {
    margin-top: 20px !important;
}

.order-confirmation-content .woocommerce-column--billing-address,
.order-confirmation-content .woocommerce-column--shipping-address,
.order-confirmation-content .woocommerce-customer-details .col-1,
.order-confirmation-content .woocommerce-customer-details .col-2 {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    flex: 0 1 auto !important;
    padding: 0 !important;
}

.order-confirmation-content address {
    min-height: 132px;
    margin: 0;
    padding: 20px !important;
    border: 1px solid #EAF5FF !important;
    border-radius: 12px;
    background: #fff;
    color: #506760;
    font-style: normal;
    line-height: 1.55;
}

.order-confirmation-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.order-confirmation-link {
    color: var(--shop-primary);
    font-weight: 700;
}

.order-confirmation-footer {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.woocommerce a.order-confirmation-shop-button,
a.order-confirmation-shop-button {
    width: auto;
    min-width: 220px;
    max-width: 100%;
    gap: 8px;
    margin-top: 0;
    padding: 0 28px !important;
    position: static;
    bottom: auto;
    box-shadow: 0 14px 34px rgba(7, 43, 97, .16);
}

@media (max-width: 991px) {
    .order-confirmation-section {
        padding: 48px 0 78px;
    }

    .order-confirmation-hero {
        padding: 34px 28px;
    }

    .order-confirmation-hero h1 {
        font-size: 34px;
    }

    .order-confirmation-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .order-confirmation-section {
        padding: 34px 0 64px;
    }

    .order-confirmation-hero {
        padding: 28px 22px;
        border-radius: 12px;
    }

    .order-confirmation-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .order-confirmation-hero h1 {
        font-size: 28px;
    }

    .order-confirmation-hero p:last-child {
        font-size: 15px;
    }

    .order-confirmation-overview {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .order-confirmation-content .woocommerce-order-details__title,
    .order-confirmation-content .woocommerce-column__title {
        font-size: 24px;
    }

    .order-confirmation-content table.shop_table,
    .order-confirmation-content table.shop_table tbody,
    .order-confirmation-content table.shop_table tfoot,
    .order-confirmation-content table.shop_table tr,
    .order-confirmation-content table.shop_table th,
    .order-confirmation-content table.shop_table td {
        display: block;
        width: 100%;
    }

    .order-confirmation-content table.shop_table thead {
        display: none;
    }

    .order-confirmation-content table.shop_table tr {
        border-bottom: 1px solid #EAF5FF;
    }

    .order-confirmation-content table.shop_table th,
    .order-confirmation-content table.shop_table td {
        border: 0 !important;
    }

    .order-confirmation-content table.shop_table td {
        padding-top: 0 !important;
    }

    .order-confirmation-content table.shop_table tfoot th {
        padding-bottom: 4px !important;
    }

    .order-confirmation-content .woocommerce-customer-details .woocommerce-columns {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .order-confirmation-footer {
        justify-content: stretch;
    }

    .woocommerce a.order-confirmation-shop-button,
    a.order-confirmation-shop-button {
        width: 100%;
    }
}

.return-to-shop {
    text-align: center;
}

@media (max-width: 768px) {

    .woocommerce table.shop_table_responsive tr td,
    .woocommerce-page table.shop_table_responsive tr td {
        display: flex !important;
    }
}

.woocommerce-message {
    line-height: normal;
}

.woocommerce table.shop_table {
    border: none !important;
}