/* === Product detail gallery === */
.product-details-items .tab-content .product-details-thumb .thumb img.product-details-main-image {
    width: 100%;
    height: auto;
    max-height: 486px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.product-details-items .tab-header .nav .item a,
.product-details-items .tab-header .nav .tab-header-nav-item a {
    width: 131px;
    flex: 0 0 131px;
    display: block;
}

.product-details-items .tab-header .nav .item a img,
.product-details-items .tab-header .nav .tab-header-nav-item a img {
    width: 131px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.product-details-items .tab-header .nav .product-gallery-thumb.active img {
    outline: 2px solid var(--primary-color, #FF1212);
    outline-offset: 2px;
}

/* === Product detail quantity === */
.product-details-content__info .qty input[name="quantity_1"] {
    display: none;
}

.product-details-content__info .qty .qty-val {
    width: 26px;
    min-width: 26px;
    padding: 0;
    text-align: center;
    user-select: none;
}

/* === Search sidebar child categories === */
.shop-sidebar__child-toggle {
    display: inline-block;
    margin: 4px 0 8px 16px;
    font-size: 13px;
    color: #777;
    text-decoration: none;
}

.shop-sidebar__child-toggle:hover {
    color: var(--primary-color, #FF1212);
}

.shop-sidebar__categories-list--nested {
    padding-left: 16px;
}

/* === Search topbar === */
.shop-wrapper__items--search {
    flex-wrap: wrap;
    gap: 16px;
}

.shop-wrapper__items-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.shop-wrapper__sort--labeled {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-wrapper__sort-label {
    margin: 0;
    color: var(--text-secondary);
    font-family: Lato, sans-serif;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
}

/* === Related products hover image === */
.featured-products2-card__thumb-link {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.featured-products2-card__thumb-link img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.featured-products2-card__pri-img {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Top selling compare icon */
.featured-products__image {
    position: relative;
}

.featured-products__compare-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--text-primary, #070713);
    border: 1px solid #e7ebf3;
    box-shadow: 0 2px 8px rgba(7, 7, 19, 0.12);
    transition: all 0.2s ease;
}

.featured-products__compare-icon:hover {
    background: var(--theme-color, #ff7a00);
    color: #fff;
    border-color: var(--theme-color, #ff7a00);
}

.featured-products__favorite-icon {
    position: absolute;
    top: 56px;
    right: 12px;
    z-index: 4;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #e53935;
    border: 1px solid #e7ebf3;
    box-shadow: 0 2px 8px rgba(7, 7, 19, 0.12);
    transition: all 0.2s ease;
}

.featured-products__favorite-icon:hover {
    background: #e53935;
    color: #fff;
    border-color: #e53935;
}

.featured-products2-card__sec-img {
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.featured-products2-card:hover .featured-products2-card__sec-img {
    opacity: 1;
    visibility: visible;
}

.featured-products2-card:hover .featured-products2-card__pri-img {
    opacity: 0;
    visibility: hidden;
}

/* === Offcanvas mini cart === */
.minicart-inner {
    position: fixed;
    inset: 0;
    z-index: 10050;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.minicart-inner.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.minicart-inner .offcanvas-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 19, 0.55);
    backdrop-filter: blur(2px);
    cursor: pointer;
}

.minicart-inner .minicart-inner-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: #fff;
    box-shadow: -12px 0 40px rgba(7, 7, 19, 0.12);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}

.minicart-inner.show .minicart-inner-content {
    transform: translateX(0);
}

.minicart-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color, #FFD100);
    color: var(--text-primary, #070713);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.minicart-close:hover {
    transform: rotate(90deg);
    opacity: 0.9;
}

.minicart-content-box {
    flex: 1;
    overflow-y: auto;
    padding: 72px 24px 28px;
    scrollbar-width: thin;
}

.minicart-panel-head {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.minicart-panel-head__title {
    margin: 0 0 4px;
    font-family: var(--title-font, "Fredoka", sans-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary, #070713);
}

.minicart-panel-head__meta {
    margin: 0;
    font-size: 0.875rem;
    color: #777;
}

.minicart-item-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.minicart-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}

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

.minicart-thumb {
    flex: 0 0 78px;
    width: 78px;
    height: 78px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fafafa;
}

.minicart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.minicart-content {
    flex: 1;
    min-width: 0;
}

.minicart-content__name {
    margin: 0 0 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

.minicart-content__name a {
    color: var(--text-primary, #070713);
    text-decoration: none;
}

.minicart-content__name a:hover {
    color: var(--text-primary, #070713);
    opacity: 0.75;
}

.minicart-content__meta {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.minicart-content__qty {
    font-size: 0.8125rem;
    color: #777;
}

.minicart-content__price {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary, #070713);
}

.minicart-content__variations {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    line-height: 1.35;
    color: #888;
}

.minicart-remove {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f7;
    border-radius: 8px;
    color: #888;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.minicart-remove:hover {
    background: #ffe8e8;
    color: #e53935;
}

.minicart-empty {
    text-align: center;
    padding: 28px 12px 8px;
}

.minicart-empty__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #f7f7f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #bbb;
}

.minicart-empty__text {
    margin: 0 0 18px;
    color: #777;
}

.minicart-pricing-box {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #eee;
}

.minicart-pricing-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.minicart-pricing-box li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.875rem;
    color: #555;
}

.minicart-pricing-box li span strong {
    color: var(--text-primary, #070713);
    font-weight: 600;
}

.minicart-pricing-box li.total {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px dashed #e5e5e5;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #070713);
}

.minicart-coupon-remove {
    border: none;
    background: transparent;
    color: #e53935;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.minicart-button {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.minicart-button .theme-btn {
    width: 100%;
}

.minicart-login-note {
    margin: 4px 0 0;
    text-align: center;
    font-size: 0.8125rem;
    color: #e53935;
}

@media (max-width: 575.98px) {
    .minicart-inner .minicart-inner-content {
        max-width: 100%;
    }
}

/* === Login / Register page (side by side) === */
.login-page__grid {
    align-items: flex-start;
}

.login-page__grid .login-page__wrapper {
    max-width: none;
    margin: 0;
    height: auto;
}

.login-page__wrapper--register .login-page__form-group {
    margin-bottom: 16px;
}

.login-page__agreement {
    margin: 20px 0 24px;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-secondary, #666);
}

.login-page__agreement a {
    color: var(--text-primary, #070713);
    font-weight: 500;
    text-decoration: underline;
}

.login-page__agreement a:hover {
    opacity: 0.8;
}

.login-page__form-btn.theme-btn {
    width: 100%;
    border-radius: 5.5rem;
}

.login-page__form-btn.theme-btn,
.login-page__form-btn.theme-btn:hover,
.login-page__form-btn.theme-btn:focus {
    color: #fff !important;
}

#registerButton,
#registerButton:hover,
#registerButton:focus {
    color: #fff !important;
}

.login-page--forget .login-page__wrapper--single {
    max-width: 520px;
    margin: 0 auto;
    padding: 32px 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eef1f6;
    box-shadow: 0 8px 32px rgba(7, 7, 19, 0.06);
}

.login-page__subtitle {
    margin-bottom: 24px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary, #666);
}

.login-page__footer-note {
    margin-top: 20px;
    font-size: 0.9375rem;
    color: var(--text-secondary, #666);
}

.login-page__footer-note a {
    color: var(--text-primary, #070713);
    font-weight: 600;
    text-decoration: underline;
}

.login-page--forget .login-page__form-input {
    width: 100%;
}

/* === Header account dropdown === */
.header-user-menu {
    position: relative;
}

.header-user-menu__toggle {
    display: flex;
}

.header-user-menu:hover .header-user-menu__toggle,
.header-user-menu:focus-within .header-user-menu__toggle {
    color: #e53935;
}

.header-user-menu__dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 150px;
    margin: 0;
    padding: 12px 20px;
    list-style: none;
    background: #fff;
    border: 1px solid #ebebeb;
    box-shadow: 0 8px 24px rgba(7, 7, 19, 0.1);
    border-radius: 8px;
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.header-user-menu__dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 14px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-left: 1px solid #ebebeb;
    border-top: 1px solid #ebebeb;
    transform: rotate(45deg);
}

.header-user-menu__dropdown li {
    margin: 0;
    padding: 0;
}

.header-user-menu__dropdown li + li {
    border-top: 1px solid #f0f0f0;
}

.header-user-menu__dropdown a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.2;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.header-user-menu__dropdown a:hover {
    color: #e53935;
}

.header-user-menu:hover .header-user-menu__dropdown,
.header-user-menu:focus-within .header-user-menu__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* === Cart page === */
.cart-page__item-variations {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.cart-page__variation-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    line-height: 1.4;
    color: #555;
    background: #f5f5f7;
    border: 1px solid #e8e8ec;
    border-radius: 4px;
}

.cart-page__empty p {
    color: #777;
}

/* Sticky cart totals (column must not stretch full row height) */
@media (min-width: 992px) {
    .cart-page.cart-main-wrapper .container > .row {
        align-items: flex-start;
    }

    .cart-page .cart-page__totals-col {
        align-self: flex-start;
    }

    .cart-page .cart-page__totals {
        position: sticky !important;
        top: 110px;
        z-index: 8;
        width: 100%;
    }

    .checkout-page .checkout-page__order-col {
        align-self: flex-start;
    }

    .checkout-page .checkout-page__order {
        position: sticky !important;
        top: 110px;
        z-index: 8;
        width: 100%;
    }
}

.checkout-page .checkout-page__billing-form-input,
.checkout-page .checkout-page__billing-form-select,
.checkout-page .checkout-page__billing-form-textarea {
    width: 100%;
    max-width: 100%;
}

.checkout-page #couponApplyBlock .checkout-page__billing-form-input {
    width: 100%;
}

/* Keep checkout CTA text visible on hover */
.checkout-page .checkout-page__place-order-btn.theme-btn,
.checkout-page .checkout-page__place-order-btn.theme-btn:hover,
.checkout-page .checkout-page__place-order-btn.theme-btn:focus {
    color: #fff !important;
}

.banks-page__table-inner {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.banks-page__table-inner thead th {
    background: var(--theme-color, #ff7a00);
    color: #fff;
    font-weight: 600;
    border: none;
    white-space: nowrap;
}

.banks-page__table-inner tbody td {
    vertical-align: middle;
}

.banks-page__eft-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.banks-page__eft-desc {
    color: #5c6b7a;
    margin-bottom: 1.5rem;
}

.banks-page .contact2-form__input-field {
    width: 100%;
}

/* Qty controls */
.cart-page .cart-page__qty-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-page .cart-page__item-qty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    position: relative;
    z-index: 2;
    min-width: 128px;
    height: 44px;
    padding: 4px;
    background: #eef6ff;
    border: 1px solid #d6e4f0;
    border-radius: 10px;
    box-sizing: border-box;
}

.cart-page .cart-page__item-qty::before {
    display: none;
}

.cart-page .cart-page__qty-btn {
    flex: 0 0 36px;
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 8px;
    background: #ffffff;
    color: #070713;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0 1px 2px rgba(7, 7, 19, 0.06);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    transform: none;
}

.cart-page .cart-page__qty-btn:hover:not(:disabled) {
    background: #070713;
    color: #ffffff;
    transform: none;
}

.cart-page .cart-page__qty-btn:active:not(:disabled) {
    transform: scale(0.96);
}

.cart-page .cart-page__qty-input {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    flex: 0 0 44px;
    height: 36px !important;
    padding: 0 !important;
    margin: 0 4px;
    box-sizing: border-box;
    border: none !important;
    border-radius: 6px;
    background: #ffffff !important;
    color: #070713;
    font-family: var(--title-font, "Fredoka", sans-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 36px;
    text-align: center;
    box-shadow: inset 0 0 0 1px #e2e8f0;
    appearance: textfield;
    -moz-appearance: textfield;
}

.cart-page .cart-page__qty-input:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px #ffd100;
}

.cart-page .cart-page__item-qty.is-updating {
    opacity: 0.7;
    pointer-events: none;
}

/* === Wishlist / Favourites page === */
.wishlist-page__item-code {
    font-family: var(--title-font, "Fredoka", sans-serif);
    font-size: 14px;
    font-weight: 500;
    color: #198754;
}

.wishlist-page__empty p {
    color: #777;
}

.wishlist-page__add-to-cart .icon i {
    font-size: 14px;
}

/* ========================================
   Compare Page
   ======================================== */
.compare-page__empty-icon {
    font-size: 3rem;
    color: var(--theme-color, #ff7a00);
    display: block;
    margin-bottom: 16px;
}

.compare-page__empty-text {
    font-size: 1.1rem;
    color: #666;
}

.compare-page__table-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eef1f6;
}

.compare-page__table {
    min-width: 600px;
}

.compare-page__table th,
.compare-page__table td {
    vertical-align: middle;
    padding: 14px 16px;
}

.compare-page__label-col {
    background: #f8faff;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    width: 160px;
    border-right: 2px solid #eef1f6;
}

.compare-page__product-col {
    min-width: 200px;
}

.compare-page__product-img {
    max-height: 140px;
    object-fit: contain;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.compare-page__product-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    margin-top: 4px;
}

.compare-page__product-name:hover {
    color: var(--theme-color, #ff7a00);
}

.compare-page__price {
    font-weight: 700;
    font-size: 1rem;
    color: var(--theme-color, #ff7a00);
}

.compare-page__value-col {
    font-size: 0.9rem;
    color: #444;
}

/* ========================================
   Profile Page
   ======================================== */

/* Sidebar */
.profile-page__sidebar {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 16px;
    padding: 16px;
    position: sticky;
    top: 110px;
}

.profile-page__sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.profile-page__sidebar-item i {
    width: 18px;
    text-align: center;
    color: var(--theme-color, #ff7a00);
}

.profile-page__sidebar-item:hover,
.profile-page__sidebar-item.active {
    background: var(--theme-color, #ff7a00);
    color: #fff;
}

.profile-page__sidebar-item:hover i,
.profile-page__sidebar-item.active i {
    color: #fff;
}

.profile-page__sidebar-item--logout:hover {
    background: #dc3545;
}

/* Content card */
.profile-page__card {
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 16px;
    padding: 28px 24px;
}

.profile-page__card-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #070713;
}

.profile-page__card-desc {
    color: #666;
    font-size: 0.9375rem;
}

/* Quick cards on index */
.profile-page__quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: #f8faff;
    border: 1px solid #eef1f6;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    text-align: center;
    transition: background .2s, color .2s, border-color .2s;
}

.profile-page__quick-card:hover {
    background: var(--theme-color, #ff7a00);
    border-color: var(--theme-color, #ff7a00);
    color: #fff;
}

.profile-page__quick-icon {
    font-size: 1.5rem;
    color: var(--theme-color, #ff7a00);
    transition: color .2s;
}

.profile-page__quick-card:hover .profile-page__quick-icon {
    color: #fff;
}

.profile-page__quick-card--logout:hover {
    background: #dc3545;
    border-color: #dc3545;
}

/* Info card (order detail sections) */
.profile-page__info-card {
    background: #f8faff;
    border: 1px solid #eef1f6;
    border-radius: 12px;
    padding: 20px;
}

.profile-page__info-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #070713;
    padding-bottom: 8px;
    border-bottom: 1px solid #e4e9f2;
}

.profile-page__info-card p {
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #444;
}

/* Order header */
.profile-page__order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 20px;
    background: #f8faff;
    border: 1px solid #eef1f6;
    border-radius: 12px;
}

.profile-page__order-code {
    font-size: 1.1rem;
    font-weight: 700;
    color: #070713;
}

/* Totals table */
.profile-page__totals {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.profile-page__totals-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #444;
    padding: 4px 0;
    border-bottom: 1px solid #eef1f6;
}

.profile-page__totals-row:last-child {
    border-bottom: none;
}

.profile-page__totals-row--total {
    font-size: 1rem;
    font-weight: 700;
    color: #070713;
    padding-top: 8px;
    margin-top: 4px;
    border-top: 2px solid #eef1f6;
    border-bottom: none;
}

/* Table */
.profile-page__table-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eef1f6;
}

.profile-page__table thead th {
    background: var(--theme-color, #ff7a00);
    color: #fff;
    font-weight: 600;
    border: none;
    white-space: nowrap;
}

/* Form inputs */
.profile-page__form-group {
    margin-bottom: 0;
}

.profile-page__form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.profile-page__form-input {
    width: 100%;
    height: 46px;
    padding: 8px 14px;
    border: 1px solid #d6dce7;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #333;
    background: #fff;
    transition: border-color .2s;
    outline: none;
}

.profile-page__form-input:focus {
    border-color: var(--theme-color, #ff7a00);
}

textarea.profile-page__form-input {
    height: auto;
}

/* small themed button */
.theme-btn--sm {
    padding: 5px 14px !important;
    font-size: 0.8125rem !important;
}

.theme-btn--danger {
    background: #dc3545 !important;
    color: #fff !important;
}

.theme-btn--danger:hover {
    background: #b02a37 !important;
}

@media (max-width: 767px) {
    .profile-page__sidebar {
        position: static;
    }
}

/* SweetAlert should always be top-most */
.swal2-container {
    z-index: 99999 !important;
}


/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.30);
}

.whatsapp-float-icon {
    filter: brightness(0) invert(1);
}

/* Footer logo – white effect on dark background */
.footer-widget__logo img {
    filter: brightness(0) invert(1);
    max-height: 72px;
    width: auto;
    object-fit: contain;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.footer-widget__logo img:hover {
    opacity: 0.85;
}

/* Header campaign bar */
.header-area.header-layoutone .header-top.bdr-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-area.header-layoutone .header-top .welcome-message p {
    color: var(--white-color);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}