:root {
    --front-theme-primary: #8f5138;
    --front-theme-primary-soft: #a35f45;
    --front-theme-surface-contrast: #f7eee8;
    --front-theme-footer-bg: #9a5d44;
    --front-theme-footer-text: #f8ede8;
    --front-theme-accent: #8f5138;
    --front-theme-on-accent: #ffffff;
}

body.front-theme-body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #211c19;
    overflow-x: hidden;
}

.front-top-strip {
    background: var(--front-theme-primary);
    color: var(--front-theme-surface-contrast);
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
}

.front-navbar-wrap {
    background: #ffffff;
    border-bottom: 1px solid #e9e4df;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.front-navbar-container,
.front-footer-container {
    max-width: 1480px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}

.front-flash-stack {
    max-width: 1480px;
    margin: 0 auto;
    padding: 12px 28px 0;
}

.front-flash-stack .front-flash-alert {
    font-size: 15px;
    line-height: 1.45;
    border-radius: 12px;
    margin-bottom: 10px;
}

.front-flash-stack .front-flash-alert:last-child {
    margin-bottom: 0;
}

.front-flash-stack .front-flash-alert-icon {
    font-size: 1.1rem;
    line-height: 1.2;
    margin-top: 2px;
}

.front-flash-stack .front-flash-alert-body {
    min-width: 0;
}

.front-flash-stack--checkout {
    padding-top: 16px;
}

.front-navbar {
    min-height: 72px;
}

.front-brand {
    font-size: 34px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.8px;
    color: #1d1d1d;
    text-decoration: none;
}

.front-brand span {
    color: #8f8f8f;
    font-weight: 500;
}

.front-logo-image {
    display: block;
    height: 57px;
    width: auto;
    max-width: min(280px, 40vw);
    object-fit: contain;
}

.front-logo-image-footer {
    height: 57px;
    max-width: min(320px, 75%);
}

.front-nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.front-nav-links .nav-link {
    color: #2f2f2f;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.front-nav-links .nav-link:hover,
.front-nav-links .nav-link:focus-visible {
    color: #1f1f1f;
    background: #f7f3f0;
}

.front-nav-item-has-children {
    position: relative;
}

.front-nav-item-has-children::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.front-submenu {
    margin-top: 0;
    top: calc(100% + 10px);
    left: 0;
    border: 1px solid #ece6e1;
    border-radius: 14px;
    min-width: 240px;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 18px 35px rgba(39, 29, 23, 0.12);
    transform: translateY(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.front-submenu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 28px;
    width: 12px;
    height: 12px;
    border-left: 1px solid #ece6e1;
    border-top: 1px solid #ece6e1;
    background: #ffffff;
    transform: rotate(45deg);
}

.front-nav-item-has-children:hover > .front-submenu,
.front-nav-item-has-children:focus-within > .front-submenu {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.front-submenu .dropdown-item {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: #323232;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.front-submenu .dropdown-item:hover,
.front-submenu .dropdown-item:focus-visible {
    color: #1f1f1f;
    background: #f7f3f0;
}

.front-mobile-submenu {
    margin: 0 0 8px;
    padding: 0 0 0 18px;
    list-style: none;
}

.front-mobile-submenu .nav-link {
    font-size: 16px;
    padding: 6px 0;
    color: #5a5a5a;
}

.front-mobile-parent-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.front-mobile-parent-row .nav-link {
    flex: 1 1 auto;
}

.front-mobile-submenu-toggle {
    border: 0;
    background: transparent;
    color: #5f5f5f;
    font-size: 22px;
    line-height: 1;
    padding: 4px 2px;
    min-width: 18px;
}

.front-mobile-submenu-toggle .front-toggle-minus {
    display: none;
}

.front-mobile-submenu-toggle:not(.collapsed) .front-toggle-plus {
    display: none;
}

.front-mobile-submenu-toggle:not(.collapsed) .front-toggle-minus {
    display: inline;
}

.front-nav-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.front-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid #e7e2dd;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #242424;
    text-decoration: none;
    position: relative;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.front-icon-btn-button {
    padding: 0;
    cursor: pointer;
}

.front-login-modal-dialog {
    max-width: 560px;
    width: calc(100% - 28px);
}

.front-login-modal-content {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 42px rgba(41, 25, 18, 0.22);
}

.front-login-modal-header {
    padding: 22px 24px 12px;
    border-bottom: 0;
}

.front-login-modal-title {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #1f1f1f;
}

.front-login-modal-subtitle {
    margin-top: 6px;
    color: #6e6a67;
    font-size: 12px;
}

.front-login-modal-body {
    padding: 8px 24px 14px;
}

.front-login-label {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.front-login-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #e3ddd8;
    border-radius: 12px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.front-login-input-wrap:focus-within {
    border-color: var(--front-theme-primary);
    box-shadow: 0 0 0 3px rgba(143, 81, 56, 0.12);
}

.front-login-country-code {
    padding: 0 14px;
    color: #373737;
    font-size: 14px;
    font-weight: 600;
    border-right: 1px solid #ece7e2;
}

.front-login-input {
    border: 0;
    height: 54px;
    box-shadow: none !important;
    padding-left: 12px;
    padding-right: 14px;
    font-size: 14px;
}

.front-login-input::placeholder {
    color: #9f9994;
}

.front-login-help-text {
    margin-top: 10px;
    font-size: 13px;
    color: #6f6b68;
}

.front-login-modal-footer {
    border-top: 0;
    padding: 4px 24px 24px;
}

.front-login-submit-btn {
    width: 100%;
    border: 0;
    border-radius: 12px;
    background: var(--front-theme-primary);
    color: #fff;
    height: 48px;
    font-size: 17px;
    font-weight: 600;
}

.front-login-submit-btn:hover,
.front-login-submit-btn:focus-visible {
    background: var(--front-theme-primary);
    color: #fff;
}

.front-login-secondary-btn {
    width: 100%;
    border: 1px solid #d8c8bc;
    border-radius: 12px;
    background: #fff;
    color: var(--front-theme-primary);
    height: 44px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 8px;
}

.front-register-input {
    border: 1px solid #e3ddd8;
    border-radius: 12px;
    height: 46px;
    box-shadow: none !important;
    font-size: 14px;
}

.front-account-section {
    --front-account-border: #e9e2dc;
    --front-account-muted: #6f6b68;
}

.front-account-nav {
    border: 1px solid var(--front-account-border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(35, 24, 18, 0.06);
}

.front-account-nav-item {
    display: block;
    padding: 12px 14px;
    color: #2f2a27;
    text-decoration: none;
    border-bottom: 1px solid #f2ece8;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.front-account-nav-item:last-child {
    border-bottom: 0;
}

.front-account-nav-item:hover {
    background: #f9f6f4;
    color: #2f2a27;
}

.front-account-nav-item.is-active {
    background: var(--front-theme-primary);
    color: #fff;
}

.front-account-nav-item.is-logout {
    color: #c23a2b;
}

.front-account-card {
    border: 1px solid var(--front-account-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(35, 24, 18, 0.06);
}

.front-account-card-header {
    padding: 16px 18px 12px;
    border-bottom: 1px solid #f2ece8;
}

.front-account-card-body {
    padding: 16px 18px;
}

.front-account-title {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #241f1c;
}

.front-account-subtitle {
    margin-top: 4px;
    color: var(--front-account-muted);
    font-size: 14px;
}

.front-account-field-label {
    color: var(--front-account-muted);
    font-size: 12px;
    margin-bottom: 4px;
}

.front-account-field-value {
    font-weight: 700;
    color: #1f1b18;
}

.front-address-card {
    border: 1px solid #ece5df;
    border-radius: 12px;
    padding: 12px;
    background: #fff;
}

.front-address-card-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.front-address-badge {
    display: inline-block;
    border-radius: 999px;
    background: #efe8e2;
    color: #6f4d3b;
    font-size: 11px;
    padding: 2px 8px;
    margin-left: 6px;
}

.front-address-line {
    font-size: 13px;
    color: #3f3935;
    line-height: 1.45;
}

.front-address-phone {
    margin-top: 6px;
    font-size: 12px;
    color: #645d58;
}

.front-address-edit-btn {
    border: 1px solid var(--front-theme-primary);
    background: #fff;
    color: var(--front-theme-primary);
    border-radius: 10px;
    font-weight: 600;
    min-width: 78px;
}

.front-address-edit-btn:hover,
.front-address-edit-btn:focus-visible {
    background: var(--front-theme-primary);
    color: #fff;
}

.front-address-default-btn {
    border: 1px solid #c6b9b0;
    background: #fff;
    color: #6b5f58;
    border-radius: 10px;
    font-weight: 600;
    min-width: 118px;
}

.front-address-default-btn:hover,
.front-address-default-btn:focus-visible {
    border-color: var(--front-theme-primary);
    color: var(--front-theme-primary);
    background: #f8f2ee;
}

.front-address-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--front-theme-primary);
    background: var(--front-theme-primary);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.2px;
    min-height: 44px;
    padding: 0 18px;
    box-shadow: 0 8px 18px rgba(127, 70, 49, 0.24);
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.front-address-add-btn:hover,
.front-address-add-btn:focus-visible {
    background: #7a422f;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(127, 70, 49, 0.3);
    text-decoration: none;
}

.front-address-add-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(127, 70, 49, 0.24);
}

.front-address-modal-dialog {
    max-width: 760px;
}

.front-address-modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 26px 50px rgba(33, 22, 16, 0.22);
}

.front-address-modal-header {
    border-bottom: 1px solid #eee6e0;
    padding: 16px 18px 12px;
}

.front-address-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #25201d;
}

.front-address-modal-body {
    padding: 14px 18px;
}

.front-address-modal-body .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #2f2a27;
}

.front-address-input {
    border: 1px solid #e4ddd7;
    border-radius: 12px;
    min-height: 48px;
    font-size: 15px;
    padding: 10px 14px;
    box-shadow: none !important;
}

.front-address-input:focus {
    border-color: var(--front-theme-primary);
}

.front-address-default-check {
    padding: 12px 0 2px 1.8rem;
    border-top: 1px solid #f0e9e3;
}

.front-address-modal-footer {
    border-top: 1px solid #eee6e0;
    padding: 14px 18px 16px;
    gap: 10px;
}

.front-address-cancel-btn,
.front-address-save-btn {
    min-width: 150px;
    min-height: 48px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
}

.front-address-cancel-btn {
    border: 1px solid #b9b0aa;
    color: #6f6863;
    background: #fff;
}

.front-address-save-btn {
    border: 1px solid var(--front-theme-primary);
    background: var(--front-theme-primary);
    color: #fff;
}

.front-address-save-btn:hover,
.front-address-save-btn:focus-visible {
    background: #7f4631;
    color: #fff;
}

@media (max-width: 991px) {
    .front-address-modal-dialog {
        margin-bottom: 92px;
    }

    .front-address-modal-footer {
        padding-bottom: calc(16px + env(safe-area-inset-bottom));
    }
}

.front-order-mobile-card {
    border: 1px solid #ece5df;
    border-radius: 12px;
    padding: 12px;
    background: #fff;
}

.front-account-empty {
    padding: 12px;
    border-radius: 10px;
    background: #faf8f6;
    color: var(--front-account-muted);
}

.front-order-item-card {
    border: 1px solid #ece5df;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 10px;
    background: #fff;
}

.front-order-item-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: 1px solid #ece5df;
    object-fit: cover;
    flex: 0 0 48px;
}

.front-order-item-thumb-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #6f6b68;
    background: #faf8f6;
}

.front-order-summary-box {
    border: 1px solid #ece5df;
    border-radius: 12px;
    background: #fcfaf8;
    padding: 12px;
}

.front-order-summary-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
}

.front-order-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px dashed #e9e0da;
}

.front-order-summary-row:last-child {
    border-bottom: 0;
}

.front-order-summary-row span {
    color: #4a433f;
}

.front-order-summary-row strong {
    color: #28221f;
}

.front-order-summary-row.is-total {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid #dfd4cc;
}

.front-order-summary-row.is-total span,
.front-order-summary-row.is-total strong {
    font-size: 19px;
    font-weight: 800;
}

.front-collection-pagination {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: #f6f3f1;
}

.front-page-link {
    min-width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid #e1dad4;
    background: #fff;
    color: #393532;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    padding: 0 12px;
    transition: all 0.2s ease;
}

.front-page-link:hover {
    border-color: #c8b8ad;
    background: #fff9f5;
    color: #2f2a27;
}

.front-page-link.is-active {
    border-color: var(--front-theme-primary);
    background: var(--front-theme-primary);
    color: #fff;
}

.front-page-link-nav {
    min-width: 82px;
}

.front-page-link.is-disabled {
    opacity: 0.45;
    pointer-events: none;
    background: #f4f1ef;
}

.front-product-detail {
    display: grid;
    grid-template-columns: minmax(280px, 460px) minmax(300px, 1fr);
    gap: 28px;
    align-items: start;
}

.front-product-detail-gallery {
    position: sticky;
    top: 86px;
}

.front-product-detail-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    object-fit: cover;
    background: #f2f2f2;
    border: 1px solid #ece8e3;
    display: block;
}

.front-product-main-image-btn {
    padding: 0;
    width: 100%;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.front-product-detail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8f5138;
    font-size: 54px;
    font-weight: 700;
}

.front-product-detail-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.front-product-detail-thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #e8e2dc;
    background: #f2f2f2;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.front-product-detail-thumb.is-active {
    border-color: var(--front-theme-primary);
    box-shadow: 0 0 0 2px rgba(143, 81, 56, 0.18);
}

.front-product-detail-thumb:hover {
    transform: translateY(-1px);
}

.front-product-detail-title {
    font-size: clamp(26px, 3.1vw, 42px);
    line-height: 1.15;
    margin: 0 0 8px;
    font-weight: 700;
}

.front-product-detail-sku {
    color: #74706d;
    font-size: 14px;
    margin-bottom: 14px;
}

.front-product-detail-price-wrap {
    border-top: 1px solid #ebe5df;
    border-bottom: 1px solid #ebe5df;
    padding: 14px 0;
    margin-bottom: 14px;
}

.front-product-detail-price {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    color: #1f1f1f;
}

.front-product-detail-tax {
    color: #6d6967;
    font-size: 13px;
    margin-top: 4px;
}

.front-product-detail-stock {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    margin-bottom: 16px;
}

.front-product-detail-stock.is-in-stock {
    background: #e9f8ec;
    color: #1f6f35;
}

.front-product-detail-stock.is-out-stock {
    background: #fbecec;
    color: #9f2e2e;
}

.front-product-detail-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.front-product-detail-btn-primary,
.front-product-detail-btn-secondary {
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 16px;
    min-height: 44px;
}

.front-product-detail-btn-primary {
    background: var(--front-theme-primary);
    color: #fff;
}

.front-product-detail-btn-primary:hover,
.front-product-detail-btn-primary:focus-visible {
    background: #7f4631;
    color: #fff;
}

.front-product-detail-btn-secondary {
    border: 1px solid #d7cec8;
    background: #fff;
    color: #272524;
}

.front-product-detail-btn-secondary:hover,
.front-product-detail-btn-secondary:focus-visible {
    border-color: #bca89b;
    background: #faf6f3;
    color: #272524;
}

.front-product-detail-meta {
    margin-bottom: 14px;
    font-size: 14px;
    color: #545250;
}

.front-product-detail-description h2 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 700;
}

.front-product-detail-description {
    color: #3b3938;
    line-height: 1.65;
    font-size: 15px;
}

.front-product-image-modal .modal-content {
    border: 0;
    border-radius: 14px;
    overflow: hidden;
}

.front-image-modal-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.front-modal-image-wrap {
    min-height: min(72vh, 760px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f6;
    border-radius: 12px;
    overflow: hidden;
}

.front-modal-product-image {
    max-width: 100%;
    max-height: min(72vh, 760px);
    object-fit: contain;
    transition: transform 0.2s ease;
    transform-origin: center center;
    cursor: zoom-in;
}

.front-product-image-modal .carousel-control-prev-icon,
.front-product-image-modal .carousel-control-next-icon {
    background-color: #000000;
    border-radius: 999px;
    background-size: 58% 58%;
    width: 42px;
    height: 42px;
}

.front-pdp {
    padding-bottom: 24px;
}

.front-pdp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 10px;
    color: #6e6965;
}

.front-pdp-breadcrumb a {
    color: #5f5a56;
}

.front-pdp-breadcrumb span:last-child {
    display: inline-block;
    max-width: calc(100% - 78px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
}

.front-pdp-grid {
    display: grid;
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
    gap: 18px;
}

.front-pdp-gallery {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
}

/* Thumbnail column only when multiple images; otherwise main image uses full width */
.front-pdp-gallery--single {
    grid-template-columns: 1fr;
}
.front-pdp-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.front-pdp-thumb-btn {
    border: 1px solid #dfd9d3;
    border-radius: 10px;
    padding: 3px;
    background: #fff;
    line-height: 0;
}

.front-pdp-thumb-btn.is-active {
    border-color: #8f5138;
}

.front-pdp-thumb-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}

.front-pdp-main-wrap {
    background: #f4f4f4;
    border-radius: 12px;
    padding: 6px;
}

.front-pdp-main-btn {
    border: 0;
    background: transparent;
    width: 100%;
    position: relative;
    padding: 0;
}

.front-pdp-main-image {
    width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    max-height: 640px;
}

.front-pdp-expand {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    color: #272321;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.front-pdp-info {
    border-left: 1px solid #ece6df;
    padding-left: 20px;
}

.front-pdp-title {
    font-size: clamp(20px, 2.2vw, 34px);
    line-height: 1.2;
    font-weight: 700;
    color: var(--front-theme-accent);
    margin-bottom: 10px;
}

.front-pdp-sku {
    font-size: 13px;
    color: #7e7772;
    margin-bottom: 8px;
}

.front-pdp-mrp-label {
    font-size: 14px;
    color: #48423e;
    margin-bottom: 2px;
}

.front-pdp-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.front-pdp-price {
    font-size: 28px;
    font-weight: 700;
}

.front-pdp-mrp {
    text-decoration: line-through;
    color: #7f7974;
    font-weight: 600;
}

.front-pdp-off {
    padding: 3px 8px;
    border-radius: 999px;
    background: #f7f3be;
    color: #000;
    font-size: 11px;
    font-weight: 700;
}

.front-pdp-tax {
    margin-top: 4px;
    color: #7a746f;
    font-size: 13px;
}

.front-pdp-rating {
    margin-top: 4px;
    color: #73523f;
    font-size: 13px;
}

.front-pdp-rating .bi {
    color: #c4a06a;
    margin-right: 1px;
}

.front-pdp-rating-text {
    margin-left: 6px;
    color: #5c4436;
}

.front-pdp-reviews {
    border-top: 1px solid #ede6e0;
}

.front-pdp-reviews-summary {
    max-width: 48rem;
}

/* PDP: latest reviews in a single row (5 on large screens; horizontal scroll on smaller) */
.front-pdp-review-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.front-pdp-review-row > .front-pdp-review-masonry-card {
    margin-bottom: 0;
}

@media (max-width: 1199.98px) {
    .front-pdp-review-row {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 10px;
        margin-inline: -12px;
        padding-inline: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .front-pdp-review-row > .front-pdp-review-masonry-card {
        flex: 0 0 min(260px, 78vw);
        max-width: 280px;
        scroll-snap-align: start;
    }
}

/* /reviews page: five cards per row (wraps to more rows) */
.front-reviews-rows {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.front-reviews-rows > .front-pdp-review-masonry-card {
    flex: 0 0 calc((100% - 4rem) / 5);
    max-width: calc((100% - 4rem) / 5);
    box-sizing: border-box;
    margin-bottom: 0;
}

@media (max-width: 1199.98px) {
    .front-reviews-rows > .front-pdp-review-masonry-card {
        flex: 0 0 calc((100% - 1rem) / 2);
        max-width: calc((100% - 1rem) / 2);
    }
}

@media (max-width: 575.98px) {
    .front-reviews-rows > .front-pdp-review-masonry-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* PDP review gallery (masonry columns) */
.front-pdp-review-gallery {
    column-count: 1;
    column-gap: 1.25rem;
}

@media (min-width: 576px) {
    .front-pdp-review-gallery {
        column-count: 2;
    }
}

@media (min-width: 992px) {
    .front-pdp-review-gallery {
        column-count: 3;
    }
}

.front-pdp-review-masonry-card {
    break-inside: avoid;
    margin-bottom: 1.25rem;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(33, 28, 25, 0.08);
    border: 1px solid #ebe4dc;
}

.front-pdp-review-masonry-media {
    position: relative;
    background: #f3ece6;
    aspect-ratio: 4 / 3;
}

.front-pdp-review-masonry-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.front-pdp-review-masonry-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9b8a8;
    font-size: 2.25rem;
}

.front-pdp-review-masonry-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 11px;
    font-weight: 600;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(143, 81, 56, 0.92);
    color: #fff;
    letter-spacing: 0.02em;
}

.front-pdp-review-masonry-body {
    padding: 1rem 1.05rem 1.1rem;
}

.front-pdp-review-gallery-stars .bi {
    color: #e6a317;
    font-size: 1rem;
    margin-right: 2px;
}

.front-pdp-review-masonry-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #211c19;
}

.front-pdp-review-masonry-flag {
    font-size: 1.05rem;
    line-height: 1;
}

.front-pdp-review-masonry-text {
    line-height: 1.55;
    color: #3d3530;
}

.front-pdp-review-masonry-product {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid #ede6e0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.15s ease;
}

.front-pdp-review-masonry-product:hover {
    opacity: 0.88;
}

.front-pdp-review-masonry-product-thumb {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3ece6;
    border: 1px solid #e5dcd4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.front-pdp-review-masonry-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.front-pdp-review-masonry-product-fallback {
    font-size: 0.85rem;
    font-weight: 700;
    color: #8f5138;
}

.front-pdp-review-masonry-product-name {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    color: #2c2622;
}

.front-pdp-purchase-config {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid #ececec;
    border-radius: 14px;
    background: #fafafa;
}

.front-pdp-variant-select-wrap {
    margin-top: 0;
    max-width: 100%;
}

.front-pdp-variant-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.front-pdp-qty-label {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.front-pdp-pack-select-wrap {
    margin-top: 12px;
}

.front-pdp-pack-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.front-pdp-variant-pill,
.front-pdp-pack-pill {
    border: 1px solid #d7d7d7;
    background: #f5f5f5;
    color: #2f2f2f;
    border-radius: 16px;
    padding: 9px 16px;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 600;
    transition: all 0.15s ease;
}

.front-pdp-variant-pill:hover,
.front-pdp-pack-pill:hover {
    border-color: var(--front-theme-accent);
    background: #ffffff;
}

.front-pdp-variant-pill.is-active,
.front-pdp-pack-pill.is-active {
    border-color: var(--front-theme-accent);
    background: var(--front-theme-accent);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.front-pdp-actions {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
}

.front-pdp-cart-form {
    width: 100%;
}

.front-pdp-cart-btn,
.front-pdp-buy-btn {
    border-radius: 999px;
    min-height: 46px;
    font-weight: 700;
    border: 1px solid var(--front-theme-accent);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.front-pdp-cart-btn {
    background: var(--front-theme-footer-bg);
    color: var(--front-theme-accent);
}

.front-pdp-buy-btn {
    background: var(--front-theme-accent);
    color: #fff;
}

.front-pdp-benefits {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    font-size: 14px;
    margin-bottom: 16px;
}

.front-pdp-benefits i {
    color: #8f5138;
}

.front-pdp-offers {
    margin-top: 14px;
    border: 1px solid #e8dccc;
    border-radius: 8px;
    padding: 10px;
}

.front-pdp-offers h2 {
    font-size: 28px;
    margin: 0 0 8px;
    font-weight: 700;
}

.front-pdp-offer-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.front-pdp-offer-item {
    border: 1px dashed #cfb089;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.front-pdp-offer-item strong {
    font-size: 14px;
}

.front-pdp-accordion {
    margin-top: 0;
    border-top: 1px solid #d8d8d8;
}

.front-pdp-accordion:first-of-type {
    margin-top: 10px;
}

.front-pdp-accordion:last-of-type {
    border-bottom: 1px solid #d8d8d8;
}

.front-pdp-accordion-btn {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #2d2d2d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.front-pdp-accordion-icon {
    min-width: 26px;
    text-align: center;
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
}

.front-pdp-accordion-btn .front-pdp-accordion-icon::before {
    content: "+";
}

.front-pdp-accordion-btn[aria-expanded="true"] .front-pdp-accordion-icon::before {
    content: "−";
}

.front-pdp-accordion-content {
    padding: 0 0 16px;
    color: #3f3b38;
    font-size: 14px;
    line-height: 1.5;
}

.front-pdp-share {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
}

.front-pdp-share a {
    color: #2e2a27;
}

.front-cart-header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.front-cart-header p {
    margin: 4px 0 0;
    color: #6f6964;
}

.front-cart-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
    align-items: start;
}

.front-cart-items {
    background: #fff;
    border: 1px solid #ece7e2;
    border-radius: 12px;
    overflow: hidden;
}

.front-cart-item {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 14px;
    border-bottom: 1px solid #f0ece8;
    align-items: center;
}

.front-cart-item:last-child {
    border-bottom: 0;
}

.front-cart-item-image-link {
    display: block;
}

.front-cart-item-image,
.front-cart-item-placeholder {
    width: 100%;
    height: 94px;
    border-radius: 10px;
    object-fit: cover;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8f5138;
    font-size: 30px;
    font-weight: 700;
}

.front-cart-item-content h2 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
}

.front-cart-item-content h2 a {
    color: #2d2b29;
    text-decoration: none;
}

.front-cart-item-price {
    font-weight: 600;
    margin-bottom: 8px;
}

.front-cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.front-cart-qty-box {
    display: inline-flex;
    border: 1px solid #e0dad5;
    border-radius: 8px;
    overflow: hidden;
}

.front-cart-qty-box button {
    width: 32px;
    border: 0;
    background: #fff;
}

.front-cart-qty-box input {
    width: 40px;
    border: 0;
    text-align: center;
}

/* Hide browser number spinners; +/- buttons handle quantity */
.front-cart-qty-box input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.front-cart-qty-box input[type="number"]::-webkit-outer-spin-button,
.front-cart-qty-box input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.front-cart-remove-btn {
    border: 0;
    background: transparent;
    color: #9f2f2f;
    font-weight: 600;
}

.front-cart-item-total {
    font-size: 18px;
    font-weight: 700;
    color: #25211f;
}

.front-cart-summary {
    background: #fff;
    border: 1px solid #ece7e2;
    border-radius: 12px;
    padding: 16px;
    position: sticky;
    top: 88px;
}

.front-cart-summary h2 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
}

.front-cart-summary-row,
.front-cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9px;
    color: #55504c;
}

.front-cart-summary-row strong {
    font-size: 14px;
}

.front-cart-summary-total {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #efeae5;
    color: #231f1d;
    font-size: 16px;
}

.front-cart-checkout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 0;
    border-radius: 10px;
    height: 46px;
    background: var(--front-theme-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-top: 8px;
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.front-cart-checkout-btn:hover,
.front-cart-checkout-btn:focus,
.front-cart-checkout-btn:active,
.front-cart-checkout-btn:visited {
    color: #fff;
    text-decoration: none;
}

.front-cart-checkout-btn:hover,
.front-cart-checkout-btn:focus {
    opacity: 0.92;
}

.front-cart-secure-note {
    margin: 10px 0 0;
    font-size: 13px;
    color: #6b6561;
}

.front-cart-empty {
    text-align: center;
    padding: 32px 18px;
}

.front-cart-empty i {
    font-size: 38px;
    color: #9a9088;
}

.front-cart-empty h2 {
    margin: 8px 0 4px;
    font-size: 22px;
}

.front-search-modal .modal-dialog {
    max-width: 680px;
}

.front-search-modal .modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
}

.front-search-modal-input-wrap {
    border-bottom: 1px solid #d7cfc7;
    margin-bottom: 16px;
}

.front-search-modal-input {
    border: 0;
    box-shadow: none !important;
    border-radius: 0;
    font-size: 42px;
    line-height: 1.05;
    padding: 6px 0 10px;
    color: #3f3934;
}

.front-search-modal-input::placeholder {
    color: #7f7770;
    font-size: 16px;
}

.front-search-modal-title {
    color: #8c5a45;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 8px;
    font-weight: 700;
}

.front-search-modal-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.front-search-modal-tags a {
    color: #2e2b29;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
}

.front-search-page-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e2dbd6;
    border-radius: 12px;
    padding: 8px 10px;
    background: #fff;
}

.front-search-page-input-wrap i {
    font-size: 18px;
    color: #6e6864;
}

.front-search-page-input-wrap .form-control {
    border: 0;
    box-shadow: none !important;
}

.front-category-empty-state {
    border: 1px solid #d9dce3;
    border-radius: 12px;
    padding: 44px 16px;
    text-align: center;
    color: #586172;
    background: #fff;
}

.front-category-empty-state i {
    font-size: 34px;
    color: #b1b9c7;
    margin-bottom: 10px;
    display: inline-block;
}

.front-category-empty-state h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: #3e4758;
}

.front-category-empty-state p {
    margin: 0;
    font-size: 15px;
    color: #6f7787;
}

.front-cms-page {
    background: #fff;
    border: 1px solid #ece7e2;
    border-radius: 12px;
    padding: 22px 20px;
}

.front-cms-page-title {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
}

.front-cms-page-body {
    color: #333130;
    font-size: 16px;
    line-height: 1.75;
}

.front-cms-page-body h2,
.front-cms-page-body h3 {
    margin-top: 1.2em;
    margin-bottom: 0.4em;
}

.front-product-image-modal .modal-content {
    background: #000;
}

.front-product-image-modal .front-modal-image-wrap {
    background: #000;
}

.front-product-image-modal .front-modal-product-image {
    max-height: 86vh;
}

.front-product-image-modal .carousel-control-prev,
.front-product-image-modal .carousel-control-next {
    width: 7%;
}

.front-product-image-modal .carousel-control-prev-icon,
.front-product-image-modal .carousel-control-next-icon {
    background-color: transparent;
}

@media (max-width: 991px) {
    .front-pdp-grid {
        grid-template-columns: 1fr;
    }

    .front-pdp-info {
        border-left: 0;
        padding-left: 0;
    }

    .front-pdp-gallery {
        grid-template-columns: 1fr;
    }

    .front-pdp-main-wrap {
        order: 1;
    }

    .front-pdp-thumbs {
        order: 2;
        flex-direction: row;
        overflow-x: auto;
    }

    .front-pdp-thumb-btn {
        width: 64px;
        flex: 0 0 64px;
    }

    .front-pdp-actions,
    .front-pdp-offer-row,
    .front-pdp-benefits {
        grid-template-columns: 1fr;
    }

    .front-cart-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .front-cart-summary {
        position: static;
        border-radius: 10px;
        padding: 12px;
    }

    .front-cart-item {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 10px;
        padding: 12px 10px;
    }

    .front-cart-item-total {
        grid-column: 1 / -1;
        text-align: right;
        margin-top: -2px;
        font-size: 14px;
        color: #3d3834;
        font-weight: 700;
    }

    .front-cart-header h1 {
        font-size: 20px;
    }

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

    .front-cart-items {
        border-radius: 10px;
    }

    .front-cart-item-image,
    .front-cart-item-placeholder {
        height: 76px;
        border-radius: 8px;
    }

    .front-cart-item-content h2 {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .front-cart-item-price {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .front-cart-item-actions {
        justify-content: space-between;
        gap: 8px;
    }

    .front-cart-qty-box {
        border-radius: 7px;
    }

    .front-cart-qty-box button {
        width: 28px;
        font-size: 15px;
    }

    .front-cart-qty-box input {
        width: 32px;
        font-size: 13px;
    }

    .front-cart-remove-btn {
        font-size: 12px;
    }

    .front-cart-summary h2 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .front-cart-summary-row {
        margin-bottom: 6px;
        font-size: 13px;
    }

    .front-cart-summary-row strong {
        font-size: 13px;
    }

    .front-cart-summary-total {
        font-size: 14px;
        margin-top: 8px;
        padding-top: 8px;
    }

    .front-cart-checkout-btn {
        min-height: 42px;
        font-size: 15px;
        border-radius: 9px;
        margin-top: 6px;
    }

    .front-cart-secure-note {
        font-size: 12px;
        margin-top: 8px;
    }

    .front-search-modal-input {
        font-size: 28px;
    }

    .front-search-modal-tags a {
        font-size: 14px;
    }
}

.front-icon-btn:hover,
.front-icon-btn:focus-visible {
    border-color: #d5c8bf;
    background: #faf7f4;
}

.front-icon-btn i {
    font-size: 17px;
    line-height: 1;
}

.front-icon-btn .bi-cart3 {
    font-size: 18px;
}

.front-icon-btn .bi-person {
    font-size: 21px;
}

.front-account-dropdown {
    min-width: 220px;
    border: 1px solid #e9e1db;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 16px 34px rgba(33, 22, 16, 0.12);
}

.front-account-dropdown-item {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #2d2825;
}

.front-account-dropdown-item:hover,
.front-account-dropdown-item:focus-visible {
    background: #f8f3ef;
    color: var(--front-theme-primary);
}

.front-account-dropdown-item-logout {
    color: #ce4030;
}

.front-account-dropdown-item-logout:hover,
.front-account-dropdown-item-logout:focus-visible {
    background: #fdeeed;
    color: #b12e20;
}

.front-mobile-menu-links .nav-link {
    color: #2f2f2f;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 0;
}

.front-mobile-menu-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
}

.front-cart-count {
    position: absolute;
    top: -6px;
    right: -4px;
    width: 21px;
    height: 21px;
    border-radius: 999px;
    background: var(--front-theme-accent);
    color: var(--front-theme-on-accent);
    border: 2px solid var(--front-theme-on-accent);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.front-content {
    min-height: 300px;
}

.front-cart-popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 2000;
}

.front-cart-popup {
    width: min(560px, 100%);
    background: #fff;
    color: #1f1f1f;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease;
    position: relative;
}

.front-cart-popup-backdrop.is-visible .front-cart-popup {
    opacity: 1;
    transform: scale(1);
}

.front-cart-popup-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.front-cart-popup-message {
    margin: 0;
    border-top: 1px solid #ece7e2;
    border-bottom: 1px solid #ece7e2;
    padding: 10px 0;
    font-size: 16px;
    color: #3b3733;
}

.front-cart-popup-meta {
    margin-top: 16px;
    font-size: 16px;
}

.front-cart-popup-meta strong {
    color: #8f5138;
}

.front-cart-popup-actions {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.front-cart-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #121212;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.front-cart-popup-continue,
.front-cart-popup-view {
    min-height: 46px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.front-cart-popup-continue {
    border: 1px solid #d8c8bc;
    background: #fff;
    color: #8f5138;
}

.front-cart-popup-view {
    border: 1px solid var(--front-theme-primary);
    background: var(--front-theme-primary);
    color: #fff;
    gap: 8px;
}

.front-cart-popup-backdrop.is-error .front-cart-popup {
    border: 2px solid #f3c3bf;
}

.front-cart-popup-backdrop.is-error .front-cart-popup-message {
    color: #b42318;
    background: #fdecec;
    border-color: #f3c3bf;
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 767px) {
    .front-cart-popup {
        border-radius: 12px;
        padding: 14px;
    }

    .front-cart-popup-title {
        font-size: 17px;
        padding-right: 42px;
    }

    .front-cart-popup-message {
        font-size: 14px;
    }

    .front-cart-popup-meta {
        font-size: 14px;
    }

    .front-cart-popup-actions {
        grid-template-columns: 1fr;
    }
}

.front-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.front-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.front-product-image-link {
    position: relative;
    display: block;
    text-decoration: none;
    background: #f2f2f2;
    overflow: hidden;
}

.front-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.front-product-image-secondary {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.front-product-card:hover .front-product-image-secondary {
    opacity: 1;
}

.front-product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    color: #8f5138;
    font-size: 34px;
    font-weight: 700;
}

.front-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background: #f31226;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
}

.front-product-usp-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    max-width: calc(100% - 20px);
    background: #093278;
    color: #ffffff;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 5px 8px;
    border-radius: 10px;
}

.front-product-discount-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 2;
    background: #f7f3be;
    color: #2f3240;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    padding: 7px 11px;
    border-radius: 999px;
}

.front-product-name {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    min-height: calc(1.35em * 2);
}

.front-product-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.front-product-name a {
    color: #222;
    text-decoration: none;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.front-product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #17336d;
    font-size: 22px;
    line-height: 1;
}

.front-product-rating-count {
    color: #111;
    margin-left: 4px;
    font-size: 18px;
}

.front-product-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 0;
}

.front-product-price {
    color: var(--front-theme-accent);
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
}

.front-product-compare-price {
    color: #151515;
    font-size: 14px;
    text-decoration: line-through;
}

.front-product-extra-point {
    margin: 0;
    color: #363636;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
}

.front-product-add-btn {
    margin-top: auto;
    width: 100%;
    border: 0;
    background: var(--front-theme-accent);
    color: var(--front-theme-on-accent);
    border-radius: 12px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
}

.front-product-add-btn i {
    font-size: 16px;
}

.front-product-add-label-desktop {
    display: inline;
}

.front-product-add-label-mobile {
    display: none;
}

.front-home-hero-wrap {
    padding: 14px 0 0;
}

.front-home-social-wrap {
    padding: 14px 0 4px;
    margin: 16px 0;
}

.front-home-categories-wrap,
.front-home-products-wrap,
.front-home-reels-wrap,
.front-home-banner-wrap {
    margin-top: 30px;
}

.front-home-social-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.front-home-social-item {
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.front-home-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.front-home-social-item.is-whatsapp .front-home-social-icon {
    background: radial-gradient(circle at 30% 20%, #8dff44 0%, #28d146 58%, #08a839 100%);
}

.front-home-social-item.is-instagram .front-home-social-icon {
    background: radial-gradient(circle at 28% 100%, #feda75 0%, #fa7e1e 28%, #d62976 52%, #962fbf 76%, #4f5bd5 100%);
}

.front-home-social-item.is-facebook .front-home-social-icon {
    background: radial-gradient(circle at 30% 20%, #5ea7f4 0%, #2b7cd3 62%, #1f5eac 100%);
}

.front-home-social-item.is-telegram .front-home-social-icon {
    background: radial-gradient(circle at 30% 20%, #3fb8f5 0%, #229cd9 62%, #1a86be 100%);
}

.front-home-social-label {
    color: #34435d;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
}

.front-home-social-item.is-disabled {
    pointer-events: none;
    cursor: default;
    opacity: 0.45;
}

.front-home-banner-wrap {
    padding: 6px 0 14px;
}

.front-home-banner-grid {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
}

.front-home-banner-grid:last-child {
    margin-bottom: 0;
}

.front-home-banner-grid-1 {
    grid-template-columns: minmax(0, 1fr);
}

.front-home-banner-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.front-home-banner-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.front-home-banner-slot {
    display: block;
    min-height: 1px;
}

.front-home-banner-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eef1f6;
    background: #fff;
    color: inherit;
    text-decoration: none;
    min-width: 0;
}

a.front-home-banner-card:hover {
    color: inherit;
    text-decoration: none;
    border-color: #e2e8f0;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.front-home-banner-image-wrap {
    display: block;
    background: #f8fafc;
    line-height: 0;
    overflow: hidden;
}

.front-home-banner-caption {
    display: block;
    padding: 10px 12px 12px;
    font-size: 0.875rem;
    line-height: 1.35;
    color: #334155;
    background: #fff;
}

.front-home-banner-two-wrap .front-home-banner-caption {
    text-align: left;
}

.front-home-banner-four-wrap .front-home-banner-caption {
    text-align: center;
}

.front-home-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.38s ease;
    will-change: transform;
}

.front-home-banner-card:hover .front-home-banner-image,
.front-home-banner-card:focus-visible .front-home-banner-image {
    transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
    .front-home-banner-image {
        transition: none;
    }

    .front-home-banner-card:hover .front-home-banner-image,
    .front-home-banner-card:focus-visible .front-home-banner-image {
        transform: none;
    }
}

/* Full-bleed band; title + grid stay in .front-navbar-container (side padding). */
.front-home-banner-wrap.front-home-banner-four-wrap {
    padding-top: 30px;
    padding-bottom: 30px;
    background: var(--front-home-banner-section-bg, #eefdff);
}

.front-hero-carousel {
    border-radius: 14px;
    overflow: hidden;
    background: #f5f3f1;
}

.front-hero-link,
.front-hero-link:hover {
    display: block;
    text-decoration: none;
}

.front-hero-image {
    width: 100%;
    height: clamp(200px, 30vw, 420px);
    object-fit: cover;
}

.front-hero-carousel .carousel-control-prev,
.front-hero-carousel .carousel-control-next {
    width: 44px;
    opacity: 1;
}

.front-hero-carousel .carousel-control-prev-icon,
.front-hero-carousel .carousel-control-next-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background-color: #000000;
    background-size: 58% 58%;
}

.front-hero-mobile {
    display: none;
}

.front-home-categories-wrap {
    padding: 32px 0;
}

.front-home-categories-title {
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1f1f1f;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.front-home-categories-title::before {
    content: "";
    width: 26px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #8f5138 0%, #c68a6f 100%);
    box-shadow: 0 2px 8px rgba(143, 81, 56, 0.35);
}

.front-home-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.front-home-category-card {
    text-decoration: none;
    color: #2b2b2b;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.front-home-category-image-wrap {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: #f4f2ef;
    border: 1px solid #ece6e1;
}

.front-home-category-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.35s ease;
}

.front-home-category-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    font-size: 34px;
    font-weight: 600;
    color: #8b5a43;
}

.front-home-category-name {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: #2f2f2f;
}

.front-home-category-card:hover .front-home-category-name,
.front-home-category-card:focus-visible .front-home-category-name {
    color: #8b5a43;
}

.front-home-category-card:hover .front-home-category-image,
.front-home-category-card:focus-visible .front-home-category-image {
    transform: scale(1.08);
}

.front-home-products-wrap {
    padding: 8px 0 32px;
}

.front-home-reels-wrap {
    padding: 6px 0 14px;
}

.front-home-reels-title {
    font-size: 18px;
    line-height: 1.15;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.front-home-reels-title::before {
    content: "";
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--front-theme-primary);
}

.front-home-reels-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 0;
}

.front-home-reels-list::-webkit-scrollbar {
    display: none;
}

.front-home-reels-slider {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
}

.front-home-reels-arrow {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
    transition: transform 0.2s ease;
}

.front-home-reels-arrow:hover,
.front-home-reels-arrow:focus-visible {
    transform: translateY(-50%) scale(1.03);
}

.front-home-reels-arrow:disabled {
    opacity: 0.35;
    pointer-events: none;
}

.front-home-reels-arrow-prev {
    left: -18px;
}

.front-home-reels-arrow-next {
    right: -18px;
}

.front-home-reel-card {
    flex: 0 0 calc((100% - 48px) / 5);
    width: calc((100% - 48px) / 5);
    aspect-ratio: 9 / 16;
    height: auto;
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    padding: 0;
    position: relative;
    box-shadow: none;
}

.front-home-reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.front-home-reel-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #fff;
}

.front-home-reel-placeholder {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 26px;
    font-weight: 700;
}

.front-reel-open {
    overflow: hidden;
}

.front-reel-modal {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: center;
    justify-content: center;
}

.front-reel-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 16, 0.78);
}

.front-reel-modal-content {
    position: relative;
    width: min(92vw, 420px);
    height: min(88vh, 780px);
    border-radius: 24px;
    overflow: hidden;
    background: #0f1115;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.front-reel-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.front-reel-close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.front-reel-nav {
    position: absolute;
    right: 12px;
    border: 0;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.front-reel-nav-prev {
    top: 50%;
    transform: translateY(-42px);
}

.front-reel-nav-next {
    top: 50%;
    transform: translateY(12px);
}

.front-reel-product-card {
    position: absolute;
    left: 12px;
    right: 52px;
    bottom: 14px;
    border-radius: 14px;
    background: rgba(17, 24, 39, 0.85);
    color: #fff;
    text-decoration: none;
    padding: 12px;
    backdrop-filter: blur(8px);
}

.front-reel-product-name {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}

.front-reel-product-price-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.front-reel-price-mrp {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.front-reel-price-sale {
    font-size: 18px;
    color: #fff;
}

.front-home-products-title {
    font-size: 18px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1f1f1f;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.front-home-products-title::before {
    content: "";
    width: 26px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(288deg, #dd147b 0%, #fdf2f2 100%);
    box-shadow: 0 2px 8px rgba(143, 81, 56, 0.35);
}

.front-home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.front-footer {
    background: var(--front-theme-footer-bg);
    color: var(--front-theme-footer-text);
    margin-top: 36px;
    padding-top: 58px;
}

.front-brand-footer {
    color: #ffffff;
}

.front-brand-footer span {
    color: #ead7ce;
}

.front-footer-tagline {
    margin-top: 18px;
    font-size: 28px;
    line-height: 1.3;
    max-width: 460px;
    color: var(--front-theme-accent);
    font-weight: 600;
}

.front-social-icons {
    display: flex;
    gap: 18px;
    margin-top: 18px;
}

.front-social-icons a {
    color: #f6e9e2;
    font-size: 18px;
}

.front-offer-box {
    margin-top: 28px;
    max-width: 420px;
    font-size: 16px;
    color: #f8ebe4;
}

.front-app-buttons {
    display: flex;
    gap: 10px;
}

.front-store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    background: #111;
    font-size: 13px;
    font-weight: 600;
}

.front-footer h6 {
    font-size: 25px;
    color: #dd147b;
    margin-bottom: 14px;
}

.front-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.front-footer li {
    margin: 8px 0;
    line-height: 1.4;
}

.front-footer-section-toggle {
    width: 100%;
    background: transparent;
    border: 0;
    color:var(--front-theme-accent);
    font-size: 18px;
    font-weight: 700;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.front-footer-section-toggle i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.front-footer-section-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.front-footer a {
    color: #dd147b;
    text-decoration: none;
}

.front-footer-wa-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.front-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    margin-top: 34px;
    padding: 18px 0 26px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: 14px;
    color: #dd147b;
    flex-wrap: wrap;
}

.front-footer-locale {
    display: flex;
    gap: 18px;
}

.front-mobile-bottom-nav {
    display: none;
}

.front-icon-btn:focus-visible,
.front-footer a:focus-visible {
    outline: 2px solid #b67b61;
    outline-offset: 2px;
}

@media (max-width: 1199px) {
    .front-navbar-container,
    .front-footer-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .front-navbar {
        min-height: 62px;
    }

    .front-brand {
        font-size: 28px;
    }

    .front-logo-image {
        height: 41px;
        max-width: min(240px, 48vw);
    }

    .front-nav-links {
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .front-footer-tagline {
        font-size: 22px;
    }

    .front-footer h6 {
        font-size: 20px;
    }

    .front-home-category-name {
        font-size: 16px;
    }

    .front-product-name {
        font-size: 16px;
    }

    .front-home-products-title {
        font-size: 16px;
    }

    .front-home-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .front-product-detail {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .front-product-detail-gallery {
        position: static;
    }
}

@media (max-width: 1199px) {
    .front-content {
        padding-bottom: 94px;
    }

    .front-mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: #f2f2f2;
        border-top: 1px solid #dddddd;
        min-height: 76px;
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 4px;
    }

    .front-mobile-nav-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 7px;
        text-decoration: none;
        color: #808080;
        min-height: 52px;
        border-radius: 12px;
        padding: 6px 4px;
    }

    .front-mobile-nav-item-button {
        border: 0;
        background: transparent;
        width: 100%;
    }

    .front-mobile-nav-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 23px;
        line-height: 1;
    }

    .front-mobile-nav-label {
        font-size: 13px;
        line-height: 1;
        color: #767676;
        font-weight: 500;
    }

    .front-mobile-icon-circle {
        width: 48px;
        height: 48px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #111111;
    }

    .front-mobile-icon-circle i {
        font-size: 24px;
        line-height: 1;
    }

    .front-mobile-nav-item.is-active {
        color: #111111;
        background: #e9e9e9;
    }

    .front-product-detail-price {
        font-size: 30px;
    }

    .front-product-detail-actions {
        flex-direction: column;
    }

    .front-product-detail-btn-primary,
    .front-product-detail-btn-secondary {
        width: 100%;
    }

    .front-mobile-nav-item.is-active .front-mobile-nav-label {
        color: #111111;
        font-weight: 600;
    }

    .front-top-strip {
        font-size: 11px;
        padding: 7px 10px;
    }

    .front-navbar .navbar-toggler {
        margin-left: auto;
    }

    .front-mobile-menu {
        width: min(88vw, 440px);
        background: #ffffff;
    }

    .front-mobile-menu .offcanvas-header {
        border-bottom: 1px solid #ece7e2;
        padding: 14px 18px;
    }

    .front-mobile-menu .offcanvas-body {
        padding: 12px 18px 18px;
    }

    .front-footer {
        margin-top: 24px;
        padding-top: 40px;
    }

    .front-footer-grid > [class*="col-"] {
        margin-bottom: 4px;
    }

    .front-offer-box {
        margin-top: 18px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .front-brand {
        font-size: 24px;
    }

    .front-logo-image {
        height: 41px;
        max-width: min(200px, 52vw);
    }

    .front-logo-image-mobile {
        height: 41px;
        max-width: min(180px, 50vw);
    }

    .front-logo-image-footer {
        height: 41px;
        max-width: min(240px, 72vw);
    }

    .front-navbar {
        min-height: 58px;
    }

    .front-content {
        min-height: 220px;
    }

    .front-product-card {
        border-radius: 10px;
    }

    .front-home-social-wrap {
        padding: 12px 0 4px;
        margin: 12px 0;
    }

    .front-home-banner-grid {
        gap: 10px;
        margin-bottom: 10px;
    }

    .front-home-banner-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .front-home-banner-card {
        border-radius: 12px;
    }

    .front-home-banner-wrap.front-home-banner-four-wrap {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .front-home-categories-wrap,
    .front-home-products-wrap,
    .front-home-reels-wrap,
    .front-home-banner-wrap {
        margin-top: 20px;
    }

    .front-home-social-grid {
        gap: 10px;
        justify-content: center;
    }

    .front-home-social-item {
        width: calc(25% - 10px);
        min-width: 58px;
        gap: 5px;
    }

    .front-home-social-icon {
        width: 36px;
        height: 36px;
        font-size: 17px;
    }

    .front-home-social-label {
        font-size: 10px;
        text-align: center;
    }

    .front-product-name {
        font-size: 13px;
        margin-top: 0;
    }

    .front-product-body {
        padding: 10px;
    }

    .front-product-rating {
        font-size: 18px;
    }

    .front-product-rating-count {
        font-size: 16px;
    }

    .front-product-price {
        font-size: 18px;
    }

    .front-product-compare-price {
        font-size: 13px;
    }

    .front-product-add-btn {
        min-height: 42px;
        border-radius: 10px;
        font-size: 14px;
        padding: 6px 10px;
    }

    .front-product-extra-point {
        font-size: 11px;
    }

    .front-product-add-label-desktop {
        display: none;
    }

    .front-product-add-label-mobile {
        display: inline;
    }

    .front-home-hero-wrap {
        padding-top: 8px;
    }

    .front-hero-desktop {
        display: none;
    }

    .front-hero-mobile {
        display: block;
    }

    .front-hero-image {
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .front-home-categories-wrap {
        padding: 20px 0;
    }

    .front-home-categories-title {
        font-size: 17px;
        gap: 8px;
        margin-bottom: 10px;
    }

    .front-home-categories-title::before {
        width: 20px;
        height: 3px;
    }

    .front-home-categories-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .front-home-category-card {
        gap: 8px;
    }

    .front-home-category-name {
        font-size: 13px;
        text-align: center;
    }

    .front-home-products-wrap {
        padding-top: 4px;
        padding-bottom: 20px;
    }

    .front-home-reels-wrap {
        padding: 4px 0 16px;
    }

    .front-home-banner-wrap {
        padding: 4px 0 16px;
    }

    .front-home-reels-title {
        font-size: 13px;
        gap: 8px;
    }

    .front-home-reels-title::before {
        width: 20px;
        height: 3px;
    }

    .front-home-reel-card {
        flex: 0 0 calc((100% - 12px) / 2);
        width: calc((100% - 12px) / 2);
        aspect-ratio: 9 / 16;
        height: auto;
        border-radius: 12px;
        box-shadow: none;
    }

    .front-home-reels-arrow {
        display: none !important;
    }

    .front-reel-modal-content {
        width: min(96vw, 420px);
        height: min(84vh, 720px);
        border-radius: 18px;
    }

    .front-reel-product-card {
        left: 10px;
        right: 48px;
        bottom: 10px;
    }

    .front-reel-product-name {
        font-size: 14px;
    }

    .front-home-products-title {
        font-size: 13px;
        gap: 8px;
        margin-bottom: 10px;
    }

    .front-home-products-title::before {
        width: 20px;
        height: 3px;
    }

    .front-home-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .front-footer-tagline {
        font-size: 20px;
        max-width: 100%;
    }

    .front-footer h6 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .front-footer-section {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 8px;
    }

    .front-footer-section-toggle {
        margin-bottom: 3px;
    }

    .front-footer-section .collapse:not(.show) {
        display: none;
    }

    .front-footer-section .collapse.show {
        display: block;
    }

    .front-footer li {
        margin: 6px 0;
    }

    .front-footer-bottom {
        padding-top: 14px;
        font-size: 13px;
    }

    .front-footer-locale {
        width: 100%;
        gap: 10px;
    }

    .front-content {
        padding-bottom: 88px;
    }

    .front-mobile-bottom-nav {
        min-height: 70px;
        padding-top: 6px;
        gap: 2px;
    }

    .front-mobile-nav-item {
        gap: 6px;
        min-height: 46px;
        border-radius: 10px;
    }

    .front-mobile-menu-links .nav-link {
        font-size: 17px;
        padding: 10px 0;
    }

    .front-mobile-menu-icons .front-icon-btn {
        width: 44px;
        height: 44px;
    }

    .front-mobile-nav-icon {
        font-size: 20px;
    }

    .front-mobile-nav-label {
        font-size: 13px;
    }

    .front-mobile-icon-circle {
        width: 36px;
        height: 36px;
    }

    .front-mobile-icon-circle i {
        font-size: 19px;
    }
}

@media (max-width: 575px) {
    .front-navbar-container,
    .front-footer-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .front-app-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .front-store-btn {
        min-width: 150px;
    }

    .front-mobile-menu-links .nav-link {
        font-size: 16px;
    }
}

.front-checkout-page {
    background: #f6f6f7;
}

.front-checkout-header h1 {
    font-size: 24px;
    margin-bottom: 4px;
    font-weight: 700;
    color: #111827;
}

.front-checkout-header p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
}

.front-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 20px;
    align-items: start;
}

.front-checkout-card,
.front-checkout-summary {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px;
}

.front-checkout-card h2,
.front-checkout-summary h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 14px;
    color: #111827;
}

.front-checkout-section-title {
    font-size: 16px !important;
}

.front-checkout-address-option {
    display: flex;
    gap: 10px;
    margin: 0 0 10px;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.front-checkout-address-option input {
    margin-top: 4px;
    accent-color: var(--front-theme-primary);
}

.front-checkout-address-option:hover {
    border-color: #d3d9e2;
}

.front-checkout-address-option:has(input:checked) {
    border-color: var(--front-theme-primary);
    background: #fff7f2;
    box-shadow: 0 0 0 3px rgba(199, 120, 73, 0.16);
}

.front-checkout-address-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    color: var(--front-theme-primary);
    font-size: 16px;
    opacity: 0.9;
}

.front-checkout-address-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.front-checkout-address-row .front-checkout-address-option {
    flex: 1;
}

.front-checkout-address-edit-btn {
    margin-top: 6px;
    min-width: 74px;
    min-height: 36px;
    border-radius: 10px;
    border: 1px solid #cfc7c1;
    background: #fff;
    color: #5a524c;
    font-size: 13px;
    font-weight: 600;
    padding: 0 14px;
    transition: all 0.2s ease;
}

.front-checkout-address-edit-btn:hover,
.front-checkout-address-edit-btn:focus-visible {
    border-color: var(--front-theme-primary);
    background: #fdf4ee;
    color: var(--front-theme-primary);
    box-shadow: 0 0 0 3px rgba(199, 120, 73, 0.14);
}

.front-checkout-address-row:has(.front-checkout-address-option input:checked) .front-checkout-address-edit-btn {
    border-color: var(--front-theme-primary);
    color: #fff;
    background: var(--front-theme-primary);
    box-shadow: 0 6px 14px rgba(127, 70, 49, 0.22);
}

.front-checkout-payment-note {
    display: flex;
    gap: 10px;
    color: #4b5563;
    background: #fff8ec;
    border: 1px solid #ffe2b0;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 12px;
}

.front-checkout-payment-options {
    display: block;
    margin-bottom: 12px;
}

.front-checkout-payment-option {
    display: flex;
    width: 100%;
    gap: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    background: #fff;
    margin-bottom: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.front-checkout-payment-option:last-child {
    margin-bottom: 0;
}

.front-checkout-payment-option input {
    margin-top: 4px;
    accent-color: var(--front-theme-primary);
}

.front-checkout-payment-option:hover {
    border-color: #d3d9e2;
}

.front-checkout-payment-option:has(input:checked) {
    border-color: var(--front-theme-primary);
    background: #fff7f2;
    box-shadow: 0 0 0 3px rgba(199, 120, 73, 0.16);
}

.front-checkout-payment-option.is-selected {
    border-color: var(--front-theme-primary);
    background: #fff7f2;
    box-shadow: 0 0 0 3px rgba(199, 120, 73, 0.16);
}

.front-checkout-payment-option-static {
    cursor: default;
}

.front-checkout-payment-option-static.front-checkout-payment-option-active {
    border-color: var(--front-theme-primary);
    background: #fff7f2;
    box-shadow: 0 0 0 3px rgba(199, 120, 73, 0.16);
}

.front-checkout-place-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.front-checkout-wallet-recharge .front-wallet-topup-row {
    padding: 10px;
}

.front-checkout-wallet-toast {
    margin-top: 8px;
}

.front-wallet-balance-badge {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #e9f8ee;
    color: #1d7f3f;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #b7e8c7;
}

.front-wallet-topup-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
    padding: 12px;
    border: 1px solid #ece7e2;
    border-radius: 14px;
    background: #fffaf7;
}

.front-wallet-recharge-card {
    border: 1px solid #eadfd8;
    border-radius: 16px;
    background: linear-gradient(180deg, #fffdfb 0%, #fff8f4 100%);
    padding: 12px;
}

.front-wallet-topup-balance {
    min-width: 180px;
}

.front-wallet-topup-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.front-wallet-topup-input {
    width: 180px;
    height: 48px;
    border: 1px solid #d8c8bc;
    border-radius: 12px;
    font-size: 19px;
    font-weight: 600;
    color: #1f2937;
    padding: 0 14px;
    box-shadow: none;
}

.front-wallet-topup-input:focus {
    border-color: var(--front-theme-primary);
    box-shadow: 0 0 0 3px rgba(111, 63, 44, 0.14);
}

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

.front-wallet-topup-input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.front-wallet-topup-btn {
    min-width: 220px;
    height: 48px;
    border: 1px solid var(--front-theme-primary);
    background: var(--front-theme-primary);
    color: #fff;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    transition: all 0.2s ease;
}

.front-wallet-topup-btn:hover,
.front-wallet-topup-btn:focus-visible {
    background: #7f4631;
    border-color: #7f4631;
    color: #fff;
    box-shadow: 0 8px 20px rgba(111, 63, 44, 0.2);
}

.front-wallet-quick-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
}

.front-wallet-quick-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

.front-wallet-quick-chip {
    border: 1px solid #decfc4;
    background: #fff;
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    padding: 6px 12px;
    line-height: 1;
    transition: all 0.2s ease;
}

.front-wallet-quick-chip:hover,
.front-wallet-quick-chip:focus-visible {
    border-color: var(--front-theme-primary);
    color: var(--front-theme-primary);
    background: #fff7f2;
}

.front-wallet-toast {
    position: fixed;
    right: 16px;
    bottom: 18px;
    z-index: 1080;
    min-width: 240px;
    max-width: 360px;
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.24);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.22s ease;
}

.front-wallet-toast.is-success {
    background: #0f8f4d;
}

.front-wallet-toast.is-error {
    background: #dc2626;
}

.front-wallet-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.front-checkout-place-btn {
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--front-theme-primary);
}

.front-checkout-notice-body {
    white-space: pre-line;
    line-height: 1.55;
    font-size: 15px;
}

.front-checkout-notice-modal .modal-footer {
    justify-content: center;
}

.front-checkout-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.front-checkout-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
}

.front-checkout-item-media {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    position: relative;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 700;
}

.front-checkout-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.front-checkout-item-media b {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #111827;
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.front-checkout-item-info h3 {
    margin: 0 0 2px;
    font-size: 14px;
    color: #111827;
}

.front-checkout-item-info p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
}

.front-checkout-summary-row,
.front-checkout-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.front-checkout-summary-row {
    margin-bottom: 10px;
    color: #374151;
    font-size: 14px;
}

.front-checkout-summary-total {
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
    margin-top: 8px;
    color: #111827;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .front-checkout-grid {
        grid-template-columns: 1fr;
    }
}

.front-checkout-layout-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid #eceff3;
}

.front-checkout-layout-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.front-checkout-layout-content {
    min-height: calc(100vh - 76px);
}

.front-thankyou-card {
    background: #fff;
    border: 1px solid #ece7e2;
    border-radius: 22px;
    padding: 26px 18px;
    box-shadow: 0 16px 34px rgba(33, 22, 16, 0.08);
}

.front-thankyou-icon-wrap .bi {
    font-size: 52px;
    color: #16a34a;
}

.front-thankyou-title {
    font-size: 40px;
    font-weight: 700;
    color: #131722;
}

.front-thankyou-subtitle {
    font-size: 17px;
    color: #6b7280;
}

.front-thankyou-summary {
    max-width: 520px;
}

.front-thankyou-primary-btn,
.front-thankyou-secondary-btn {
    min-height: 48px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.front-thankyou-primary-btn {
    border: 1px solid var(--front-theme-primary);
    background: var(--front-theme-primary);
    color: #fff;
}

.front-thankyou-primary-btn:hover,
.front-thankyou-primary-btn:focus-visible {
    background: #7a422f;
    border-color: #7a422f;
    color: #fff;
}

.front-thankyou-secondary-btn {
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #667085;
}

.front-thankyou-secondary-btn:hover,
.front-thankyou-secondary-btn:focus-visible {
    border-color: var(--front-theme-primary);
    color: var(--front-theme-primary);
    background: #fff9f5;
}

@media (max-width: 767px) {
    .front-wallet-topup-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .front-wallet-topup-input,
    .front-wallet-topup-btn {
        width: 100%;
        min-width: 0;
    }

    .front-wallet-toast {
        left: 12px;
        right: 12px;
        bottom: 12px;
        min-width: 0;
        max-width: unset;
    }

    .front-thankyou-title {
        font-size: 30px;
    }

    .front-thankyou-subtitle {
        font-size: 15px;
    }
}
