.onefox-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.onefox-btn-onefox-cart,
.onefox-btn-service-category,
.onefox-btn-service-table,
.onefox-btn-woo-cart {
    background: #00b2ff;
    color: #ffffff;
    border: 1px solid #00b2ff;
}

.onefox-btn-onefox-cart:hover,
.onefox-btn-service-category:hover,
.onefox-btn-service-table:hover,
.onefox-btn-woo-cart:hover {
    background: #0094d6;
    color: #ffffff;
    border-color: #0094d6;
}

.onefox-cart-button-wrap {
    margin: 12px 0;
}

.onefox-product-gallery {
    width: 100%;
    box-sizing: border-box;
}

.onefox-gallery-main {
    width: 100%;
    min-width: 0;
}

.onefox-main-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.onefox-layout-bottom {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}

.onefox-layout-bottom .onefox-gallery-thumbs {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.onefox-layout-bottom .onefox-thumb-btn {
    appearance: none;
    border: 1px solid transparent;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
}

.onefox-layout-bottom .onefox-thumb-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.onefox-layout-left {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(68px, 8vw, 96px);
    gap: 14px;
    align-items: stretch;
}

.onefox-layout-left .onefox-gallery-main {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
}

.onefox-layout-left .onefox-main-image {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.onefox-layout-left .onefox-gallery-thumbs {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
    height: 100%;
    align-self: stretch;
}

.onefox-layout-left .onefox-thumb-btn {
    appearance: none;
    border: 1px solid transparent;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
    width: 100%;
    height: 100%;
    display: block;
}

.onefox-layout-left .onefox-thumb-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.onefox-thumb-btn.is-active {
    border-color: #49372a;
    opacity: 1;
}

.onefox-thumb-btn:not(.is-active) {
    opacity: 0.75;
}

.onefox-service-category-list {
    display: grid;
    gap: 34px 28px;
    margin: 24px 0;
    align-items: start;
}

.onefox-service-columns-1 {
    grid-template-columns: 1fr;
}

.onefox-service-columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.onefox-service-columns-4 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.onefox-service-columns-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.onefox-service-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    position: relative;
}

.onefox-service-category-list .onefox-service-card {
    min-width: 0;
    min-height: 100%;
}

.onefox-service-card__image-wrap {
    display: block;
    overflow: hidden;
    position: relative;
    line-height: 0;
}

.onefox-service-category-list .onefox-service-card__image-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    max-height: none;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    line-height: 0;
    border-radius: 18px;
    border: 1px solid #edf0f4;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.onefox-service-category-list .onefox-service-card--no-image .onefox-service-card__image-wrap {
    display: block;
}

.onefox-service-category-list .onefox-service-card--no-image .onefox-service-card__image-wrap::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 14px;
    background:
        radial-gradient(circle at top left, rgba(15, 23, 42, 0.05), transparent 46%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.onefox-service-card__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.onefox-service-category-list .onefox-service-card__image {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}

.onefox-service-category-list .onefox-service-card__image-wrap > img.onefox-service-card__image {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 12px !important;
    box-sizing: border-box !important;
}

.onefox-service-category-list .onefox-service-card__image-wrap > span.onefox-service-card__image {
    position: absolute;
    inset: 0;
    min-height: 0 !important;
    padding: 12px !important;
    box-sizing: border-box !important;
}

.onefox-service-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 6px 0;
    flex: 1;
}

.onefox-service-category-list .onefox-service-card__body {
    min-width: 0;
    align-items: center;
    text-align: center;
}

.onefox-service-card__title {
    margin: 0;
    font-size: 16px;
    line-height: 1.32;
    font-weight: 600;
}

.onefox-service-category-list .onefox-service-card .onefox-service-card__body h3.onefox-service-card__title,
.onefox-service-category-list .onefox-service-card .onefox-service-card__body h3.onefox-service-card__title a,
.onefox-service-category-list .onefox-service-card .onefox-service-card__body h3.onefox-service-card__title a:visited {
    font-size: 16px !important;
    line-height: 1.32 !important;
    font-weight: 600 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.onefox-service-card__title a {
    color: #111827;
    text-decoration: none;
}

.onefox-service-category-list .onefox-service-card__title a,
.onefox-service-category-list .onefox-service-card__title a:visited {
    color: #111111;
    text-decoration: none;
}

.onefox-service-card__desc,
.onefox-service-card__price,
.onefox-service-table-empty {
    color: #4b5563;
}

.onefox-service-category-list .onefox-service-card__price {
    font-weight: 600;
    line-height: 1.4;
    color: #111111;
    font-size: 13px;
}

.onefox-service-card__btn {
    align-self: flex-start;
}

.woocommerce ul.products li.product .onefox-price-cart-row,
.et_pb_shop ul.products li.product .onefox-price-cart-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.woocommerce ul.products li.product .onefox-loop-price-wrap,
.et_pb_shop ul.products li.product .onefox-loop-price-wrap {
    flex: 1 1 auto;
    min-width: 0;
    display: block;
}

.woocommerce ul.products li.product .onefox-loop-price-wrap .price,
.et_pb_shop ul.products li.product .onefox-loop-price-wrap .price {
    display: block !important;
    margin: 0 !important;
    line-height: 1.35;
}

.woocommerce ul.products li.product a.onefox-mini-cart-btn,
.et_pb_shop ul.products li.product a.onefox-mini-cart-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    min-width: 34px;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    background: #fff;
    color: #3d3d3d;
    line-height: 1 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.woocommerce ul.products li.product a.onefox-mini-cart-btn:hover,
.et_pb_shop ul.products li.product a.onefox-mini-cart-btn:hover {
    border-color: #bdbdbd;
    background: #f8f8f8;
    color: #111;
}

.woocommerce ul.products li.product a.onefox-mini-cart-btn svg,
.et_pb_shop ul.products li.product a.onefox-mini-cart-btn svg {
    display: block;
    width: 16px;
    height: 16px;
}

.onefox-mini-cart-btn::before,
.onefox-mini-cart-btn::after,
.woocommerce a.button.onefox-mini-cart-btn::before,
.woocommerce a.button.onefox-mini-cart-btn::after,
.et_pb_shop a.button.onefox-mini-cart-btn::before,
.et_pb_shop a.button.onefox-mini-cart-btn::after {
    content: none !important;
    display: none !important;
}

.woocommerce ul.products li.product a.onefox-mini-cart-btn.added,
.et_pb_shop ul.products li.product a.onefox-mini-cart-btn.added {
    border-color: #9f9f9f;
}

.woocommerce ul.products li.product a.onefox-mini-cart-btn.is-in-cart,
.et_pb_shop ul.products li.product a.onefox-mini-cart-btn.is-in-cart {
    border-color: #479d49;
    background: #479d49;
    color: #fff;
}

.woocommerce ul.products li.product a.onefox-mini-cart-btn.is-in-cart:hover,
.et_pb_shop ul.products li.product a.onefox-mini-cart-btn.is-in-cart:hover,
.woocommerce ul.products li.product a.onefox-mini-cart-btn.is-in-cart:focus,
.et_pb_shop ul.products li.product a.onefox-mini-cart-btn.is-in-cart:focus {
    border-color: #3d873f;
    background: #3d873f;
    color: #fff;
}

a.onefox-mini-cart-btn.is-in-cart svg,
a.onefox-mini-cart-btn.is-in-cart svg path {
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.woocommerce ul.products li.product > a.button.add_to_cart_button:not(.onefox-mini-cart-btn),
.woocommerce ul.products li.product > a.button.product_type_simple:not(.onefox-mini-cart-btn),
.et_pb_shop ul.products li.product > a.button.add_to_cart_button:not(.onefox-mini-cart-btn),
.et_pb_shop ul.products li.product > a.button.product_type_simple:not(.onefox-mini-cart-btn) {
    display: none !important;
}

.woocommerce ul.products li.product a.added_to_cart,
.et_pb_shop ul.products li.product a.added_to_cart {
    display: none !important;
}

.onefox-shortcart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    text-decoration: none !important;
    color: #3d3d3d;
    vertical-align: middle;
}

.onefox-shortcart:hover {
    color: #111;
}

.onefox-shortcart__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.onefox-shortcart__icon svg {
    display: block;
    width: 22px;
    height: 22px;
}

.onefox-shortcart__count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #479d49;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-sizing: border-box;
}

.onefox-shortcart__count.is-empty {
    display: none;
}

.onefox-account-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    text-decoration: none !important;
    color: #3d3d3d;
    vertical-align: middle;
}

.onefox-account-icon:hover {
    color: #111;
}

.onefox-account-icon__inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.onefox-account-icon__inner svg {
    display: block;
    width: 22px;
    height: 22px;
}

body.onefox-cart-drawer-open {
    overflow: hidden;
}

.onefox-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 999999;
    pointer-events: none;
}

.onefox-cart-drawer.is-open {
    pointer-events: auto;
}

.onefox-cart-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.38);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.onefox-cart-drawer.is-open .onefox-cart-drawer__overlay {
    opacity: 1;
}

.onefox-cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(100vw, 420px);
    max-width: 100%;
    height: 100%;
    background: #fff;
    color: #1f2937;
    box-shadow: -24px 0 60px rgba(15, 23, 42, 0.16);
    transform: translateX(100%);
    transition: transform 0.28s ease;
}

.onefox-cart-drawer.is-open .onefox-cart-drawer__panel {
    transform: translateX(0);
}

.onefox-cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.onefox-cart-drawer__title {
    margin: 0;
    font-size: 22px;
    line-height: 1.1;
}

.onefox-cart-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.onefox-cart-drawer__content {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
}

.onefox-cart-drawer__items {
    flex: 1 1 auto;
    overflow: auto;
}

.onefox-cart-drawer__item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.onefox-cart-drawer__item--no-image {
    grid-template-columns: minmax(0, 1fr);
}

.onefox-cart-drawer__item-image a,
.onefox-cart-drawer__item-image img,
.onefox-cart-drawer__item-image span {
    display: block;
}

.onefox-cart-drawer__item-image img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
}

.onefox-cart-drawer__item-main {
    min-width: 0;
}

.onefox-cart-drawer__item-top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.onefox-cart-drawer__item-title {
    flex: 1 1 auto;
    min-width: 0;
}

.onefox-cart-drawer__item-title a,
.onefox-cart-drawer__item-title span {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.35;
}

.onefox-cart-drawer__remove {
    flex: 0 0 auto;
    color: #6b7280;
    text-decoration: none;
    font-size: 24px;
    line-height: 1;
}

.onefox-cart-drawer__item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    color: #6b7280;
    font-size: 14px;
}

.onefox-cart-drawer__item-total {
    color: #1f2937;
    font-weight: 700;
}

.onefox-cart-drawer__empty {
    padding: 28px 20px;
    color: #6b7280;
}

.onefox-cart-drawer__footer {
    padding: 18px 20px 22px;
    border-top: 1px solid #e5e7eb;
    background: inherit;
}

.onefox-cart-drawer__subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.onefox-cart-drawer__subtotal-label {
    color: #6b7280;
}

.onefox-cart-drawer__subtotal-value {
    color: #1f2937;
    font-weight: 700;
}

.onefox-cart-drawer__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.onefox-cart-drawer__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.2s ease;
}

.onefox-cart-drawer__button--primary {
    background: #2f5b3f;
    border-color: #2f5b3f;
    color: #fff;
}

.onefox-cart-drawer__button--secondary {
    background: #f6f1e8;
    border-color: #f6f1e8;
    color: #3b2d22;
}

@media (max-width: 767px) {
    .onefox-cart-drawer__header {
        padding: 16px 16px 14px;
    }

    .onefox-cart-drawer__item {
        gap: 12px;
        padding: 14px 16px;
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .onefox-cart-drawer__item-image img {
        width: 64px;
        height: 64px;
        border-radius: 10px;
    }

    .onefox-cart-drawer__footer {
        padding: 16px;
    }
}

.onefox-service-category-list .onefox-service-card__btn {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    margin: 0;
    min-height: 36px;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(47, 91, 63, 0.22);
}

.onefox-service-product-table {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.onefox-service-group {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.onefox-service-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

.onefox-service-table__col--price {
    width: 150px;
}

.onefox-service-table__col--extra {
    width: 140px;
}

.onefox-service-table__col--action {
    width: 170px;
}

.onefox-service-table__head-cell,
.onefox-service-table__cell {
    padding: 18px 20px;
    vertical-align: middle;
}

.onefox-service-table__head-cell {
    background: #f8fafc;
    color: #1f2937;
    font-weight: 700;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.onefox-service-table__body-row + .onefox-service-table__body-row .onefox-service-table__cell {
    border-top: 1px solid #e5e7eb;
}

.onefox-service-table__head-cell--name,
.onefox-service-table__cell--name {
    text-align: left;
}

.onefox-service-table__head-cell--price,
.onefox-service-table__cell--price,
.onefox-service-table__head-cell--extra,
.onefox-service-table__cell--extra,
.onefox-service-table__head-cell--action,
.onefox-service-table__cell--action {
    text-align: center;
}

.onefox-service-table__cell--price,
.onefox-service-table__cell--extra,
.onefox-service-table__cell--action {
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
}

.onefox-service-table__cell--price .woocommerce-Price-amount {
    font-weight: 700;
    white-space: nowrap;
}

.onefox-service-table__cell--action .onefox-service-add-to-cart {
    min-width: 126px;
}

.onefox-service-row__unavailable {
    color: #6b7280;
    font-style: italic;
}

.onefox-service-add-to-cart.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.onefox-service-add-to-cart.is-success {
    background: #15803d;
    border-color: #15803d;
    color: #fff;
}

.onefox-product-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.onefox-product-info__item {
    padding: 14px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #ffffff;
}

.onefox-product-info__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111111;
}

.onefox-product-info__text {
    font-size: 14px;
    line-height: 1.5;
    color: #444444;
}

.quantity {
    --onefox-qty-size: 40px;
    --onefox-qty-input-width: 60px;
    --onefox-qty-symbol-size: 20px;
    --onefox-classic-button-bg: #ffffff;
    --onefox-classic-button-border: #d8d8d8;
    --onefox-classic-button-text: #111111;
    --onefox-classic-input-bg: #ffffff;
    --onefox-classic-input-text: #111111;
    --onefox-minimal-button-bg: #f6f1e8;
    --onefox-minimal-button-border: #d7d0c7;
    --onefox-minimal-button-text: #5d4d3f;
    --onefox-minimal-input-bg: #ffffff;
    --onefox-minimal-input-text: #3a3028;
    --onefox-soft-button-bg: #2f5b3f;
    --onefox-soft-button-border: #2f5b3f;
    --onefox-soft-button-text: #ffffff;
    --onefox-soft-input-bg: #edf5ed;
    --onefox-soft-input-text: #274d35;
    --onefox-outline-button-bg: #ffffff;
    --onefox-outline-button-border: #1f1f1f;
    --onefox-outline-button-text: #1f1f1f;
    --onefox-outline-input-bg: #ffffff;
    --onefox-outline-input-text: #1f1f1f;
    --onefox-contrast-button-bg: #111111;
    --onefox-contrast-button-border: #111111;
    --onefox-contrast-button-text: #ffffff;
    --onefox-contrast-input-bg: #f3efe7;
    --onefox-contrast-input-text: #111111;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.quantity .qty {
    width: var(--onefox-qty-input-width);
    min-width: var(--onefox-qty-input-width);
    text-align: center;
    height: var(--onefox-qty-size);
    border: 1px solid var(--onefox-classic-button-border, #d8d8d8);
    border-radius: 6px;
    background: var(--onefox-classic-input-bg, #ffffff);
    color: var(--onefox-classic-input-text, #111111);
}

.onefox-qty-btn {
    width: var(--onefox-qty-size);
    height: var(--onefox-qty-size);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--onefox-classic-button-border, #d8d8d8);
    background: var(--onefox-classic-button-bg, #ffffff);
    color: var(--onefox-classic-button-text, #111111);
    font-size: inherit;
    line-height: 1;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.onefox-qty-btn__label {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    font-size: min(var(--onefox-qty-symbol-size), calc(var(--onefox-qty-size) - 10px));
    line-height: 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.onefox-qty-btn:hover {
    filter: brightness(0.96);
}

.quantity.onefox-qty-style-minimal {
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
}

.quantity.onefox-qty-style-minimal .onefox-qty-btn {
    width: calc(var(--onefox-qty-size) - 6px);
    height: calc(var(--onefox-qty-size) - 6px);
    border: 1px solid var(--onefox-minimal-button-border, #d7d0c7);
    background: var(--onefox-minimal-button-bg, #f6f1e8);
    color: var(--onefox-minimal-button-text, #5d4d3f);
    border-radius: 999px;
    box-shadow: none;
}

.quantity.onefox-qty-style-minimal .onefox-qty-btn__label {
    font-size: min(var(--onefox-qty-symbol-size), calc(var(--onefox-qty-size) - 14px));
}

.quantity.onefox-qty-style-minimal .onefox-qty-btn:hover {
    filter: brightness(0.96);
}

.quantity.onefox-qty-style-minimal .qty {
    border: 0;
    border-bottom: 2px solid var(--onefox-minimal-button-border, #d7d0c7);
    background: var(--onefox-minimal-input-bg, #ffffff);
    color: var(--onefox-minimal-input-text, #3a3028);
    border-radius: 0;
    min-width: calc(var(--onefox-qty-input-width) + 4px);
}

.quantity.onefox-qty-style-soft {
    gap: 10px;
    padding: 6px;
    border: 1px solid var(--onefox-soft-button-border, #2f5b3f);
    border-radius: 999px;
    background: var(--onefox-soft-input-bg, #edf5ed);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.quantity.onefox-qty-style-soft .onefox-qty-btn {
    border: 0;
    background: var(--onefox-soft-button-bg, #2f5b3f);
    color: var(--onefox-soft-button-text, #ffffff);
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(47,91,63,0.18);
}

.quantity.onefox-qty-style-soft .onefox-qty-btn:hover {
    filter: brightness(0.92);
}

.quantity.onefox-qty-style-soft .qty {
    border: 0;
    background: transparent;
    color: var(--onefox-soft-input-text, #274d35);
    font-weight: 600;
}

.quantity.onefox-qty-style-outline {
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
}

.quantity.onefox-qty-style-outline .onefox-qty-btn {
    border-width: 2px;
    border-style: solid;
    border-color: var(--onefox-outline-button-border, #1f1f1f);
    background: var(--onefox-outline-button-bg, #ffffff);
    color: var(--onefox-outline-button-text, #1f1f1f);
    border-radius: 10px;
    font-weight: 700;
}

.quantity.onefox-qty-style-outline .qty {
    border: 2px solid var(--onefox-outline-button-border, #1f1f1f);
    border-radius: 10px;
    background: var(--onefox-outline-input-bg, #ffffff);
    color: var(--onefox-outline-input-text, #1f1f1f);
    font-weight: 600;
}

.quantity.onefox-qty-style-contrast {
    gap: 6px;
    padding: 6px;
    border-radius: 14px;
    background: var(--onefox-contrast-button-border, #111111);
}

.quantity.onefox-qty-style-contrast .onefox-qty-btn {
    border: 1px solid var(--onefox-contrast-button-border, #111111);
    background: var(--onefox-contrast-button-bg, #111111);
    color: var(--onefox-contrast-button-text, #ffffff);
    border-radius: 10px;
    font-weight: 700;
}

.quantity.onefox-qty-style-contrast .qty {
    border: 0;
    border-radius: 10px;
    background: var(--onefox-contrast-input-bg, #f3efe7);
    color: var(--onefox-contrast-input-text, #111111);
    font-weight: 700;
}

@media (max-width: 767px) {
    .onefox-service-category-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 24px;
    }

    .onefox-service-category-list .onefox-service-card__image-wrap {
        aspect-ratio: 1 / 1;
    }

    .onefox-service-category-list .onefox-service-card__btn {
        top: 12px;
        left: 12px;
    }

    .onefox-service-card__title {
        font-size: 16px;
    }

    .onefox-service-category-list .onefox-service-card .onefox-service-card__body h3.onefox-service-card__title,
    .onefox-service-category-list .onefox-service-card .onefox-service-card__body h3.onefox-service-card__title a,
    .onefox-service-category-list .onefox-service-card .onefox-service-card__body h3.onefox-service-card__title a:visited {
        font-size: 16px !important;
    }

    .onefox-service-category-list .onefox-service-card__price {
        font-size: 12px;
    }

    .onefox-service-table__head-row {
        display: none;
    }

    .onefox-service-table,
    .onefox-service-table__body,
    .onefox-service-table__body-row,
    .onefox-service-table__cell {
        display: block;
        width: 100%;
    }

    .onefox-service-table__body-row + .onefox-service-table__body-row .onefox-service-table__cell {
        border-top: 0;
    }

    .onefox-service-table__body-row + .onefox-service-table__body-row {
        border-top: 1px solid #e5e7eb;
    }

    .onefox-service-table__cell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 10px 18px;
        text-align: left;
    }

    .onefox-service-table__cell::before {
        content: attr(data-label);
        font-weight: 700;
        color: #1f2937;
    }

    .onefox-service-table__cell--name {
        display: block;
        padding-top: 18px;
        padding-bottom: 12px;
        font-weight: 600;
    }

    .onefox-service-table__cell--name::before,
    .onefox-service-table__cell--action::before {
        content: none;
    }

    .onefox-service-table__cell--action {
        padding-bottom: 18px;
    }

    .onefox-service-table__cell--action .onefox-service-add-to-cart {
        width: 100%;
        min-width: 0;
    }

    .onefox-product-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .onefox-layout-left {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .onefox-layout-left .onefox-gallery-main {
        width: 100%;
        height: auto;
    }

    .onefox-layout-left .onefox-main-image {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
    }

    .onefox-layout-left .onefox-gallery-thumbs {
        display: grid;
        width: 100%;
        height: auto;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: none;
        gap: 10px;
    }

    .onefox-layout-left .onefox-thumb-btn {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .onefox-account-icon {
        width: 30px;
        height: 30px;
    }

    .onefox-account-icon__inner {
        width: 18px;
        height: 18px;
    }

    .onefox-account-icon__inner svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .onefox-layout-bottom {
        gap: 10px;
    }

    .onefox-layout-left {
        gap: 10px;
    }

    .onefox-layout-bottom .onefox-gallery-thumbs,
    .onefox-layout-left .onefox-gallery-thumbs {
        gap: 8px;
    }
}

@media (min-width: 768px) and (max-width: 1180px) {
    .onefox-service-columns-4,
    .onefox-service-columns-5 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ========================================
   ONEFOX HOME - WOOCOMMERCE MY ACCOUNT V2
======================================== */

body.woocommerce-account {
    background: #fdf7e9;
    color: #121212;
}

body.woocommerce-account #main-content .container,
body.woocommerce-account .et-db #et-boc .et-l .et_pb_row,
body.woocommerce-account .et-l--post .et_builder_inner_content > .et_pb_section > .et_pb_row {
    width: 100% !important;
    max-width: 1240px !important;
}

body.woocommerce-account #main-content .container {
    padding-top: 42px !important;
    padding-bottom: 60px !important;
}

body.woocommerce-account .woocommerce {
    width: 100% !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
}

body.woocommerce-account .woocommerce:after,
body.woocommerce-account .woocommerce-MyAccount-navigation:after,
body.woocommerce-account .woocommerce-MyAccount-content:after {
    content: "";
    display: block;
    clear: both;
}

body.woocommerce-account .woocommerce-notices-wrapper,
body.woocommerce-account .woocommerce-error,
body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-message {
    width: 100% !important;
    clear: both !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left !important;
    width: 280px !important;
    margin: 0 32px 0 0 !important;
    background: #fff;
    border: 1px solid #eadcc9;
    border-radius: 20px;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(28, 20, 10, 0.05);
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #efe3d2;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 16px 22px;
    text-decoration: none;
    color: #1c140a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: #faf4e8;
    color: #a07348;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: #c4956a;
    color: #fff;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: #f7ede1;
    color: #9a6e47;
}

body.woocommerce-account .woocommerce-MyAccount-content {
    float: right !important;
    width: calc(100% - 312px) !important;
    margin: 0 !important;
    min-width: 0 !important;
    box-sizing: border-box;
}

body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3 {
    color: #1c140a;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
}

body.woocommerce-account .woocommerce-MyAccount-content h2 {
    font-size: 30px;
}

body.woocommerce-account .woocommerce-MyAccount-content h3 {
    font-size: 20px;
}

body.woocommerce-account .woocommerce-MyAccount-content p,
body.woocommerce-account .woocommerce-MyAccount-content li,
body.woocommerce-account .woocommerce-MyAccount-content address,
body.woocommerce-account .woocommerce-MyAccount-content td,
body.woocommerce-account .woocommerce-MyAccount-content th,
body.woocommerce-account .woocommerce-MyAccount-content label {
    color: #6f6253;
    font-size: 14px;
    line-height: 1.7;
}

body.woocommerce-account .woocommerce-MyAccount-content strong {
    color: #1c140a;
}

body.woocommerce-account .woocommerce-MyAccount-content a {
    color: #a07348;
    text-decoration: none;
}

body.woocommerce-account .woocommerce-MyAccount-content a:hover {
    color: #c4956a;
}

body.woocommerce-account .woocommerce-MyAccount-content > p,
body.woocommerce-account .woocommerce-MyAccount-content > form,
body.woocommerce-account .woocommerce-MyAccount-content > table,
body.woocommerce-account .woocommerce-MyAccount-content > div:not(.woocommerce-notices-wrapper):not(.woocommerce-Addresses),
body.woocommerce-account .woocommerce-MyAccount-content > section {
    background: #fff;
    border: 1px solid #eadcc9;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(28, 20, 10, 0.05);
    box-sizing: border-box;
}

body.woocommerce-account .woocommerce-MyAccount-content > * + * {
    margin-top: 18px;
}

body.woocommerce-account .woocommerce-MyAccount-content > p:first-of-type {
    background:
        radial-gradient(circle at 85% 20%, rgba(196, 149, 106, 0.12) 0%, transparent 28%),
        radial-gradient(circle at 12% 85%, rgba(201, 169, 110, 0.10) 0%, transparent 22%),
        linear-gradient(135deg, #fffdf9 0%, #fff7ec 100%);
    border-color: #eadcc9;
    padding: 30px;
    font-size: 15px;
    line-height: 1.85;
}

body.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-notices-wrapper {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin-top: 0 !important;
}

body.woocommerce-account .button,
body.woocommerce-account button.button,
body.woocommerce-account input.button,
body.woocommerce-account .woocommerce-Button,
body.woocommerce-account .woocommerce-button {
    background: #c4956a !important;
    color: #fff !important;
    border: none !important;
    border-radius: 11px !important;
    padding: 13px 22px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
}

body.woocommerce-account .button:hover,
body.woocommerce-account button.button:hover,
body.woocommerce-account input.button:hover,
body.woocommerce-account .woocommerce-Button:hover,
body.woocommerce-account .woocommerce-button:hover {
    background: #a07348 !important;
    transform: translateY(-1px);
}

body.woocommerce-account a.button,
body.woocommerce-account .woocommerce-Button--secondary {
    background: transparent !important;
    color: #c4956a !important;
    border: 1.5px solid #c4956a !important;
}

body.woocommerce-account a.button:hover,
body.woocommerce-account .woocommerce-Button--secondary:hover {
    background: #c4956a !important;
    color: #fff !important;
}

body.woocommerce-account form .form-row {
    margin-bottom: 18px;
}

body.woocommerce-account form .form-row label {
    display: block;
    margin-bottom: 7px;
    color: #7a6a58;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.woocommerce-account input.input-text,
body.woocommerce-account textarea,
body.woocommerce-account select,
body.woocommerce-account input[type="text"],
body.woocommerce-account input[type="email"],
body.woocommerce-account input[type="password"],
body.woocommerce-account input[type="tel"] {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1.5px solid #e8dcc8;
    border-radius: 11px;
    background: #fdf7e9;
    color: #121212;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease;
}

body.woocommerce-account textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 14px;
}

body.woocommerce-account input.input-text:focus,
body.woocommerce-account textarea:focus,
body.woocommerce-account select:focus,
body.woocommerce-account input[type="text"]:focus,
body.woocommerce-account input[type="email"]:focus,
body.woocommerce-account input[type="password"]:focus,
body.woocommerce-account input[type="tel"]:focus {
    outline: none;
    border-color: #c4956a;
    background: #fff;
}

body.woocommerce-account .select2-container .select2-selection--single,
body.woocommerce-account .select2-container .select2-selection--multiple {
    min-height: 48px;
    border: 1.5px solid #e8dcc8 !important;
    border-radius: 11px !important;
    background: #fdf7e9 !important;
    padding: 7px 12px !important;
}

body.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #121212;
    line-height: 31px;
}

body.woocommerce-account .select2-dropdown {
    border: 1px solid #e8dcc8 !important;
    border-radius: 12px !important;
    overflow: hidden;
}

body.woocommerce-account table.shop_table,
body.woocommerce-account table.my_account_orders,
body.woocommerce-account table.woocommerce-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid #eadcc9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(28, 20, 10, 0.05);
}

body.woocommerce-account table.shop_table thead th,
body.woocommerce-account table.my_account_orders thead th,
body.woocommerce-account table.woocommerce-orders-table thead th {
    background: #f2e9d4;
    color: #7a6a58;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 15px 16px;
    border: none;
}

body.woocommerce-account table.shop_table tbody td,
body.woocommerce-account table.my_account_orders tbody td,
body.woocommerce-account table.woocommerce-orders-table tbody td {
    padding: 17px 16px;
    border-top: 1px solid #efe3d2;
    color: #1c140a;
    font-size: 14px;
    vertical-align: middle;
}

body.woocommerce-account table.shop_table tbody tr:hover,
body.woocommerce-account table.my_account_orders tbody tr:hover,
body.woocommerce-account table.woocommerce-orders-table tbody tr:hover {
    background: #fffaf2;
}

body.woocommerce-account .woocommerce-orders-table__cell-order-number a,
body.woocommerce-account .order-number a {
    color: #c4956a;
    font-weight: 700;
}

body.woocommerce-account .woocommerce-orders-table__cell-order-actions .button,
body.woocommerce-account .woocommerce-orders-table__cell-order-actions a.button {
    padding: 10px 14px !important;
    font-size: 10px !important;
}

body.woocommerce-account td.woocommerce-orders-table__cell-order-status,
body.woocommerce-account td.order-status {
    font-weight: 600;
}

body.woocommerce-account td.woocommerce-orders-table__cell-order-status mark,
body.woocommerce-account td.order-status mark {
    display: inline-block;
    padding: 7px 12px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    background: rgba(196, 149, 106, 0.13) !important;
    color: #9a6f45 !important;
    border: none !important;
}

body.woocommerce-account .woocommerce-order-details,
body.woocommerce-account .woocommerce-customer-details,
body.woocommerce-account .woocommerce-order-downloads {
    margin-top: 22px;
}

body.woocommerce-account .woocommerce-customer-details address {
    background: #fff;
    border: 1px solid #eadcc9;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(28, 20, 10, 0.05);
    font-style: normal;
}

body.woocommerce-account .woocommerce-Addresses {
    display: flex;
    gap: 18px;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin-top: 0 !important;
}

body.woocommerce-account .woocommerce-Addresses .woocommerce-Address {
    flex: 1 1 0;
    background: #fff;
    border: 1px solid #eadcc9;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(28, 20, 10, 0.05);
}

body.woocommerce-account .woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

body.woocommerce-account .woocommerce-Address-title h3 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7a6a58;
}

body.woocommerce-account .woocommerce-Address-title .edit {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c4956a;
}

body.woocommerce-account .woocommerce-MyAccount-paymentMethods,
body.woocommerce-account .woocommerce-PaymentMethods {
    list-style: none;
    margin: 0;
    padding: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.woocommerce-account .woocommerce-PaymentMethod {
    border: 1px solid #eadcc9;
    border-radius: 16px;
    padding: 18px;
    background: #fffaf3;
    margin-bottom: 12px;
}

body.woocommerce-account .woocommerce-PaymentMethod:last-child {
    margin-bottom: 0;
}

body.woocommerce-account .woocommerce-Message,
body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
    border-radius: 16px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
    background: #fff9f1 !important;
    color: #8f744f !important;
    border: 1px solid #eadcc9 !important;
    padding: 18px 20px !important;
}

body.woocommerce-account .u-columns {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

body.woocommerce-account .u-column1,
body.woocommerce-account .u-column2,
body.woocommerce-account .woocommerce-form-login,
body.woocommerce-account .woocommerce-form-register {
    flex: 1 1 0;
    background: #fff;
    border: 1px solid #eadcc9;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(28, 20, 10, 0.05);
}

body.woocommerce-account .u-column1 h2,
body.woocommerce-account .u-column2 h2 {
    margin-top: 0;
    margin-bottom: 18px;
}

body.woocommerce-account .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #7a6a58;
    font-size: 13px;
}

body.woocommerce-account .lost_password {
    margin-top: 12px;
    font-size: 13px;
}

body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-error,
body.woocommerce-account ul.woocommerce-error {
    border: 1px solid #eadcc9 !important;
    border-radius: 16px !important;
    padding: 16px 18px !important;
    margin-bottom: 18px !important;
    box-shadow: none !important;
}

body.woocommerce-account .woocommerce-info {
    background: rgba(201, 169, 110, 0.10) !important;
    color: #7b5b1d !important;
}

body.woocommerce-account .woocommerce-message {
    background: rgba(122, 170, 122, 0.10) !important;
    color: #487348 !important;
}

body.woocommerce-account .woocommerce-error,
body.woocommerce-account ul.woocommerce-error {
    background: rgba(180, 72, 72, 0.08) !important;
    color: #9c3c3c !important;
}

body.woocommerce-account .woocommerce-info::before,
body.woocommerce-account .woocommerce-message::before,
body.woocommerce-account .woocommerce-error::before,
body.woocommerce-account ul.woocommerce-error::before {
    display: none !important;
}

body.woocommerce-account .woocommerce-pagination {
    margin-top: 18px;
}

body.woocommerce-account .woocommerce-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

body.woocommerce-account .woocommerce-pagination .page-numbers li {
    list-style: none;
}

body.woocommerce-account .woocommerce-pagination .page-numbers a,
body.woocommerce-account .woocommerce-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border: 1px solid #eadcc9;
    border-radius: 10px;
    background: #fff;
    color: #7a6a58;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

body.woocommerce-account .woocommerce-pagination .page-numbers .current,
body.woocommerce-account .woocommerce-pagination .page-numbers a:hover {
    background: #c4956a;
    border-color: #c4956a;
    color: #fff;
}

body.woocommerce-account a:focus-visible,
body.woocommerce-account button:focus-visible,
body.woocommerce-account input:focus-visible,
body.woocommerce-account select:focus-visible,
body.woocommerce-account textarea:focus-visible {
    outline: 2px solid #c4956a;
    outline-offset: 2px;
}

@media (max-width: 980px) {
    body.woocommerce-account .woocommerce-MyAccount-navigation,
    body.woocommerce-account .woocommerce-MyAccount-content {
        float: none !important;
        width: 100% !important;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation {
        margin: 0 0 20px 0 !important;
    }

    body.woocommerce-account .woocommerce-Addresses,
    body.woocommerce-account .u-columns {
        display: block;
    }

    body.woocommerce-account .woocommerce-Addresses .woocommerce-Address,
    body.woocommerce-account .u-column1,
    body.woocommerce-account .u-column2 {
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {
    body.woocommerce-account #main-content .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-top: 26px !important;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation {
        border-radius: 16px;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
        min-height: 56px;
        padding: 14px 16px;
        font-size: 11px;
    }

    body.woocommerce-account .woocommerce-MyAccount-content > p,
    body.woocommerce-account .woocommerce-MyAccount-content > form,
    body.woocommerce-account .woocommerce-MyAccount-content > table,
    body.woocommerce-account .woocommerce-MyAccount-content > div:not(.woocommerce-notices-wrapper):not(.woocommerce-Addresses),
    body.woocommerce-account .woocommerce-MyAccount-content > section,
    body.woocommerce-account .u-column1,
    body.woocommerce-account .u-column2,
    body.woocommerce-account .woocommerce-Addresses .woocommerce-Address {
        padding: 18px;
        border-radius: 16px;
    }

    body.woocommerce-account .woocommerce-MyAccount-content h2 {
        font-size: 24px;
    }

    body.woocommerce-account .woocommerce-MyAccount-content h3 {
        font-size: 18px;
    }

    body.woocommerce-account table.shop_table thead,
    body.woocommerce-account table.my_account_orders thead,
    body.woocommerce-account table.woocommerce-orders-table thead {
        display: none;
    }

    body.woocommerce-account table.shop_table,
    body.woocommerce-account table.shop_table tbody,
    body.woocommerce-account table.shop_table tr,
    body.woocommerce-account table.shop_table td,
    body.woocommerce-account table.my_account_orders,
    body.woocommerce-account table.my_account_orders tbody,
    body.woocommerce-account table.my_account_orders tr,
    body.woocommerce-account table.my_account_orders td,
    body.woocommerce-account table.woocommerce-orders-table,
    body.woocommerce-account table.woocommerce-orders-table tbody,
    body.woocommerce-account table.woocommerce-orders-table tr,
    body.woocommerce-account table.woocommerce-orders-table td {
        display: block;
        width: 100%;
    }

    body.woocommerce-account table.shop_table tr,
    body.woocommerce-account table.my_account_orders tr,
    body.woocommerce-account table.woocommerce-orders-table tr {
        background: #fff;
        border: 1px solid #eadcc9;
        border-radius: 16px;
        margin-bottom: 12px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(28, 20, 10, 0.05);
    }

    body.woocommerce-account table.shop_table td,
    body.woocommerce-account table.my_account_orders td,
    body.woocommerce-account table.woocommerce-orders-table td {
        border: none;
        border-bottom: 1px solid #efe3d2;
        padding: 12px 15px;
        text-align: left !important;
    }

    body.woocommerce-account table.shop_table td:last-child,
    body.woocommerce-account table.my_account_orders td:last-child,
    body.woocommerce-account table.woocommerce-orders-table td:last-child {
        border-bottom: none;
    }

    body.woocommerce-account table.my_account_orders td:before,
    body.woocommerce-account table.woocommerce-orders-table td:before {
        display: block;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #7a6a58;
        margin-bottom: 4px;
    }

    body.woocommerce-account table.my_account_orders td.woocommerce-orders-table__cell-order-number:before,
    body.woocommerce-account table.woocommerce-orders-table td.woocommerce-orders-table__cell-order-number:before {
        content: "Zamowienie";
    }

    body.woocommerce-account table.my_account_orders td.woocommerce-orders-table__cell-order-date:before,
    body.woocommerce-account table.woocommerce-orders-table td.woocommerce-orders-table__cell-order-date:before {
        content: "Data";
    }

    body.woocommerce-account table.my_account_orders td.woocommerce-orders-table__cell-order-status:before,
    body.woocommerce-account table.woocommerce-orders-table td.woocommerce-orders-table__cell-order-status:before {
        content: "Status";
    }

    body.woocommerce-account table.my_account_orders td.woocommerce-orders-table__cell-order-total:before,
    body.woocommerce-account table.woocommerce-orders-table td.woocommerce-orders-table__cell-order-total:before {
        content: "Kwota";
    }

    body.woocommerce-account table.my_account_orders td.woocommerce-orders-table__cell-order-actions:before,
    body.woocommerce-account table.woocommerce-orders-table td.woocommerce-orders-table__cell-order-actions:before {
        content: "Akcja";
    }
}
