/*
Theme Name: افزونه فا
Author: افشین فراهانی
Author URI: https://artadesign.ir
Description:  قالب اختصاصی افزونه فا طراحی شده توسط تیم آرتا دیزاین
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/


/* Fonts Style */
@font-face {
    font-family: iransansxv;
    src: url('assets/fonts/IRANSansXV.woff2') format('woff2'),
    url('assets/fonts/IRANSansXV.woff') format('woff-variations');
    font-weight: 100 900;
    font-display: fallback;
    -moz-font-feature-settings: "ss02";
    -webkit-font-feature-settings: "ss02";
    font-feature-settings: "ss02";
}


/* CSS Variables Style */
:root {
    --base-font-family: "iransansxv", tahoma !important;
    --base-bg: var(--primary-background);
    --primary-bg: #F0F3F8;
    --primary-background: #F0F7FF;
    --secondary-bg: #E9ECEF;
    --primary-blue: #0871c9;
    --primary-blue-hover: #075fa8;
    --secondary-blue: #eaf5ff;
    --light-blue: #dceefe;
    --accent-orange: #ffb51f;
    --neutral-light: #f6fbff;
    --neutral-dark: #17202c;
    --neutral-grey: #6c7888;
    --primary-text: #334155;
    --card-border: rgba(8, 113, 201, 0.08);
}

/* General Style */

select,
.form-select,
.woocommerce select,
.afz-ticket-form select,
.asp-filter-field select,
.af-checkout-shell select {
    direction: rtl !important;
    text-align: right !important;
    /* No `appearance: menulist` override here. Forcing the native arrow back on
       fought Bootstrap's own `.form-select { appearance: none }` + chevron
       background, so those fields drew two arrows. The native popup is
       suppressed by assets/js/rtl-select.js anyway, so the native arrow has
       nothing left to indicate. */
}

select option,
.form-select option,
.woocommerce select option {
    direction: rtl !important;
    text-align: right !important;
}

* {
    font-family: iransansxv, sans-serif;
}

body {
    background-color: var(--base-bg);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
    font-variation-settings: "DOTS" 8;
}


a {
    text-decoration: none;
}

a:hover {
    color: #000000;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

p {
    margin: 0;
}


a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
[role='button']:focus:not(:focus-visible),
summary:focus:not(:focus-visible) {
    outline: none !important;
}

/* WOOCOMMERCE CHECKOUT */

.af-checkout-page {
    min-height: 70vh;
}

.af-checkout-shell {
    position: relative;
    padding: 1rem 0 3.5rem;
}

.af-checkout-card-header {
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 1.6rem;
    margin-bottom: 2.25rem;
}

.af-checkout-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.75rem;
    border: 1px solid rgba(8, 113, 201, 0.14);
    border-radius: 999px;
    color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.76rem;
    font-weight: 700;
    box-shadow: 0 5px 18px rgba(8, 113, 201, 0.06);
}

.af-checkout-card-header h1.asp-title {
    color: var(--neutral-dark);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 850;
    margin: 0;
}

.af-checkout-card-header p {
    color: #64748b;
    font-size: 0.88rem;
    margin-top: 0.5rem;
    line-height: 1.8;
}

/* Progress Steps */
.af-checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    padding: 0;
    width: 100%;
    list-style: none;
}

.af-checkout-progress li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
    gap: 0.65rem;
    color: #94a3b8;
    font-size: 0.76rem;
    font-weight: 700;
    text-align: center;
}

.af-checkout-progress li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    right: calc(50% + 22px);
    width: calc(100% - 44px);
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.af-checkout-progress li.is-complete:not(:last-child)::after {
    background: var(--accent-orange);
}

.af-checkout-progress li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    z-index: 2;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    color: #94a3b8;
    background: #fff;
    font-size: 0.84rem;
    font-weight: 800;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.af-checkout-progress .is-complete,
.af-checkout-progress .is-active {
    color: var(--neutral-dark);
}

.af-checkout-progress .is-complete > span {
    border-color: var(--accent-orange);
    color: #fff;
    background: var(--accent-orange);
}

.af-checkout-progress .is-active > span {
    border-color: var(--accent-orange);
    color: #fff;
    background: var(--accent-orange);
    box-shadow: 0 0 0 5px rgba(255, 181, 31, 0.15);
}


.af-checkout-layout {
    display: block;
    width: 100%;
}

.af-checkout-panel:not(.is-active) {
    display: none !important;
}

.af-checkout-panel.is-active {
    animation: af-checkout-panel-in 0.38s ease both;
}

@keyframes af-checkout-panel-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Woocommerce Form & Fields Layout */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.af-checkout-shell .form-row {
    float: none;
    width: 100% !important;
    margin: 0;
}


.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3,
.woocommerce-additional-fields {
    display: none !important;
}

#billing_phone_field label .optional {
    display: none !important;
}

/* Inputs styling */
.af-checkout-shell .form-row label {
    display: block;
    margin-bottom: 0.5rem;
    color: #475569;
    font-size: 0.8rem;
    font-weight: 700;
}

.af-checkout-shell .form-row .required {
    color: #ef4444;
    text-decoration: none;
    font-weight: 700;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.af-checkout-shell .input-text,
.af-checkout-shell select,
.af-checkout-shell .select2-container .select2-selection--single {
    width: 100% !important;
    min-height: 50px;
    border: 1px solid #dbe3ee !important;
    border-radius: 12px !important;
    outline: 0;
    color: var(--neutral-dark) !important;
    background: #fff !important;
    font-size: 0.86rem !important;
    padding: 0.75rem 1rem !important;
    font-family: inherit !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.01) !important;
}

.woocommerce-checkout input[type="text"]:hover,
.woocommerce-checkout input[type="email"]:hover,
.woocommerce-checkout input[type="tel"]:hover,
.woocommerce-checkout select:hover,
.woocommerce-checkout textarea:hover,
.af-checkout-shell .input-text:hover,
.af-checkout-shell select:hover {
    border-color: #cbd5e1 !important;
}

.woocommerce-checkout input[type="text"]:focus,
.woocommerce-checkout input[type="email"]:focus,
.woocommerce-checkout input[type="tel"]:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus,
.af-checkout-shell .input-text:focus,
.af-checkout-shell select:focus,
.af-checkout-shell .select2-container--focus .select2-selection--single,
.af-checkout-shell .select2-container--open .select2-selection--single {
    border-color: var(--primary-blue) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(8, 113, 201, 0.12) !important;
}

/* Invalid inputs */
.woocommerce-checkout .woocommerce-invalid input[type="text"],
.woocommerce-checkout .woocommerce-invalid input[type="email"],
.woocommerce-checkout .woocommerce-invalid input[type="tel"],
.woocommerce-checkout .woocommerce-invalid select,
.woocommerce-checkout .woocommerce-invalid textarea,
.af-checkout-shell .form-row.woocommerce-invalid .input-text,
.af-checkout-shell .form-row.woocommerce-invalid select {
    border-color: #ef4444 !important;
    background: #fff7f7 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08) !important;
}

/* Readonly Phone Field & SMS Verification text */
.af-checkout-shell .af-checkout-readonly-field {
    position: relative;
}

.af-checkout-shell .af-checkout-readonly-field input,
.woocommerce-checkout input[readonly] {
    background-color: #f8fafc !important;
    color: #475569 !important;
    border: 1px solid #cbd5e1 !important;
    cursor: not-allowed !important;
    pointer-events: none;
    box-shadow: none !important;
    font-weight: 700;
    letter-spacing: 1px;
    direction: ltr !important;
    text-align: left;

}

.af-checkout-shell #billing_phone_field::after,
.af-checkout-shell .form-row:has(input[readonly])::after {
    content: '🔒 تایید شده با پیامک (غیرقابل ویرایش)';
    font-family: iransansxv, tahoma, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
    font-size: 0.72rem;
    color: #0871c9;
    background: #eaf5ff;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    border: 1px solid rgba(8, 113, 201, 0.06);
    font-weight: 700;
}

.af-checkout-step-heading h2 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Step Actions & Buttons */
.af-checkout-step-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #edf2f7;
}

.af-checkout-shell .af-checkout-next,
.af-checkout-shell .woocommerce-checkout #place_order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-width: 200px;
    min-height: 52px;
    margin: 0;
    padding: 0.8rem 1.5rem;
    border: 0;
    border-radius: 30px !important;
    background: var(--accent-orange, #ffb51f) !important;
    color: #0f172a !important;
    font-size: 0.88rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(255, 181, 31, 0.35) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
}

.af-checkout-shell .af-checkout-next:hover,
.af-checkout-shell .woocommerce-checkout #place_order:hover,
.af-checkout-shell .af-checkout-next:focus-visible,
.af-checkout-shell .woocommerce-checkout #place_order:focus-visible {
    background: var(--accent-orange) !important;
    color: #0f172a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255, 181, 31, 0.5) !important;
    outline: none;
}

.af-checkout-shell .af-checkout-next.is-loading i {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    font-size: 0;
    animation: af-checkout-spin 0.75s linear infinite;
}

.af-checkout-next span {
    font-weight: 500 !important;
}

@keyframes af-checkout-spin {
    to {
        transform: rotate(360deg);
    }
}

.af-checkout-step-status {
    min-height: 1.6em;
    margin: 0;
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.8;
}

.af-checkout-step-status.is-error {
    color: #dc2626;
}

/* Order review tables and payment methods */
.af-checkout-shell .shop_table {
    width: 100%;
    margin: 0;
    border: 0;
    border-collapse: collapse;
}

.af-checkout-shell .shop_table thead {
    display: none;
}

.af-checkout-shell .shop_table th,
.af-checkout-shell .shop_table td {
    padding: 0.85rem 0;
    border: 0;
    border-bottom: 1px solid #edf2f7;
    background: transparent;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.8;
}

.af-checkout-shell .shop_table td:last-child {
    text-align: left;
    white-space: nowrap;
}

.af-checkout-shell .cart_item .product-name {
    padding: 1rem 0;
}

.af-checkout-product {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.af-checkout-product-image {
    width: 58px !important;
    height: 58px !important;
    flex: 0 0 58px;
    border: 1px solid #e5edf5;
    border-radius: 12px;
    object-fit: cover;
    background: #f8fafc;
}

.af-checkout-product__name {
    color: var(--neutral-dark);
    font-size: 0.86rem;
    font-weight: 750;
    line-height: 1.75;
}

.af-checkout-shell .product-quantity {
    display: inline-flex;
    margin-top: 0.35rem;
    padding: 0.05rem 0.45rem;
    border-radius: 7px;
    color: #64748b;
    background: #f1f5f9;
    font-size: 0.68rem;
}

.af-checkout-shell .order-total th,
.af-checkout-shell .order-total td {
    padding-top: 1.05rem;
    border-bottom: 0;
    color: var(--neutral-dark);
    font-size: 0.95rem;
    font-weight: 800;
}

.af-checkout-shell .order-total .amount {
    color: var(--primary-blue);
    font-size: 1.02rem;
}

.af-checkout-shell #payment {
    margin-top: 0.9rem;
    background: transparent;
}

.af-checkout-shell #payment ul.payment_methods {
    margin: 0;
    padding: 0;
    border: 0;
}

.af-checkout-shell #payment ul.payment_methods li {
    margin-bottom: 0.65rem;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.af-checkout-shell #payment ul.payment_methods li label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--neutral-dark);
    font-size: 0.84rem;
    font-weight: 750;
    cursor: pointer;
}

.af-checkout-shell #payment div.payment_box {
    margin: 0.65rem 0 0;
    padding: 0.75rem;
    border-radius: 10px;
    color: #64748b;
    background: #fff;
    font-size: 0.75rem;
    line-height: 1.8;
}

.af-checkout-shell #payment div.payment_box::before {
    display: none;
}

.af-checkout-shell #payment .place-order {
    padding: 0.9rem 0 0;
}

.af-checkout-messages-wrapper .woocommerce-form-coupon-toggle,
.af-checkout-messages-wrapper .checkout_coupon {
    display: none !important;
}

/* Custom Coupon Blocks */
.af-custom-coupon-wrapper {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.af-custom-coupon-wrapper .input-group {
    display: flex;
    width: 100%;
}

.af-custom-coupon-wrapper #custom_coupon_code {
    flex: 1;
    min-height: 48px;
    border: 1px solid #cbd5e1;
    border-radius: 0 12px 12px 0;
    padding: 0.5rem 1rem;
    outline: 0;
    transition: all 0.2s ease;
    background: #fff;
    font-size: 0.86rem;
}

.af-custom-coupon-wrapper #custom_coupon_code:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(8, 113, 201, 0.08);
}

.af-custom-coupon-wrapper #apply_custom_coupon {
    min-height: 48px;
    background: var(--primary-blue);
    color: #fff;
    border: 0;
    border-radius: 12px 0 0 12px;
    padding: 0 1.5rem;
    font-size: 0.86rem;
    font-weight: 750;
    transition: all 0.2s ease;
    cursor: pointer;
}

.af-custom-coupon-wrapper #apply_custom_coupon:hover {
    background: var(--primary-blue-hover);
}

/* Message styling on coupon block */
#custom_coupon_message {
    font-weight: 700;
    display: block;
}

.text-success {
    color: #10b981 !important;
}

.text-danger {
    color: #ef4444 !important;
}

/* Global notices within checkout shell */
.af-checkout-shell .woocommerce-info,
.af-checkout-shell .woocommerce-message,
.af-checkout-shell .woocommerce-error {
    margin: 0 0 1rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(8, 113, 201, 0.12);
    border-top: 0;
    border-right: 4px solid var(--primary-blue);
    border-radius: 12px;
    color: #475569;
    background: #fff;
    font-size: 0.8rem;
    line-height: 1.9;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.af-checkout-shell .woocommerce-error {
    border-right-color: #ef4444;
}

.af-checkout-shell .woocommerce-info a,
.af-checkout-shell .woocommerce-message a {
    color: var(--primary-blue);
    font-weight: 750;
}

.af-checkout-login-required {
    padding: 1.25rem;
    color: #475569;
    text-align: center;
}

.af-checkout-page .woocommerce-order,
.af-checkout-page .woocommerce-order-pay {
    width: min(920px, calc(100% - 2rem));
    margin: 3rem auto 5rem;
    padding: clamp(1.25rem, 4vw, 2.25rem);
    border: 1px solid rgba(8, 113, 201, 0.09);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.07);
}


/* Hero Section Style */

.header-section {
    padding-top: 200px;
    overflow: visible;
    padding-bottom: 135px;

}

.hero-title-wrapper {
    position: relative;
}

.hero-title {
    font-size: clamp(1.9rem, 3vw, 3.1rem);
    line-height: 1.55;
    font-variation-settings: "wght" 800, "DOTS" 4;
    color: var(--primary-text);

}

.highlight-blue {
    color: var(--primary-blue);
}

.hero-description {
    font-size: 1rem;
    text-align: justify;
    line-height: 1.9;
    color: var(--primary-text);
}

.badge-wordpress {
    background-color: var(--accent-orange);
    color: var(--neutral-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(253, 158, 11, 0.25);
    animation: floatAnim 3s ease-in-out infinite;
    position: absolute;
    left: 15%;
    top: -30px;
}

.badge-bubble-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--accent-orange);
    position: absolute;
    bottom: -8px;
    right: 20px;
}

@keyframes floatAnim {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}


.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    isolation: isolate;
    min-height: 470px;
    overflow: visible;
}

.hero-blob {
    position: relative;
    z-index: 1;
    width: 430px;
    height: 430px;
    border-radius: 60% 50% 30% 45% / 45% 35% 56% 70%;
    background: linear-gradient(135deg, #006fd6 0%, #0b8ff0 45%, #19b5ff 100%);
    box-shadow: 0 25px 60px rgba(0, 111, 214, 0.40);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-blob::before {
    content: "";
    position: absolute;
    inset: 35px;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.25), transparent 35%);
    opacity: 0.8;
}

.hero-blob::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -25px;
    bottom: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}


.hero-dev-img {
    position: relative;
    z-index: 2;
    width: 115%;
    max-width: 550px;
    transform: translate(0, 50px);
    filter: drop-shadow(0 25px 35px rgba(0, 40, 90, 0.25));
}

.floating-badge-wp {
    top: 30px;
    left: -20px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 3px 10px 3px 15px;

}

.floating-badge-ai {
    bottom: 60px;
    right: 30px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 3px 10px 3px 15px;
}

.wp-mini-icon {
    display: flex;
    font-size: 1.8rem;
    color: var(--accent-orange);
}

.mini-icon-subtitle {
    font-size: 0.95rem;
}


.btn-cta-primary {
    padding: 14px 38px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    background: var(--primary-blue);
    border: none;
    box-shadow: 0 8px 25px rgba(11, 99, 230, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background-color: #0a52b8;
    transform: translateY(-2px);
    color: var(--accent-orange);
}

.btn-consult {
    padding: 14px 38px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    background: var(--accent-orange);
    border: none;
    box-shadow: 0 8px 25px rgba(11, 99, 230, 0.3);
    transition: all 0.3s ease;
    color: #fff;
}


.btn-consult:hover {
    background-color: var(--primary-blue);
    color: #ffffff !important;
}

.btn-header-auth {
    padding: 10px 15px !important;
    font-size: 0.92rem !important;
    border-radius: 12px !important;
    white-space: nowrap;
    background: var(--accent-orange);
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.btn-header-auth:hover,
.btn-header-auth:focus,
#slr-open-modal:hover,
#user-panel-menu-toggle:hover {
    background-color: var(--secondary-blue) !important;
    color: var(--primary-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(8, 113, 201, 0.12) !important;
}

.btn-header-auth:hover i,
.btn-header-auth:focus i,
#slr-open-modal:hover i,
#user-panel-menu-toggle:hover i {
    color: var(--primary-blue) !important;
}

/* SLR Login/Register Modal Position (Top Section) */
.slr-modal {
    align-items: flex-start !important;
    padding-top: 36px !important;
    padding-bottom: 20px !important;
}

@media (max-width: 575.98px) {
    .slr-modal {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}


/* Hero Animation Style */
.visual {
    position: absolute;
    left: 0;
    top: -3%;
    width: 470px;
    height: 470px;
    z-index: 0;
    pointer-events: none;
    transform: translateZ(0);
    overflow: visible;
}

.orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.orbit::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(8, 107, 200, .18);
    border-radius: 50%;
}

.orbit-outer {
    animation: none;
}

.orbit-outer::before {
    animation: none;
}

.orbit-inner {
    inset: 72px;
}

.orbit-inner::before {
    border-style: solid;
    border-color: rgba(8, 107, 200, .08);
    animation: none;
}

.orbit-outer i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 5px 14px rgba(16, 36, 59, .15);
    transform-origin: 0 0;
    animation: orbitDot 34s linear infinite;
    will-change: transform;
}

.orbit-outer i:first-child {
    --orbit-angle: -55deg;
    --orbit-radius: 235px;
    background: var(--accent-orange);
}

.orbit-outer i:last-child {
    --orbit-angle: 150deg;
    --orbit-radius: 235px;
    animation-delay: -17s;
    background: var(--accent-orange);
}


.brand-mark-large {
    width: 61px;
    height: 61px;
    grid-template-columns: repeat(2, 14px);
    gap: 5px;
    border-radius: 19px 19px 19px 7px;
}

.brand-mark-large i {
    width: 14px;
    height: 14px;
    border-radius: 4px;
}

.visual-center strong {
    margin-top: 13px;
    font-size: 1.05rem;
    font-weight: 900;
}

.visual-center small {
    color: #9aa9b7;
    font-size: .48rem;
}

.spark {
    position: absolute;
    color: var(--accent-orange);
    font-size: 1.5rem;
    font-weight: 900;
    animation: spark 2.5s ease-in-out infinite;
}

.spark-one {
    top: 10px;
    left: 30px;
}

.spark-two {
    left: 0;
    bottom: 90px;
    color: var(--accent-orange);
    animation-delay: -1.2s;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    animation: reveal .7s ease forwards;
}

.delay-one {
    animation-delay: .08s;
}

.delay-two {
    animation-delay: .16s;
}

.delay-three {
    animation-delay: .25s;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitDot {
    from {
        transform: rotate(var(--orbit-angle)) translateX(var(--orbit-radius)) translate(-50%, -50%);
    }
    to {
        transform: rotate(calc(var(--orbit-angle) + 360deg)) translateX(var(--orbit-radius)) translate(-50%, -50%);
    }
}

@keyframes spark {
    50% {
        opacity: .25;
        transform: scale(.7) rotate(20deg);
    }
}

@keyframes statusPulse {
    to {
        opacity: 0;
        transform: scale(1.8);
    }
}


/* Header Section Style */

.nav-section {
    background-color: #ffffff;
    min-height: 75px;
    border-radius: 20px;
    box-shadow: 0 15px 32px 0 rgba(40, 66, 88, 0.08);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    position: fixed;
    top: 4%;
    right: 0;
    left: 0;
    z-index: 999;
    padding: 10px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header scrolled state */
.nav-section.scrolled {
    width: 100% !important;
    max-width: 100% !important;
    top: 0 !important;
    border-radius: 0 !important;
    padding: 12px 24px !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 20px rgba(40, 66, 88, 0.1) !important;
}


.nav-section > .row {
    height: 100%;
    align-items: center;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}


.logo {
    width: 55px;
    height: auto;
    background: var(--primary-blue);
    padding: 5px 8px;
    border-radius: 15px;
}

.site-main-title {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--primary-text);
    font-variation-settings: "wght" 800, "DOTS" 8;
    transform: translateY(3px);
}

.main-nav {
    display: flex;
    justify-content: center;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.main-menu-item {
    position: relative;
}

.main-menu-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 14px;
    color: var(--primary-text);
    font-size: 1.05rem;
    font-variation-settings: "wght" 700, "DOTS" 8;
    transition: color .2s ease, background-color .2s ease;
}

.main-menu-link:hover,
.main-menu-item:hover > .main-menu-link {
    color: var(--primary-blue);
    background-color: var(--secondary-blue);
}

.service-cube-icon {
    width: 22px;
    height: 22px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    padding: 3px;
    border: 1px solid rgb(201 151 8 / 28%);
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 5px 12px rgba(8, 113, 201, .12);
}

.service-cube-icon span {
    border-radius: 3px;
    background: var(--accent-orange);
}

.submenu-arrow {
    width: 7px;
    height: 7px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg) translateY(-1px);
    transition: transform .2s ease;
}

.has-submenu:hover .submenu-arrow,
.has-submenu:focus-within .submenu-arrow,
.has-submenu.is-open .submenu-arrow {
    transform: rotate(135deg) translateY(1px);
}

.submenu {
    min-width: 230px;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    padding: 10px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(40, 66, 88, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.submenu::before {
    content: "";
    position: absolute;
    right: 22px;
    top: -14px;
    width: 100%;
    height: 14px;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.is-open .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--primary-text);
    font-size: .88rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color .2s ease, background-color .2s ease;
}

.submenu a:hover {
    color: var(--primary-blue);
    background-color: var(--secondary-blue);
}

.header-user-panel {
    position: relative;
    display: inline-flex;
}

.header-user-panel .btn-header-auth {
    min-height: 44px;
}

.header-user-panel button.btn-header-auth {
    font-family: inherit;
}

.user-panel-submenu {
    right: auto;
    left: 0;
    min-width: 245px;
    z-index: 1000;
}

.user-panel-submenu a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-panel-submenu a i {
    display: inline-flex;
    width: 20px;
    justify-content: center;
    color: #94a3b8;
    transition: color .2s ease;
}

.user-panel-submenu a:hover i {
    color: var(--primary-blue);
}

.user-panel-submenu .user-panel-logout {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid #edf1f5;
}

.user-panel-submenu .user-panel-logout a,
.user-panel-submenu .user-panel-logout a i {
    color: #dc2626;
}


/* Main Section Style */

.main-section {
    padding: 70px 0 70px 0;
    background: var(--primary-bg);
}

.brand-logo-slider {
    position: relative;
    padding: 0 70px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 15px 32px rgba(40, 66, 88, .06);
    margin-top: -110px;
}

.brand-logo-slider .owl-stage {
    display: flex;
    align-items: center;
}

.brand-logo-slider .owl-stage-outer {
    min-height: 82px;
    display: flex;
    align-items: center;
}

.brand-logo-slider .owl-item {
    min-height: 82px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.brand-logo-item {
    width: 100%;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-item img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 45px;
    margin: auto;
    object-fit: contain;
}

.brand-logo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    color: var(--neutral-dark);
    font-size: 2rem;
    line-height: 1;
    font-variation-settings: "wght" 700, "DOTS" 4;
    white-space: nowrap;
    transform: translateY(2px);
}

.logo-alibaba {
    color: #111;
    font-family: Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
}

.logo-alibaba::first-letter {
    color: #ffb51f;
}

.logo-bazaar {
    color: #171717;
}

.logo-digikala {
    color: #ef394e;
}

.logo-filimo {
    color: #191919;
}

.logo-tapsi {
    color: #111;
}

.logo-tapsi::first-letter {
    color: #f26a21;
}

.logo-sample {
    color: var(--primary-blue);
}

.brand-logo-slider .owl-nav {
    margin: 0;
}

.brand-logo-slider .owl-nav button.owl-prev,
.brand-logo-slider .owl-nav button.owl-next {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d4dae1 !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #c3cad3 !important;
    box-shadow: 0 3px 7px rgba(23, 32, 44, .08);
    transform: translateY(-50%);
    transition: color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.brand-logo-slider .owl-nav button.owl-prev {
    right: 26px;
}

.brand-logo-slider .owl-nav button.owl-next {
    left: 26px;
}

.brand-logo-slider .owl-nav button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    font-size: 1.35rem;
    line-height: 1;
    transform: translateY(-1px);
}

.brand-logo-slider .owl-nav button:hover {
    border-color: var(--primary-blue) !important;
    color: var(--primary-blue) !important;
    box-shadow: 0 5px 14px rgba(8, 113, 201, .18);
}


.main-section {
    background-color: var(--secondary-bg);
}

.brand-name {
    font-size: 17px;
    margin-bottom: 0;
}


/* Product Section Style */

.product-section {
    background-color: var(--secondary-bg);
    padding: 3rem 2rem 0 2rem !important;
}

.latest-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 10rem;
}


.latest-product-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    background: #ffffff;

    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.latest-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 113, 201, 0.15);
    box-shadow: 0 16px 36px rgba(8, 113, 201, 0.08);
}

/* Image Zone */
.lpc-image-zone {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f8fafc;
}

.latest-product-image {
    display: block;
    width: 100%;
    height: 100%;
}

.latest-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.latest-product-card:hover .latest-product-image img {
    transform: scale(1.06);
}

/* Discount Ribbon */
.lpc-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
    z-index: 4;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 2px;
    line-height: 1.2;

}

/* Category Chip */
.lpc-cat-chip {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #1e293b;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 4;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease, color 0.2s ease;
}

.lpc-cat-chip:hover {
    background: var(--primary-blue, #0871c9);
    color: #ffffff;
}

/* Card Body */
.lpc-body {
    padding: 16px 6px 6px 6px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lpc-title {
    margin: 0 0 16px;
    font-size: 1.0rem;
    font-weight: 600;
    line-height: 1.6;
    text-align: right;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lpc-title a {
    color: var(--primary-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lpc-title a:hover {
    color: var(--neutral-dark);
}

/* Footer Section */
.lpc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
}

.lpc-cta-btn {
    padding: 8px 10px;
    border-radius: 10px;
    background: var(--accent-orange, #ffb51f);
    color: #0f172a;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 181, 31, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lpc-cta-btn:hover {
    color: #0f172a;
    box-shadow: 0 6px 18px rgba(255, 181, 31, 0.4);
    transform: translateY(-2px);
}

.lpc-cta-btn svg {
    transition: transform 0.3s ease;
}

.lpc-cta-btn:hover svg {
    transform: translateX(-3px);
}

.lpc-price-block {
    direction: ltr;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.lpc-regular-price {
    font-size: 0.8rem;
    color: #94a3b8;
    text-decoration: line-through;
    display: block;
    line-height: 1;
}

.lpc-active-price {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lpc-vertical-cur {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.65rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.5px;
    line-height: 1;
    user-select: none;
}

.lpc-price-num {
    font-size: 1.20rem;
    font-weight: 700;
    color: var(--primary-text);
    letter-spacing: -0.5px;
    line-height: 1;
}

.lpc-free-text {
    color: #16a34a;
    font-size: 1.10rem;
    font-weight: 700;
}

/* Carousel / Grid Layout Support */
.latest-products-grid.owl-carousel {
    display: block;
}

.latest-products-grid .owl-stage {
    display: flex;
}

.latest-products-grid .owl-item {
    display: flex;
}

.latest-products-grid .owl-item .latest-product-card {
    width: 100%;
}

.latest-products-grid.owl-theme .owl-dots {
    margin-top: 24px;
}

.latest-products-grid.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px;
    background: #c9d7e8;
    transition: width .25s ease, background-color .25s ease;
}

.latest-products-grid.owl-theme .owl-dots .owl-dot.active span {
    width: 24px;
    background: var(--primary-blue);
}


/* Shared Section Heading Style */

.background-shadow-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    color: rgba(11, 99, 230, 0.07);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    z-index: 5;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background-color: var(--accent-orange);
}


.section-wrapper {
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.section-wrapper h2 {
    font-weight: 700;
    font-style: normal;
    line-height: 1.5;
    font-size: 1.6rem;
}

/* Tutorial Section Style */

.tutorials-section {
    position: relative;
    overflow: hidden;
    padding-top: 200px;
}

/* Info Card */
.tutorial-info-card {
    background-color: #E9ECEF;
    border-radius: 24px;
    padding: 1.2rem 1.8rem;
    box-shadow: 0 12px 35px rgba(8, 113, 201, 0.03);
    transition: all 0.3s ease;
}

.tutorial-info-card:hover {
    box-shadow: 0 18px 45px rgba(8, 113, 201, 0.08);
}

.info-card-icon-wrap {
    display: inline-block;
    transition: transform 0.5s ease;
}


.info-card-title {
    font-size: 1.20rem;
    font-variation-settings: "wght" 700, "Dots" 8;
    color: var(--primary-text);
}

.info-card-divider {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background-color: var(--accent-orange);
    margin: 12px auto;
}

.info-card-desc {
    color: var(--primary-text);
    font-size: 0.90rem;
    line-height: 1.80;
    text-align: justify;
    font-variation-settings: "wght" 400;
}

.btn-tutorials-outline {
    display: inline-block;
    color: var(--primary-text);
    border: 1px solid var(--primary-text);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-variation-settings: "wght" 600, "Dots" 4;
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: transparent;
}

.btn-tutorials-outline:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(8, 113, 201, 0.2);
}

/* Course Cards */
.tutorial-course-card {
    background-color: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(8, 113, 201, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.tutorial-course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(8, 113, 201, 0.08);
}

.course-card-img-wrap {
    height: 180px;
    overflow: hidden;
    position: relative;
    background-color: #eaeaea;
}

.course-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tutorial-course-card:hover .course-card-img {
    transform: scale(1.06);
}

.badge-discount {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff5b4e;
    color: #fff;
    padding: 5px 14px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-variation-settings: "wght" 800;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(255, 91, 78, 0.3);
}

.course-card-content {
    background-color: #fff;
    border-radius: 24px 24px 0 0;
    margin-top: -24px;
    padding: 1.8rem 1.2rem 1.5rem 1.2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.015);
}

.course-card-title {
    font-size: 1rem;
    font-variation-settings: "wght" 800;
    color: var(--neutral-dark);
    line-height: 1.6;
    height: 3.2rem; /* Keep heights consistent for alignment */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-card-subtitle {
    font-size: 0.82rem;
    color: var(--neutral-grey);
    line-height: 1.6;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-card-price-wrap {
    background-color: #F0F3F8;
    border-radius: 16px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--neutral-grey);
    font-size: 0.85rem;
    opacity: 0.7;
}

.price-current {
    color: var(--primary-blue);
    font-variation-settings: "wght" 900;
    font-size: 0.95rem;
}

/* Coming Soon Overlay and Blur Styling */
.tutorials-list-wrapper {
    height: 100%;
}

.tutorials-cards-blur {
    filter: blur(8px);
    opacity: 0.55;
    pointer-events: none;
    user-select: none;
}

.tutorials-cards-blur.tutorials-cards-live {
    filter: none;
    opacity: 1;
    pointer-events: auto;
    user-select: auto;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    padding: 1rem;
}

.coming-soon-badge {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(8, 113, 201, 0.15);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(8, 113, 201, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 420px;
    width: 100%;
    animation: fadeInUpOverlay 0.8s ease forwards;
}

.coming-soon-icon {
    color: var(--accent-orange);
    animation: pulseIcon 2.5s ease-in-out infinite;
    display: inline-block;
}

.coming-soon-icon i {
    font-size: 2.5rem;
    color: var(--accent-orange);
}

.coming-soon-title {
    font-size: 1.4rem;
    font-variation-settings: "wght" 600;
    color: var(--neutral-dark);
    margin-bottom: 20px;
}

.coming-soon-desc {
    font-size: 0.92rem;
    color: var(--primary-text);
    line-height: 1.8;
}

/* Animations */
@keyframes fadeInUpOverlay {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.85;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Service Section Style */

.services-section-wrapper {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    z-index: 1;
}

.services-section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 17, 30, 0.86);
    z-index: 2;
}

.services-section-wrapper .section-title {
    color: #ffffff;
}

.services-section-wrapper .background-shadow-text {
    color: rgba(255, 255, 255, 0.08);
}

.services-carousel-container {
    height: 480px;
    max-width: 850px;
    margin: 4.5rem auto 0 auto;
    width: 100%;
    position: relative;
}

.services-stack {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Service Card Core */
.service-card {
    position: absolute;
    width: 100%;
    max-width: 720px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 28px;
    padding: 2.2rem 2.5rem;
    border: 1px solid rgba(8, 113, 201, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: none;
    user-select: none;
    direction: rtl;
}

/* 3D Stack States */
.service-card.active {
    opacity: 1;
    z-index: 5;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
    user-select: auto;
    box-shadow: 0 20px 45px rgba(8, 113, 201, 0.12);
    border-color: rgba(8, 113, 201, 0.18);
}

.service-card.prev {
    opacity: 0.55;
    z-index: 3;
    transform: translate(-50%, calc(-50% - 125px)) scale(0.88);
    pointer-events: auto;
    cursor: pointer;
    filter: blur(3px);
}

.service-card.next {
    opacity: 0.55;
    z-index: 3;
    transform: translate(-50%, calc(-50% + 125px)) scale(0.88);
    pointer-events: auto;
    cursor: pointer;
    filter: blur(3px);
}

.service-card.hidden-top {
    opacity: 0;
    z-index: 1;
    transform: translate(-50%, calc(-50% - 220px)) scale(0.75);
}

.service-card.hidden-bottom {
    opacity: 0;
    z-index: 1;
    transform: translate(-50%, calc(-50% + 220px)) scale(0.75);
}

/* Card Content Structure */
.service-card-info {
    flex: 1;
    text-align: right;
    padding-left: 2rem;
}

.service-card-title {
    font-size: 1.25rem;
    font-variation-settings: "wght" 800;
    color: var(--neutral-dark);
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.92rem;
    color: var(--primary-text);
    line-height: 1.85;
    margin-bottom: 20px;
    text-align: justify;
}

.btn-service-cta {
    display: inline-block;
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-variation-settings: "wght" 700;
    box-shadow: 0 4px 12px rgba(8, 113, 201, 0.22);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-service-cta:hover {
    background-color: var(--primary-blue-hover);
    color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(8, 113, 201, 0.3);
}

.service-card-image {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6fbff;
    border-radius: 24px;
    padding: 12px;
    border: 1px solid rgba(8, 113, 201, 0.05);
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-image img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 16px;
    object-fit: contain;
}

/* Round Arrow Controls on Right */
.services-carousel-controls {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.control-btn:hover {
    background: var(--accent-orange);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 181, 31, 0.3);
}

.control-btn:active {
    transform: scale(0.95);
}

.control-btn i {
    font-size: 1rem;
}


.asp-bought-box.text-center {
    font-size: 0.85rem;
}


/* About Us Section Style */
.about-us-container {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.about-us-layout {
    direction: ltr;
    align-items: stretch;
}

.about-us-layout.row {
    display: flex;
}

.about-us-content,
.about-us-visual {
    height: 500px;
    min-height: 0;
}

.about-us-content {
    direction: rtl;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 45px rgba(8, 113, 201, 0.07);
    overflow: hidden;
}

.about-us-eyebrow {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: .9rem;
    padding: 7px 16px;
    border-radius: 30px;
    color: var(--primary-blue);
    background: var(--secondary-blue);
    font-size: .8rem;
    font-variation-settings: "wght" 500, "DOTS" 8;
}

.about-us-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-text);
    font-size: clamp(1.25rem, 1.3vw, 1.9rem);
    font-variation-settings: "wght" 700, "DOTS" 8;
}

.about-us-content ul li {
    list-style: disc;
    line-height: 30px;
}

.about-us-content ul li:last-of-type {
    margin-bottom: 30px;
}

.about-us-description {
    flex: 1;
    min-height: 0;
    padding-left: 1rem;
    overflow-y: auto;
    scrollbar-color: var(--accent-orange) var(--secondary-blue);
    scrollbar-width: thin;
}

.about-us-description::-webkit-scrollbar {
    width: 7px;
}

.about-us-description::-webkit-scrollbar-track {
    border-radius: 20px;
    background: var(--secondary-blue);
}

.about-us-description::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: var(--primary-blue);
}

.about-us-description p {
    margin-bottom: 1rem;
    color: var(--primary-text);
    font-size: 1rem;
    line-height: 2.05;
    text-align: justify;
}

.about-us-description p:last-child {
    margin-bottom: 0;
}

.about-us-description h1,
.about-us-description h2,
.about-us-description h3,
.about-us-description h4,
.about-us-description h5,
.about-us-description h6 {
    color: #1e293b;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.85rem;
    line-height: 1.45;
}

.about-us-description h1 {
    font-size: 1.45rem;
}

.about-us-description h2 {
    font-size: 1.3rem;
}

.about-us-description h3 {
    font-size: 1.18rem;
}

.about-us-description h4 {
    font-size: 1.08rem;
}

.about-us-description h5 {
    font-size: 1rem;
}

.about-us-description h6 {
    font-size: 0.95rem;
}

.about-us-description ul,
.about-us-description ol {
    margin-bottom: 1.2rem;
    padding-right: 2.5rem;
}

.about-us-description ul li,
.about-us-description ol li {
    margin-bottom: 0.4rem;
    line-height: 1.9;
    color: var(--primary-text);
}

.about-us-visual {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff 0%, var(--secondary-blue) 100%);
    box-shadow: 0 18px 45px rgba(8, 113, 201, 0.09);
}

.about-us-visual::after {
    content: "";
    position: absolute;
    inset: auto 24px 22px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    opacity: .9;
}

.about-us-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Footer Section Style */
.site-footer {
    position: relative;
    width: 100%;
    margin-top: 110px;
    padding: 0;
    overflow: visible;
}

/* Decorative Background Dot Grids */

.site-footer::after {
    content: "";
    position: absolute;
    width: 198px;
    height: 180px;
    border-radius: 50%;
    background-image: radial-gradient(rgba(108, 120, 136, 0.35) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    z-index: 0;
    pointer-events: none;
}

.site-footer::before {
    bottom: 80px;
    right: 40px;
}

.site-footer::after {
    top: 10px;
    left: 10px;
}

.site-footer__inner {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 100%;
    padding: 0 0 34px;
    overflow: visible !important;
    border-top: 1px solid rgba(8, 113, 201, 0.06);
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -10px 40px rgba(8, 113, 201, 0.04);
}

.site-footer__container {
    position: relative;
    padding: 40px 24px 0;
}

/* Social Icons */
.site-footer__social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    color: var(--primary-blue);
    background: #ffffff;
    border-radius: 18px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05), 0 4px 10px rgba(0, 0, 0, 0.03);
    font-size: 1.65rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer__social a:hover {
    color: #ffffff;
    background: var(--primary-blue);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 18px rgba(8, 113, 201, 0.25);
}

.site-footer__social a .bale-social-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.25s ease;
}

.site-footer__social a .bale-icon-hover {
    display: none;
}

.site-footer__social a:hover .bale-icon-default {
    display: none;
}

.site-footer__social a:hover .bale-icon-hover {
    display: inline-block;
    transform: scale(1.1);
}

/* Top Row: Menus & Badges */
.site-footer__top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    --bs-gutter-x: 60px;
    --bs-gutter-y: 40px;
    margin-bottom: 35px;
}

.site-footer__menus {
    flex: 1;
}

.site-footer__menus > .row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 28px;
}

.site-footer__column h3 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--primary-blue);
    font-size: 1.05rem;
    font-variation-settings: "wght" 700, "DOTS" 4;
}

.site-footer__column h3::before {
    content: "";
    width: 4px;
    height: 18px;
    background: var(--accent-orange);
    border-radius: 4px;
}

.site-footer__column li + li {
    margin-top: 14px;
}

.site-footer__column a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-text);
    font-size: 0.94rem;
    transition: all 0.25s ease;
}

.site-footer__column a::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 181, 31, 0.15);
    transition: all 0.25s ease;
}

.site-footer__column a:hover {
    color: var(--primary-blue);
    transform: translateX(-6px);
}

.site-footer__column a:hover::before {
    background: var(--primary-blue);
    box-shadow: 0 0 0 5px rgba(8, 113, 201, 0.15);
}

/* Social Card */
.site-footer__badges {
    flex-shrink: 0;
    position: relative;
    z-index: 20 !important;
    overflow: visible !important;
}

.site-footer__badge-card {
    display: flex;
    flex-direction: column;
    padding: 18px 15px;
    background: linear-gradient(185deg, var(--accent-orange) 0%, #ffa300 100%);
    border-radius: 28px;
    box-shadow: 0 15px 30px rgba(255, 181, 31, 0.25);
    align-items: center;
    position: relative;
    z-index: 20 !important;
    overflow: visible !important;
}

/* Middle Row */
.site-footer__middle-row {
    margin-bottom: 40px;
}

.site-footer__middle-row.row {
    display: flex;
}

.site-footer__brand-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(8, 113, 201, 0.06);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(8, 113, 201, 0.03);
}

.site-footer__brand-details {
    flex-shrink: 0;
}

.site-footer__brand-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-footer__brand-logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    padding: 8px;
    background: var(--primary-blue);
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(8, 113, 201, 0.08);
}

.site-footer__brand-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-footer__brand-name {
    font-size: 1.25rem;
    font-weight: 850;
    color: var(--neutral-dark);
}

.site-footer__brand-slogan {
    font-size: 0.8rem;
    color: var(--neutral-grey);
    font-weight: 500;
}

.site-footer__brand-description {
    flex: 1;
    border-right: 1px solid rgba(108, 120, 136, 0.15);
    padding-right: 28px;
}

.site-footer__brand-description p {
    color: var(--neutral-grey);
    font-size: 0.94rem;
    line-height: 1.85;
    text-align: justify;
}

.site-footer__contact-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(8, 113, 201, 0.06);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(8, 113, 201, 0.03);
}

.site-footer__contact-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.site-footer__contact-label {
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 0.94rem;
    min-width: 45px;
}

.site-footer__contact-values {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--primary-text);
    font-size: 0.94rem;
}

.site-footer__contact-values a {
    color: var(--primary-text);
    font-weight: 600;
    transition: color 0.2s ease;
}

.site-footer__contact-values a:hover {
    color: var(--primary-blue);
}

.site-footer__contact-sep {
    color: rgba(108, 120, 136, 0.3);
    font-size: 0.85rem;
}

/* Divider & Back to Top Button */
.site-footer__divider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 20px;
}

.site-footer__divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(108, 120, 136, 0.12);
    z-index: 0;
}

.site-footer__back-top {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ffa300 100%);
    color: #ffffff;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(255, 181, 31, 0.25);
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.site-footer__back-top i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #ffffff;
    color: var(--accent-orange);
    border-radius: 50%;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.site-footer__back-top:hover {
    background: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(8, 113, 201, 0.3);
    transform: translateY(-3px);
}

.site-footer__back-top:hover i {
    color: var(--primary-blue);
    transform: rotate(-360deg);
}

/* Bottom Copyright & Links */
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--neutral-grey);
    font-size: 0.88rem;
}

.site-footer__copyright {
    margin: 0;
}

.site-footer__bottom-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-footer__credit {
    color: var(--neutral-grey);
}

.site-footer__credit a {
    color: var(--primary-blue);
    font-weight: 600;
    transition: color 0.2s ease;
}

.site-footer__credit a:hover {
    color: var(--accent-orange);
}

.site-footer__bottom-sep {
    color: rgba(108, 120, 136, 0.25);
}

.site-footer__links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-footer__links a {
    color: var(--primary-text);
    transition: color 0.2s ease;
}

.site-footer__links a:hover {
    color: var(--primary-blue);
}

/* BLOG SECTION STYLES */
.blog-section {
    background-color: transparent;
}

/* Base Blog Card Styles */
.blog-card {
    background-color: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(8, 113, 201, 0.08);
}

/* Image Wrappers */
.blog-card-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 24px 24px 0 24px;
}

.blog-card-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-featured .blog-card-img {
    height: 280px;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.03);
}

.blog-card-img-placeholder {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    background-color: var(--secondary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-grey);
    font-size: 2.5rem;
}

/* Content Styles */
.blog-card-content {
    padding: 24px;
}

/* Meta Row Styles */
.blog-card-meta {
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.blog-meta-category {
    color: var(--neutral-grey);
    font-weight: 500;
}

.blog-meta-category a {
    color: var(--neutral-grey);
    transition: color 0.2s ease;
}

.blog-meta-category a:hover {
    color: var(--primary-blue);
}

.blog-meta-category i {
    color: var(--neutral-grey);
}

.blog-meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-variation-settings: "wght" 600, "DOTS" 8;
}

/* Date Pill */
.blog-meta-date-pill {
    background-color: var(--secondary-blue);
    color: var(--primary-blue);
}

.blog-meta-date-pill i {
    color: var(--primary-blue);
}

/* Reading Time Pill */
.blog-meta-read-pill {
    background-color: #fff9eb;
    color: var(--accent-orange);
}

.blog-meta-read-pill i {
    color: var(--accent-orange);
}

/* Titles */
.blog-card-title {
    font-size: 1.20rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: var(--primary-text);
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--primary-blue);
}

/* Excerpt */
.blog-card-excerpt {
    color: var(--neutral-grey);
    font-size: 0.90rem;
    line-height: 1.8;
    text-align: justify;
}

.blog-card-excerpt p {
    margin: 0;
}


/* Horizontal Blog Card */
.blog-card-horizontal {
    padding: 16px;
    flex-direction: row-reverse;
    height: calc((100% - 2 * 16px) / 3);
    align-items: stretch !important;
}

.blog-card-excerpt-horizontal {
    display: none;
}

/* Blog section: 1 post in left column styled identically to right featured post for 992px to 1199.98px (Bootstrap lg) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Enforce exact same image height & aspect-ratio on both sides */
    .blog-desktop-layout .blog-card-img,
    .blog-desktop-layout .blog-card-img-placeholder,
    .blog-desktop-layout .blog-card-img-placeholder-horizontal {
        height: 240px !important;
        aspect-ratio: 16 / 9 !important;
        object-fit: cover !important;
    }

    /* Hide 2nd and 3rd posts in left column */
    .blog-desktop-layout .col-lg-6:last-child .blog-card-horizontal:nth-child(n+2) {
        display: none !important;
    }

    /* Transform 1st post in left column to vertical layout identical to right featured post */
    .blog-desktop-layout .col-lg-6:last-child .blog-card-horizontal:first-child {
        flex-direction: column !important;
        height: 100% !important;
        padding: 0 !important;
        gap: 0 !important;
        align-items: stretch !important;
    }

    .blog-desktop-layout .col-lg-6:last-child .blog-card-img-wrap-horizontal {
        width: 100% !important;
        height: auto !important;
        padding: 24px 24px 0 24px !important;
    }

    .blog-desktop-layout .col-lg-6:last-child .blog-card-img-wrap-horizontal .blog-card-img,
    .blog-desktop-layout .col-lg-6:last-child .blog-card-img-placeholder-horizontal {
        width: 100% !important;
        height: 240px !important;
        aspect-ratio: 16 / 9 !important;
        border-radius: 16px !important;
        object-fit: cover !important;
    }

    .blog-desktop-layout .col-lg-6:last-child .blog-card-content-horizontal {
        padding: 24px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        flex-grow: 1 !important;
    }

    .blog-desktop-layout .col-lg-6:last-child .blog-card-title-horizontal {
        font-size: 1.20rem !important;
        font-weight: 600 !important;
        line-height: 1.6 !important;
        margin-bottom: 12px !important;
    }

    .blog-desktop-layout .col-lg-6:last-child .blog-card-excerpt-horizontal {
        display: block !important;
    }
}


.blog-card-img-wrap-horizontal {
    width: 200px;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.blog-card-img-wrap-horizontal .blog-card-img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.blog-card-img-placeholder-horizontal {
    width: 140px;
    height: 100%;
    border-radius: 12px;
    background-color: var(--secondary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-grey);
    font-size: 1.5rem;
}

.blog-card-content-horizontal {
    padding-left: 8px;
    display: flex;
    flex-direction: column;

}

.blog-card-title-horizontal {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 10px 0 0 0;
}

.blog-card-title-horizontal a {
    color: var(--primary-text);
    transition: color 0.2s ease;
}

.blog-card-title-horizontal a:hover {
    color: var(--primary-blue);
}


/* Mobile Layout & Carousel Adjustments */
.blog-mobile-layout {
    padding: 10px 0;
}

.blog-mobile-layout .blog-card-featured .blog-card-img {
    height: 220px;
}

.blog-mobile-layout .blog-card-img-placeholder {
    height: 220px;
}

/* Owl Carousel Customizations */
.blog-mobile-layout .owl-dots {
    margin-top: 24px !important;
    text-align: center;
}

.blog-mobile-layout .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    margin: 5px 6px !important;
    background: #d6d6d6 !important;
    transition: all 0.3s ease !important;
}

.blog-mobile-layout .owl-dot.active span,
.blog-mobile-layout .owl-dot:hover span {
    background: var(--primary-blue) !important;
    width: 24px !important;
    border-radius: 5px !important;
}


/* ABOUT US SECTION */
.about-us-content.about-us-fullwidth {
    position: relative;
    z-index: 1;
    height: auto !important;
    padding: 3.5rem 3.5rem 4.5rem 3.5rem !important;
    background: radial-gradient(circle at 90% 15%, rgba(8, 113, 201, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(255, 181, 31, 0.04) 0%, transparent 45%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 50px rgba(8, 113, 201, 0.03);
    overflow: visible !important;
}

.about-us-content.about-us-fullwidth::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(8, 113, 201, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 113, 201, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center;
    border-radius: inherit;
    z-index: -1;
    pointer-events: none;
}

.about-us-content.about-us-fullwidth .about-us-description {
    overflow-y: visible !important;
    padding-left: 0;
    flex: none;
}

.btn-toggle-about-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 10;
}

.btn-toggle-about {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 30px;
    background-color: #ffffff;
    color: var(--neutral-grey);
    border: 1px solid #e2e8f0;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-toggle-about:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue) !important;
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(8, 113, 201, 0.08);
}

.btn-toggle-about i {
    transition: transform 0.25s ease;
}


/* WOOCOMMERCE SINGLE PRODUCT PAGE */

.asp-single-container {
    font-family: var(--font-fa, 'Vazirmatn', sans-serif), serif;
    color: #334155;
    margin-top: 100px;
}

/* Breadcrumb */
.asp-breadcrumb ol {
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: box-shadow 0.3s ease;
}

.asp-breadcrumb ol:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06) !important;
}

.asp-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '•';
    color: #cbd5e1;
    padding: 0 4px;
}

.breadcrumb-item.active {
    font-size: 0.95rem;
}

.breadcrumb-item a {
    font-size: 0.9rem;
}

/* Top Hero Box */
.asp-hero-box {
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.3s ease;
}

.asp-hero-box:hover {
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07) !important;
}

/* Hero Image Wrapper */
.asp-image-wrapper {
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.asp-main-img {
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.asp-image-wrapper:hover .asp-main-img {
    transform: scale(1.03);
}

.asp-sale-badge span {
    font-weight: 500;
}

/* Category Badge */
.asp-cat-badge {
    background: var(--accent-orange, #ffb51f) !important;
    border: 1px solid var(--accent-orange, #ffb51f);
    color: #17202c !important;
    transition: all 0.25s ease;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 181, 31, 0.2);
}

.asp-cat-badge:hover {
    background: #ffa800 !important;
    border-color: #ffa800;
    color: #17202c !important;
    transform: translateY(-2px);
    box-shadow: 0 7px 16px rgba(255, 181, 31, 0.32);
}

/* Title & Description */
.asp-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary-text);
}

.asp-short-desc {
    color: #475569;
    text-align: justify;
    text-align-last: right;
    font-size: 1.0rem;
}

.asp-short-desc p:last-child {
    margin-bottom: 0;
}

/* Icon circles & Boxes */
.asp-icon-circle {
    border: 1px solid rgba(11, 99, 230, 0.12);
}


.asp-details-box h3,
.asp-video-section h3 {
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item {
    font-size: 0.95rem;
    font-weight: 600;
}

.asp-section-icon {
    color: var(--accent-orange, #ffb51f);
    background: rgba(255, 181, 31, 0.1);
    border-color: rgba(255, 181, 31, 0.35);
    box-shadow: 0 5px 14px rgba(255, 181, 31, 0.14);
    flex: 0 0 auto;
}

.asp-details-box,
.asp-video-section,
.asp-tabs-section,
.asp-purchase-box {
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.3s ease;
}

.asp-details-box:hover,
.asp-video-section:hover,
.asp-tabs-section:hover,
.asp-purchase-box:hover {
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06) !important;
}

/* Specs list */
.asp-specs-list li:last-child {
    border-bottom: none !important;
}

/* Tabs & Nav Pills */
.asp-nav-pills .nav-link {
    color: #64748b;
    background: transparent;
    border: 0;
    border-radius: 14px;
    min-height: 48px;
    position: relative;
    isolation: isolate;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.asp-nav-pills {
    width: 100%;
    padding: 6px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.asp-nav-pills .nav-item {
    display: flex;
    flex: 1 1 0;
}

.asp-nav-pills .nav-link {
    justify-content: center;
    width: 100%;
}

.asp-nav-pills .nav-link svg {
    color: var(--accent-orange, #ffb51f);
    transition: transform 0.25s ease;
}

.asp-nav-pills .nav-link:hover {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.72);
}

.asp-nav-pills .nav-link:hover svg {
    transform: rotate(-5deg) scale(1.08);
}

.asp-nav-pills .nav-link.active {
    background: #fff !important;
    color: #0f172a !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
}

.asp-nav-pills .nav-link.active svg {
    color: var(--accent-orange, #ffb51f);
}

.asp-nav-pills .nav-link .badge {
    min-width: 24px;
}

.asp-nav-pills .nav-link .asp-review-count {
    padding: 0.38em 0.62em;
    color: #fff;
    background: #475569;
    box-shadow: 0 2px 7px rgba(15, 23, 42, 0.18);
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.asp-nav-pills .nav-link.active .asp-review-count {
    color: #17202c;
    background: var(--accent-orange, #ffb51f);
    box-shadow: 0 2px 7px rgba(255, 181, 31, 0.28);
}

.asp-content-body p,
.asp-reviews-body p {
    margin-bottom: 1rem;
    line-height: 2;
}

.asp-content-body p,
.asp-content-body li {
    text-align: justify;
    text-align-last: right;
}

.asp-content-body ul {
    padding-right: 25px;
}

.asp-content-body li {
    list-style: disc;
}

/* reviews and questions panel */
.asp-reviews-body .woocommerce-Reviews {
    position: relative;
    display: grid;
    gap: 1.25rem;
    padding: clamp(1rem, 2.5vw, 1.75rem);
    overflow: hidden;
    border: 1px solid rgba(8, 113, 201, 0.1);
    border-radius: 22px;
    background: radial-gradient(circle at 100% 0, rgba(255, 181, 31, 0.16), transparent 30%),
    linear-gradient(145deg, #f8fbff 0%, #fff 58%, #fffaf0 100%);
}

.asp-reviews-body .woocommerce-Reviews::before {
    content: '';
    position: absolute;
    top: -70px;
    left: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(8, 113, 201, 0.06);
    pointer-events: none;
}

.asp-reviews-body #comments,
.asp-reviews-body #review_form_wrapper {
    position: relative;
    z-index: 1;
}

.asp-reviews-body .woocommerce-Reviews-title,
.asp-reviews-body .comment-reply-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1rem;
    color: #17202c;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.8;
}

.asp-reviews-body .woocommerce-Reviews-title::before,
.asp-reviews-body .comment-reply-title::before {
    content: '✦';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    color: #17202c;
    background: var(--accent-orange, #ffb51f);
    box-shadow: 0 6px 16px rgba(255, 181, 31, 0.28);
}

.asp-reviews-body .woocommerce-noreviews {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 74px;
    margin: 0;
    padding: 1rem 1.15rem;
    border: 1px dashed rgba(8, 113, 201, 0.25);
    border-radius: 16px;
    color: #64748b;
    background: rgba(255, 255, 255, 0.72);
}

.asp-reviews-body .woocommerce-noreviews::before {
    content: '💬';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.08);
}

.asp-reviews-body #review_form_wrapper {
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.07);
}

.asp-reviews-body .comment-reply-title small {
    margin-right: auto;
    font-size: 0.75rem;
}

.asp-reviews-body .comment-reply-title small a {
    color: #dc2626;
}

.asp-reviews-body .comment-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.asp-reviews-body .comment-form > * {
    min-width: 0;
    margin: 0;
}

.asp-reviews-body .comment-notes,
.asp-reviews-body .comment-form-rating,
.asp-reviews-body .comment-form-comment,
.asp-reviews-body .comment-form-cookies-consent,
.asp-reviews-body .form-submit,
.asp-reviews-body .logged-in-as {
    grid-column: 1 / -1;
}

.asp-reviews-body .comment-notes,
.asp-reviews-body .logged-in-as {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    color: #64748b;
    background: #f8fafc;
    font-size: 0.82rem;
    line-height: 1.9;
}

.asp-reviews-body .must-log-in {
    margin: 0;
    padding: 1rem 1.1rem;
    border: 1px dashed rgba(255, 181, 31, 0.55);
    border-radius: 14px;
    color: #475569;
    background: rgba(255, 181, 31, 0.08);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 2;
    text-align: center;
}

.asp-review-submission-notice {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.95rem 1.1rem;
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, 0.28);
    border-radius: 15px;
    color: #166534;
    background: linear-gradient(135deg, rgba(220, 252, 231, 0.96), rgba(240, 253, 244, 0.96));
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1.9;
    box-shadow: 0 9px 24px rgba(22, 101, 52, 0.08);
}

.asp-review-submission-notice::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    color: #fff;
    background: #22c55e;
    font-size: 1rem;
    box-shadow: 0 5px 13px rgba(34, 197, 94, 0.25);
}

.asp-review-submission-notice.is-pending {
    border-color: rgba(245, 158, 11, 0.3);
    color: #92400e;
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.96), rgba(255, 251, 235, 0.96));
}

.asp-review-submission-notice.is-pending::before {
    content: '⌛';
    background: #f59e0b;
    box-shadow: 0 5px 13px rgba(245, 158, 11, 0.25);
}

.asp-reviews-body .comment-form label {
    display: block;
    margin-bottom: 0.45rem;
    color: #334155;
    font-size: 0.86rem;
    font-weight: 700;
}

.asp-reviews-body .required {
    color: #ef4444;
}

.asp-reviews-body .comment-form input[type='text'],
.asp-reviews-body .comment-form input[type='email'],
.asp-reviews-body .comment-form input[type='url'],
.asp-reviews-body .comment-form textarea {
    width: 100%;
    border: 1px solid #dbe3ee;
    border-radius: 13px;
    outline: none;
    color: #17202c;
    background: #fbfdff;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.asp-reviews-body .comment-form input[type='text'],
.asp-reviews-body .comment-form input[type='email'],
.asp-reviews-body .comment-form input[type='url'] {
    min-height: 48px;
    padding: 0.7rem 0.9rem;
}

.asp-reviews-body .comment-form textarea {
    min-height: 150px;
    padding: 0.9rem 1rem;
    resize: vertical;
}

.asp-reviews-body .comment-form input[type='text']:focus,
.asp-reviews-body .comment-form input[type='email']:focus,
.asp-reviews-body .comment-form input[type='url']:focus,
.asp-reviews-body .comment-form textarea:focus {
    border-color: rgba(8, 113, 201, 0.55);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(8, 113, 201, 0.09);
}

.comment-form-rating,
.asp-reviews-body .comment-form-rating {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 181, 31, 0.25);
    border-radius: 14px;
    background: rgba(255, 181, 31, 0.07);
    height: auto !important;
    min-height: 0 !important;
}

.comment-form-rating > label,
.asp-reviews-body .comment-form-rating > label {
    margin: 0 !important;
}

.comment-form-rating .stars,
p.stars,
.asp-reviews-body .comment-form-rating .stars {
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    min-height: 38px !important;
    line-height: 1 !important;
    display: block !important;
    overflow: visible !important;
}

.comment-form-rating .stars span,
p.stars span,
.asp-reviews-body .comment-form-rating .stars span {
    display: inline-flex !important;
    align-items: center !important;
    direction: ltr !important;
    gap: 0.3rem !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    min-height: 38px !important;
}

.comment-form-rating .stars a,
p.stars a,
.asp-reviews-body .comment-form-rating .stars a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    overflow: hidden;
    border: 1px solid rgba(255, 181, 31, 0.32);
    border-radius: 10px;
    background-color: #fff;
    box-sizing: border-box;
    font-size: 0;
    line-height: 1;
    text-indent: -9999px;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-form-rating .stars a::before,
p.stars a::before,
.asp-reviews-body .comment-form-rating .stars a::before {
    content: '★' !important;
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: 100% !important;
    color: #cbd5e1;
    font-family: inherit !important;
    font-size: 1.25rem !important;
    line-height: 1 !important;
    text-indent: 0 !important;
    transition: color 0.18s ease, transform 0.18s ease;
}

.comment-form-rating .stars:hover a::before,
.comment-form-rating .stars.selected a:not(.active)::before,
.comment-form-rating .stars.selected a.active::before,
p.stars:hover a::before,
p.stars.selected a:not(.active)::before,
p.stars.selected a.active::before,
.asp-reviews-body .comment-form-rating .stars:hover a::before,
.asp-reviews-body .comment-form-rating .stars.selected a:not(.active)::before,
.asp-reviews-body .comment-form-rating .stars.selected a.active::before {
    color: var(--accent-orange, #ffb51f);
}

.comment-form-rating .stars a:hover ~ a::before,
.comment-form-rating .stars.selected a.active ~ a::before,
p.stars a:hover ~ a::before,
p.stars.selected a.active ~ a::before,
.asp-reviews-body .comment-form-rating .stars a:hover ~ a::before,
.asp-reviews-body .comment-form-rating .stars.selected a.active ~ a::before {
    color: #cbd5e1;
}

.comment-form-rating .stars a:hover,
.comment-form-rating .stars a:focus,
p.stars a:hover,
p.stars a:focus,
.asp-reviews-body .comment-form-rating .stars a:hover,
.asp-reviews-body .comment-form-rating .stars a:focus {
    transform: translateY(-2px);
    background-color: #fff7df;
    box-shadow: 0 5px 12px rgba(255, 181, 31, 0.22);
}

.comment-form-rating .stars a:hover::before,
.comment-form-rating .stars a:focus::before,
p.stars a:hover::before,
p.stars a:focus::before,
.asp-reviews-body .comment-form-rating .stars a:hover::before,
.asp-reviews-body .comment-form-rating .stars a:focus::before {
    transform: scale(1.12);
}

.asp-reviews-body .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    color: #64748b;
    background: #f8fafc;
}

.asp-reviews-body .comment-form-cookies-consent input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 0.2rem;
    accent-color: var(--primary-blue, #0871c9);
}

.asp-reviews-body .comment-form-cookies-consent label {
    margin: 0;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.9;
}

.asp-reviews-body .form-submit .submit {
    min-width: 145px;
    min-height: 48px;
    padding: 0.7rem 1.5rem;
    border: 0;
    border-radius: 13px;
    color: #17202c;
    background: var(--accent-orange, #ffb51f);
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(255, 181, 31, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.asp-reviews-body .form-submit .submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 181, 31, 0.4);
}

/* Submitted review cards */
.asp-reviews-body .commentlist {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.asp-reviews-body .commentlist > li {
    margin: 0;
    padding: 0;
}

.asp-reviews-body .comment_container {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-areas: 'avatar content';
    column-gap: 0.3rem;
    padding: 1.1rem;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 9px 25px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.asp-reviews-body .comment_container:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 30px rgba(15, 23, 42, 0.08);
}

.asp-reviews-body .comment_container .avatar {
    grid-area: avatar;
    align-self: start;
    transform: translateY(4px);
    width: 46px;
    height: 46px;
    position: static !important;
    float: none !important;
    margin: 0;
    padding: 3px;
    border: 1px solid rgba(255, 181, 31, 0.55);
    border-radius: 15px;
    background: #fff;
    object-fit: cover;
}

.asp-reviews-body .comment_container .comment-text {
    grid-area: content;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.4rem 0.75rem;
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.asp-reviews-body .comment_container .meta {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    align-items: center;
    align-self: center;
    flex-wrap: wrap;
    gap: 0.15rem;
    min-height: 46px;
    margin: 0;
    color: #94a3b8;
    font-size: 0.78rem;
    line-height: 1.45;
}

.asp-reviews-body .comment_container .woocommerce-review__published-date {
    white-space: nowrap;
}

.asp-reviews-body .comment_container .woocommerce-review__author {
    color: #17202c;
    font-size: 0.92rem;
    font-weight: 800;
}

.asp-reviews-body .comment_container .star-rating {
    grid-column: 2;
    grid-row: 1;
    float: none;
    position: relative;
    width: 92px;
    height: 18px;
    overflow: hidden;
    margin: 0;
    direction: ltr;
    font-size: 0;
    line-height: 1;
}

.asp-reviews-body .comment_container .star-rating::before {
    content: '' !important;
    position: absolute;
    inset: 0;
    background: left center / 92px 18px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 92 18'%3E%3Cg fill='none' stroke='%23cbd5e1' stroke-width='1.35' stroke-linejoin='round'%3E%3Cpath d='M9 1l2.1 5.2 5.9.3-4.5 3.6 1.4 5.9L9 12.7 4.1 16l1.4-5.9L1 6.5l5.9-.3L9 1z'/%3E%3Cpath d='M27.5 1l2.1 5.2 5.9.3-4.5 3.6 1.4 5.9-4.9-3.3-4.9 3.3 1.4-5.9-4.5-3.6 5.9-.3L27.5 1z'/%3E%3Cpath d='M46 1l2.1 5.2 5.9.3-4.5 3.6 1.4 5.9-4.9-3.3-4.9 3.3 1.4-5.9-4.5-3.6 5.9-.3L46 1z'/%3E%3Cpath d='M64.5 1l2.1 5.2 5.9.3-4.5 3.6 1.4 5.9-4.9-3.3-4.9 3.3 1.4-5.9-4.5-3.6 5.9-.3L64.5 1z'/%3E%3Cpath d='M83 1l2.1 5.2 5.9.3-4.5 3.6 1.4 5.9-4.9-3.3-4.9 3.3 1.4-5.9-4.5-3.6 5.9-.3L83 1z'/%3E%3C/g%3E%3C/svg%3E");
}

.asp-reviews-body .comment_container .star-rating span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    padding: 0;
    background: left center / 92px 18px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 92 18'%3E%3Cg fill='%23ffb51f'%3E%3Cpath d='M9 1l2.1 5.2 5.9.3-4.5 3.6 1.4 5.9L9 12.7 4.1 16l1.4-5.9L1 6.5l5.9-.3L9 1z'/%3E%3Cpath d='M27.5 1l2.1 5.2 5.9.3-4.5 3.6 1.4 5.9-4.9-3.3-4.9 3.3 1.4-5.9-4.5-3.6 5.9-.3L27.5 1z'/%3E%3Cpath d='M46 1l2.1 5.2 5.9.3-4.5 3.6 1.4 5.9-4.9-3.3-4.9 3.3 1.4-5.9-4.5-3.6 5.9-.3L46 1z'/%3E%3Cpath d='M64.5 1l2.1 5.2 5.9.3-4.5 3.6 1.4 5.9-4.9-3.3-4.9 3.3 1.4-5.9-4.5-3.6 5.9-.3L64.5 1z'/%3E%3Cpath d='M83 1l2.1 5.2 5.9.3-4.5 3.6 1.4 5.9-4.9-3.3-4.9 3.3 1.4-5.9-4.5-3.6 5.9-.3L83 1z'/%3E%3C/g%3E%3C/svg%3E");
    font-size: 0;
    line-height: 1;
    white-space: nowrap;
}

.asp-reviews-body .comment_container .star-rating span::before {
    content: none !important;
}

.asp-reviews-body .comment_container .description {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
}

.asp-reviews-body .comment_container .description p {
    margin: 0.35rem 0 0;
    color: #475569;
    line-height: 2;
    text-align: justify;
    text-align-last: right;
}

.woocommerce #reviews #comments ol.commentlist ul.children {
    margin-right: 25px;
}

.asp-content-body h2,
.asp-content-body h3,
.asp-content-body h4 {
    color: #17202c;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.7;
    margin: 2rem 0 1rem;
    padding: 0.7rem 0;
    position: relative;
}

.asp-content-body h2::before,
.asp-content-body h3::before,
.asp-content-body h4::before {
    content: '✦';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #17202c;
    background: var(--accent-orange, #ffb51f);
    border-radius: 12px;
    box-shadow: 0 5px 13px rgba(255, 181, 31, 0.25);
    flex: 0 0 auto;
}

.asp-content-body h2,
.asp-content-body h3,
.asp-content-body h4 {
    background: linear-gradient(90deg, rgba(255, 181, 31, 0.12), transparent 75%);
    border-radius: 14px;
}

.asp-content-body h2 {
    font-size: 1.30rem;
    font-weight: 600;
}

.asp-content-body h2::before {
    width: 38px;
    height: 38px;
    font-size: 1rem;
}

.asp-content-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.asp-content-body h3::before {
    width: 32px;
    height: 32px;
    font-size: 0.82rem;
}

.asp-content-body h4 {
    font-size: 1.0rem;
    font-weight: 600;
}

.asp-content-body h4::before {
    width: 26px;
    height: 26px;
    border-radius: 9px;
    font-size: 0.7rem;
}

/* Buy / Add to Cart CTA Button */
.asp-buy-btn {
    background-color: var(--accent-orange, #ffb51f);
    color: #0f172a !important;
    border: none;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(255, 181, 31, 0.35);
}

.asp-buy-btn:hover {
    background-color: var(--accent-orange);
    color: #0f172a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 181, 31, 0.5);
}

.asp-buy-btn svg {
    transition: transform 0.3s ease;
}

.asp-buy-btn:hover svg {
    transform: scale(1.15) rotate(-6deg);
}

.asp-buy-btn span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Support Button  */
.asp-support-btn {
    background-color: var(--bs-primary, #0d6efd);
    color: #ffffff !important;
    border: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.35);
}

.asp-support-btn:hover {
    background-color: #0b5ed7;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.45);
}

.asp-support-btn svg {
    transition: transform 0.3s ease;
}

.asp-support-btn:hover svg {
    transform: scale(1.15);
}

.asp-support-btn span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Quantity input in WooCommerce */
.asp-qty-wrap input.qty {
    width: 60px !important;
    height: 38px;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    background: #fff;
    font-weight: 700;
}

.asp-qty-wrap input.qty:focus {
    border-color: var(--primary-blue, #0b63e6) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 99, 230, 0.15);
}


.total-price {
    font-weight: 600;
    font-size: 0.95rem;
}


.asp-alternate-purchase__description {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.9;
}

.asp-alternate-purchase__button,
.asp-alternate-purchase__button:disabled {
    color: #64748b;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    font-weight: 700;
    opacity: 1;
    cursor: default;
}

a.asp-alternate-purchase__button {
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

a.asp-alternate-purchase__button:hover {
    color: #17202c;
    background: #e2e8f0;
    border-color: #cbd5e1;
}

/* Login Prompt Box */

.asp-login-prompt {
    border: 1.5px dashed rgba(245, 158, 11, 0.4);
}

/* Trust Badges */
.asp-badge-item svg {
    transition: transform 0.25s ease;
}

.asp-badge-item:hover svg {
    transform: translateY(-3px);
}

.asp-badge-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Custom Checkout Review Table adjustments */
.woocommerce-checkout-review-order-table .product-quantity {
    display: none !important;
}

.woocommerce-checkout-review-order-table .cart-subtotal {
    display: none !important;
}

/* WooCommerce Checkout Order Table styling */
.woocommerce-checkout-review-order-table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #fff !important;
    margin-bottom: 2rem !important;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 1.1rem 1.5rem !important;
    border: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
    vertical-align: middle !important;
    text-align: right !important;
}

/* Header styling */
.woocommerce-checkout-review-order-table thead th {
    background-color: #f8fafc !important;
    color: #475569 !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-bottom: 2px solid #e2e8f0 !important;
}

/* Product Row styling */
.woocommerce-checkout-review-order-table .cart_item {
    transition: background-color 0.2s ease !important;
}

.woocommerce-checkout-review-order-table .cart_item:hover {
    background-color: #fcfdfe !important;
}

.woocommerce-checkout-review-order-table .cart_item .product-name {
    color: #1e293b !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
}

.woocommerce-checkout-review-order-table .cart_item .product-total {
    color: #334155 !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
}

/* Coupon & Discount rows */
.woocommerce-checkout-review-order-table .cart-discount th {
    color: #059669 !important;
    font-weight: 700 !important;
    font-size: 0.86rem !important;
}

.woocommerce-checkout-review-order-table .cart-discount td {
    color: #059669 !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
}

.woocommerce-checkout-review-order-table .cart-discount .woocommerce-remove-coupon {
    color: #ef4444 !important;
    font-size: 0.8rem !important;
    margin-right: 0.5rem !important;
    text-decoration: none !important;
}

/* Total row styling */
.woocommerce-checkout-review-order-table .order-total {
    background-color: #f8fafc !important;
}

.woocommerce-checkout-review-order-table .order-total th {
    color: #0f172a !important;
    font-size: 0.96rem !important;
    font-weight: 800 !important;
    border-bottom: none !important;
}

.woocommerce-checkout-review-order-table .order-total td {
    color: var(--primary-blue, #0871c9) !important;
    font-size: 1.15rem !important;
    font-weight: 900 !important;
    border-bottom: none !important;
}


#place_order {
    font-weight: 600 !important;
    margin-top: 45px !important;
}

/* Modern Custom Coupon Section styling */
.af-custom-coupon-wrapper {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 1.5rem !important;
}

.af-custom-coupon-wrapper h4 {
    font-size: 0.95rem !important;
    color: #1e293b !important;
    margin-bottom: 0.35rem !important;
}

.af-custom-coupon-wrapper p {
    font-size: 0.78rem !important;
    color: #64748b !important;
}

/* Coupon Input Group inside custom wrapper */
.af-custom-coupon-wrapper .input-group {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    width: 100% !important;
    position: relative !important;
    background: #fff !important;
    border: 1.5px solid #dbe3ee !important;
    border-radius: 30px !important;
    padding: 3px !important;
    transition: all 0.25s ease !important;
    direction: rtl !important;
}

.af-custom-coupon-wrapper .input-group:focus-within {
    border-color: var(--primary-blue, #0871c9) !important;
    box-shadow: 0 0 0 4px rgba(8, 113, 201, 0.08) !important;
}

.af-custom-coupon-wrapper #custom_coupon_code {
    flex: 1 1 auto !important;
    width: 1% !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    height: 44px !important;
    padding: 0 1.25rem !important;
    font-size: 0.86rem !important;
    color: #1e293b !important;
    outline: none !important;
    text-align: right !important;
}

.af-custom-coupon-wrapper #apply_custom_coupon {
    background-color: var(--accent-orange, #ffb51f) !important;
    color: #0f172a !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 0 1.75rem !important;
    height: 44px !important;
    font-weight: 800 !important;
    font-size: 0.84rem !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    box-shadow: 0 4px 10px rgba(255, 181, 31, 0.2) !important;
}

.af-custom-coupon-wrapper #apply_custom_coupon:hover {
    background-color: #ffa800 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 14px rgba(255, 181, 31, 0.35) !important;
}

/* Coupon inline response messages */
#custom_coupon_message {
    padding: 0.25rem 0.5rem !important;
    font-weight: 700 !important;
}

#custom_coupon_message.text-success {
    color: #059669 !important;
}

#custom_coupon_message.text-danger {
    color: #e11d48 !important;
}

/* CUSTOM WOOCOMMERCE SHOP ARCHIVE */
.asp-shop-container {
    margin-top: 100px;
    color: #334155;
}

.asp-shop-box {
    position: relative;
    border: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.asp-shop-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.asp-shop-heading h1 {
    margin: 5px 0 0;
    color: var(--primary-text);
    font-size: clamp(1.1rem, 1.8vw, 1.7rem);
    font-weight: 600;
}

.asp-shop-result-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    min-height: 48px;
    margin: 0;
    padding: 0 16px;
    border: 1px solid rgba(8, 113, 201, .12);
    border-radius: 12px;
    background: rgba(8, 113, 201, .07);
    color: var(--primary-blue);
    font-size: .80rem;
    font-weight: 600;
    white-space: nowrap;
}

.asp-shop-filters {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(210px, .42fr) auto;
    gap: 12px;
    margin-bottom: 30px;
    padding: 14px;
    border: 1px solid #e8eef5;
    border-radius: 16px;
    background: #f8fafc;
}

.asp-filter-field {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}

.asp-filter-field svg {
    position: absolute;
    right: 16px;
    color: #94a3b8;
    pointer-events: none;
}

.asp-filter-field input,
.asp-filter-field select {
    width: 100%;
    height: 48px;
    border: 1px solid #dfe7f0;
    border-radius: 12px;
    outline: none;
    background: #fff;
    color: #334155;
    font-family: inherit;
    font-size: .88rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.asp-filter-field input {
    padding: 0 46px 0 16px;
}

.asp-filter-field select {
    padding: 0 16px;
    cursor: pointer;
}

.asp-filter-field input:focus,
.asp-filter-field select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(8, 113, 201, .1);
}

.asp-shop-results {
    position: relative;
    min-height: 160px;
}

.asp-shop-products-row {
    transition: opacity .2s ease;
}

.asp-shop-products-row .latest-product-card {
    width: 100%;
    height: 100%;
}

.asp-shop-results.is-loading .asp-shop-products-row,
.asp-shop-results.is-loading .asp-shop-pagination,
.asp-shop-results.is-loading .asp-shop-empty {
    opacity: .35;
    pointer-events: none;
}

.asp-shop-loader {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 8;
    place-items: center;
}

.asp-shop-results.is-loading .asp-shop-loader {
    display: grid;
}

.asp-shop-loader span {
    width: 40px;
    height: 40px;
    border: 3px solid #dbe8f4;
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: asp-shop-spin .7s linear infinite;
}

@keyframes asp-shop-spin {
    to {
        transform: rotate(360deg);
    }
}

.asp-shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 38px;
}

.asp-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #dfe7f0;
    border-radius: 12px;
    background: #fff;
    color: #64748b;
    text-decoration: none;
    font-size: .86rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
}

.asp-page-link:hover,
.asp-page-link[aria-current="page"] {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 6px 16px rgba(8, 113, 201, .18);
}

.asp-page-dots {
    padding: 0 3px;
    color: #94a3b8;
}

.asp-shop-empty {
    padding: 55px 20px;
    border: 1px dashed #dbe4ed;
    border-radius: 16px;
    background: #f8fafc;
    text-align: center;
}

.asp-shop-empty-icon {
    display: inline-grid;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    place-items: center;
    border-radius: 50%;
    background: rgba(8, 113, 201, .09);
    color: var(--primary-blue);
}

.asp-shop-empty h2 {
    margin: 0 0 8px;
    color: var(--primary-text);
    font-size: 1.1rem;
}

.asp-shop-empty p {
    margin: 0;
    color: #64748b;
    font-size: .88rem;
}

.asp-shop-about {
    padding: 5rem 0 3rem !important;
}

.asp-shop-about .about-us-content.about-us-fullwidth {
    padding-bottom: 4.5rem !important;
}

/* Blog archive  */
.asp-blog-filters {
    grid-template-columns: minmax(0, 1fr) auto;
}

.asp-blog-posts-row {
    transition: opacity .2s ease;
}

.asp-blog-results.is-loading .asp-blog-posts-row {
    opacity: .35;
    pointer-events: none;
}

.blog-archive-card .blog-card-img,
.blog-archive-card .blog-card-img-placeholder {
    height: 220px;
}

.blog-archive-card .blog-card-content {
    gap: 12px;
}

.blog-archive-card .blog-card-meta,
.blog-archive-card .blog-card-title {
    margin-bottom: 0;
}

.asp-blog-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #edf1f5;
    color: var(--primary-blue);
    font-size: .84rem;
    font-weight: 700;
    text-decoration: none;
}

.asp-blog-read-more:hover {
    color: var(--accent-orange);
}

/* SINGLE BLOG POST */
.asp-single-post-container .asp-post-sidebar-column,
.asp-single-page-container .asp-page-sidebar-column,
.asp-single-product-container .asp-product-sidebar-column {
    position: sticky;
    top: 100px;
    z-index: 10;
    align-self: flex-start;
}

.asp-single-post-container .asp-details-box h2 {
    font-size: 1.1rem;
    font-weight: 700;
}

.asp-post-featured-image {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 18px;
    background: #f8fafc;
}

.asp-post-featured-image img {
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.asp-post-title {
    margin: 2rem 0 2rem 0;
    color: var(--primary-text);
    font-size: clamp(1.1rem, 1.7vw, 1.5rem);
    font-weight: 700;
    line-height: 1.40;
}

.asp-post-content > h1:first-of-type::before {
    content: none;
}

.asp-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.asp-post-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-right: 4px solid var(--accent-orange);
    border-radius: 12px;
    background: #fffaf0;
}

.asp-page-services-list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.asp-page-service-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .8rem;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 13px;
    background: #f8fafc;
    color: var(--primary-text);
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.asp-page-service-link:hover,
.asp-page-service-link:focus-visible {
    border-color: rgba(0, 113, 227, .22);
    background: #f2f8ff;
    color: var(--primary-text);
    box-shadow: 0 8px 20px rgba(0, 113, 227, .07);
    transform: translateX(-3px);
}

.asp-page-service-icon {
    display: inline-flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 113, 227, .1);
    color: var(--primary-blue);
    font-size: 1rem;
    transition: background-color .2s ease, color .2s ease;
}

.asp-page-service-link:hover .asp-page-service-icon,
.asp-page-service-link:focus-visible .asp-page-service-icon {
    background: var(--primary-blue);
    color: #fff;
}

.asp-page-service-copy {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: .15rem;
}

.asp-page-service-copy strong {
    color: var(--primary-text);
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.6;
}

.asp-page-service-copy small {
    color: var(--neutral-grey);
    font-size: .67rem;
    line-height: 1.65;
}

.asp-page-service-arrow {
    flex: 0 0 auto;
    color: #a2afbd;
    font-size: .7rem;
    transition: color .2s ease, transform .2s ease;
}

.asp-page-service-link:hover .asp-page-service-arrow,
.asp-page-service-link:focus-visible .asp-page-service-arrow {
    color: var(--primary-blue);
    transform: translateX(-2px);
}

.asp-post-products-carousel .latest-product-card {
    width: 100%;
}

.asp-post-products-carousel .latest-product-card:hover {
    transform: none;
    border-color: rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.asp-post-products-carousel .latest-product-card:hover .latest-product-image img,
.asp-post-products-carousel .lpc-cta-btn:hover {
    transform: none;
}

.asp-post-products-carousel .owl-stage {
    display: flex;
}

.asp-post-products-carousel .owl-item {
    display: flex;
}

.asp-post-products-carousel.owl-theme .owl-dots {
    margin-top: 10px;
}

.asp-post-products-carousel.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #c9d7e8;
}

.asp-post-products-carousel.owl-theme .owl-dots .owl-dot.active span {
    width: 22px;
    background: var(--primary-blue);
}

.asp-single-post-container .comment_container .reply {
    margin-top: .65rem;
}

.asp-single-post-container .comment-reply-link {
    display: inline-flex;
    padding: .3rem .75rem;
    border-radius: 9px;
    color: var(--primary-blue);
    background: rgba(8, 113, 201, .07);
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
}

.asp-comment-pagination {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 1rem;
}

.asp-comment-pagination a {
    color: var(--primary-blue);
    text-decoration: none;
}


/* CUSTOMER ACCOUNT PANEL */
.asp-account-page {
    margin-top: 80px;
    color: #334155;
}

.asp-account-shell {
    min-height: 520px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.asp-account-sidebar,
.asp-account-content {
    border-color: #e8edf3 !important;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.055) !important;
}

.asp-account-layout .asp-account-navigation {
    float: none;
    width: 100%;
}

.asp-account-layout > .asp-account-content-col {
    float: none;
    width: 100%;
    min-width: 0;
}

.asp-account-content {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: radial-gradient(circle at 100% 0, rgba(255, 181, 31, 0.16), transparent 30%),
    linear-gradient(145deg, #f8fbff 0%, #fff 58%, #fffaf0 100%) !important;
    z-index: 0;
}

.asp-account-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -35px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(8, 113, 201, 0.06);
    pointer-events: none;
    z-index: -1;
}

.asp-account-content .woocommerce-message,
.asp-account-content .woocommerce-info,
.asp-account-content .woocommerce-error {
    margin: 0 0 1.25rem;
    padding: 0.95rem 1.15rem 0.95rem 3.25rem;
    border: 1px solid #dce8f2 !important;
    border-radius: 14px;
    outline: none !important;
    box-shadow: none !important;
    font-size: 0.82rem;
}

.asp-account-content .woocommerce-message {
    color: #166534;
    border-color: #c8ecd5 !important;
    background: #effbf4;
}

.asp-account-content .woocommerce-message::before {
    color: #84a916;
}

.asp-account-navigation .nav-item,
.asp-account-navigation .nav-link {
    box-sizing: border-box;
    width: 100%;
}

.asp-account-profile {
    background: linear-gradient(135deg, #f7fbff 0%, #f8fafc 100%);
    border: 1px solid #e5edf5;
}

.asp-account-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0871c9, #075aa0);
    box-shadow: 0 8px 18px rgba(8, 113, 201, 0.22);
}

.asp-account-navigation .nav-link {
    background-color: transparent !important;
    color: #475569;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.asp-account-navigation .nav-link.is-disabled {
    cursor: default;
    pointer-events: none;
}

.asp-account-navigation .nav-link:hover,
.asp-account-navigation .nav-link.active {
    background-color: #eef7ff !important;
    color: var(--bs-primary, #0871c9);
}

.asp-account-navigation .nav-link.active {
    box-shadow: 0 5px 14px rgba(8, 113, 201, 0.08);
}

.asp-account-navigation .nav-link.active .asp-nav-icon {
    color: var(--bs-warning, #ffb51f) !important;
}

.asp-account-navigation .nav-link.active .asp-account-nav-arrow {
    color: var(--bs-primary, #0871c9) !important;
    opacity: 1 !important;
}

.asp-account-logout {
    border-top: 1px solid #edf1f5;
}

/* Account dashboard */
.asp-dashboard-hero {
    color: #17202c;
    border: 1px solid rgba(8, 113, 201, 0.1);
    background-color: rgb(255, 255, 2555);
}

.asp-dashboard-title {
    color: #17202c;
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.55;
}

.asp-dashboard-intro {
    max-width: 650px;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.9;
}

.asp-dashboard-stat {
    background: #fff;
    border: 1px solid #e7edf3;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
}

.asp-dashboard-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 !important;
}

.asp-dashboard-stat {
    color: inherit;
    min-height: 116px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.asp-dashboard-stat:hover {
    color: inherit;
    border-color: rgba(8, 113, 201, 0.22);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.085);
    transform: translateY(-3px);
}

.asp-dashboard-stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
}

.asp-dashboard-stat-icon.is-blue {
    color: #0871c9;
    background: #e8f4ff;
}

.asp-dashboard-stat-icon.is-orange {
    color: #b66b00;
    background: #fff3d6;
}

.asp-dashboard-stat-icon.is-green {
    color: #16804a;
    background: #e8f8ef;
}

.asp-dashboard-stat-icon.is-purple {
    color: #7151c8;
    background: #f1edff;
}

.asp-dashboard-stat-value {
    font-size: 1.25rem;
    line-height: 1;
}

.asp-dashboard-stat-label,
.asp-dashboard-heading-copy,
.asp-dashboard-order-date,
.asp-dashboard-action small {
    font-size: 0.75rem;
}

.asp-dashboard-stat-arrow,
.asp-dashboard-action-arrow {
    color: #a8b3c0;
    font-size: 0.7rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.asp-dashboard-stat:hover .asp-dashboard-stat-arrow,
.asp-dashboard-action:hover .asp-dashboard-action-arrow {
    color: #0871c9;
    transform: translateX(-3px);
}

.asp-dashboard-heading-icon {
    width: 40px;
    height: 40px;
    color: #0871c9;
    background: #edf7ff;
}

.asp-dashboard-link-btn {
    color: #0871c9;
    background: #f1f8fe;
    border: 1px solid #dceefa;
    font-size: 0.75rem;
    font-weight: 700;
}

.asp-dashboard-link-btn:hover {
    color: #fff;
    background: #0871c9;
    border-color: #0871c9;
}

.asp-dashboard-order {
    background: #f9fbfd;
    border: 1px solid #edf1f5;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.asp-dashboard-order:hover {
    background: #fff;
    border-color: #dce8f2;
}

.asp-dashboard-status {
    padding: 0.48rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
}

.asp-dashboard-order-total {
    font-size: 0.8rem;
    white-space: nowrap;
}

.asp-dashboard-order-view {
    width: 34px;
    height: 34px;
    color: #0871c9;
    background: #fff;
    border: 1px solid #deebf5;
    font-size: 0.7rem;
    transition: all 0.2s ease;
}

.asp-dashboard-order-view:hover {
    color: #fff;
    background: #0871c9;
    border-color: #0871c9;
}

.asp-account-order-secondary-action {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.45rem 0.75rem !important;
    color: #475569 !important;
    border: 1px solid #dce8f2 !important;
    border-radius: 9px !important;
    background: #fff !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-decoration: none;
}

.asp-account-order-secondary-action:hover {
    color: #0871c9 !important;
    border-color: #bcd8ed !important;
    background: #f1f8fe !important;
}

.asp-account-order-secondary-action.cancel {
    color: #b91c1c !important;
}

.asp-account-order-secondary-action.cancel:hover {
    border-color: #fecaca !important;
    background: #fff1f1 !important;
}

.asp-dashboard-empty {
    background: #f8fbfe;
    border: 1px dashed #cdddea;
}

.asp-dashboard-empty-icon {
    width: 58px;
    height: 58px;
    color: #0871c9;
    background: #fff;
    box-shadow: 0 8px 18px rgba(8, 113, 201, 0.1);
    font-size: 1.25rem;
}

.asp-dashboard-action {
    color: inherit;
    background: #f9fbfd;
    border: 1px solid #edf1f5;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.asp-dashboard-action:hover {
    color: inherit;
    background: #fff;
    border-color: #cfe3f3;
    transform: translateX(-3px);
}

.asp-dashboard-action-icon {
    width: 44px;
    height: 44px;
    color: #0871c9;
    background: #eaf5fe;
}

.asp-dashboard-action strong {
    font-size: 0.82rem;
}

/* Account details form */
.asp-account-form-section {
    border: 1px solid #e7edf3;
    background: rgba(249, 251, 253, 0.78);
}

.asp-account-form-section h2 {
    padding-bottom: 0.85rem !important;
    color: #17202c;
    border-color: #e8eef4 !important;
    font-size: 0.9rem !important;
}

.asp-account-edit-form .form-group {
    padding: 0.15rem;
}

.asp-account-edit-form .form-label {
    display: block;
    margin-bottom: 0.45rem !important;
    color: #17202c;
}

.asp-account-edit-form .form-group:focus-within .form-label {
    color: #0f766e !important;
}

.asp-account-edit-form .form-control {
    min-height: 50px;
    padding: 0.7rem 0.95rem;
    color: #1e293b;
    border: 1px solid #e2ebf2;
    border-radius: 13px !important;
    background: #f7fafc;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.025);
    font-size: 0.82rem;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.asp-account-edit-form .form-control:hover {
    border-color: #c5d9e7;
    background: #fff;
}

.asp-account-edit-form .form-control:focus {
    border-color: #5eead4;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1), 0 5px 15px rgba(15, 118, 110, 0.08);
    transform: translateY(-1px);
}

.asp-account-edit-form .form-control::placeholder {
    color: #a8b6c4;
}

.asp-account-edit-form button[name='save_account_details'] {
    min-height: 46px;
    border: 0;
    background: linear-gradient(135deg, #0f9f8b, #0f766e);
    box-shadow: 0 9px 20px rgba(15, 118, 110, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    color: #fff;
    font-weight: 500 !important;
}

.asp-account-edit-form button[name='save_account_details']:hover {
    border-color: transparent;
    background: linear-gradient(135deg, #0d8f7e, #0b625d);
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.27);
    transform: translateY(-2px);
    color: #fff;
}


.asp-downloads-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.asp-download-row {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 1fr) auto;
    align-items: center;
    gap: 1.25rem;
    min-width: 0;
    padding: 0.9rem 1rem;
    border: 1px solid #e6edf4;
    border-radius: 16px;
    background: linear-gradient(120deg, #ffffff 0%, #f8fbfe 100%);
    box-shadow: 0 5px 16px rgba(15, 23, 42, 0.035);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.asp-download-row:hover {
    border-color: #cfe3f3;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.075);
    transform: translateY(-2px);
}

.asp-download-product {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
}

.asp-download-product > div,
.asp-download-product .min-w-0 {
    min-width: 0;
}

.asp-download-product-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: #0871c9;
    border-radius: 12px;
    background: #eaf5fe;
    font-size: 1rem;
}

.asp-download-product-name {
    overflow: hidden;
    margin: 0 0 0.25rem;
    color: #17202c;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.asp-download-product-name a {
    color: inherit;
    text-decoration: none;
}

.asp-download-product-name a:hover {
    color: #0871c9;
}

.asp-download-file-name {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    overflow: hidden;
    color: #94a3b8;
    font-size: 0.7rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.asp-download-file-name i {
    color: #16a36a;
}

.asp-download-details {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    min-width: 0;
}

.asp-download-detail {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    color: #475569;
    font-size: 0.75rem;
    white-space: nowrap;
}

.asp-download-detail > i {
    color: #0871c9;
    font-size: 0.85rem;
}

.asp-download-detail > span {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.asp-download-detail small {
    color: #94a3b8;
    font-size: 0.65rem;
}

.asp-download-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 104px;
    padding: 0.6rem 0.85rem;
    color: #fff;
    border-radius: 10px;
    background: #16804a;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.asp-download-action:hover {
    color: #fff;
    background: #126b3e;
    transform: translateY(-1px);
}


/* Status Badges */
.badge.status-completed {
    background-color: #eaf8ef !important;
    color: #15803d !important;
    border-color: #bbf7d0 !important;
}

.badge.status-processing,
.badge.status-on-hold {
    background-color: #fff4d9 !important;
    color: #c47c00 !important;
    border-color: #fef08a !important;
}

.badge.status-pending {
    background-color: #f1f5f9 !important;
    color: #64748b !important;
    border-color: #e2e8f0 !important;
}

.badge.status-cancelled,
.badge.status-failed,
.badge.status-refunded {
    background-color: #feecec !important;
    color: #b91c1c !important;
    border-color: #fecaca !important;
}

/* Card Hovers */
.asp-account-stat:hover,
.asp-account-quick-action:hover,
.asp-download-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.07) !important;
}

/* Auth / Logged Out View */
.asp-account-logged-out {
    max-width: none;
}

.asp-logged-out-message {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    border: 1px solid rgba(8, 113, 201, 0.12);
    background: radial-gradient(circle at 100% 0, rgba(255, 181, 31, 0.16), transparent 30%),
    linear-gradient(145deg, #f8fbff 0%, #fff 58%, #fffaf0 100%);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.asp-logged-out-message::before {
    content: '';
    position: absolute;
    bottom: -75px;
    left: -65px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(8, 113, 201, 0.055);
    pointer-events: none;
}

.asp-logged-out-message > * {
    position: relative;
    z-index: 1;
}

.asp-logged-out-message-icon {
    width: 62px;
    height: 62px;
    color: #fff;
    background: linear-gradient(135deg, #0871c9, #075aa0);
    box-shadow: 0 9px 20px rgba(8, 113, 201, 0.2);
    font-size: 1.35rem;
}

.asp-logged-out-message p {
    max-width: 720px;
    font-size: 0.84rem;
    line-height: 1.9;
}

.asp-auth-container #aspAuthTabs .nav-link {
    color: #64748b;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.asp-auth-container #aspAuthTabs .nav-link.active {
    background-color: #ffffff;
    color: var(--bs-primary, #0871c9);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.asp-auth-card .form-control:focus {
    border-color: var(--bs-primary, #0871c9);
    box-shadow: 0 0 0 0.25rem rgba(8, 113, 201, 0.15);
}

/* View order */
.asp-order-back {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    color: #64748b;
    border: 1px solid #dce8f2;
    background: #fff;
    font-size: 0.75rem;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.asp-order-back:hover {
    color: #fff;
    border-color: #0871c9;
    background: #0871c9;
    transform: translateX(2px);
}

.asp-payment-reference {
    color: #166534;
    border: 1px solid #bfe8cf;
    background: linear-gradient(135deg, #effbf4, #f7fdf9);
    font-size: 0.8rem;
    font-weight: 700;
}

.asp-payment-reference > span > i {
    color: #22a35a;
    font-size: 1rem;
}

.asp-payment-reference-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.35rem 0.75rem;
    color: #14532d;
    border: 1px dashed #9ed8b5;
    border-radius: 9px;
    background: #fff;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.asp-order-notes {
    border: 1px solid #f3e4bd;
    background: #fffaf0;
}

.asp-order-section-title {
    color: #7c5a10;
    font-size: 0.85rem;
}

.asp-order-section-title i {
    color: #d99a12;
}

.asp-order-note {
    color: #475569;
    border: 1px solid #eee5d2;
    background: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    line-height: 1.8;
}

.asp-order-note time {
    font-size: 0.68rem;
}

.asp-order-note p:last-child {
    margin-bottom: 0;
}

.asp-order-details-content .woocommerce-order-details {
    margin: 0;
    padding: 1rem;
    overflow-x: auto;
    border: 1px solid #e7edf3;
    border-radius: 14px;
    background: #f9fbfd;
}

.asp-order-details-content .woocommerce-order-details__title {
    margin: 0;
    padding-bottom: 0.85rem;
    color: #17202c;
    border-bottom: 1px solid #e7edf3;
    font-size: 0.9rem;
    font-weight: 700;
}

.woocommerce-order-received .woocommerce-order-details__title {
    font-size: 1.4rem;
}

.asp-order-details-content .woocommerce-table--order-details,
.asp-order-details-content .shop_table.order_details {
    min-width: 560px;
    margin-top: 0.85rem;
    background: #fff;
}

.asp-order-details-content .product-name a {
    color: #17202c;
    font-weight: 700;
    text-decoration: none;
}

.asp-order-details-content .product-name a:hover {
    color: #0871c9;
}

.asp-order-details-content .product-quantity {
    display: none !important;
}

.asp-order-details-content .woocommerce-table--order-details tfoot tr:last-child th,
.asp-order-details-content .woocommerce-table--order-details tfoot tr:last-child td,
.asp-order-details-content .shop_table.order_details tfoot tr:last-child th,
.asp-order-details-content .shop_table.order_details tfoot tr:last-child td {
    color: #0871c9;
    background: #eef7ff;
    font-weight: 800;
}

.asp-order-details-content .woocommerce-customer-details {
    display: none !important;
}

.asp-order-details-content .woocommerce-customer-details .woocommerce-column {
    border-color: #e7edf3;
    background: #f9fbfd;
}

/* WooCommerce Inner Tables Overrides */
.woocommerce-table--order-details,
.shop_table.order_details {
    width: 100%;
    margin-top: 1rem;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td,
.shop_table.order_details th,
.shop_table.order_details td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.875rem;
}

.woocommerce-table--order-details th,
.shop_table.order_details th {
    background-color: #f8fafc;
    font-weight: 700;
    color: #1e293b;
}

.woocommerce-customer-details {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.woocommerce-customer-details .woocommerce-column {
    padding: 1.25rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.woocommerce-customer-details .woocommerce-column__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.woocommerce-customer-details address {
    margin: 0;
    font-style: normal;
    font-size: 0.85rem;
    line-height: 1.8;
    color: #475569;
}

/* Order Pay / Pending Payment Form (#order_review) Base Styles */
#order_review {
    width: 100%;
}

#order_review .shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 1.25rem;
}

#order_review .shop_table th.product-quantity,
#order_review .shop_table th.product-total,
#order_review .shop_table td.product-quantity,
#order_review .shop_table td.product-subtotal {
    display: none !important;
}

#order_review .shop_table th.product-name,
#order_review .shop_table td.product-name {
    width: 100% !important;
    max-width: 100% !important;
}

#order_review .shop_table th,
#order_review .shop_table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.86rem;
}

#order_review .shop_table thead th {
    background-color: #f8fafc;
    font-weight: 700;
    color: #1e293b;
}

#order_review #payment {
    margin-top: 1.25rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

#order_review #payment ul.payment_methods {
    padding: 0;
    margin: 0 0 1rem;
    list-style: none;
}

#order_review #payment ul.payment_methods li {
    margin-bottom: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

#order_review #payment ul.payment_methods li label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    font-size: 0.88rem;
}

#order_review #payment div.payment_box {
    margin-top: 0.6rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.82rem;
    line-height: 1.6;
}

#order_review #payment div.payment_box::before {
    display: none;
}

#order_review #payment .woocommerce-terms-and-conditions-wrapper,
#order_review #payment .woocommerce-privacy-policy-text {
    font-size: 0.78rem;
    line-height: 1.65;
    color: #64748b;
    margin-top: 0.85rem;
}

#order_review #payment button#place_order,
#order_review #payment button[type="submit"] {
    width: 100%;
    min-height: 46px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, #15803d, #166534) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(21, 128, 61, 0.25) !important;
    margin-top: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#order_review #payment button#place_order:hover,
#order_review #payment button[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(21, 128, 61, 0.35) !important;
}


.tutorials-section .tutorials-list-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tutorials-section .tutorial-info-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    height: 100%;
    align-items: stretch;
}

.course-products-grid > [class*="col-"] {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex !important;
    flex-direction: column;
}


.course-products-grid .latest-product-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.course-products-grid .latest-product-card .lpc-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-products-grid.owl-carousel {
    display: block;
    margin-right: -12px;
    margin-left: -12px;
    width: auto;
}

.course-products-grid.owl-carousel .owl-stage {
    display: flex;
}

.course-products-grid.owl-carousel .owl-item {
    display: flex;
}

.course-products-grid.owl-carousel .owl-item > [class*="col-"] {
    width: 100%;
}

.course-products-grid.owl-theme .owl-dots {
    margin-top: 24px;
}

.course-products-grid.owl-theme .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px;
    background: #c9d7e8;
    transition: width .25s ease, background-color .25s ease;
}

.course-products-grid.owl-theme .owl-dot.active span {
    width: 24px;
    background: var(--primary-blue);
}


.scf-form-group label {
    color: #000 !important;
}


/* HAMBURGER BUTTON & OFFCANVAS SLIDING MENU */

/* Base Offcanvas Panel Styles */
.afzone-offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.afzone-offcanvas-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

body.offcanvas-open {
    overflow: hidden !important;
}

.afzone-offcanvas-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    background-color: #ffffff;
    z-index: 99999;
    box-shadow: -10px 0 35px rgba(15, 23, 42, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.afzone-offcanvas-panel.is-open {
    transform: translateX(0);
}

.nav-hamburger-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 12px;
    background-color: var(--secondary-bg, #f1f5f9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--primary-text, #0f172a);
    font-size: 1.2rem;
    transition: all 0.25s ease;
}

.nav-hamburger-btn:hover,
.nav-hamburger-btn:focus {
    background-color: var(--primary-blue, #0871c9);
    color: #ffffff;
    border-color: var(--primary-blue, #0871c9);
}

.afzone-offcanvas-header {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    background-color: #ffffff;
}

.afzone-offcanvas-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--secondary-bg, #f8fafc);
    border: none;
    color: var(--neutral-grey, #64748b);
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.afzone-offcanvas-close-btn:hover {
    background-color: #fee2e2;
    color: #ef4444;
}

.afzone-offcanvas-body {
    padding: 20px 16px;
    overflow-y: auto;
    flex-grow: 1;
}

.afzone-mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.afzone-mobile-menu .mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--primary-text, #1e293b);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.afzone-mobile-menu .mobile-menu-link:hover,
.afzone-mobile-menu .mobile-menu-link:focus {
    background-color: #f1f5f9;
    color: var(--primary-blue, #0871c9);
}

.mobile-menu-link-wrapper {
    padding: 2px 4px 2px 12px;
    border-radius: 12px;
    transition: background-color 0.2s ease;
}

.has-mobile-submenu.is-open .mobile-menu-link-wrapper {
    background-color: #f1f5f9;
}

.mobile-submenu-arrow-btn {
    background: none;
    border: none;
    color: var(--neutral-grey, #64748b);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.has-mobile-submenu.is-open .mobile-submenu-arrow-btn {
    transform: rotate(180deg);
    color: var(--primary-blue, #0871c9);
}

.mobile-submenu {
    list-style: none;
    padding: 6px 16px 6px 0;
    margin: 6px 12px 0 0;
    border-right: 2px solid #e2e8f0;
    display: none;
}

.mobile-submenu li a {
    display: block;
    padding: 8px 12px;
    font-size: 0.88rem;
    color: var(--neutral-grey, #64748b);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-submenu li a:hover {
    color: var(--primary-blue, #0871c9);
    background-color: rgba(8, 113, 201, 0.06);
}


/* Responsive Adjustment */


@media (max-width: 400px) {
    .blog-section .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .comment-form-rating,
    .asp-reviews-body .comment-form-rating {
        align-items: center !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        padding: 0.85rem 1rem !important;
    }
}

@media (max-width: 480px) {
    .site-footer__contact-item {
        flex-direction: column;
        gap: 4px;
    }

    .site-footer__contact-label {
        min-width: auto;
    }
}

@media (min-width: 576px) {
    .site-footer__brand-card {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 20px !important;
    }

    .site-footer__brand-details {
        flex-shrink: 0 !important;
    }

    .site-footer__brand-description {
        border-top: none !important;
        border-right: 1px solid rgba(108, 120, 136, 0.12) !important;
        padding-top: 0 !important;
        padding-right: 18px !important;
        width: auto !important;
        flex: 1 !important;
    }

    .site-footer__brand-description p {
        font-size: 0.86rem !important;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 575.98px) {

    .afz-ticket-form label {
        font-size: 0.9rem;
    }

    .asp-content-body ul {
        padding-right: 15px;
    }

    .asp-content-body h2::before {
        display: none;
    }

    .asp-content-body h3::before {
        display: none;
    }

    .asp-content-body h2 {
        font-size: 1.15rem;
    }

    .asp-content-body h3 {
        font-size: 1.05rem;
    }


    .asp-post-content {
        font-size: 0.95rem;
    }

    .asp-content-body {
        font-size: 0.9rem;
    }

    .asp-short-desc {
        font-size: 0.9rem;
    }

    .asp-title {
        font-size: 1.1rem;
    }

    .asp-nav-pills .nav-link {
        font-size: 0.9rem;
    }

    .site-footer__brand-description p {
        font-size: 0.85rem;
        line-height: 1.80;
    }

    .site-footer__badge-card {
        padding: 12px 15px;
    }

    .site-footer__bottom {
        font-size: 0.8rem;
    }

    .site-footer__social a {
        width: 40px;
        height: 40px;
    }

    .site-footer__badges {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: -20px;
    }

    .btn-header-auth span,
    .btn-header-auth .submenu-arrow {
        display: none !important;
    }

    .btn-header-auth {
        padding: 0 !important;
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        border-radius: 12px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
    }

    .btn-header-auth i {
        margin: 0 !important;
        font-size: 1.15rem !important;
    }

    .site-footer__brand-card {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
    }

    .site-footer__brand-description {
        border-right: none !important;
        border-top: 1px solid rgba(108, 120, 136, 0.12) !important;
        padding-right: 0 !important;
        padding-top: 20px !important;
        width: 100% !important;
        text-align: center !important;
    }

    .site-footer__top-row,
    .site-footer__middle-row,
    .site-footer__menus > .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .site-footer__contact-card:empty {
        display: none !important;
    }

    .site-footer__menus .site-footer__column:nth-of-type(1),
    .site-footer__menus .site-footer__column:nth-of-type(3) {
        display: none !important;
    }

    .site-footer__menus .site-footer__column:nth-of-type(2) {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .site-footer__menus {
        padding-right: 0 !important;
    }

    .site-footer__menus .site-footer__column ul {
        padding-right: 0 !important;
        margin-right: 0 !important;
    }

    .blog-section .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    #blog-carousel .blog-card {
        margin: 0 !important;
        width: 100% !important;
    }

    .asp-shop-container {
        overflow-x: clip !important;
        max-width: 100% !important;
    }

    .asp-shop-box {
        padding: 12px !important;
        overflow: hidden !important;
    }

    .asp-shop-filters {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 10px !important;
        width: 100% !important;
    }

    .asp-search-field,
    .asp-category-field,
    .asp-shop-result-count {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }

    .asp-shop-result-count {
        justify-content: center !important;
        min-width: 0 !important;
    }

    .asp-breadcrumb .breadcrumb {
        flex-wrap: wrap !important;
        padding: 10px 14px !important;
    }

    .asp-account-page {
        overflow-x: clip !important;
        max-width: 100% !important;
    }

    .asp-account-content {
        padding: 12px !important;
        border-radius: 16px !important;
        overflow: hidden !important;
    }

    .asp-account-sidebar {
        padding: 12px !important;
        border-radius: 16px !important;
    }

    .asp-dashboard-hero {
        padding: 14px 16px !important;
        border-radius: 14px !important;
        margin-bottom: 14px !important;
    }

    .asp-dashboard-title {
        font-size: 1.05rem !important;
        margin-bottom: 4px !important;
    }

    .asp-dashboard-intro {
        font-size: 0.76rem !important;
        line-height: 1.6 !important;
    }

    .asp-dashboard-stats {
        --bs-gutter-x: 8px !important;
        --bs-gutter-y: 8px !important;
    }

    .asp-dashboard-stat {
        min-height: 0 !important;
        padding: 10px 10px !important;
        border-radius: 14px !important;
        gap: 8px !important;
    }

    .asp-dashboard-stat-icon {
        width: 36px !important;
        height: 36px !important;
        flex: 0 0 36px !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
    }

    .asp-dashboard-stat-value {
        font-size: 1.05rem !important;
        margin-bottom: 2px !important;
    }

    .asp-dashboard-stat-label {
        font-size: 0.66rem !important;
        line-height: 1.35 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        word-break: break-word !important;
    }

    .asp-dashboard-stat-arrow {
        display: none !important;
    }

    .asp-dashboard-card {
        padding: 12px !important;
        border-radius: 14px !important;
    }

    .asp-dashboard-heading-icon {
        width: 34px !important;
        height: 34px !important;
        flex: 0 0 34px !important;
        font-size: 0.88rem !important;
        border-radius: 8px !important;
    }

    .asp-dashboard-link-btn {
        padding: 5px 10px !important;
        font-size: 0.72rem !important;
        border-radius: 8px !important;
    }

    .asp-dashboard-order {
        padding: 10px 12px !important;
        border-radius: 12px !important;
    }

    .asp-dashboard-order .row {
        --bs-gutter-x: 6px !important;
        --bs-gutter-y: 6px !important;
        align-items: center !important;
    }

    .asp-dashboard-order-date {
        font-size: 0.68rem !important;
    }

    .asp-dashboard-status {
        padding: 0.35rem 0.55rem !important;
        font-size: 0.66rem !important;
    }

    .asp-dashboard-order-total {
        font-size: 0.78rem !important;
        white-space: nowrap !important;
    }

    .asp-dashboard-order-view {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.68rem !important;
    }

    .asp-account-downloads-container {
        overflow-x: clip !important;
        max-width: 100% !important;
    }

    .asp-downloads-list {
        gap: 0.85rem !important;
    }

    .asp-download-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.85rem !important;
        padding: 1rem !important;
        border-radius: 16px !important;
    }

    .asp-download-product {
        grid-column: auto !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }

    .asp-download-product-icon {
        width: 40px !important;
        height: 40px !important;
        flex: 0 0 40px !important;
        border-radius: 10px !important;
        font-size: 0.95rem !important;
    }

    .asp-download-product-name {
        white-space: normal !important;
        word-break: break-word !important;
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.2rem !important;
    }

    .asp-download-file-name {
        white-space: normal !important;
        word-break: break-word !important;
        font-size: 0.7rem !important;
    }

    .asp-download-details {
        grid-column: auto !important;
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 0.6rem 1.25rem !important;
        padding-top: 0.6rem !important;
        border-top: 1px dashed #e2e8f0 !important;
    }

    .asp-download-detail {
        white-space: nowrap !important;
        font-size: 0.72rem !important;
    }

    .asp-download-action {
        grid-column: auto !important;
        grid-row: auto !important;
        width: 100% !important;
        min-height: 42px !important;
        padding: 0.65rem 1rem !important;
        border-radius: 10px !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
    }

    .afz-support-account {
        overflow-x: clip !important;
        max-width: 100% !important;
    }

    .afz-support-account .border-bottom.flex-wrap {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 0.75rem !important;
        margin-bottom: 1rem !important;
        gap: 0.5rem !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .afz-support-account .border-bottom.flex-wrap::-webkit-scrollbar {
        display: none !important;
    }

    .afz-support-account .border-bottom.flex-wrap .btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        font-size: 0.72rem !important;
        padding: 0.35rem 0.75rem !important;
    }

    .afz-support-ticket-card {
        padding: 0.85rem 1rem !important;
        border-radius: 16px !important;
        margin-bottom: 0.75rem !important;
    }

    .afz-support-ticket-card > .d-flex {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
    }

    .afz-ticket-card-start {
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }

    .afz-ticket-card-icon {
        width: 38px !important;
        height: 38px !important;
        flex: 0 0 38px !important;
        font-size: 0.95rem !important;
        border-radius: 10px !important;
    }

    .afz-ticket-card-title {
        white-space: normal !important;
        word-break: break-word !important;
        font-size: 0.88rem !important;
        font-weight: 700 !important;
        line-height: 1.5 !important;
        margin-bottom: 0.35rem !important;
    }

    .afz-ticket-card-meta {
        font-size: 0.72rem !important;
        gap: 0.4rem 0.65rem !important;
        display: flex !important;
        flex-wrap: wrap !important;
        color: #64748b !important;
    }

    .afz-ticket-card-meta span {
        display: inline-flex !important;
        align-items: center !important;
        white-space: nowrap !important;
    }

    .afz-ticket-card-meta .badge {
        padding: 0.35rem 0.55rem !important;
        font-size: 0.66rem !important;
    }

    .afz-support-ticket-card .ms-auto {
        margin-left: 0 !important;
        width: 100% !important;
        padding-top: 0.6rem !important;
        border-top: 1px dashed #e2e8f0 !important;
    }

    .afz-ticket-btn-green {
        width: 100% !important;
        justify-content: center !important;
        min-height: 40px !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.82rem !important;
        border-radius: 10px !important;
    }

    .afz-support-account .border-bottom.d-flex,
    .afz-ticket-list .border-bottom.d-flex {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }

    .afz-support-account .border-bottom.d-flex > div:last-child,
    .afz-ticket-list .border-bottom.d-flex > div:last-child {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    #afz-ticket-conversation-title {
        font-size: 1.05rem !important;
        line-height: 1.5 !important;
        word-break: break-word !important;
    }


    .afz-admin-status-bar {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 0.85rem !important;
        gap: 0.75rem !important;
    }

    .afz-quick-status-form {
        width: 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.5rem !important;
    }

    .afz-quick-status-form select {
        width: 100% !important;
        min-width: 0 !important;
    }

    .afz-quick-status-form button {
        width: 100% !important;
        justify-content: center !important;
    }

    .afz-ticket-message-card {
        padding: 0.85rem 0.95rem !important;
        border-radius: 14px !important;
        margin-bottom: 0.75rem !important;
    }

    .afz-msg-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.35rem !important;
        font-size: 0.8rem !important;
    }

    .afz-msg-author {
        font-size: 0.88rem !important;
    }

    .afz-msg-date {
        font-size: 0.75rem !important;
    }

    .afz-msg-body {
        font-size: 0.88rem !important;
        line-height: 1.65 !important;
        word-break: break-word !important;
    }

    .afz-reply-card {
        padding: 0.95rem !important;
        border-radius: 16px !important;
    }

    .afz-reply-action-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.65rem !important;
    }

    .afz-reply-action-row > div,
    .afz-reply-action-row label,
    .afz-reply-action-row button {
        width: 100% !important;
        justify-content: center !important;
    }

    .afz-ticket-form input,
    .afz-ticket-form select,
    .afz-ticket-form textarea {
        font-size: 0.85rem !important;
        padding: 8px 12px !important;
        border-radius: 10px !important;
    }

    .afcm-courses,
    .afcm-course-view {
        overflow-x: clip !important;
        max-width: 100% !important;
    }

    .afcm-course-view .asp-dashboard-card > header {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.75rem !important;
        padding-bottom: 0.85rem !important;
    }

    .afcm-course-view #afcm-course-title {
        font-size: 1.05rem !important;
        white-space: normal !important;
        word-break: break-word !important;
        line-height: 1.5 !important;
    }

    .afcm-course-description {
        font-size: 0.85rem !important;
        line-height: 1.7 !important;
        margin-bottom: 1rem !important;
        color: #475569 !important;
    }

    .afcm-sections-list {
        display: grid !important;
        gap: 10px !important;
    }

    .afcm-section-item {
        border: 1px solid #e2e8f0 !important;
        border-radius: 14px !important;
        overflow: hidden !important;
    }

    .afcm-section-item summary {
        padding: 12px 14px !important;
        font-size: 0.92rem !important;
        font-weight: 700 !important;
        color: #1e293b !important;
        background: #f8fafc !important;
        border-radius: 14px !important;
        cursor: pointer !important;
    }

    .afcm-lessons-list {
        padding: 0.25rem 0 !important;
        background: #ffffff !important;
        border-top: 1px solid #e2e8f0 !important;
    }

    .afcm-lesson-item {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px !important;
        padding: 10px 14px !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }

    .afcm-lesson-item:last-child {
        border-bottom: 0 !important;
    }

    .afcm-lesson-item > span:first-child {
        font-size: 0.86rem !important;
        font-weight: 600 !important;
        color: #334155 !important;
        line-height: 1.5 !important;
        word-break: break-word !important;
    }

    .afcm-download {
        width: 100% !important;
        min-height: 38px !important;
        padding: 0.55rem 0.85rem !important;
        border-radius: 10px !important;
        font-size: 0.8rem !important;
        justify-content: center !important;
    }

    .afcm-unavailable {
        font-size: 0.78rem !important;
        padding: 6px 10px !important;
        background: #f1f5f9 !important;
        border-radius: 8px !important;
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }

    .asp-account-edit-container {
        overflow-x: clip !important;
        max-width: 100% !important;
    }

    .asp-account-form-section {
        padding: 0.85rem 1rem !important;
        border-radius: 14px !important;
        background: #fafcfe !important;
        border: 1px solid #eef3f8 !important;
    }

    .asp-account-form-section h2 {
        font-size: 0.88rem !important;
        margin-bottom: 0.75rem !important;
        padding-bottom: 0.5rem !important;
    }

    .asp-account-edit-form .form-label {
        font-size: 0.78rem !important;
        margin-bottom: 0.3rem !important;
    }

    .asp-account-edit-form .form-control {
        min-height: 42px !important;
        padding: 8px 12px !important;
        font-size: 0.85rem !important;
        border-radius: 10px !important;
    }

    #account-phone-help {
        font-size: 0.7rem !important;
        line-height: 1.5 !important;
        margin-top: 0.25rem !important;
    }

    .asp-account-edit-form .d-flex.justify-content-end {
        width: 100% !important;
        margin-top: 0.5rem !important;
    }

    .asp-account-edit-form button[name='save_account_details'] {
        width: 100% !important;
        min-height: 44px !important;
        justify-content: center !important;
        font-size: 0.88rem !important;
        border-radius: 10px !important;
    }

    #order_review .shop_table thead {
        display: none !important;
    }

    #order_review .shop_table tbody tr {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 12px 14px !important;
        border-bottom: 1px solid #edf1f5 !important;
        gap: 6px !important;
    }

    #order_review .shop_table tbody td {
        padding: 0 !important;
        border: 0 !important;
        font-size: 0.85rem !important;
    }

    #order_review .shop_table tbody td.product-name {
        font-weight: 700 !important;
        color: #1e293b !important;
        line-height: 1.5 !important;
        word-break: break-word !important;
    }

    #order_review .shop_table tbody td.product-quantity,
    #order_review .shop_table tbody td.product-subtotal {
        display: inline-flex !important;
        align-items: center !important;
    }

    #order_review .shop_table tbody td.product-subtotal {
        font-weight: 700 !important;
        color: #0871c9 !important;
    }

    #order_review .shop_table tfoot tr {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 10px 14px !important;
        border-bottom: 1px solid #f1f5f9 !important;
        gap: 8px !important;
    }

    #order_review .shop_table tfoot th,
    #order_review .shop_table tfoot td {
        padding: 0 !important;
        border: 0 !important;
        font-size: 0.82rem !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    #order_review .shop_table tfoot th {
        font-weight: 600 !important;
        color: #475569 !important;
    }

    #order_review .shop_table tfoot td {
        font-weight: 700 !important;
        color: #1e293b !important;
        text-align: left !important;
    }

    #order_review #payment {
        padding: 0.85rem !important;
        border-radius: 14px !important;
    }

    .afzonefa-newsletter-title {
        font-size: 1.0rem !important;
    }

    .blog-card-excerpt {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .blog-meta-pill {
        font-size: 0.65rem;
    }

    .section-wrapper {
        padding: 5rem 1rem;
    }


    .btn-service-cta {
        font-size: 0.75rem;
    }

    .service-card-title {
        font-size: 1.05rem !important;
    }


    .services-section-wrapper {
        padding: 5rem 0 3rem 0;
    }

    .service-card-image {
        height: 100% !important;
        width: auto !important;
    }


    .service-card {
        padding: 0.95rem !important;
    }


    .services-carousel-container {
        padding: 0 15px 0 15px !important;
    }


    .btn-tutorials-outline {
        padding: 7px 15px;
    }

    .tutorial-info-card {
        padding: 1.0rem 1.2rem;
    }

    .afzonefa-newsletter-icon-wrap {
        margin-top: -80px !important;
    }

    .afzonefa-newsletter-icon {
        width: 85px !important;
        height: 85px !important;
    }

    .background-shadow-text {
        font-size: 3.6rem;
    }

    .btn-cta-primary,
    .btn-consult {
        padding: 10px 25px;
    }

    .asp-account-page {
        margin-top: 130px;
    }

    .asp-auth-hero {
        padding: 1.5rem 1rem !important;
    }

    .asp-auth-card {
        padding: 1.25rem !important;
    }

    .asp-account-page > .container {
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }

    .asp-account-sidebar,
    .asp-account-content {
        border-radius: 1rem !important;
    }

    .asp-account-profile {
        padding: 0.75rem !important;
    }

    .asp-account-avatar {
        width: 42px;
        height: 42px;
    }

    .asp-account-navigation .nav-link {
        padding: 0.7rem 0.85rem !important;
        font-size: 0.78rem;
    }

    .asp-dashboard-hero {
        padding: 1.5rem !important;
    }

    .asp-dashboard-intro {
        font-size: 0.8rem;
    }

    .asp-dashboard-stat {
        min-height: 94px;
        padding: 1rem !important;
    }

    .asp-dashboard-stat-icon {
        width: 46px;
        height: 46px;
    }

    .asp-dashboard-card {
        border-radius: 1rem !important;
    }

    .asp-dashboard-order-total {
        white-space: normal;
    }

    .asp-download-row {
        grid-template-columns: 1fr;
    }

    .asp-download-action {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
    }

    .asp-download-details {
        flex-wrap: wrap;
        gap: 0.75rem 1.25rem;
    }

    .asp-shop-container {
        margin-top: 155px;
    }

    .asp-shop-heading {
        align-items: start;
        flex-direction: column;
        gap: 10px;
    }

    .asp-shop-filters {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .asp-search-field {
        grid-column: auto;
    }

    .asp-shop-result-count {
        grid-column: auto;
    }

    .asp-shop-about {
        padding-top: 4rem !important;
    }

    .asp-single-container {
        padding-top: 1.5rem !important;
        padding-bottom: 2rem !important;
    }

    .asp-hero-box,
    .asp-video-section,
    .asp-tabs-section,
    .asp-details-box,
    .asp-purchase-box {
        padding: 1.25rem !important;
        border-radius: 14px !important;
    }

    .asp-image-wrapper {
        aspect-ratio: 16 / 10;
    }

    .asp-nav-pills .nav-link {
        width: 100%;
        justify-content: center;
    }

    .asp-nav-pills,
    .asp-nav-pills .nav-item {
        width: 100%;
    }

    .asp-content-body h2,
    .asp-content-body h3,
    .asp-content-body h4 {
        align-items: flex-start;
    }

    .asp-reviews-body .comment-form {
        grid-template-columns: 1fr;
    }

    .asp-reviews-body .comment-form > * {
        grid-column: 1;
    }

    .comment-form-rating .stars,
    p.stars,
    .asp-reviews-body .comment-form-rating .stars {
        min-height: 34px !important;
    }

    .comment-form-rating .stars span,
    p.stars span,
    .asp-reviews-body .comment-form-rating .stars span {
        min-height: 34px !important;
    }

    .comment-form-rating .stars a,
    p.stars a,
    .asp-reviews-body .comment-form-rating .stars a {
        width: 34px !important;
        height: 34px !important;
        flex: 0 0 30px !important;
    }

    .asp-reviews-body .comment_container {
        grid-template-columns: 40px minmax(0, 1fr);
        column-gap: 0.25rem;
        padding: 0.9rem;
    }

    .asp-reviews-body .comment_container .avatar {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .asp-reviews-body .comment_container .meta {
        min-height: 40px;
    }

    .asp-reviews-body .comment_container .comment-text {
        grid-template-columns: 1fr;
    }

    .asp-reviews-body .comment_container .meta,
    .asp-reviews-body .comment_container .star-rating,
    .asp-reviews-body .comment_container .description {
        grid-column: 1;
    }

    .asp-reviews-body .comment_container .star-rating {
        grid-row: 2;
    }

    .asp-reviews-body .comment_container .description {
        grid-row: 3;
    }

    .about-us-content.about-us-fullwidth {
        padding: 1.5rem 1.5rem 2.5rem 1.5rem !important;
    }

    .btn-toggle-about {
        padding: 8px 20px;
        font-size: 0.82rem;
    }

    .blog-card-img-wrap {
        padding: 16px 16px 0 16px;
    }

    .blog-card-content {
        padding: 16px;
    }

    .blog-card-title {
        font-size: 1.1rem;
    }

    .about-us-content {
        padding: 1.35rem;
        border-radius: 16px;
    }

    .about-us-visual {
        height: 260px;
        border-radius: 16px;
    }

    .about-us-content {
        height: 380px;
    }

    .about-us-description p {
        font-size: .90rem;
        line-height: 1.90;
    }

    .product-section {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .latest-product-card {
        padding: 8px;
        border-radius: 16px;
    }

    .lpc-image-zone {
        border-radius: 12px;
    }

    .lpc-discount-badge {
        top: 8px;
        right: 8px;
        padding: 3px 8px;
    }

    .lpc-cat-chip {
        top: 8px;
        left: 8px;
        padding: 4px 10px;
    }

    .lpc-body {
        padding: 12px 4px 4px 4px;
    }

    .lpc-cta-btn {
        padding: 6px 10px;
        font-size: 0.74rem;
        gap: 4px;
    }

    .asp-blog-filters {
        grid-template-columns: 1fr;
    }

    .blog-archive-card .blog-card-img,
    .blog-archive-card .blog-card-img-placeholder {
        height: 200px;
    }

    .af-checkout-shell {
        padding-top: 1rem;
        padding-bottom: 2.5rem;
        overflow-x: clip !important;
        max-width: 100% !important;
    }

    .asp-tabs-section {
        border-radius: 18px;
        padding: 1.5rem !important;
    }

    .af-checkout-progress {
        max-width: 100% !important;
        margin-bottom: 2rem !important;
        width: 100% !important;
    }

    .af-checkout-progress li {
        font-size: 0.72rem;
    }

    .af-checkout-progress li > span {
        width: 32px;
        height: 32px;
    }

    .af-checkout-progress li:not(:last-child)::after {
        top: 16px;
        right: calc(50% + 18px);
        width: calc(100% - 36px);
    }

    .af-checkout-shell .woocommerce-billing-fields__field-wrapper,
    .af-checkout-shell .woocommerce-shipping-fields__field-wrapper,
    .af-checkout-shell .woocommerce-additional-fields__field-wrapper {
        grid-template-columns: 1fr;
    }

    .af-checkout-shell .woocommerce-billing-fields__field-wrapper > *,
    .af-checkout-shell .woocommerce-shipping-fields__field-wrapper > *,
    .af-checkout-shell .woocommerce-additional-fields__field-wrapper > * {
        grid-column: 1;
    }

    .af-checkout-step-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .af-checkout-shell .af-checkout-next,
    .af-checkout-shell .woocommerce-checkout #place_order {
        width: 100%;
        min-width: 0;
    }

    .af-checkout-shell .shop_table,
    .af-checkout-shell .shop_table tbody,
    .af-checkout-shell .shop_table tfoot,
    .af-checkout-shell .shop_table tr,
    .af-checkout-shell .shop_table th,
    .af-checkout-shell .shop_table td {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .af-checkout-shell .cart_item {
        background: #f8fafc;
        border: 1px solid #edf2f7;
        border-radius: 14px;
        padding: 12px 14px !important;
        margin-bottom: 12px;
    }

    .af-checkout-shell .cart_item .product-name {
        padding: 0 0 10px 0 !important;
        border-bottom: 1px dashed #e2e8f0;
    }

    .af-checkout-product {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }

    .af-checkout-product-image {
        width: 48px !important;
        height: 48px !important;
        flex: 0 0 48px !important;
        border-radius: 10px !important;
    }

    .af-checkout-product__name {
        font-size: 0.84rem !important;
        line-height: 1.6 !important;
        word-break: break-word !important;
    }

    .af-checkout-shell .cart_item .product-total {
        padding: 10px 0 0 0 !important;
        border: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: right !important;
    }

    .af-checkout-shell .cart_item .product-total::before {
        content: 'قیمت محصول:';
        font-size: 0.8rem;
        color: #64748b;
        font-weight: 600;
    }

    .af-checkout-shell .shop_table tfoot tr {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 5px !important;
        border-bottom: 1px solid #edf2f7 !important;
    }

    .af-checkout-shell .shop_table tfoot th,
    .af-checkout-shell .shop_table tfoot td {
        width: auto !important;
        padding: 0 !important;
        border: 0 !important;
    }

    .af-custom-coupon-wrapper {
        padding: 1rem !important;
        border-radius: 14px !important;
    }

    .af-custom-coupon-wrapper .input-group {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
    }
}

@media (max-width: 767.98px) and (min-width: 576px) {

    .site-footer__menus .site-footer__column:nth-of-type(3) {
        display: none !important;
    }

    .site-footer__menus .site-footer__column:nth-of-type(1),
    .site-footer__menus .site-footer__column:nth-of-type(2) {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
        display: block !important;
    }

    .latest-products-grid.owl-carousel .owl-stage-outer,
    .course-products-grid.owl-carousel .owl-stage-outer {
        padding: 0 !important;
        overflow: hidden !important;
    }

    .latest-products-grid.owl-carousel .owl-item,
    .course-products-grid.owl-carousel .owl-item {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .latest-products-grid.owl-carousel .owl-item > *,
    .course-products-grid.owl-carousel .owl-item > * {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }


    .site-footer__menus {
        margin-top: 60px;
    }


    .site-footer__brand-card {
        padding: 12px 20px;
    }


    .site-footer__social a {
        width: 40px;
        height: 40px;
    }


    .site-footer__badges {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: -20px;
    }


    .about-us-description p {
        font-size: 0.94rem;
    }

    .service-card-title {
        font-size: 1.20rem;
    }


    .tutorials-section {
        padding-top: 250px;
    }

    .btn-cta-primary,
    .btn-consult {
        padding: 12px 25px;
    }

    .brand-logo-slider {
        margin-top: -95px;
    }

    .brand-logo-slider {
        padding: 0 56px;
    }
}

@media (max-width: 767.98px) {

    .site-footer__bottom {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        justify-content: center !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .site-footer__bottom-left {
        flex-direction: column;
        gap: 10px;
    }

    .asp-download-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.8rem 1rem;
    }

    .asp-download-product,
    .asp-download-details {
        grid-column: 1;
    }

    .asp-download-action {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .asp-download-details {
        justify-content: flex-start;
    }

    .services-carousel-container {
        height: 520px;
        padding: 0 15px;
        margin-bottom: 50px;
    }

    .service-card {
        padding: 1.5rem;
        flex-direction: column-reverse;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .service-card-info {
        padding-left: 0;
        text-align: center;
    }

    .service-card-desc {
        text-align: center;
        font-size: 0.80rem;
    }

    .service-card-image {
        width: auto;
        height: 100px;
        border-radius: 20px;
        padding: 8px;
    }

    .service-card-image img {
        border-radius: 12px;
    }

    .service-card.prev {
        transform: translate(-50%, calc(-50% - 145px)) scale(0.84);
    }

    .service-card.next {
        transform: translate(-50%, calc(-50% + 145px)) scale(0.84);
    }


    .service-card.prev {
        transform: translate(-50%, calc(-50% - 85px)) scale(0.86) !important;
    }

    .service-card.next {
        transform: translate(-50%, calc(-50% + 85px)) scale(0.86) !important;
    }

    .service-card.hidden-top {
        transform: translate(-50%, calc(-50% - 150px)) scale(0.75) !important;
    }

    .service-card.hidden-bottom {
        transform: translate(-50%, calc(-50% + 150px)) scale(0.75) !important;
    }


    .services-carousel-controls {
        top: auto !important;
        bottom: -50px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        flex-direction: row !important;
        gap: 16px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 20 !important;
    }

    .control-btn {
        width: 40px !important;
        height: 40px !important;
    }

    .woocommerce-billing-fields__field-wrapper,
    .woocommerce-shipping-fields__field-wrapper,
    .woocommerce-additional-fields__field-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    .af-checkout-shell .form-row-first,
    .af-checkout-shell .form-row-last,
    .af-checkout-shell .form-row-wide {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }

    .main-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }


    .brand-logo-placeholder {
        min-width: 105px;
        font-size: 1.45rem;
    }

    .brand-logo-slider .owl-nav button.owl-prev {
        right: 16px;
    }

    .brand-logo-slider .owl-nav button.owl-next {
        left: 16px;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .asp-download-row {
        grid-template-columns: minmax(0, 1fr) auto auto !important;
        gap: 0.85rem 1rem !important;
        padding: 0.85rem 1rem !important;
    }

    .asp-download-product-name {
        font-size: 0.85rem !important;
        white-space: normal !important;
        word-break: break-word !important;
        line-height: 1.45 !important;
    }
}

@media (max-width: 991.98px) and (min-width: 768px) {

    .site-footer__middle-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .site-footer__middle-row > [class*="col-"]:first-child {
        width: 66.666667% !important;
        max-width: 66.666667% !important;
        flex: 0 0 66.666667% !important;
    }

    .site-footer__middle-row > [class*="col-"]:last-child {
        width: 33.333333% !important;
        max-width: 33.333333% !important;
        flex: 0 0 33.333333% !important;
    }

    .site-footer__bottom {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: right !important;
        gap: 16px !important;
    }

    .site-footer__bottom-left {
        flex-direction: row !important;
        gap: 16px !important;
    }

    .asp-title {
        font-size: 1.4rem;
    }

    .site-footer__badge-card {
        flex-direction: row !important;
        width: auto !important;
        padding: 10px 20px !important;
        border-radius: 28px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .about-us-content.about-us-fullwidth {
        padding: 2.5rem 2.5rem 3.5rem 2.5rem !important;
    }


    .site-footer__badges {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: -30px;
    }

    .afzonefa-newsletter-icon-wrap {
        margin-top: -40px !important;
    }


    .afzonefa-newsletter-icon {
        width: 95px !important;
        height: 95px !important;
    }

}

@media (max-width: 991.98px) {

    .hero-title {
        text-align: center;
    }

    .hero-image-wrap {
        display: none !important;
    }

    .header-section .col-lg-7 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .nav-section {
        height: auto;
        min-height: 64px;
        top: 12px;
        width: calc(100% - 24px);
        padding: 8px 16px !important;
    }

    .site-brand {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .site-brand .logo {
        width: 44px;
    }

    .site-brand .site-main-title {
        font-size: 1.2rem;
    }

    .afzonefa-newsletter-banner {
        position: relative !important;
        padding: 35px 24px 30px !important;
    }

    .afzonefa-newsletter-inner {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .afzonefa-newsletter-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .afzonefa-newsletter-title,
    .afzonefa-newsletter-subtitle {
        text-align: center !important;
    }


    .afzonefa-newsletter-form-wrap {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
    }

    #afzonefa-newsletter-form {
        justify-content: center !important;
        width: 100% !important;
    }

    .afzonefa-newsletter-input {
        width: 260px !important;
    }


    .submenu {
        right: 50%;
        transform: translate(50%, 8px);
    }

    .has-submenu:hover .submenu,
    .has-submenu:focus-within .submenu {
        transform: translate(50%, 0);
    }

    .user-panel-submenu {
        right: auto !important;
        left: 0 !important;
        transform: translateY(8px) !important;
    }

    .header-user-panel:hover .user-panel-submenu,
    .header-user-panel:focus-within .user-panel-submenu,
    .header-user-panel.is-open .user-panel-submenu {
        transform: translateY(0) !important;
    }

    .course-products-grid {
        display: block;
        margin-right: -12px;
        margin-left: -12px;
        width: auto;
    }

    .asp-account-page {
        margin-top: 110px;
    }

    .asp-account-sidebar-col {
        margin-bottom: 1rem;
    }

    .asp-account-navigation {
        width: 100%;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
    }

    .asp-account-navigation::-webkit-scrollbar {
        display: none;
    }

    .asp-account-navigation .nav-item,
    .asp-account-navigation .nav-link {
        width: auto;
    }

    .asp-account-navigation .nav-link {
        background-color: #f8fafc !important;
        border: 1px solid #edf1f5;
    }

    .asp-account-navigation .nav-link:hover,
    .asp-account-navigation .nav-link.active {
        background-color: #eef7ff !important;
    }

    .asp-account-navigation .nav-link.active {
        box-shadow: 0 5px 14px rgba(8, 113, 201, 0.08);
    }

    .asp-account-navigation .asp-account-nav-arrow {
        display: none;
    }

    .asp-account-logout {
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-top: 0;
    }

    .asp-single-post-container .asp-post-sidebar-column,
    .asp-single-page-container .asp-page-sidebar-column,
    .asp-single-product-container .asp-product-sidebar-column {
        position: static;
        top: auto;
    }

    .asp-sticky-sidebar {
        position: static !important;
        top: auto !important;
    }


    .blog-card {
        margin: 0;
    }

    .blog-card-horizontal {
        height: auto;
    }

    .site-footer {
        margin-top: 70px;
        overflow-x: clip !important;
        max-width: 100% !important;
    }

    .site-footer::before,
    .site-footer::after {
        display: none;
    }

    .site-footer__inner {
        padding: 0 0 24px;
        border-radius: 28px 28px 0 0;
        overflow-x: clip !important;
        max-width: 100% !important;
    }

    .site-footer__container {
        padding: 32px 20px 0;
        max-width: 100% !important;
        overflow-x: clip !important;
    }

    .site-footer__top-row {
        flex-direction: column-reverse;
        align-items: center;
    }

    .site-footer__menus {
        width: 100%;
    }

    .site-footer__menus > .row {
        --bs-gutter-y: 28px;
    }


    .site-footer__social {
        flex-direction: row !important;
        gap: 12px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .site-footer__middle-row {
        --bs-gutter-y: 20px;
    }


    .site-footer__bottom-sep {
        display: none;
    }

    .about-us-layout {
        direction: rtl;
    }

    .about-us-content,
    .about-us-visual {
        height: auto;
        min-height: 0;
    }

    .about-us-visual {
        height: 320px;
    }

    .about-us-content {
        height: 360px;
    }

    .about-us-description {
        padding-left: 0;
        overflow-y: auto;
    }

    .services-carousel-container {
        max-width: 100%;
        padding: 0 60px 0 15px;
    }

    .latest-products-grid {
        display: block;

    }

    .asp-shop-container {
        margin-top: 135px;
    }

    .asp-shop-filters {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .asp-search-field {
        grid-column: 1 / -1;
    }

    .asp-shop-result-count {
        grid-column: auto;
    }

    .af-checkout-progress {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 1199.98px) and (min-width: 992px) {

    .asp-download-row {
        grid-template-columns: minmax(0, 1fr) auto auto !important;
        gap: 0.85rem 1.1rem !important;
        padding: 0.85rem 1rem !important;
    }

    .asp-download-product-name {
        font-size: 0.86rem !important;
        white-space: normal !important;
        word-break: break-word !important;
        line-height: 1.45 !important;
    }

    .asp-download-details {
        gap: 0.65rem 1rem !important;
    }

    .asp-download-detail {
        font-size: 0.72rem !important;
        gap: 0.35rem !important;
    }

    .asp-download-action {
        min-width: 92px !important;
        padding: 0.55rem 0.75rem !important;
        font-size: 0.75rem !important;
    }

    .afzonefa-newsletter-icon {
        width: 105px !important;
        height: 105px !important;
    }


    .course-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px !important;
    }

    .course-products-grid > [class*="col-"],
    .course-products-grid > div {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .course-products-grid > [class*="col-"]:nth-child(n+3),
    .course-products-grid > div:nth-child(n+3),
    .course-products-grid > *:nth-child(n+3) {
        display: none !important;
    }

    .latest-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .latest-products-grid > *:nth-child(n+7) {
        display: none !important;
    }

    .main-menu {
        gap: 2px;
    }

    .site-main-title {
        font-size: 1.4rem;
    }

    .btn-header-auth {
        padding: 10px 10px !important;
        font-size: 0.89rem !important;
    }

    .floating-badge-wp {
        left: 10px;
    }

    .hero-title {
        font-size: clamp(1.7rem, 2.7vw, 3.1rem);
    }

    .hero-description {
        padding-left: 70px;
    }

    .hero-blob {
        border-radius: 60% 60% 50% 60% / 43% 40% 40% 70%;
    }

    .hero-dev-img {
        transform: translate(0, 71px);
    }

    .floating-badge-ai div span,
    .floating-badge-wp div span {
        font-size: 0.8rem;
    }

    .floating-badge-ai {
        right: -10px;
    }

    .btn-cta-primary,
    .btn-consult {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .brand-logo-item img {
        max-height: 40px;
    }

    .brand-name {
        font-size: 15px;
    }

    .afzonefa-newsletter-btn {
        padding: 0 20px !important;
    }

    .afzonefa-newsletter-input {
        width: 250px !important;
    }

    .afzonefa-newsletter-icon {
        width: 105px !important;
        height: 105px !important;
    }

    .afzonefa-newsletter-icon-wrap {
        margin-top: -40px !important;
    }

    .afzonefa-newsletter-banner {
        position: relative;
    }

    .afzonefa-newsletter-inner {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .afzonefa-newsletter-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .afzonefa-newsletter-title,
    .afzonefa-newsletter-subtitle {
        text-align: center !important;
    }


    .afzonefa-newsletter-form-wrap {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
    }

    #afzonefa-newsletter-form {
        justify-content: center !important;
        width: 100% !important;
    }

    .info-card-desc {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .btn-tutorials-outline {
        padding: 8px 20px;
        font-size: 0.80rem;
    }

    .info-card-title {
        font-size: 1.10rem;
    }

    .lpc-title {
        font-size: 0.90rem;
    }

    .main-menu-link {
        font-size: 1.0rem;
    }

    .service-card {
        padding: 1.5rem 1.5rem;
    }

    .service-card-title {
        font-size: 1.15rem;
    }

    .service-card-desc {
        font-size: 0.89rem;
    }

    .btn-service-cta {
        font-size: 0.80rem;
        padding: 10px 18px;
    }


}

@media (max-width: 1199.98px) {
    .blog-card-featured .blog-card-img {
        height: 240px;
    }
}

@media (max-width: 1399.98px) and (min-width: 1200px) {

    .blog-card-excerpt {
        color: var(--neutral-grey);
        font-size: 0.85rem;
    }

    .blog-card-title {
        font-size: 1.0rem;
    }

    .blog-card-title-horizontal {
        font-size: 0.95rem;
    }

    .brand-name {
        font-size: 16px;
    }

    .btn-cta-primary {
        padding: 14px 25px;
    }

    .btn-consult {
        padding: 14px 25px;
    }

    .floating-badge-wp {
        left: 0;
    }

    .info-card-desc {
        font-size: 0.90rem;
        line-height: 1.60;
    }

    .info-card-divider {
        margin: 7px auto;
    }
}

@media (min-width: 768px) {
    .woocommerce-billing-fields__field-wrapper,
    .woocommerce-shipping-fields__field-wrapper,
    .woocommerce-additional-fields__field-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1.25rem 1.1rem;
    }

    .af-checkout-shell .form-row-first {
        grid-column: 1 / 2 !important;
        width: 100% !important;
    }

    .af-checkout-shell .form-row-last {
        grid-column: 2 / 3 !important;
        width: 100% !important;
    }

    .af-checkout-shell .form-row-wide {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }
}

@media (max-width: 991.98px) {

    body.single-product {
        padding-bottom: 72px !important;
    }

    .asp-sticky-footer-bar-mobile {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1040 !important;
        background-color: #ffffff !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08) !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
}

@media (min-width: 992px) {

    .nav-hamburger-btn,
    .afzone-offcanvas-backdrop,
    .afzone-offcanvas-panel {
        display: none !important;
    }

    .asp-sticky-footer-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1040;
        background-color: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(10px);
        padding-top: 12px;
        padding-bottom: 12px;
    }

    body.single-product {
        padding-bottom: 76px;
    }

    .asp-account-sidebar-col {
        position: sticky;
        top: 110px;
        align-self: flex-start;
    }

    .asp-account-layout > .asp-account-content-col {
        width: 66.66666667%;
    }


    .nav-section.scrolled {
        padding: 12px 40px !important;
    }
}

@media (min-width: 1200px) {

    .asp-account-layout > .asp-account-content-col {
        width: 75%;
    }

    .section-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .af-checkout-panel.is-active,
    .af-checkout-shell .af-checkout-next.is-loading i {
        animation: none;
    }

    .asp-shop-loader span {
        animation-duration: 1.5s;
    }
}

