/*
Theme Name: Accore
Theme URI: https://accore.noxx.agency
Author: NOXX Agency
Author URI: https://noxx.agency
Description: Accore - AI-Powered E-commerce Theme for WordPress & WooCommerce. A modern, clean design with AI-driven shopping experience, featuring dark/light modes, comprehensive WooCommerce integration, and intelligent product discovery.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: accore
Tags: e-commerce, woocommerce, custom-colors, custom-logo, custom-menu, featured-images, full-site-editing, block-patterns, rtl-language-support, threaded-comments, translation-ready, wide-blocks, accessibility-ready

Accore WordPress Theme - AI-Powered E-commerce Experience
*/

/* ==========================================================================
   CSS VARIABLES / DESIGN TOKENS
   Extracted from Figma Design: VAQ8KwfKEfrQ582CpMYWmN
   ========================================================================== */

:root {
    /* ========================
       COLOR PALETTE
       ======================== */
    
    /* Primary Colors */
    --color-primary: #20808d;
    --color-primary-dark: #165299;
    --color-primary-light: #31b8c6;
    --color-primary-hover: #1a6b76;
    
    /* Secondary / Accent Colors */
    --color-accent: #b17f24;
    --color-accent-light: rgba(177, 127, 36, 0.6);
    --color-accent-hover: #9a6e1f;
    
    /* Background Colors */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #fcfcf9;
    --color-bg-tertiary: #fbfaf4;
    --color-bg-dark: #100e12;
    --color-bg-dark-alt: #1f2121;
    --color-bg-card: #e5eeea;
    --color-bg-card-alt: #f4eedf;
    --color-bg-overlay: rgba(87, 101, 96, 0.2);
    --color-bg-modal: rgba(11, 11, 11, 0.7);
    
    /* Text Colors */
    --color-text-primary: #091717;
    --color-text-secondary: rgba(9, 23, 23, 0.6);
    --color-text-tertiary: rgba(9, 23, 23, 0.5);
    --color-text-muted: rgba(9, 23, 23, 0.25);
    --color-text-light: #e8e8e3;
    --color-text-light-secondary: rgba(232, 232, 227, 0.55);
    --color-text-light-muted: rgba(232, 232, 227, 0.35);
    --color-text-heading: #13343b;
    --color-text-white: #ffffff;
    
    /* Border Colors */
    --color-border: rgba(9, 23, 23, 0.25);
    --color-border-light: rgba(232, 232, 227, 0.1);
    --color-border-dark: rgba(232, 232, 227, 0.05);
    --color-border-primary: rgba(32, 128, 141, 0.6);
    --color-border-accent: rgba(177, 127, 36, 0.6);
    --color-border-primary-solid: rgba(49, 184, 198, 0.3);
    
    /* Status Colors */
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #3b82f6;
    
    /* ========================
       TYPOGRAPHY
       ======================== */
    
    /* Font Families */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-secondary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', Times, serif;
    
    /* Font Sizes - Desktop */
    --text-xs: 11px;
    --text-sm: 12px;
    --text-base: 14px;
    --text-md: 15px;
    --text-lg: 16px;
    --text-xl: 17px;
    --text-2xl: 18px;
    --text-3xl: 20px;
    --text-4xl: 22px;
    --text-5xl: 24px;
    --text-6xl: 30px;
    --text-7xl: 36px;
    --text-8xl: 48px;
    --text-9xl: 56px;
    
    /* Font Weights */
    --font-extralight: 200;
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.1;
    --leading-snug: 1.25;
    --leading-normal: 1.4;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Letter Spacing */
    --tracking-tighter: -1px;
    --tracking-tight: -0.5px;
    --tracking-normal: 0;
    --tracking-wide: 0.16px;
    --tracking-wider: 0.3px;
    
    /* ========================
       SPACING
       ======================== */
    
    --space-0: 0;
    --space-1: 2px;
    --space-2: 4px;
    --space-3: 8px;
    --space-4: 12px;
    --space-5: 16px;
    --space-6: 20px;
    --space-7: 24px;
    --space-8: 32px;
    --space-9: 40px;
    --space-10: 48px;
    --space-11: 56px;
    --space-12: 64px;
    --space-13: 72px;
    --space-14: 80px;
    --space-15: 96px;
    --space-16: 120px;
    --space-17: 150px;
    --space-18: 240px;
    
    /* ========================
       LAYOUT
       ======================== */
    
    /* Container Widths */
    --container-xs: 512px;
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 960px;
    --container-xl: 1200px;
    --container-full: 1440px;
    
    /* Sidebar Width */
    --sidebar-collapsed: 72px;
    --sidebar-expanded: 288px;
    
    /* Content Areas */
    --content-narrow: 704px;
    --content-normal: 768px;
    --content-wide: 960px;
    
    /* Gutters */
    --gutter-sm: 16px;
    --gutter-md: 32px;
    --gutter-lg: 120px;
    
    /* ========================
       BORDER RADIUS
       ======================== */
    
    --radius-none: 0;
    --radius-sm: 2px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --radius-2xl: 14px;
    --radius-3xl: 16px;
    --radius-4xl: 20px;
    --radius-5xl: 30px;
    --radius-full: 9999px;
    
    /* ========================
       SHADOWS
       ======================== */
    
    --shadow-sm: 0px 1px 3px rgba(49, 184, 198, 0.05);
    --shadow-md: 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-primary: 0px 4px 6px -1px rgba(32, 128, 141, 0.1);
    
    /* ========================
       TRANSITIONS
       ======================== */
    
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    --transition-all: all 250ms ease;
    
    /* ========================
       Z-INDEX
       ======================== */
    
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
}

/* Dark Mode Variables */
[data-theme="dark"],
.dark-mode {
    --color-bg-primary: #100e12;
    --color-bg-secondary: #1f2121;
    --color-bg-tertiary: #2a2d2d;
    --color-text-primary: #e8e8e3;
    --color-text-secondary: rgba(232, 232, 227, 0.55);
    --color-text-heading: #fcfcf9;
    --color-border: rgba(232, 232, 227, 0.1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    line-height: var(--leading-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: var(--font-normal);
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    line-height: var(--leading-normal);
    letter-spacing: var(--tracking-normal);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Full height layout structure */
#page.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Admin bar height adjustments for page container */
.admin-bar #page.site {
    min-height: calc(100vh - 32px); /* 100vh minus admin bar height on desktop */
}

@media screen and (max-width: 782px) {
    .admin-bar #page.site {
        min-height: calc(100vh - 46px); /* Admin bar is 46px on tablet */
    }
}


#content.site-content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-text-heading);
    margin-bottom: var(--space-5);
    line-height: var(--leading-tight);
}

/* Heading 1 - Hero/Main Title */
h1,
.h1 {
    font-size: var(--text-9xl);
    font-weight: var(--font-extralight);
    letter-spacing: var(--tracking-tighter);
    line-height: 79.2px;
}

/* Heading 2 - Section Title */
h2,
.h2 {
    font-size: var(--text-8xl);
    font-weight: var(--font-extralight);
    letter-spacing: var(--tracking-tighter);
    line-height: 67.2px;
}

/* Heading 3 - Card/Block Title */
h3,
.h3 {
    font-size: var(--text-7xl);
    font-weight: var(--font-normal);
    letter-spacing: -0.1px;
    line-height: 43.2px;
}

/* Heading 4 - Subtitle */
h4,
.h4 {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    letter-spacing: var(--tracking-wider);
    line-height: 20.8px;
}

/* Heading 5 - Small Title */
h5,
.h5 {
    font-size: var(--text-4xl);
    font-weight: var(--font-normal);
    letter-spacing: var(--tracking-tight);
    line-height: 28.6px;
}

/* Heading 6 - Mini Title */
h6,
.h6 {
    font-size: var(--text-2xl);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-wide);
    line-height: 1.4;
}

/* Body Text - Georgia for special headings */
.heading-serif {
    font-family: var(--font-heading);
    font-style: normal;
}

/* Paragraph */
p {
    margin-bottom: var(--space-5);
    line-height: var(--leading-relaxed);
}

/* Lead Text */
.lead {
    font-size: var(--text-4xl);
    line-height: 28.6px;
    letter-spacing: var(--tracking-tight);
}

/* Small Text */
small,
.small {
    font-size: var(--text-base);
    line-height: var(--leading-normal);
}

/* Extra Small Text */
.text-xs {
    font-size: var(--text-xs);
    line-height: 12.1px;
}

/* Links */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

/* Container */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gutter-lg);
    padding-right: var(--gutter-lg);
}

.container-narrow {
    max-width: var(--container-lg);
}

.container-wide {
    max-width: var(--container-full);
}

.container-fluid {
    max-width: 100%;
}

/* Section Spacing */
.section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

.section-sm {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
}

.section-lg {
    padding-top: var(--space-17);
    padding-bottom: var(--space-17);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn,
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: var(--font-normal);
    line-height: var(--text-xl);
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    padding: 12px 30px;
    border: 1px solid transparent;
    border-radius: var(--radius-5xl);
    cursor: pointer;
    transition: var(--transition-all);
    background-color: var(--color-primary);
    color: var(--color-text-white);
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    color: var(--color-text-white);
    text-decoration: none;
}

/* Button - Primary */
.btn-primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
    background-color: var(--color-primary);
    color: var(--color-text-white);
}

.btn-primary:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover {
    background-color: var(--color-primary-hover);
}

/* Button - Secondary */
.btn-secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-white);
}

/* Button - Accent */
.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-text-white);
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
}

/* Button - Dark */
.btn-dark {
    background-color: #000000;
    color: var(--color-text-white);
}

.btn-dark:hover {
    background-color: #1a1a1a;
}

/* Button - Outline */
.btn-outline {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    background-color: var(--color-bg-overlay);
    border-color: var(--color-primary);
}

/* Button - Small */
.btn-sm {
    font-size: var(--text-base);
    padding: 8px 16px;
    height: 32px;
    border-radius: var(--radius-lg);
}

/* Button - Large */
.btn-lg {
    font-size: var(--text-2xl);
    padding: 16px 44px;
    height: 50px;
}

/* Button - Icon Only */
.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: var(--radius-lg);
    background-color: transparent;
}

.btn-icon:hover {
    background-color: var(--color-bg-overlay);
}

/* Button - CTA (Shop Now) */
.btn-cta {
    background-color: var(--color-primary-dark);
    color: var(--color-text-white);
    border-radius: var(--radius-5xl);
    padding: 11px 26px;
    font-size: 13.9px;
}

.btn-cta:hover {
    background-color: #124480;
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */

/* Form Container */
form {
    width: 100%;
}

/* Labels */
label {
    display: block;
    font-size: var(--text-lg);
    font-weight: var(--font-normal);
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

/* Input Fields */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="date"],
textarea,
select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea {
    width: 100%;
    height: 50px;
    padding: 15px 20px;
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: var(--font-normal);
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    outline: none;
    transition: var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(32, 128, 141, 0.1);
}

/* Placeholder */
::placeholder {
    color: var(--color-text-secondary);
    opacity: 1;
}

/* Textarea */
textarea {
    min-height: 113px;
    resize: vertical;
}

/* Select */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23091717' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 44px;
}

/* Checkbox & Radio */
input[type="checkbox"],
input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

/* Form Row */
.form-row {
    margin-bottom: var(--space-5);
}

.form-row-wide {
    width: 100%;
}

.form-row-half {
    width: calc(50% - var(--space-3));
}

/* Dark Input Variant */
.input-dark,
.woocommerce-page.dark-mode form .form-row input.input-text {
    background-color: var(--color-bg-overlay);
    border-color: transparent;
    color: var(--color-text-light);
}

.input-dark:focus {
    border-color: var(--color-primary);
}

/* AI Search Input (Special Style) */
.ai-search-input {
    height: 44px;
    background-color: var(--color-bg-overlay);
    border: none;
    border-radius: var(--radius-3xl);
    padding: 13px 16px;
    color: var(--color-text-light);
}

.ai-search-input::placeholder {
    color: var(--color-text-light-muted);
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.card {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-7);
    transition: var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

/* Pricing Card */
.pricing-card {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    overflow: hidden;
}

.pricing-card-pro {
    background-color: var(--color-bg-card);
    border-color: var(--color-border-primary);
}

.pricing-card-premium {
    background-color: var(--color-bg-card-alt);
    border-color: var(--color-border-accent);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    height: 74px;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

/* WordPress Admin Bar adjustments */
.admin-bar .site-header {
    top: 32px; /* Admin bar height on desktop */
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px; /* Admin bar height on tablet */
    }
}

@media screen and (max-width: 600px) {
    .admin-bar .site-header {
        top: 0; /* Admin bar is position: absolute on mobile, so header stays at top */
    }
}

/* Header Background Variants */
.site-header.header-bg-default {
    background-color: var(--color-bg-tertiary); /* #fbfaf4 */
}

.site-header.header-bg-white {
    background-color: var(--color-bg-primary); /* #ffffff */
}

.header-container {
    width: 100%;
    max-width: var(--container-full);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Site Branding / Logo */
.site-branding {
    flex-shrink: 0;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo .logo-img {
    height: 32px;
    width: auto;
    max-width: 113px;
}

/* Header Right Section (Navigation + CTA) */
.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

/* Reset list styles with high specificity */
#site-navigation .nav-menu,
#site-navigation ul,
.main-navigation .nav-menu,
.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#site-navigation .nav-menu > li,
.main-navigation .nav-menu > li {
    position: relative;
    display: flex;
    align-items: center;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

/* Remove bullet points explicitly */
#site-navigation .nav-menu li::before,
.main-navigation .nav-menu li::before,
#site-navigation .nav-menu li::marker,
.main-navigation .nav-menu li::marker {
    display: none !important;
    content: none !important;
}

/* Add dividers between menu items */
#site-navigation .nav-menu > li:not(:last-child)::after,
.main-navigation .nav-menu > li:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    height: 8px;
    background-color: rgba(9, 23, 23, 0.25);
    margin: 0 var(--space-5);
}

#site-navigation .nav-menu > li > a,
.main-navigation .nav-menu > li > a {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: var(--font-normal);
    color: var(--color-text-heading);
    text-decoration: none;
    padding: var(--space-2) var(--space-3);
    transition: var(--transition-fast);
    white-space: nowrap;
    position: relative;
}

#site-navigation .nav-menu > li > a:hover,
#site-navigation .nav-menu > li > a:focus,
.main-navigation .nav-menu > li > a:hover,
.main-navigation .nav-menu > li > a:focus {
    color: var(--color-primary);
}

/* Enhanced Active Menu Item Styling */
#site-navigation .nav-menu > li.current-menu-item > a,
#site-navigation .nav-menu > li.current_page_item > a,
#site-navigation .nav-menu > li.current-menu-ancestor > a,
#site-navigation .nav-menu > li.current-menu-parent > a,
#site-navigation .nav-menu > li.current_page_parent > a,
#site-navigation .nav-menu > li > a[aria-current="page"],
.main-navigation .nav-menu > li.current-menu-item > a,
.main-navigation .nav-menu > li.current_page_item > a,
.main-navigation .nav-menu > li.current-menu-ancestor > a,
.main-navigation .nav-menu > li.current-menu-parent > a,
.main-navigation .nav-menu > li.current_page_parent > a,
.main-navigation .nav-menu > li > a[aria-current="page"] {
    color: var(--color-primary);
}


/* Submenu / Dropdown */
.main-navigation .nav-menu > li > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-3) 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    list-style: none;
    margin: 0;
    z-index: var(--z-dropdown);
}

.main-navigation .nav-menu > li:hover > .sub-menu,
.main-navigation .nav-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li a {
    display: block;
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-base);
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.main-navigation .sub-menu li a:hover {
    background-color: var(--color-bg-tertiary);
    color: var(--color-primary);
}

/* ==========================================================================
   MOBILE SIDEBAR NAVIGATION
   ========================================================================== */

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999998; /* Just below sidebar */
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* Admin bar adjustments for overlay */
.admin-bar .mobile-menu-overlay {
    top: var(--wp-admin--admin-bar--height, 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .mobile-menu-overlay {
        top: var(--wp-admin--admin-bar--height, 46px);
    }
}

@media screen and (max-width: 600px) {
    .admin-bar .mobile-menu-overlay {
        top: 0;
    }
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background-color: #13343b; /* Dark teal from Figma */
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999999; /* Above admin bar */
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.mobile-sidebar.is-open {
    transform: translateX(0);
}

/* Admin bar adjustments for sidebar */
.admin-bar .mobile-sidebar {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100vh - var(--wp-admin--admin-bar--height, 32px));
    height: calc(100dvh - var(--wp-admin--admin-bar--height, 32px));
}

@media screen and (max-width: 782px) {
    .admin-bar .mobile-sidebar {
        top: var(--wp-admin--admin-bar--height, 46px);
        height: calc(100vh - var(--wp-admin--admin-bar--height, 46px));
        height: calc(100dvh - var(--wp-admin--admin-bar--height, 46px));
    }
}

@media screen and (max-width: 600px) {
    .admin-bar .mobile-sidebar {
        top: 0;
        height: 100vh;
        height: 100dvh;
    }
}

/* Mobile Sidebar Header */
.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    min-height: 64px;
}

.mobile-sidebar-logo img {
    width: 90px;
    height: auto;
    filter: brightness(0) invert(1); /* Make logo white */
}

.mobile-sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    color: rgba(255, 255, 255, 0.7);
}

.mobile-sidebar-close:hover,
.mobile-sidebar-close:focus {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Mobile Sidebar Navigation */
.mobile-sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu,
.mobile-sidebar-nav ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-menu li,
.mobile-sidebar-nav ul li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.mobile-menu li::before,
.mobile-menu li::marker,
.mobile-sidebar-nav ul li::before,
.mobile-sidebar-nav ul li::marker {
    display: none !important;
    content: none !important;
}

.mobile-menu > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: var(--font-normal);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu > li > a:hover,
.mobile-menu > li > a:focus {
    background-color: rgba(255, 255, 255, 0.06);
    color: #fff;
}

/* Shop Now CTA item - highlighted */
.mobile-menu > li.menu-item-shop-now {
    margin: 8px 16px 16px;
}

.mobile-menu > li.menu-item-shop-now > a {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #1a5fb8 100%);
    color: #fff !important;
    font-weight: var(--font-semibold);
    border-radius: 25px;
    border-bottom: none;
    justify-content: center;
    padding: 12px 24px;
    box-shadow: 0 4px 15px rgba(22, 82, 153, 0.3);
}

.mobile-menu > li.menu-item-shop-now > a:hover,
.mobile-menu > li.menu-item-shop-now > a:focus {
    background: linear-gradient(135deg, #124080 0%, #165299 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(22, 82, 153, 0.4);
}

.mobile-menu > li.menu-item-shop-now .shop-icon {
    flex-shrink: 0;
}

/* Active state in mobile sidebar */
.mobile-menu > li.current-menu-item > a,
.mobile-menu > li.current_page_item > a,
.mobile-menu > li.current-menu-ancestor > a,
.mobile-menu > li.current-menu-parent > a,
.mobile-menu > li.current_page_parent > a,
.mobile-menu > li > a[aria-current="page"] {
    color: #31b8c6; /* Highlight color */
    font-weight: var(--font-medium);
    background-color: rgba(49, 184, 198, 0.08);
    border-left: 3px solid #31b8c6;
    padding-left: 17px;
}

/* Mobile menu item with dropdown */
.mobile-menu > li.menu-item-has-children {
    position: relative;
}

.mobile-menu > li.menu-item-has-children > a {
    padding-right: 50px; /* Make room for toggle button */
}

/* Mobile dropdown toggle button */
.mobile-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mobile-dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.mobile-menu > li.is-expanded > .mobile-dropdown-toggle svg {
    transform: rotate(180deg);
}

/* Mobile submenu */
.mobile-menu .sub-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: rgba(0, 0, 0, 0.15);
}

.mobile-menu .sub-menu li a {
    display: block;
    padding: var(--space-3) var(--space-6) var(--space-3) var(--space-8);
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu .sub-menu li a:hover,
.mobile-menu .sub-menu li a:focus {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu .sub-menu li.current-menu-item > a {
    color: #31b8c6;
    font-weight: var(--font-medium);
}

/* Mobile submenu styling improvements */
.mobile-menu + .mobile-menu {
    border-top: none;
}

/* ==========================================================================
   MOBILE HEADER ACTIONS & TOGGLE
   ========================================================================== */

/* Mobile Header Actions (Shop Now + Burger) */
.mobile-header-actions {
    display: none;
    align-items: center;
    gap: var(--space-3);
}

.btn-shop-now-mobile-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    background-color: var(--color-primary-dark);
    color: var(--color-text-white);
    border-radius: var(--radius-5xl);
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-shop-now-mobile-header:hover,
.btn-shop-now-mobile-header:focus {
    background-color: #124080;
    color: var(--color-text-white);
}

/* Mobile Menu Toggle (Burger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    position: relative;
    z-index: calc(var(--z-modal) + 2);
}

.menu-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-heading);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    transform-origin: center;
}

/* Animated burger to X transformation */
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Desktop Shop Now Button */
.btn-shop-now-desktop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    background-color: var(--color-primary-dark);
    color: var(--color-text-white);
    font-family: var(--font-primary);
    font-size: 13.9px;
    font-weight: var(--font-medium);
    padding: 11px 24px;
    border-radius: var(--radius-5xl);
    text-decoration: none;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-shop-now-desktop:hover,
.btn-shop-now-desktop:focus {
    background-color: #124080;
    color: var(--color-text-white);
    text-decoration: none;
}

.btn-shop-now-desktop .cart-icon {
    flex-shrink: 0;
}

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* ==========================================================================
   HEADER RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 991px) {
    .header-container {
        padding: 0 var(--space-5);
    }
    
    /* Hide desktop navigation and CTA */
    .desktop-nav,
    .btn-shop-now-desktop {
        display: none;
    }
    
    /* Show mobile header actions */
    .mobile-header-actions {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-right {
        gap: var(--space-4);
    }
}

@media (max-width: 575px) {
    .header-container {
        padding: 0 var(--space-4);
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    flex-shrink: 0;
    background-color: var(--color-bg-tertiary); /* Same as header - #fbfaf4 */
    padding: var(--space-5) 0;
}

.footer-container {
    width: 100%;
    max-width: var(--container-full);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo a {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-logo a:hover img {
    opacity: 1;
}

/* Footer Navigation */
.footer-navigation {
    display: flex;
    align-items: center;
}

.footer-menu,
.footer-navigation ul {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-menu li,
.footer-navigation ul li {
    position: relative;
    display: flex;
    align-items: center;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

/* Remove bullet points explicitly */
.footer-menu li::before,
.footer-navigation ul li::before,
.footer-menu li::marker,
.footer-navigation ul li::marker {
    display: none !important;
    content: none !important;
}

/* Add dividers between footer menu items */
.footer-menu li:not(:last-child)::after,
.footer-navigation ul li:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    height: 8px;
    background-color: rgba(9, 23, 23, 0.25);
    margin: 0 var(--space-4);
}

.footer-menu li a,
.footer-navigation ul li a {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.footer-menu li a:hover,
.footer-menu li a:focus,
.footer-navigation ul li a:hover,
.footer-navigation ul li a:focus {
    color: var(--color-primary);
}

/* Footer Copyright */
.footer-copyright {
    display: flex;
    align-items: center;
}

.footer-copyright p {
    margin: 0;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-normal);
    color: var(--color-text-tertiary);
}

/* Footer responsive styles */
@media (max-width: 767px) {
    .accore-content-item:last-child, .accore-content-item--last {
        margin-bottom: 60px !important;
    }
    .footer-container {
        flex-direction: column;
        gap: var(--space-4);
        padding: 0 var(--space-5);
    }
    
    .footer-copyright {
        order: 3;
    }
}

/* ==========================================================================
   SIDEBAR (AI Assistant Style)
   ========================================================================== */

.sidebar {
    width: var(--sidebar-collapsed);
    background-color: var(--color-bg-dark-alt);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    transition: var(--transition-normal);
}

.sidebar.expanded {
    width: var(--sidebar-expanded);
}

.sidebar-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-3);
    color: var(--color-text-light-secondary);
    font-size: var(--text-xs);
    text-align: center;
}

.sidebar-nav-item:hover {
    color: var(--color-text-light);
    text-decoration: none;
}

.sidebar-nav-item.active {
    color: var(--color-text-light);
}

.sidebar-nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background-color: transparent;
    transition: var(--transition-fast);
}

.sidebar-nav-icon:hover {
    background-color: var(--color-bg-overlay);
}

/* ==========================================================================
   WOOCOMMERCE STYLES
   ========================================================================== */

/* Product Grid */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-8);
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce ul.products li.product {
    margin: 0;
    padding: 0;
    text-align: left;
}

/* Product Card */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
    text-decoration: none;
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    margin-bottom: var(--space-4);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
    padding: 0;
}

.woocommerce ul.products li.product .price {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--color-text-primary);
    display: block;
    margin-bottom: var(--space-4);
}

.woocommerce ul.products li.product .price del {
    color: var(--color-text-tertiary);
    font-weight: var(--font-normal);
    margin-right: var(--space-2);
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    color: var(--color-primary);
}

/* Add to Cart Button */
.woocommerce ul.products li.product .button {
    width: 100%;
    margin-top: var(--space-3);
}

/* Single Product */
.woocommerce div.product {
    padding-top: var(--space-8);
}

.woocommerce div.product div.images {
    margin-bottom: var(--space-8);
}

.woocommerce div.product div.images img {
    border-radius: var(--radius-2xl);
}

.woocommerce div.product .product_title {
    font-size: var(--text-7xl);
    font-weight: var(--font-bold);
    color: var(--color-text-heading);
    margin-bottom: var(--space-4);
}

.woocommerce div.product p.price {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-5);
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-7);
}

/* Quantity Input */
.woocommerce .quantity .qty {
    width: 80px;
    height: 50px;
    text-align: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

/* Cart */
.woocommerce-cart table.cart {
    border: none;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.woocommerce-cart table.cart th {
    background-color: var(--color-bg-tertiary);
    font-weight: var(--font-medium);
    padding: var(--space-5);
}

.woocommerce-cart table.cart td {
    padding: var(--space-5);
    border-bottom: 1px solid var(--color-border);
}

.woocommerce-cart table.cart img {
    width: 80px;
    border-radius: var(--radius-lg);
}

/* Checkout */
.woocommerce-checkout #customer_details {
    margin-bottom: var(--space-8);
}

.woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.woocommerce form.checkout_coupon {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-7);
}

.woocommerce-checkout #payment {
    background-color: var(--color-bg-tertiary);
    border-radius: var(--radius-2xl);
    padding: var(--space-7);
}

.woocommerce-checkout #payment ul.payment_methods {
    border: none;
    padding: 0;
    margin-bottom: var(--space-5);
}

.woocommerce-checkout #payment ul.payment_methods li {
    padding: var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
}

.woocommerce-checkout #place_order {
    width: 100%;
    height: 44px;
    font-size: var(--text-lg);
}

/* Order Summary */
.woocommerce-checkout-review-order-table {
    border: none;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: var(--space-4);
    border-bottom: 1px solid var(--color-border);
}

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    margin-bottom: var(--space-5);
}

.woocommerce-message {
    background-color: #ecfdf5;
    border-color: var(--color-success);
    color: #065f46;
}

.woocommerce-info {
    background-color: #eff6ff;
    border-color: var(--color-info);
    color: #1e40af;
}

.woocommerce-error {
    background-color: #fef2f2;
    border-color: var(--color-error);
    color: #991b1b;
}

/* Star Rating */
.woocommerce .star-rating {
    color: var(--color-accent);
}

.woocommerce .star-rating::before {
    color: var(--color-border);
}

/* Sale Badge */
.woocommerce span.onsale {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* Text Colors */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-muted { color: var(--color-text-muted); }
.text-white { color: var(--color-text-white); }
.text-heading { color: var(--color-text-heading); }

/* Background Colors */
.bg-primary { background-color: var(--color-bg-primary); }
.bg-secondary { background-color: var(--color-bg-secondary); }
.bg-tertiary { background-color: var(--color-bg-tertiary); }
.bg-dark { background-color: var(--color-bg-dark); }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flexbox */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.flex-wrap { flex-wrap: wrap; }

/* Spacing Utilities */
.m-0 { margin: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.p-4 { padding: var(--space-4); }
.p-5 { padding: var(--space-5); }

/* Width */
.w-full { width: 100%; }
.w-auto { width: auto; }

/* Border Radius */
.rounded { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

/* Visibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --gutter-lg: 32px;
    }
    
    h1, .h1 {
        font-size: 42px;
        line-height: 52px;
    }
    
    h2, .h2 {
        font-size: 36px;
        line-height: 44px;
    }
    
    .container {
        padding-left: var(--gutter-md);
        padding-right: var(--gutter-md);
    }
    
    .woocommerce-checkout .col2-set {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --gutter-lg: 16px;
        --gutter-md: 16px;
    }
    
    h1, .h1 {
        font-size: 32px;
        line-height: 40px;
    }
    
    h2, .h2 {
        font-size: 28px;
        line-height: 36px;
    }
    
    h3, .h3 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .site-header {
        height: 60px;
    }
    
    .header-container {
        padding: 0 16px;
    }
    
    .section {
        padding-top: var(--space-10);
        padding-bottom: var(--space-10);
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .btn,
    button,
    input[type="submit"] {
        padding: 12px 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="password"],
    textarea,
    select {
        height: 44px;
        padding: 12px 16px;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    a,
    a:visited {
        text-decoration: underline;
    }
    
    a[href]::after {
        content: " (" attr(href) ")";
    }
    
    img {
        max-width: 100% !important;
    }
    
    .site-header,
    .sidebar {
        display: none !important;
    }
}

/* ==========================================================================
   PAGE HERO BLOCK
   ========================================================================== */

.accore-page-hero {
    position: relative;
    height: 259px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-bg-dark);
    width: 100%;
}

.accore-page-hero__background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.accore-page-hero__overlay {
    position: absolute;
    inset: 0;
}

.accore-page-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.65) 100%);
}

.accore-page-hero__content {
    position: relative;
    z-index: 10;
    text-align: left;
    padding: 59px 240px 0 240px;
    max-width: 1440px;
    width: 100%;
    box-sizing: border-box;
}

.accore-page-hero__heading {
    color: #fbfaf4;
    font-family: var(--font-primary);
    font-size: 72px;
    font-weight: var(--font-regular);
    letter-spacing: -1.44px;
    line-height: 72px;
    margin: 0 0 16px 0;
}

.accore-page-hero__description {
    color: #fbfaf4;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--font-regular);
    line-height: 21px;
    margin: 0;
    padding-left: 8px;
    max-width: 484px;
}

/* Responsive */
@media (max-width: 1024px) {
    .accore-page-hero__content {
        padding: 50px 120px 0 120px;
    }

    .accore-page-hero__heading {
        font-size: 56px;
        line-height: 56px;
    }
}

@media (max-width: 768px) {
    .accore-page-hero {
        height: 220px;
    }

    .accore-page-hero__content {
        padding: 40px 24px 0 24px;
    }

    .accore-page-hero__heading {
        font-size: 40px;
        line-height: 44px;
        letter-spacing: -1px;
    }

    .accore-page-hero__description {
        font-size: 13px;
        line-height: 19px;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .accore-page-hero {
        height: 180px;
    }

    .accore-page-hero__content {
        padding: 32px 16px 0 16px;
    }

    .accore-page-hero__heading {
        font-size: 32px;
        line-height: 36px;
    }
}

/* ==========================================================================
   Accore Section Header Block
   ========================================================================== */

.accore-section-header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 240px 33px 240px;
}

/* About Us page variant - section headers after other content blocks */
.page-template-about-us .accore-section-header,
.page-id-71 .accore-section-header {
    padding-top: 0;
}

/* About Us page background */
.page-id-71 .site-content,
.page-id-71 .entry-content {
    background-color: #fbfaf4;
}
.page-id-68 .site-content,
.page-id-68 .entry-content {
    background-color: #fbfaf4;
}


.accore-section-header__title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 43.5px;
    line-height: 52.8px;
    letter-spacing: -1.92px;
    color: #13343b;
    margin: 0 0 20px 0;
    padding: 0;
}

.accore-section-header__description {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 17.7px;
    line-height: 27px;
    color: #13343b;
    max-width: 907px;
}

.accore-section-header__description p {
    margin: 0 0 1em 0;
}

.accore-section-header__description p:last-child {
    margin-bottom: 0;
}

/* Section Header Responsive */
@media (max-width: 1024px) {
    .accore-section-header {
        padding: 0 60px 24px 60px;
    }

    .accore-section-header__title {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -1.5px;
    }

    .accore-section-header__description {
        font-size: 16px;
        line-height: 24px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .accore-section-header {
        padding: 0 32px 20px 32px;
    }

    .accore-section-header__title {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: -1px;
    }

    .accore-section-header__description {
        font-size: 15px;
        line-height: 23px;
    }
}

@media (max-width: 480px) {
    .accore-section-header {
        padding: 0 16px 16px 16px;
    }

    .accore-section-header__title {
        font-size: 24px;
        line-height: 30px;
    }

    .accore-section-header__description {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ==========================================================================
   Accore Content Item Block
   ========================================================================== */

.accore-content-item {
    max-width: 1440px;
    margin: 0 auto;
    padding: 33px 240px 0 240px;
}

.accore-content-item__separator {
    height: 1px;
    background-color: rgba(19, 52, 59, 0.15);
    margin-bottom: 33px;
    max-width: 983px;
}

.accore-content-item__inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.accore-content-item__title-col {
    flex: 0 0 276px;
    min-width: 276px;
}

.accore-content-item__title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.54px;
    color: #13343b;
    margin: 0;
    padding: 0;
}

.accore-content-item__content-col {
    flex: 1;
    max-width: 629px;
}

.accore-content-item__content {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.16px;
    color: #13343b;
}

.accore-content-item__content p {
    margin: 0 0 1em 0;
}

.accore-content-item__content p:last-child {
    margin-bottom: 0;
}

.accore-content-item__content ul,
.accore-content-item__content ol {
    margin: 0.5em 0 1em 24px;
    padding: 0;
    list-style-position: outside;
}

.accore-content-item__content ul {
    list-style-type: disc;
}

.accore-content-item__content ol {
    list-style-type: decimal;
}

.accore-content-item__content li {
    margin-bottom: 0.25em;
    line-height: 27px;
}

.accore-content-item__content strong,
.accore-content-item__content b {
    font-weight: 700;
    text-decoration: underline;
}

.accore-content-item__content a {
    font-weight: 700;
    text-decoration: underline;
    color: #13343b;
}

.accore-content-item__content a:hover {
    color: #20808d;
}

/* Last content item - add bottom margin */
.accore-content-item:last-child,
.accore-content-item--last {
    margin-bottom: 100px;
}

/* Content Item Responsive */
@media (max-width: 1024px) {
    .accore-content-item {
        padding: 33px 60px 0 60px;
    }

    .accore-content-item__inner {
        gap: 40px;
    }

    .accore-content-item__title-col {
        flex: 0 0 220px;
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .accore-content-item {
        padding: 24px 32px 0 32px;
    }

    .accore-content-item__separator {
        margin-bottom: 24px;
    }

    .accore-content-item__inner {
        flex-direction: column;
        gap: 16px;
    }

    .accore-content-item__title-col {
        flex: none;
        min-width: auto;
        width: 100%;
    }

    .accore-content-item__content-col {
        max-width: 100%;
    }

    .accore-content-item__title {
        font-size: 17px;
    }

    .accore-content-item__content {
        font-size: 15px;
        line-height: 23px;
    }
}

@media (max-width: 480px) {
    .accore-content-item {
        padding: 20px 16px 0 16px;
    }

    .accore-content-item__separator {
        margin-bottom: 20px;
    }

    .accore-content-item__title {
        font-size: 16px;
        line-height: 24px;
    }

    .accore-content-item__content {
        font-size: 14px;
        line-height: 22px;
    }

    .accore-content-item__content ul,
    .accore-content-item__content ol {
        margin-left: 20px;
    }
}

/* ==========================================================================
   Accore Contact Box Block
   ========================================================================== */

.accore-contact-box {
    padding: 0;
}

.accore-contact-box__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 27px;
    color: #13343b;
    margin: 0 0 16px 0;
    padding: 0;
}

.accore-contact-box__content {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #13343b;
}

.accore-contact-box__content p {
    margin: 0 0 1em 0;
}

.accore-contact-box__content p:last-child {
    margin-bottom: 0;
}

.accore-contact-box__content a {
    text-decoration: underline;
    color: #13343b;
}

.accore-contact-box__content a:hover {
    color: #20808d;
}

/* Contact Grid Layout */
.accore-contact-grid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 88px 240px 100px 240px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 40px;
}

/* Contact Grid Responsive */
@media (max-width: 1024px) {
    .accore-contact-grid {
        padding: 60px 60px 80px 60px;
        gap: 60px 30px;
    }
}

@media (max-width: 768px) {
    .accore-contact-grid {
        padding: 48px 32px 60px 32px;
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .accore-contact-box__title {
        font-size: 22px;
    }

    .accore-contact-box__content {
        font-size: 15px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .accore-contact-grid {
        padding: 32px 16px 48px 16px;
        gap: 40px;
    }

    .accore-contact-box__title {
        font-size: 20px;
    }

    .accore-contact-box__content {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ==========================================================================
   Accore Feature Card Block
   ========================================================================== */

.accore-feature-card {
    background-color: #fff;
    border: 1px solid rgba(143, 143, 143, 0.5);
    border-radius: 8px;
    padding: 37px 56px 37px 56px;
    max-width: 960px;
    margin: 0 auto 22px auto;
}

.accore-feature-card:last-of-type {
    margin-bottom: 24px;
}

.accore-feature-card__inner {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.accore-feature-card__title-col {
    flex: 0 0 404px;
    display: flex;
    align-items: center;
    padding-right: 56px;
}

.accore-feature-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.54px;
    color: #13343b;
    margin: 0;
    padding: 0;
}

.accore-feature-card__content-col {
    flex: 0 0 422px;
}

.accore-feature-card__content {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.16px;
    color: #13343b;
}

.accore-feature-card__content p {
    margin: 0 0 1em 0;
}

.accore-feature-card__content p:last-child {
    margin-bottom: 0;
}

.accore-feature-card__content ul,
.accore-feature-card__content ol {
    margin: 0 0 1em 24px;
    padding: 0;
}

.accore-feature-card__content ul:last-child,
.accore-feature-card__content ol:last-child {
    margin-bottom: 0;
}

.accore-feature-card__content li {
    margin-bottom: 0;
}

/* Feature Card Responsive */
@media (max-width: 1024px) {
    .accore-feature-card {
        padding: 32px 40px;
    }

    .accore-feature-card__title-col {
        flex: 0 0 280px;
        padding-right: 40px;
    }

    .accore-feature-card__content-col {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .accore-feature-card {
        padding: 24px;
        margin: 0 32px 20px 32px;
    }

    .accore-feature-card:last-of-type {
        margin-bottom: 40px;
    }

    .accore-feature-card__inner {
        flex-direction: column;
        gap: 16px;
    }

    .accore-feature-card__title-col {
        flex: none;
        padding-right: 0;
    }

    .accore-feature-card__content-col {
        flex: none;
        max-width: 100%;
    }

    .accore-feature-card__title {
        font-size: 17px;
    }

    .accore-feature-card__content {
        font-size: 15px;
        line-height: 23px;
    }
}

@media (max-width: 480px) {
    .accore-feature-card {
        padding: 20px 16px;
        margin: 0 16px 16px 16px;
    }

    .accore-feature-card__title {
        font-size: 16px;
    }

    .accore-feature-card__content {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ==========================================================================
   Accore Two Column Content Block
   ========================================================================== */

.accore-two-column-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 240px 87px 240px;
}

.accore-two-column-content__inner {
    display: flex;
    gap: 67px;
}

.accore-two-column-content__column {
    flex: 0 0 calc(50% - 33.5px);
}

.accore-two-column-content__column--left {
    max-width: 443px;
}

.accore-two-column-content__column--right {
    max-width: 452px;
}

.accore-two-column-content--single .accore-two-column-content__column {
    max-width: 443px;
}

.accore-two-column-content__title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 27.7px;
    line-height: 42px;
    letter-spacing: -0.56px;
    color: #13343b;
    margin: 0 0 23px 0;
    padding: 0;
}

.accore-two-column-content__content {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16.6px;
    line-height: 27.2px;
    letter-spacing: -0.34px;
    color: rgba(19, 51, 59, 0.8);
}

.accore-two-column-content__content p {
    margin: 0 0 1em 0;
}

.accore-two-column-content__content p:last-child {
    margin-bottom: 0;
}

.accore-two-column-content__content ul,
.accore-two-column-content__content ol {
    margin: 0 0 1em 25px;
    padding: 0;
}

.accore-two-column-content__content ul:last-child,
.accore-two-column-content__content ol:last-child {
    margin-bottom: 0;
}

.accore-two-column-content__content li {
    margin-bottom: 0;
}

.accore-two-column-content__content strong,
.accore-two-column-content__content b {
    font-weight: 700;
}

/* Two Column Content Responsive */
@media (max-width: 1200px) {
    .accore-two-column-content {
        padding: 0 60px 60px 60px;
    }

    .accore-two-column-content__column--left,
    .accore-two-column-content__column--right {
        max-width: none;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .accore-two-column-content {
        padding: 0 32px 40px 32px;
    }

    .accore-two-column-content__inner {
        flex-direction: column;
        gap: 40px;
    }

    .accore-two-column-content__column {
        flex: none;
    }

    .accore-two-column-content--single .accore-two-column-content__column {
        max-width: none;
    }

    .accore-two-column-content__title {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .accore-two-column-content__content {
        font-size: 15px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .accore-two-column-content {
        padding: 0 16px 32px 16px;
    }

    .accore-two-column-content__inner {
        gap: 32px;
    }

    .accore-two-column-content__title {
        font-size: 20px;
        line-height: 28px;
    }

    .accore-two-column-content__content {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ==========================================================================
   Accore Centered Text Block
   ========================================================================== */

.accore-centered-text {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 240px 97px 240px;
    text-align: center;
}

.accore-centered-text__title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 40.1px;
    line-height: 62.4px;
    letter-spacing: -1.4px;
    color: #13343b;
    margin: 0 0 47px 0;
    padding: 0;
}

.accore-centered-text__content {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 17.7px;
    line-height: 27px;
    color: #13343b;
    max-width: 652px;
    margin: 0 auto 27px auto;
}

.accore-centered-text__content p {
    margin: 0 0 1em 0;
}

.accore-centered-text__content p:last-child {
    margin-bottom: 0;
}

.accore-centered-text__bold-content {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 17.7px;
    line-height: 27px;
    color: #13343b;
    max-width: 652px;
    margin: 0 auto;
}

.accore-centered-text__bold-content p {
    margin: 0 0 1em 0;
}

.accore-centered-text__bold-content p:last-child {
    margin-bottom: 0;
}

/* Centered Text Responsive */
@media (max-width: 1200px) {
    .accore-centered-text {
        padding: 24px 60px 72px 60px;
    }

    .accore-centered-text__title {
        margin-bottom: 36px;
    }
}

@media (max-width: 768px) {
    .accore-centered-text {
        padding: 20px 32px 56px 32px;
    }

    .accore-centered-text__title {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 28px;
    }

    .accore-centered-text__content,
    .accore-centered-text__bold-content {
        font-size: 15px;
        line-height: 24px;
    }

    .accore-centered-text__content {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .accore-centered-text {
        padding: 16px 16px 40px 16px;
    }

    .accore-centered-text__title {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 24px;
    }

    .accore-centered-text__content,
    .accore-centered-text__bold-content {
        font-size: 14px;
        line-height: 22px;
    }

    .accore-centered-text__content {
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   About Us Page - Mission Statement
   ========================================================================== */

.accore-mission-statement {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 240px 96px 240px;
}

.accore-mission-statement__text + .accore-mission-statement__text {
    margin-top: 0;
}

.accore-mission-statement__text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 43.5px;
    line-height: 52.8px;
    letter-spacing: -1.92px;
    color: #13343b;
    max-width: 1108px;
    margin: 0;
    padding: 0;
}

.accore-mission-statement__text span.dim {
    color: rgba(19, 52, 59, 0.5);
}

/* Mission Statement Responsive */
@media (max-width: 1200px) {
    .accore-mission-statement {
        padding: 60px 60px 72px 60px;
    }

    .accore-mission-statement__text {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -1.5px;
    }
}

@media (max-width: 768px) {
    .accore-mission-statement {
        padding: 48px 32px 56px 32px;
    }

    .accore-mission-statement__text {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -1px;
    }
}

@media (max-width: 480px) {
    .accore-mission-statement {
        padding: 32px 16px 40px 16px;
    }

    .accore-mission-statement__text {
        font-size: 22px;
        line-height: 30px;
        letter-spacing: -0.5px;
    }
}

/* ==========================================================================
   About Us Page - Section with Description
   ========================================================================== */

.accore-about-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 240px 33px 240px;
}

.accore-about-section__heading {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 43.5px;
    line-height: 52.8px;
    letter-spacing: -1.92px;
    color: #13343b;
    margin: 0;
    padding: 0;
}

.accore-about-section__description {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 17.7px;
    line-height: 27px;
    color: #13343b;
    max-width: 510px;
    margin: 33px 0 0 0;
    padding: 0;
}

/* About Section Responsive */
@media (max-width: 1200px) {
    .accore-about-section {
        padding: 0 60px 24px 60px;
    }

    .accore-about-section__heading {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .accore-about-section {
        padding: 0 32px 20px 32px;
    }

    .accore-about-section__heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .accore-about-section__description {
        font-size: 15px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .accore-about-section {
        padding: 0 16px 16px 16px;
    }

    .accore-about-section__heading {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .accore-about-section__description {
        font-size: 14px;
        line-height: 22px;
    }
}

/* About Us Page - Vision Two Column Layout */
.accore-vision-columns {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 240px 126px 240px;
    display: flex;
    gap: 54px;
}

.accore-vision-columns__left {
    flex: 0 0 510px;
}

.accore-vision-columns__right {
    flex: 0 0 372px;
}

.accore-vision-columns__text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 17.7px;
    line-height: 27px;
    color: #13343b;
    margin: 0 0 27px 0;
}

.accore-vision-columns__text:last-child {
    margin-bottom: 0;
}

.accore-vision-columns__list-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 17.7px;
    line-height: 27px;
    color: #13343b;
    margin: 0;
}

.accore-vision-columns ul {
    margin: 0;
    padding: 0;
    list-style: disc;
    margin-left: 26.55px;
}

.accore-vision-columns ul li {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 17.7px;
    line-height: 27px;
    color: #13343b;
}

/* Vision Columns Responsive */
@media (max-width: 1200px) {
    .accore-vision-columns {
        padding: 0 60px 80px 60px;
        gap: 40px;
    }

    .accore-vision-columns__left {
        flex: 1;
    }

    .accore-vision-columns__right {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .accore-vision-columns {
        padding: 0 32px 56px 32px;
        flex-direction: column;
        gap: 32px;
    }

    .accore-vision-columns__text {
        margin-bottom: 20px;
    }

    .accore-vision-columns__text,
    .accore-vision-columns__list-title,
    .accore-vision-columns ul li {
        font-size: 15px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .accore-vision-columns {
        padding: 0 16px 40px 16px;
        gap: 24px;
    }

    .accore-vision-columns__text,
    .accore-vision-columns__list-title,
    .accore-vision-columns ul li {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ==========================================================================
   LEGAL PAGES (Terms & Conditions, Privacy Policy)
   ========================================================================== */

.accore-legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.accore-legal-page .legal-page-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-heading);
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}

.accore-legal-page .legal-date {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0 0 32px 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.accore-legal-page p {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-primary);
    margin: 0 0 20px 0;
}

.accore-legal-page .legal-section-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-heading);
    margin: 48px 0 16px 0;
    padding-top: 24px;
    border-top: 1px solid rgba(9, 23, 23, 0.08);
}

.accore-legal-page .legal-section-title:first-of-type {
    margin-top: 32px;
    padding-top: 0;
    border-top: none;
}

.accore-legal-page .legal-subsection-title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-heading);
    margin: 24px 0 12px 0;
}

.accore-legal-page ul,
.accore-legal-page ol {
    margin: 0 0 24px 0;
    padding-left: 24px;
}

.accore-legal-page ul li,
.accore-legal-page ol li {
    font-family: var(--font-secondary);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.accore-legal-page ul li::marker {
    color: var(--color-primary);
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .accore-legal-page {
        padding: 32px 20px 60px;
    }

    .accore-legal-page .legal-page-title {
        font-size: 32px;
    }

    .accore-legal-page .legal-section-title {
        font-size: 18px;
        margin: 36px 0 14px 0;
        padding-top: 20px;
    }

    .accore-legal-page p,
    .accore-legal-page ul li,
    .accore-legal-page ol li {
        font-size: 15px;
    }
}
:root :where(.is-layout-flow) > * {
    margin-block-start: 0 !important;
}
@media (max-width: 480px) {
    .accore-legal-page {
        padding: 24px 16px 48px;
    }

    .accore-legal-page .legal-page-title {
        font-size: 28px;
    }

    .accore-legal-page .legal-section-title {
        font-size: 17px;
        margin: 32px 0 12px 0;
    }

    .accore-legal-page p,
    .accore-legal-page ul li,
    .accore-legal-page ol li {
        font-size: 14px;
    }
}

/* ==========================================================================
   404 ERROR PAGE
   ========================================================================== */

.error-404 {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}

.error-404__container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.error-404__content {
    flex: 1;
    max-width: 480px;
}

.error-404__code {
    font-family: var(--font-primary);
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-primary) 0%, #31b8c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.error-404__title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-text-heading);
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.error-404__message {
    font-family: var(--font-secondary);
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0 0 32px 0;
}

.error-404__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.error-404__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    border: none;
}

.error-404__btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a6b76 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(32, 128, 141, 0.3);
}

.error-404__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32, 128, 141, 0.4);
}

.error-404__btn--secondary {
    background-color: #ffffff;
    color: var(--color-text-heading);
    border: 1px solid var(--color-border);
}

.error-404__btn--secondary:hover {
    background-color: rgba(32, 128, 141, 0.05);
    border-color: var(--color-primary);
}

.error-404__search {
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.error-404__search-label {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0 0 12px 0;
}

.error-404__search .search-form {
    display: flex;
    gap: 8px;
}

.error-404__search .search-field {
    flex: 1;
    font-family: var(--font-secondary);
    font-size: 15px;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: #ffffff;
    color: var(--color-text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.error-404__search .search-field:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(32, 128, 141, 0.1);
}

.error-404__search .search-submit {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px;
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.error-404__search .search-submit:hover {
    background-color: var(--color-primary-hover);
}

.error-404__illustration {
    flex: 0 0 350px;
}

.error-404__illustration svg {
    width: 100%;
    height: auto;
}

/* 404 Page Responsive */
@media (max-width: 900px) {
    .error-404__container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .error-404__content {
        max-width: 100%;
    }

    .error-404__actions {
        justify-content: center;
    }

    .error-404__illustration {
        flex: none;
        max-width: 280px;
    }

    .error-404__search .search-form {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .error-404 {
        padding: 40px 20px;
    }

    .error-404__code {
        font-size: 80px;
    }

    .error-404__title {
        font-size: 28px;
    }

    .error-404__message {
        font-size: 15px;
    }

    .error-404__actions {
        flex-direction: column;
    }

    .error-404__btn {
        width: 100%;
        justify-content: center;
    }

    .error-404__illustration {
        max-width: 200px;
    }

    .error-404__search .search-form {
        flex-direction: column;
    }

    .error-404__search .search-submit {
        width: 100%;
    }
}

/* ==========================================================================
   Archive, Blog, Search & Tag Pages
   ========================================================================== */

.archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}

/* Archive Header */
.archive-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(143, 143, 143, 0.2);
}

.archive-header__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-highlight));
    border-radius: 16px;
    color: #fff;
}

.archive-header__icon svg {
    width: 32px;
    height: 32px;
}

.archive-header__title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: var(--color-text-heading);
    margin: 0 0 12px;
}

.archive-header__description {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-body);
    max-width: 600px;
    margin: 0 auto 16px;
}

.archive-header__count {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-dimmed);
}

/* Archive Search Form */
.archive-header__search {
    margin-top: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.archive-header__search .search-form {
    display: flex;
    gap: 10px;
}

.archive-header__search .search-form label {
    flex: 1;
    display: flex;
}

.archive-header__search .search-field {
    flex: 1;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-family: var(--font-primary);
    font-size: 15px;
    border: 1px solid rgba(143, 143, 143, 0.3);
    border-radius: 8px;
    background: #fff;
    color: var(--color-text-heading);
    transition: var(--transition-fast);
}

.archive-header__search .search-field:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(32, 128, 141, 0.1);
}

.archive-header__search .search-submit {
    height: 48px;
    padding: 0 24px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.archive-header__search .search-submit:hover {
    background: var(--color-highlight);
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Post Card */
.post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(143, 143, 143, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition-fast);
}

.post-card:hover {
    border-color: rgba(32, 128, 141, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.post-card__thumbnail {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(32, 128, 141, 0.1), rgba(49, 184, 198, 0.1));
}

.post-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card:hover .post-card__thumbnail img {
    transform: scale(1.05);
}

.post-card__content {
    padding: 24px;
}

.post-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
}

.post-card__category {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(32, 128, 141, 0.1);
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.post-card__category:hover {
    background: var(--color-primary);
    color: #fff;
}

.post-card__type {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(177, 127, 36, 0.1);
    color: var(--color-accent);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
}

.post-card__date {
    color: var(--color-text-dimmed);
    font-family: var(--font-primary);
}

.post-card__header {
    margin-bottom: 12px;
}

.post-card__title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.3px;
    color: var(--color-text-heading);
    margin: 0;
}

.post-card__title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.post-card__title a:hover {
    color: var(--color-primary);
}

.post-card__excerpt {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-body);
    margin-bottom: 16px;
}

.post-card__excerpt p {
    margin: 0;
}

.post-card__footer {
    padding-top: 16px;
    border-top: 1px solid rgba(143, 143, 143, 0.1);
}

.post-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.post-card__link:hover {
    color: var(--color-highlight);
    gap: 12px;
}

.post-card__link svg {
    transition: transform 0.3s ease;
}

.post-card__link:hover svg {
    transform: translateX(4px);
}

/* Posts Pagination */
.posts-pagination {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(143, 143, 143, 0.2);
    text-align: center;
}

.posts-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.posts-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-heading);
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(143, 143, 143, 0.2);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.posts-pagination .page-numbers:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.posts-pagination .page-numbers.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.posts-pagination .page-numbers.dots {
    background: transparent;
    border-color: transparent;
    pointer-events: none;
}

.posts-pagination .prev,
.posts-pagination .next {
    padding: 0 20px;
}

/* No Results / Not Found */
.no-results {
    padding: 80px 40px;
}

.no-results__container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.no-results__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(143, 143, 143, 0.1);
    border-radius: 50%;
    color: var(--color-text-dimmed);
}

.no-results__title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text-heading);
    margin: 0 0 16px;
}

.no-results__content {
    margin-bottom: 32px;
}

.no-results__content p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-body);
    margin: 0 0 20px;
}

.no-results__content a {
    color: var(--color-primary);
    text-decoration: none;
}

.no-results__content a:hover {
    text-decoration: underline;
}

.no-results__search {
    max-width: 400px;
    margin: 0 auto;
}

.no-results__search .search-form {
    display: flex;
    gap: 10px;
}

.no-results__search .search-form label {
    flex: 1;
    display: flex;
}

.no-results__search .search-field {
    flex: 1;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-family: var(--font-primary);
    font-size: 15px;
    border: 1px solid rgba(143, 143, 143, 0.3);
    border-radius: 8px;
    background: #fff;
    color: var(--color-text-heading);
}

.no-results__search .search-field:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(32, 128, 141, 0.1);
}

.no-results__search .search-submit {
    height: 48px;
    padding: 0 24px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.no-results__search .search-submit:hover {
    background: var(--color-highlight);
}

.no-results__home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.no-results__home-link:hover {
    color: var(--color-highlight);
}

/* Archive Page Responsive */
@media (max-width: 1024px) {
    .archive-container {
        padding: 50px 32px 60px;
    }

    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .archive-header__title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .archive-container {
        padding: 40px 24px 50px;
    }

    .archive-header {
        margin-bottom: 40px;
        padding-bottom: 32px;
    }

    .archive-header__icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }

    .archive-header__icon svg {
        width: 28px;
        height: 28px;
    }

    .archive-header__title {
        font-size: 28px;
    }

    .archive-header__description {
        font-size: 16px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .post-card__content {
        padding: 20px;
    }

    .post-card__title {
        font-size: 18px;
    }

    .posts-pagination {
        margin-top: 40px;
        padding-top: 32px;
    }

    .posts-pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .archive-container {
        padding: 32px 16px 40px;
    }

    .archive-header__title {
        font-size: 24px;
    }

    .archive-header__search .search-form {
        flex-direction: column;
    }

    .archive-header__search .search-submit {
        width: 100%;
    }

    .no-results {
        padding: 60px 20px;
    }

    .no-results__title {
        font-size: 24px;
    }

    .no-results__search .search-form {
        flex-direction: column;
    }

    .no-results__search .search-submit {
        width: 100%;
    }
}

/* ==========================================================================
   Single Post Page - Figma Style (Contact Us pattern)
   ========================================================================== */

/* Main Container - Full Height */
.single-post-main {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 170px);
    background-color: #fbfaf4;
}

/* Hero Header Section - 259px like Figma */
.single-post-hero {
    position: relative;
    height: 259px;
    display: flex;
    align-items: center;
    background-color: #13343b;
    overflow: hidden;
}

.single-post-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.single-post-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.52);
}

/* Gradient overlay on top */
.single-post-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
}

.single-post-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px;
}

.single-post-hero__title {
    font-family: var(--font-primary);
    font-size: 72px;
    font-weight: 400;
    line-height: 72px;
    letter-spacing: -1.44px;
    color: #fbfaf4;
    margin: 0 0 16px;
}

.single-post-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #fbfaf4;
}

.single-post-hero__separator {
    color: rgba(251, 250, 244, 0.5);
}

.single-post-hero__author a,
.single-post-hero__category a {
    color: #fbfaf4;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.single-post-hero__author a:hover,
.single-post-hero__category a:hover {
    opacity: 0.8;
}

.single-post-hero__category a {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(251, 250, 244, 0.15);
    border-radius: 4px;
    font-weight: 500;
}

/* Post Body - Direct on cream background, no card */
.single-post-body {
    flex: 1;
    background-color: #fbfaf4;
    padding: 88px 0 96px;
}

.single-post-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Article - NO card styling, direct on background */
.single-post-article {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

/* Override any WordPress/Gutenberg block styling */
.single-post-article .entry-content,
.single-post-article .entry-content > * {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Kill any white card from Gutenberg blocks */
.single-post-article .wp-block-group,
.single-post-article .wp-block-cover,
.single-post-article .wp-block-columns,
.single-post-article .has-background {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Entry Content Typography - Matching Figma Contact Us */
.single-post-article .entry-content {
    font-family: var(--font-primary);
}

.single-post-article .entry-content > *:first-child {
    margin-top: 0;
}

.single-post-article .entry-content > *:last-child {
    margin-bottom: 0;
}

.single-post-article .entry-content p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #13343b;
    margin: 0 0 27px;
}

.single-post-article .entry-content h2 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 27px;
    color: #13343b;
    margin: 48px 0 16px;
}

.single-post-article .entry-content h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    color: #13343b;
    margin: 40px 0 12px;
}

.single-post-article .entry-content h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    color: #13343b;
    margin: 32px 0 8px;
}

.single-post-article .entry-content a {
    color: #13343b;
    text-decoration: underline;
    transition: var(--transition-fast);
}

.single-post-article .entry-content a:hover {
    color: var(--color-primary);
}

.single-post-article .entry-content ul,
.single-post-article .entry-content ol {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #13343b;
    margin: 0 0 27px;
    padding-left: 24px;
}

.single-post-article .entry-content li {
    margin-bottom: 8px;
}

.single-post-article .entry-content li::marker {
    color: #13343b;
}

.single-post-article .entry-content blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.5);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
}

.single-post-article .entry-content blockquote p {
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    color: #13343b;
    margin: 0;
}

.single-post-article .entry-content pre {
    background: #13343b;
    color: #fbfaf4;
    padding: 24px;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
    margin: 24px 0;
}

.single-post-article .entry-content code {
    background: rgba(19, 52, 59, 0.1);
    color: #13343b;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
}

.single-post-article .entry-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.single-post-article .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.single-post-article .entry-content .wp-caption {
    max-width: 100%;
    margin: 24px 0;
}

.single-post-article .entry-content .wp-caption-text {
    font-size: 14px;
    color: rgba(19, 52, 59, 0.6);
    text-align: center;
    padding-top: 12px;
}

/* Entry Footer - Tags */
.single-post-article .entry-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(19, 52, 59, 0.15);
}

.single-post-article .entry-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.single-post-article .entry-tags__label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: rgba(19, 52, 59, 0.6);
    margin-right: 4px;
}

.single-post-article .entry-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(19, 52, 59, 0.15);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    color: #13343b;
    text-decoration: none;
    transition: all 0.2s ease;
}

.single-post-article .entry-tag:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* Post Navigation */
.single-post-nav {
    display: flex;
    gap: 24px;
    margin-top: 64px;
    width: 100%;
}

.single-post-nav__link {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(19, 52, 59, 0.15);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.single-post-nav__link:hover {
    background: #fff;
    border-color: var(--color-primary);
}

.single-post-nav__link--next {
    text-align: right;
}

.single-post-nav__label {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(19, 52, 59, 0.5);
}

.single-post-nav__title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #13343b;
}

.single-post-nav__link:hover .single-post-nav__title {
    color: var(--color-primary);
}

/* Single Post Responsive */
@media (max-width: 1200px) {
    .single-post-hero__content {
        padding: 0 120px;
    }
    
    .single-post-hero__title {
        font-size: 56px;
        line-height: 60px;
    }
    
    .single-post-body {
        padding: 64px 120px 80px;
    }
}

@media (max-width: 1024px) {
    .single-post-hero {
        height: 220px;
    }
    
    .single-post-hero__content {
        padding: 0 60px;
    }
    
    .single-post-hero__title {
        font-size: 48px;
        line-height: 52px;
    }
    
    .single-post-body {
        padding: 48px 60px 64px;
    }
}

@media (max-width: 768px) {
    .single-post-main {
        min-height: calc(100vh - 233px);
    }
    
    .single-post-hero {
        height: 180px;
    }
    
    .single-post-hero__content {
        padding: 0 32px;
    }
    
    .single-post-hero__title {
        font-size: 36px;
        line-height: 40px;
        letter-spacing: -0.8px;
    }
    
    .single-post-hero__meta {
        font-size: 13px;
    }
    
    .single-post-body {
        padding: 40px 32px 56px;
    }
    
    .single-post-article .entry-content p {
        font-size: 15px;
        line-height: 24px;
    }
    
    .single-post-article .entry-content h2 {
        font-size: 22px;
        margin: 36px 0 12px;
    }
    
    .single-post-article .entry-content h3 {
        font-size: 18px;
        margin: 32px 0 10px;
    }
    
    .single-post-article .entry-content ul,
    .single-post-article .entry-content ol {
        font-size: 15px;
        line-height: 24px;
    }
    
    .single-post-nav {
        flex-direction: column;
        gap: 16px;
    }
    
    .single-post-nav__link {
        padding: 20px 24px;
    }
    
    .single-post-nav__link--next {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .single-post-hero {
        height: 160px;
    }
    
    .single-post-hero__content {
        padding: 0 16px;
    }
    
    .single-post-hero__title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .single-post-body {
        padding: 32px 16px 48px;
    }
    
    .single-post-article .entry-content p {
        font-size: 15px;
        line-height: 23px;
    }
    
    .single-post-article .entry-content h2 {
        font-size: 20px;
    }
    
    .single-post-article .entry-content h3 {
        font-size: 17px;
    }
    
    .single-post-nav__link {
        padding: 16px 20px;
    }
}

/* ==========================================================================
   Pricing Page
   ========================================================================== */

/* White header for pricing page */
.page-id-70 .site-header,
.page-template-template-pricing .site-header {
    background-color: #fff;
}

.page-id-70 .site-content,
.page-template-template-pricing .site-content {
    background-color: #fff;
}

/* Pricing Hero */
.accore-pricing-hero {
    background-color: #fff;
    padding: 80px 120px 60px;
    text-align: center;
}

.accore-pricing-hero__container {
    max-width: 800px;
    margin: 0 auto;
}

.accore-pricing-hero__title {
    font-family: var(--font-primary);
    font-weight: 200;
    font-size: 56.8px;
    line-height: 1.4;
    letter-spacing: -1px;
    color: #091717;
    margin: 0 0 24px;
}

.accore-pricing-hero__description {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #091717;
    max-width: 748px;
    margin: 0 auto 32px;
}

.accore-pricing-hero__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.accore-pricing-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 32px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 40px;
    transition: transform 0.2s ease;
}

.accore-pricing-hero__btn:hover,
.accore-pricing-hero__btn:focus {
    transform: scale(1.03);
    text-decoration: none;
}

.accore-pricing-hero__btn--primary {
    background-color: var(--color-primary);
    color: #fff;
}

.accore-pricing-hero__btn--primary:hover,
.accore-pricing-hero__btn--primary:focus {
    background-color: var(--color-primary);
    color: #fff;
}

.accore-pricing-hero__btn--secondary {
    background-color: transparent;
    color: #091717;
    border: 1px solid var(--color-primary);
}

.accore-pricing-hero__btn--secondary:hover,
.accore-pricing-hero__btn--secondary:focus {
    background-color: transparent;
    color: #091717;
}

/* Pricing Grid */
.accore-pricing-grid {
    background-color: #fff;
    padding: 0 120px 80px;
}

.accore-pricing-grid__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-top: 70px;
}

/* Background image behind cards */
.accore-pricing-grid__bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
    z-index: 0;
}

.accore-pricing-grid__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.accore-pricing-grid__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
    padding: 0 1.5%;
}

/* Card Wrapper - contains card + who-for */
.accore-pricing-card-wrapper {
    display: flex;
    flex-direction: column;
}

/* Free card wrapper - shorter card */
.accore-pricing-card-wrapper:first-child .accore-pricing-card {
    min-height: 410px;
}

/* Pro and Premium card wrappers - taller cards */
.accore-pricing-card-wrapper:nth-child(2) .accore-pricing-card,
.accore-pricing-card-wrapper:nth-child(3) .accore-pricing-card {
    min-height: 616px;
}

/* Pricing Card */
.accore-pricing-card {
    position: relative;
    padding: 34px 23px 40px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
}

.accore-pricing-card--white {
    background-color: #fff;
    border: 1px solid rgba(9, 23, 23, 0.25);
}

.accore-pricing-card--teal {
    background-color: #e5eeea;
    border: 1px solid rgba(32, 128, 141, 0.6);
}

.accore-pricing-card--gold {
    background-color: #f4eedf;
    border: 1px solid rgba(177, 127, 36, 0.6);
}

.accore-pricing-card__header {
    margin-bottom: 16px;
    min-height: 80px;
}

.accore-pricing-card__name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.3px;
    color: #091717;
    margin: 0 0 8px;
}

.accore-pricing-card__description {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 20.8px;
    letter-spacing: -0.3px;
    color: #091717;
    margin: 0;
}

.accore-pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 0;
    margin-bottom: 4px;
}

.accore-pricing-card__amount {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 36px;
    line-height: 43.2px;
    letter-spacing: -0.1px;
    color: #091717;
}

.accore-pricing-card__period {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 19.2px;
    letter-spacing: -0.3px;
    color: rgba(9, 23, 23, 0.5);
}

.accore-pricing-card__yearly {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.1px;
    color: rgba(9, 23, 23, 0.5);
    margin: 0 0 20px;
}

.accore-pricing-card__yearly strong {
    font-weight: 500;
}

.accore-pricing-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 43px;
    width: 100%;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 17px;
    text-decoration: none;
    border-radius: 40px;
    transition: transform 0.2s ease;
    margin-bottom: 24px;
}

.accore-pricing-card__btn:hover,
.accore-pricing-card__btn:focus {
    transform: scale(1.03);
    text-decoration: none;
}

.accore-pricing-card--white .accore-pricing-card__btn {
    background-color: #fff;
    color: #091717;
    border: 1px solid rgba(9, 23, 23, 0.25);
}

.accore-pricing-card--white .accore-pricing-card__btn:hover,
.accore-pricing-card--white .accore-pricing-card__btn:focus {
    background-color: #fff;
    color: #091717;
}

.accore-pricing-card--teal .accore-pricing-card__btn {
    background-color: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
}

.accore-pricing-card--teal .accore-pricing-card__btn:hover,
.accore-pricing-card--teal .accore-pricing-card__btn:focus {
    background-color: var(--color-primary);
    color: #fff;
}

.accore-pricing-card--gold .accore-pricing-card__btn {
    background-color: var(--color-accent);
    color: #fff;
    border: 1px solid var(--color-accent);
}

.accore-pricing-card--gold .accore-pricing-card__btn:hover,
.accore-pricing-card--gold .accore-pricing-card__btn:focus {
    background-color: var(--color-accent);
    color: #fff;
}

.accore-pricing-card__divider {
    height: 1px;
    margin-bottom: 20px;
}

.accore-pricing-card--white .accore-pricing-card__divider {
    background-color: rgba(9, 23, 23, 0.25);
}

.accore-pricing-card--teal .accore-pricing-card__divider {
    background-color: rgba(32, 128, 141, 0.6);
}

.accore-pricing-card--gold .accore-pricing-card__divider {
    background-color: rgba(177, 127, 36, 0.6);
}

.accore-pricing-card__features-intro {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.3px;
    color: #091717;
    margin: 0 0 16px;
}

.accore-pricing-card__features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.accore-pricing-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 15px;
    line-height: 19.5px;
    letter-spacing: -0.3px;
    color: rgba(9, 23, 23, 0.6);
    margin-bottom: 6px;
}

.accore-pricing-card__check {
    flex-shrink: 0;
    margin-top: 4px;
}

.accore-pricing-card--white .accore-pricing-card__check {
    color: #091717;
}

.accore-pricing-card--teal .accore-pricing-card__check {
    color: var(--color-primary);
}

.accore-pricing-card--gold .accore-pricing-card__check {
    color: var(--color-accent);
}

.accore-pricing-card__who-for {
    margin-top: 16px;
    padding: 0 23px;
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 19.2px;
    letter-spacing: -0.3px;
    color: #091717;
    opacity: 0.5;
}

.accore-pricing-card__who-for strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0;
}

.accore-pricing-card__who-for p {
    margin: 0;
}

/* FAQ Section */
.accore-faq {
    background-color: #fbfaf4;
    padding: 80px 120px;
    overflow: hidden;
}

.accore-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.accore-faq__header {
    margin-bottom: 40px;
}

.accore-faq__title {
    font-family: var(--font-primary);
    font-weight: 200;
    font-size: 48.7px;
    line-height: 1.38;
    letter-spacing: -1.7px;
    color: #091717;
    margin: 0 0 16px;
}

.accore-faq__divider {
    height: 1px;
    background-color: rgba(9, 23, 23, 0.15);
}

.accore-faq__accordion {
    max-width: 100%;
    overflow: hidden;
}

.accore-faq__item {
    position: relative;
    overflow: hidden;
}

.accore-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 26px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.accore-faq__question-text {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #091717;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.accore-faq__icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.3;
}

.accore-faq__icon-h,
.accore-faq__icon-v {
    position: absolute;
    background-color: #000;
    border-radius: 10px;
}

.accore-faq__icon-h {
    width: 16px;
    height: 2px;
    top: 7px;
    left: 0;
}

.accore-faq__icon-v {
    width: 2px;
    height: 16px;
    top: 0;
    left: 7px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.accore-faq__item.is-open .accore-faq__icon-v {
    transform: rotate(90deg);
    opacity: 0;
}

.accore-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accore-faq__answer-inner {
    padding-bottom: 24px;
}

.accore-faq__answer-inner p {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(9, 23, 23, 0.7);
    margin: 0;
}

.accore-faq__item-divider {
    height: 1px;
    background-color: rgba(9, 23, 23, 0.15);
}

/* Pricing Page Responsive */
@media (max-width: 1200px) {
    .accore-pricing-hero,
    .accore-pricing-grid,
    .accore-faq {
        padding-left: 60px;
        padding-right: 60px;
    }
    
    .accore-pricing-grid__cards {
        gap: 12px;
    }
}

@media (max-width: 1024px) {
    .accore-pricing-hero__title {
        font-size: 44px;
    }

    .accore-pricing-hero__description {
        font-size: 18px;
    }

    .accore-pricing-grid__container {
        padding-top: 0;
    }

    .accore-pricing-grid__cards {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 400px;
        margin: 0 auto;
        padding: 0;
    }
    
    .accore-pricing-card-wrapper:first-child .accore-pricing-card,
    .accore-pricing-card-wrapper:nth-child(2) .accore-pricing-card,
    .accore-pricing-card-wrapper:nth-child(3) .accore-pricing-card {
        min-height: auto;
    }
    
    .accore-pricing-grid__bg-wrapper {
        display: none;
    }

    .accore-faq__title {
        font-size: 36px;
    }
    
    .accore-faq__question-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .accore-pricing-hero,
    .accore-pricing-grid,
    .accore-faq {
        padding-left: 24px;
        padding-right: 24px;
    }

    .accore-pricing-hero {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .accore-pricing-hero__title {
        font-size: 36px;
    }

    .accore-pricing-hero__description {
        font-size: 16px;
    }

    .accore-pricing-hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .accore-pricing-hero__btn {
        width: 100%;
        max-width: 280px;
    }

    .accore-pricing-grid {
        padding-bottom: 60px;
    }

    .accore-faq {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .accore-faq__title {
        font-size: 32px;
    }

    .accore-faq__question-text {
        font-size: 14px;
    }
    
    .accore-faq__question {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .accore-pricing-hero,
    .accore-pricing-grid,
    .accore-faq {
        padding-left: 16px;
        padding-right: 16px;
    }

    .accore-pricing-hero__title {
        font-size: 28px;
    }

    .accore-pricing-card {
        padding: 24px 16px 32px;
    }

    .accore-pricing-card__name {
        font-size: 20px;
    }

    .accore-pricing-card__amount {
        font-size: 28px;
    }

    .accore-faq__title {
        font-size: 28px;
    }
    
    .accore-pricing-card__who-for {
        padding: 0 16px;
    }
    
    .accore-faq__question-text {
        font-size: 13px;
    }
}

