/* ========================================
   Lightweight Commerce - Main Stylesheet
   Optimized - No Duplicates - Clean
   ======================================== */

/* ========================================
   1. CSS VARIABLES
   ======================================== */

:root {
    /* Container */
    --lc-container-width: 1200px;
    --lc-content-width: 800px;

    /* Spacing */
    --lc-spacing-unit: 1rem;
    --lc-space-1: 0.25rem;
    --lc-space-2: 0.5rem;
    --lc-space-3: 0.75rem;
    --lc-space-4: 1rem;
    --lc-space-5: 1.5rem;
    --lc-space-6: 2rem;
    --lc-space-7: 3rem;

    /* Colors */
    --lc-color-primary: #0f3460;
    --lc-color-primary-hover: #1a1a2e;
    --lc-color-text: #1a1a1a;
    --lc-color-text-secondary: #555555;
    --lc-color-text-muted: #888888;
    --lc-color-text-light: #bbbbbb;
    --lc-color-background: #ffffff;
    --lc-color-background-alt: #f8f9fa;
    --lc-color-link: #0f3460;
    --lc-color-border: #e0e0e0;
    --lc-color-border-light: #f0f0f0;

    /* Radius */
    --lc-radius-sm: 4px;
    --lc-radius-md: 8px;
    --lc-radius-lg: 12px;
    --lc-radius-xl: 16px;
    --lc-radius-full: 50px;

    /* Shadows */
    --lc-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --lc-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.06);
    --lc-shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --lc-transition-fast: 0.15s ease;
    --lc-transition-base: 0.2s ease;
    --lc-transition-slow: 0.3s ease;
}

/* ========================================
   2. RESET
   ======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ========================================
   Typography with YekanBakh Font
   ======================================== */

body {
    margin: 0;
    font-family: var(--lc-font-family-base);
    font-size: var(--lc-font-size-base);
    line-height: var(--lc-line-height-base);
    font-weight: var(--lc-font-weight-normal);
    letter-spacing: var(--lc-letter-spacing-normal);
    color: var(--lc-color-text, #1a1a1a);
    background-color: var(--lc-color-background, #ffffff);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--lc-font-family-headings);
    font-weight: var(--lc-font-weight-bold);
    line-height: var(--lc-line-height-headings);
    letter-spacing: var(--lc-letter-spacing-tight);
    margin-bottom: 0.5rem;
    color: var(--lc-color-text, #1a1a1a);
}

h1 {
    font-size: var(--lc-font-size-4xl);
    font-weight: var(--lc-font-weight-black);
}

h2 {
    font-size: var(--lc-font-size-3xl);
    font-weight: var(--lc-font-weight-bold);
}

h3 {
    font-size: var(--lc-font-size-2xl);
    font-weight: var(--lc-font-weight-bold);
}

h4 {
    font-size: var(--lc-font-size-xl);
    font-weight: var(--lc-font-weight-semibold);
}

h5 {
    font-size: var(--lc-font-size-lg);
    font-weight: var(--lc-font-weight-semibold);
}

h6 {
    font-size: var(--lc-font-size-md);
    font-weight: var(--lc-font-weight-semibold);
}

p {
    margin-bottom: 1rem;
    line-height: var(--lc-line-height-base);
    letter-spacing: var(--lc-letter-spacing-normal);
}

a {
    color: var(--lc-color-primary, #0f3460);
    text-decoration: none;
    transition: color var(--lc-transition-fast, 0.15s ease);
}

a:hover {
    color: var(--lc-color-primary-hover, #1a1a2e);
}

strong,
b {
    font-weight: var(--lc-font-weight-bold);
}

/* ========================================
   GLOBAL FONT OVERRIDE - YekanBakh
   Applies YekanBakh to ALL elements
   ======================================== */

/* Universal selector - applies to everything */
*,
*::before,
*::after {
    font-family: 'YekanBakh', -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
}

/* Force all text elements */
html,
body,
div,
span,
p,
a,
li,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
code,
kbd,
samp,
small,
strong,
b,
em,
i,
mark,
sub,
sup,
figure,
figcaption,
article,
section,
aside,
header,
footer,
main,
nav,
form,
label,
input,
select,
textarea,
button,
table,
thead,
tbody,
tfoot,
tr,
th,
td,
caption,
dl,
dt,
dd,
fieldset,
legend {
    font-family: 'YekanBakh', -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--lc-color-text);
    background-color: var(--lc-color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--lc-color-link);
    text-decoration: none;
    transition: color var(--lc-transition-fast);
}

a:hover {
    color: var(--lc-color-primary-hover);
    text-decoration: none;
}

/* ========================================
   3. TYPOGRAPHY
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--lc-space-2);
    color: var(--lc-color-text);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1rem;
}

h5 {
    font-size: 0.875rem;
}

h6 {
    font-size: 0.875rem;
}

p {
    margin-bottom: var(--lc-space-4);
}

/* ========================================
   4. LAYOUT & CONTAINERS
   ======================================== */

.lc-container {
    width: 100%;
    max-width: var(--lc-container-width);
    margin-inline: auto;
    padding-inline: var(--lc-spacing-unit);
}

.lc-content-area {
    width: 100%;
    max-width: var(--lc-content-width);
    margin-inline: auto;
}

.lc-site-main {
    min-height: 60vh;
    padding: var(--lc-space-6) 0;
}

/* ========================================
   5. GRID
   ======================================== */

.lc-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--lc-space-6);
}

.lc-products-grid,
ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--lc-space-6);
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ========================================
   6. HEADER
   ======================================== */

.lc-site-header {
    padding: 0;
    background: var(--lc-color-background);
    border-bottom: 1px solid var(--lc-color-border-light);
}

.lc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--lc-space-4);
}

.lc-site-branding {
    display: flex;
    align-items: center;
    gap: var(--lc-space-4);
}

.lc-site-title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

.lc-site-title a {
    color: var(--lc-color-text);
    text-decoration: none;
}

.lc-site-description {
    margin: var(--lc-space-1) 0 0;
    font-size: 0.875rem;
    color: var(--lc-color-text-muted);
}

/* ========================================
   7. NAVIGATION
   ======================================== */

.lc-primary-navigation .menu {
    display: flex;
    gap: var(--lc-space-5);
    list-style: none;
    margin: 0;
    padding: 0;
}

.lc-primary-navigation .menu-item {
    position: relative;
}

.lc-primary-navigation .menu-item a {
    color: var(--lc-color-text);
    padding: var(--lc-space-2) 0;
    display: block;
    font-weight: 500;
    text-decoration: none;
}

.lc-primary-navigation .menu-item a:hover,
.lc-primary-navigation .menu-item.current-menu-item a {
    color: var(--lc-color-link);
}

.lc-primary-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--lc-color-background);
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-sm);
    box-shadow: var(--lc-shadow-sm);
    z-index: 100;
    list-style: none;
    padding: var(--lc-space-2) 0;
    margin: 0;
}

.lc-primary-navigation .menu-item:hover>.sub-menu,
.lc-primary-navigation .sub-menu.is-open {
    display: block;
}

.lc-primary-navigation .sub-menu .menu-item a {
    padding: var(--lc-space-2) var(--lc-space-4);
}

/* ========================================
   8. POST CARDS
   ======================================== */

.lc-post-card,
.lc-post {
    background: var(--lc-color-background);
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-md);
    overflow: hidden;
    margin-bottom: var(--lc-space-6);
    transition: box-shadow var(--lc-transition-base);
}

.lc-post-card:hover,
.lc-post:hover {
    box-shadow: var(--lc-shadow-md);
}

.lc-post-card-thumbnail,
.lc-post-thumbnail {
    margin: 0;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.lc-post-card-thumbnail img,
.lc-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lc-post-card-content,
.lc-post-card-header,
.lc-entry-header {
    padding: var(--lc-space-5);
}

.lc-post-card-title,
.lc-entry-title,
.lc-post-title {
    margin: 0 0 var(--lc-space-2);
    font-size: 1.25rem;
    line-height: 1.3;
}

.lc-post-card-title a,
.lc-entry-title a,
.lc-post-title a {
    color: var(--lc-color-text);
    text-decoration: none;
}

.lc-post-card-title a:hover,
.lc-entry-title a:hover,
.lc-post-title a:hover {
    color: var(--lc-color-link);
}

.lc-post-card-meta,
.lc-entry-meta,
.lc-post-meta {
    font-size: 0.875rem;
    color: var(--lc-color-text-secondary);
    margin-bottom: var(--lc-space-4);
}

.lc-post-card-excerpt,
.lc-entry-summary,
.lc-entry-content {
    padding: 0 var(--lc-space-5) var(--lc-space-5);
    line-height: 1.6;
}

/* ========================================
   9. PRODUCT CARDS
   ======================================== */

.lc-product-card,
ul.products li.product {
    background: var(--lc-color-background);
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-md);
    overflow: hidden;
    transition: border-color var(--lc-transition-base);
}

.lc-product-card:hover,
ul.products li.product:hover {
    border-color: var(--lc-color-primary);
}

.lc-product-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.lc-product-image-wrapper img,
ul.products li.product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lc-product-info {
    padding: var(--lc-space-5);
}

.lc-product-title,
ul.products li.product h2 {
    margin: 0 0 var(--lc-space-2);
    font-size: 1.125rem;
    line-height: 1.3;
}

.lc-product-title a,
ul.products li.product h2 a {
    color: var(--lc-color-text);
    text-decoration: none;
}

.lc-product-price,
ul.products li.product .price {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--lc-space-4);
}

/* ========================================
   10. PAGINATION
   ======================================== */

.lc-pagination {
    margin: var(--lc-space-7) 0;
    text-align: center;
}

.lc-pagination .nav-links,
.woocommerce-pagination ul {
    display: inline-flex;
    gap: var(--lc-space-2);
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ========================================
   11. BREADCRUMBS
   ======================================== */

.lc-breadcrumbs {
    margin: var(--lc-space-4) 0;
}

.lc-breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--lc-space-2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.lc-breadcrumb-link {
    color: var(--lc-color-link);
    font-size: 0.875rem;
    text-decoration: none;
}

.lc-breadcrumb-link:hover {
    text-decoration: underline;
}

.lc-breadcrumb-current {
    color: var(--lc-color-text);
    font-size: 0.875rem;
    font-weight: 600;
}

.lc-breadcrumb-separator {
    color: var(--lc-color-text-light);
    font-size: 0.875rem;
}

/* ========================================
   12. FOOTER
   ======================================== */

.lc-site-footer {
    background: var(--lc-color-background-alt);
}

.lc-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--lc-space-6);
}

.lc-copyright {
    margin: 0;
    color: var(--lc-color-text-secondary);
    font-size: 0.875rem;
}

.lc-copyright a {
    color: var(--lc-color-text);
    font-weight: 600;
}

.lc-footer-navigation .menu {
    display: flex;
    gap: var(--lc-space-5);
    list-style: none;
    margin: 0;
    padding: 0;
}

.lc-footer-navigation .menu-item a {
    color: var(--lc-color-text-secondary);
    font-size: 0.875rem;
    text-decoration: none;
}

.lc-footer-navigation .menu-item a:hover {
    color: var(--lc-color-link);
}

/* ========================================
   13. ACCESSIBILITY
   ======================================== */

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999999;
    padding: 10px 15px;
    background: var(--lc-color-text);
    color: var(--lc-color-background);
    text-decoration: none;
    border-radius: 0 0 var(--lc-radius-sm) 0;
}

.skip-link:focus {
    left: 0;
    top: 0;
}

:focus-visible {
    outline: 2px solid var(--lc-color-primary);
    outline-offset: 2px;
}

/* ========================================
   14. SEARCH
   ======================================== */

.lc-search-form {
    margin: var(--lc-space-4) 0;
}

.lc-search-form-inner {
    display: flex;
    gap: var(--lc-space-2);
}

.lc-search-field {
    flex: 1;
    padding: var(--lc-space-3) var(--lc-space-4);
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-sm);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--lc-transition-base);
}

.lc-search-field:focus {
    border-color: var(--lc-color-primary);
}

.lc-search-submit {
    padding: var(--lc-space-3) var(--lc-space-5);
    background: var(--lc-color-primary);
    color: var(--lc-color-background);
    border: none;
    border-radius: var(--lc-radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: background var(--lc-transition-base);
}

.lc-search-submit:hover {
    background: var(--lc-color-primary-hover);
}

/* ========================================
   15. COMMENTS
   ======================================== */

.lc-comments-area {
    margin: var(--lc-space-7) 0;
    padding: var(--lc-space-6);
    background: var(--lc-color-background);
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-xl);
}

.lc-comments-header {
    display: flex;
    align-items: center;
    gap: var(--lc-space-4);
    margin-bottom: var(--lc-space-5);
    padding-bottom: var(--lc-space-4);
    border-bottom: 1px solid var(--lc-color-border-light);
}

.lc-comments-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lc-color-text);
    margin: 0;
    white-space: nowrap;
}

.lc-comments-divider {
    flex: 1;
    height: 1px;
    background: var(--lc-color-border-light);
}

/* Comment List */
.lc-comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--lc-space-6);
}

.lc-comment-item {
    margin-bottom: var(--lc-space-4);
}

.lc-comment-body {
    display: flex;
    gap: var(--lc-space-4);
    padding: var(--lc-space-4);
    background: var(--lc-color-background-alt);
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-lg);
    transition: all var(--lc-transition-base);
}

.lc-comment-body:hover {
    background: var(--lc-color-background);
    border-color: var(--lc-color-border);
    box-shadow: var(--lc-shadow-sm);
}

.lc-comment-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--lc-color-border);
}

.lc-comment-content {
    flex: 1;
}

.lc-comment-meta {
    display: flex;
    align-items: center;
    gap: var(--lc-space-3);
    margin-bottom: var(--lc-space-2);
    flex-wrap: wrap;
}

.lc-comment-author {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--lc-color-text);
}

.lc-comment-date {
    font-size: 0.75rem;
    color: var(--lc-color-text-light);
}

.lc-comment-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--lc-color-text-secondary);
}

.lc-comment-text p {
    margin: 0;
}

.lc-comment-reply {
    margin-top: var(--lc-space-3);
}

.lc-comment-reply a {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lc-color-primary);
    text-decoration: none;
}

.lc-comment-reply a:hover {
    color: var(--lc-color-primary-hover);
    text-decoration: underline;
}

/* Nested Comments */
.lc-comment-list .children {
    list-style: none;
    padding-right: var(--lc-space-6);
    margin-top: var(--lc-space-4);
}

.lc-no-comments {
    color: var(--lc-color-text-muted);
    font-size: 0.875rem;
}

/* ========================================
   16. COMMENT FORM
   ======================================== */

.lc-comment-form-wrapper {
    padding: var(--lc-space-6);
    background: var(--lc-color-background-alt);
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-xl);
}

.lc-comment-reply-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lc-color-text);
    margin: 0 0 var(--lc-space-5);
    text-align: center;
}

.lc-comment-reply-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--lc-color-primary);
    border-radius: 3px;
    margin: var(--lc-space-3) auto 0;
}

.lc-comment-form-comment,
.lc-comment-form-author,
.lc-comment-form-email {
    margin-bottom: var(--lc-space-4);
}

.lc-comment-form-comment label,
.lc-comment-form-author label,
.lc-comment-form-email label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lc-color-text-secondary);
    margin-bottom: var(--lc-space-2);
}

.lc-comment-form-comment .required,
.lc-comment-form-author .required,
.lc-comment-form-email .required {
    color: #ef4444;
}

.lc-comment-form-comment textarea,
.lc-comment-form-author input,
.lc-comment-form-email input {
    width: 100%;
    padding: var(--lc-space-3) var(--lc-space-5);
    background: var(--lc-color-background);
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-md);
    font-size: 0.9375rem;
    outline: none;
    transition: border-color var(--lc-transition-base);
    box-sizing: border-box;
    font-family: inherit;
}

.lc-comment-form-comment textarea:focus,
.lc-comment-form-author input:focus,
.lc-comment-form-email input:focus {
    border-color: var(--lc-color-primary);
}

.lc-comment-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--lc-space-2);
    padding: var(--lc-space-3) var(--lc-space-6);
    background: var(--lc-color-primary);
    color: var(--lc-color-background);
    border: none;
    border-radius: var(--lc-radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--lc-transition-base);
    width: 100%;
}

.lc-comment-submit:hover {
    background: var(--lc-color-primary-hover);
}

/* ========================================
   17. ASK QUESTION CTA
   ======================================== */

.lc-ask-question-cta {
    position: fixed;
    bottom: var(--lc-space-6);
    left: var(--lc-space-6);
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: var(--lc-space-2);
    padding: var(--lc-space-3) var(--lc-space-5);
    background: var(--lc-color-primary);
    color: var(--lc-color-background);
    border: none;
    border-radius: var(--lc-radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--lc-shadow-lg);
    transition: all var(--lc-transition-slow);
}

.lc-ask-question-cta:hover {
    background: var(--lc-color-primary-hover);
    transform: translateY(-2px);
}

.lc-ask-question-cta svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.lc-ask-question-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

/* ========================================
   18. RTL SUPPORT
   ======================================== */

[dir="rtl"] .lc-ask-question-cta {
    left: auto;
    right: var(--lc-space-6);
}

[dir="rtl"] .lc-comment-list .children {
    padding-right: var(--lc-space-6);
    padding-left: 0;
}

[dir="rtl"] .lc-primary-navigation .sub-menu {
    left: auto;
    right: 0;
}

/* ========================================
   19. RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .lc-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .lc-posts-grid,
    .lc-products-grid,
    ul.products {
        grid-template-columns: 1fr;
    }

    .lc-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .lc-primary-navigation .menu {
        flex-direction: column;
        gap: var(--lc-space-2);
    }

    .lc-primary-navigation .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: var(--lc-space-4);
    }

    .lc-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .lc-footer-navigation .menu {
        justify-content: center;
        flex-wrap: wrap;
    }

    .lc-search-form-inner {
        flex-direction: column;
    }

    .lc-comments-area {
        padding: var(--lc-space-4);
        margin: var(--lc-space-6) 0;
    }

    .lc-comment-form-wrapper {
        padding: var(--lc-space-4);
    }

    .lc-comment-body {
        flex-direction: column;
        gap: var(--lc-space-3);
    }

    .lc-comment-list .children {
        padding-right: var(--lc-space-4);
    }

    .lc-ask-question-cta {
        bottom: var(--lc-space-4);
        left: var(--lc-space-4);
        right: var(--lc-space-4);
        justify-content: center;
        border-radius: var(--lc-radius-lg);
    }

    [dir="rtl"] .lc-ask-question-cta {
        right: var(--lc-space-4);
        left: var(--lc-space-4);
    }
}

@media (max-width: 480px) {

    .lc-posts-grid,
    .lc-products-grid,
    ul.products {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   20. REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ========================================
   Footer - SEO Optimized - Beautiful UX/UI
   ======================================== */

.lc-site-footer {
    background: #3F3F3F;
}

/* Main Footer */
.lc-footer-main {
    padding: var(--lc-space-7, 3rem) 0;
}

.lc-footer-container {
    width: 100%;
    max-width: var(--lc-container-width, 1200px);
    margin-inline: auto;
    padding-inline: var(--lc-spacing-unit, 1rem);
}

/* Widgets Grid */
.lc-footer-widgets {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
    gap: var(--lc-space-6, 2rem);
}

/* Column */
.lc-footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--lc-space-4, 1rem);
}

.lc-footer-widget-title {
    font-size: var(--lc-font-size-lg, 1rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 var(--lc-space-3, 0.75rem);
    padding-bottom: var(--lc-space-3, 0.75rem);
    display: inline-block;
    position: relative;
}

/* Contact Items */
.lc-footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--lc-space-4, 1rem);
}

.lc-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--lc-space-3, 0.75rem);
}

.lc-footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(74, 144, 217, 0.15);
    border-radius: var(--lc-radius-md, 6px);
    color: #fff;
    flex-shrink: 0;
}

.lc-footer-contact-text {
    display: flex;
    flex-direction: column;
    gap: var(--lc-space-1, 0.25rem);
}

.lc-footer-contact-label {
    font-size: var(--lc-font-size-xs, 0.75rem);
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.lc-footer-contact-value {
    font-size: var(--lc-font-size-sm, 0.8125rem);
    color: #fff;
    line-height: 1.7;
}

.lc-footer-contact-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--lc-transition-fast, 0.15s ease);
}

.lc-footer-contact-link:hover {
    color: #4a90d9;
    text-decoration: underline;
}

/* Footer Menu */
.lc-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--lc-space-2, 0.5rem);
}

.lc-footer-menu li {
    margin: 0;
}

.lc-footer-menu a {
    display: inline-flex;
    align-items: center;
    gap: var(--lc-space-2, 0.5rem);
    font-size: var(--lc-font-size-sm, 0.8125rem);
    color: #fff;
    text-decoration: none;
    transition: all var(--lc-transition-fast, 0.15s ease);
    padding: var(--lc-space-1, 0.25rem) 0;
}

.lc-footer-menu a:hover {
    color: #ffffff;
    transform: translateX(-4px);
}

.lc-footer-menu a:hover::before {
    opacity: 1;
    transform: scale(1.3);
    background: #ffffff;
}

/* Trust Badges */
.lc-footer-namads {
    display: flex;
    flex-direction: column;
    gap: var(--lc-space-3, 0.75rem);
}

.lc-footer-namad-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lc-radius-lg, 8px);
    padding: var(--lc-space-3, 0.75rem);
    text-align: center;
    transition: all var(--lc-transition-fast, 0.15s ease);
}

.lc-footer-namad-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4a90d9;
}

.lc-footer-namad-box a {
    display: block;
    text-decoration: none;
}

.lc-footer-namad-box img {
    max-width: 100px;
    height: auto;
    display: inline-block;
    border-radius: var(--lc-radius-sm, 4px);
}

/* Copyright Bar */
.lc-footer-copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--lc-space-4, 1rem) 0;
}

.lc-footer-copyright-text {
    font-size: var(--lc-font-size-xs, 0.75rem);
    color: #fff;
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

/* ========================================
   RTL SUPPORT
   ======================================== */

[dir="rtl"] .lc-footer-widget-title::after {
    right: auto;
    left: 0;
}

[dir="rtl"] .lc-footer-menu a:hover {
    transform: translateX(4px);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .lc-footer-widgets {
        grid-template-columns: 1fr 1fr;
        gap: var(--lc-space-5, 1.5rem);
    }
}

@media (max-width: 768px) {

    /* Make widgets grid two columns */
    .lc-footer-widgets {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    /* Contact column - full width on top */
    .lc-footer-column--contact {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        padding-bottom: 40px;
    }

    /* Important Links - 48% width */
    .lc-footer-column--links {
        grid-column: 1 / 2 !important;
        width: 48% !important;
        min-width: 0 !important;
    }

    /* Categories - 48% width */
    .lc-footer-column--categories {
        grid-column: 2 / 3 !important;
        width: 48% !important;
        min-width: 0 !important;
    }

    /* Trust badges - full width on bottom */
    .lc-footer-column--trust {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        padding-top: 40px;
    }
}

/* ========================================
   SMALL MOBILE (Below 480px)
   ======================================== */

@media (max-width: 480px) {
    .lc-footer-widgets {
        gap: 0.75rem !important;
    }

    .lc-footer-column--links,
    .lc-footer-column--categories {
        width: 100% !important;
    }

    /* Smaller text for better fit */
    .lc-footer-menu a {
        font-size: 0.75rem !important;
        padding: 0.25rem 0 !important;
    }

    .lc-footer-widget-title {
        font-size: 0.875rem !important;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {

    .lc-footer-menu a,
    .lc-footer-namad-box {
        transition: none !important;
        transform: none !important;
    }
}

@media (prefers-contrast: high) {
    .lc-site-footer {
        background: #000000;
    }

    .lc-footer-widget-title {
        color: #ffffff;
        border-bottom-color: #ffffff;
    }

    .lc-footer-menu a,
    .lc-footer-contact-value {
        color: #ffffff;
    }

    .lc-footer-copyright-bar {
        background: #000000;
        border-top-color: #ffffff;
    }
}

/* ========================================
   Trust Badges - Equal Size Boxes
   Flex Layout - White Background
   ======================================== */

.lc-footer-namads {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: var(--lc-space-3, 0.75rem);
}

.lc-footer-namad-box {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--lc-radius-lg, 8px);
    padding: var(--lc-space-3, 0.75rem);
    text-align: center;
    transition: all var(--lc-transition-fast, 0.15s ease);
    flex: 0 1 auto;

    /* Fixed equal size */
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lc-footer-namad-box:hover {
    border-color: #4a90d9;
    box-shadow: 0 4px 12px rgba(74, 144, 217, 0.3);
    transform: translateY(-2px);
}

.lc-footer-namad-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    line-height: 0;
}

.lc-footer-namad-box img {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--lc-radius-sm, 4px);
}

/* Responsive */
@media (max-width: 768px) {
    .lc-footer-namads {
        justify-content: center;
    }

    .lc-footer-namad-box {
        width: 80px;
        height: 80px;
    }

    .lc-footer-namad-box img {
        max-width: 90px;
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .lc-footer-namads {
        gap: var(--lc-space-2, 0.5rem);
    }

    .lc-footer-namad-box {
        width: 100px;
        height: 100px;
        padding: var(--lc-space-2, 0.5rem);
    }

    .lc-footer-namad-box img {
        max-width: 90px;
        max-height: 90px;
    }
}

/* ========================================
   Rich Snippet Enhancement
   ======================================== */

/* Quick Answer Box (Featured Snippet Target) */
.lc-quick-answer {
    background: #f0f7ff;
    border-right: 4px solid var(--lc-color-primary, #0f3460);
    padding: var(--lc-space-4, 1rem) var(--lc-space-5, 1.5rem);
    border-radius: var(--lc-radius-md, 6px);
    margin: var(--lc-space-4, 1rem) 0;
}

.lc-quick-answer h2 {
    font-size: var(--lc-font-size-md, 0.9375rem);
    font-weight: 700;
    color: var(--lc-color-primary, #0f3460);
    margin: 0 0 var(--lc-space-2, 0.5rem);
}

.lc-quick-answer p {
    font-size: var(--lc-font-size-sm, 0.8125rem);
    color: var(--lc-color-text-secondary, #555555);
    margin: 0;
}

/* Table of Contents */
.lc-toc {
    background: var(--lc-color-background-alt, #f8f9fa);
    border: 1px solid var(--lc-color-border, #e0e0e0);
    border-radius: var(--lc-radius-lg, 8px);
    padding: var(--lc-space-4, 1rem);
    margin: var(--lc-space-4, 1rem) 0;
}

.lc-toc h2 {
    font-size: var(--lc-font-size-lg, 1rem);
    font-weight: 700;
    margin: 0 0 var(--lc-space-3, 0.75rem);
    color: var(--lc-color-text, #1a1a1a);
}

.lc-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lc-toc li {
    margin-bottom: var(--lc-space-2, 0.5rem);
}

.lc-toc a {
    color: var(--lc-color-primary, #0f3460);
    text-decoration: none;
    font-size: var(--lc-font-size-sm, 0.8125rem);
}

.lc-toc a:hover {
    text-decoration: underline;
}

/* Price Table */
.lc-price-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--lc-space-4, 1rem) 0;
}

.lc-price-table th {
    background: var(--lc-color-primary, #0f3460);
    color: #ffffff;
    padding: var(--lc-space-3, 0.75rem);
    font-size: var(--lc-font-size-sm, 0.8125rem);
    text-align: right;
}

.lc-price-table td {
    padding: var(--lc-space-3, 0.75rem);
    border-bottom: 1px solid var(--lc-color-border, #e0e0e0);
    font-size: var(--lc-font-size-sm, 0.8125rem);
}

/* CTA Section */
.lc-cta-section {
    background: var(--lc-color-primary, #0f3460);
    color: #ffffff;
    text-align: center;
    padding: var(--lc-space-6, 2rem);
    border-radius: var(--lc-radius-lg, 8px);
    margin: var(--lc-space-5, 1.5rem) 0;
}

.lc-cta-section h2 {
    font-size: var(--lc-font-size-xl, 1.125rem);
    font-weight: 700;
    margin: 0 0 var(--lc-space-3, 0.75rem);
}

.lc-cta-section a {
    display: inline-block;
    background: #ffffff;
    color: var(--lc-color-primary, #0f3460);
    padding: var(--lc-space-3, 0.75rem) var(--lc-space-5, 1.5rem);
    border-radius: var(--lc-radius-md, 6px);
    font-weight: 700;
    text-decoration: none;
    font-size: var(--lc-font-size-lg, 1rem);
}

.lc-cta-section a:hover {
    background: #f0f0f0;
}