/*
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.1
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;
}
.woocommerce-checkout .woocommerce-error {
	display: none;
}
/* 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 {
    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: auto;
}

/* 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 #E5E8E6;
}
.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) !important;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 9px 15px 0px 15px;
    line-height: normal;
    width: 100% !important;
}
.woocommerce-checkout #payment ul.payment_methods li {
    flex-direction: column;
}
.accore-checkout-sidebar__payment-description.payment_box.payment_method_ppcp-gateway {
    display: none !important;
}
ul.woocommerce-SavedPaymentMethods.wc-saved-payment-methods > li {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    padding: 10px !important;
    justify-content: center !important;
    align-items: center !important;
}
span.accore-checkout-sidebar__payment-icon {
    min-width: 45px;
}
li.accore-checkout-sidebar__payment-method.wc_payment_method > label {
    width: 100%;
}
span#pmpro_paypalexpress_checkout {
    display: none !important;
}
.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;
}

/* Pricing Hero Alert (for membership required redirects) */
.accore-pricing-hero__alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.accore-pricing-hero__alert--warning {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
}

.accore-pricing-hero__alert-icon {
    flex-shrink: 0;
    color: #d97706;
    margin-top: 2px;
}

.accore-pricing-hero__alert-text {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
    color: #92400e;
    margin: 0;
}

.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;
}

/* Current plan button - disabled state */
.accore-pricing-card__btn--current {
    pointer-events: none;
    cursor: default;
    opacity: 0.7;
}

.accore-pricing-card--white .accore-pricing-card__btn--current {
    background-color: rgba(19, 52, 59, 0.1);
    border-color: rgba(19, 52, 59, 0.2);
    color: rgba(19, 52, 59, 0.6);
}

.accore-pricing-card--teal .accore-pricing-card__btn--current {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.accore-pricing-card--gold .accore-pricing-card__btn--current {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.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;
    }
}

/*--------------------------------------------------------------
# Authentication Pages (Login/Register)
--------------------------------------------------------------*/
.accore-auth-page {
    min-height: 100vh;
    display: flex;
    background-color: var(--color-bg-tertiary);
}

.accore-auth-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* Left Panel - Branding */
.accore-auth-branding {
    flex: 0 0 480px;
    background: linear-gradient(180deg, #13343b 0%, #0d2428 100%);
    padding: 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.accore-auth-branding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>') repeat;
    background-size: 200px 200px;
    opacity: 0.5;
}

.accore-auth-logo {
    position: relative;
    z-index: 1;
    margin-bottom: 48px;
}

.accore-auth-logo img {
    height: 32px;
    width: auto;
}

.accore-auth-logo-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: #fbfaf4;
    text-decoration: none;
}

.accore-auth-hero {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.accore-auth-hero h1 {
    font-family: var(--font-primary);
    font-size: 40px;
    line-height: 1.2;
    font-weight: 300;
    color: #fbfaf4;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.accore-auth-hero p {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(251, 250, 244, 0.7);
    max-width: 360px;
}

.accore-auth-features {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.accore-auth-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(251, 250, 244, 0.8);
    font-size: 14px;
}

.accore-auth-feature svg {
    flex-shrink: 0;
    color: #31b8c6;
}

/* Right Panel - Form */
.accore-auth-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background-color: #fcfcf9;
}

.accore-auth-form-wrapper {
    width: 100%;
    max-width: 400px;
}

.accore-auth-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.accore-auth-form-header h2 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: #13343b;
    margin-bottom: 8px;
}

.accore-auth-form-header p {
    font-size: 14px;
    color: rgba(19, 52, 59, 0.6);
}

.accore-auth-form {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.accore-form-group {
    margin-bottom: 20px;
}

.accore-form-group label {
    display: block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: #13343b;
    margin-bottom: 8px;
}

.accore-form-group input[type="text"],
.accore-form-group input[type="email"],
.accore-form-group input[type="password"] {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: #13343b;
    background: #fcfcf9;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.accore-form-group input:focus {
    outline: none;
    border-color: #4e0b62;
    box-shadow: 0 0 0 3px rgba(78, 11, 98, 0.1);
}

.accore-form-group input::placeholder {
    color: rgba(19, 52, 59, 0.4);
}

.accore-form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.accore-checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.accore-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4e0b62;
    cursor: pointer;
}

.accore-checkbox-group label {
    font-size: 14px;
    color: rgba(19, 52, 59, 0.8);
    cursor: pointer;
    margin: 0;
}

.accore-forgot-link {
    font-size: 14px;
    color: #4e0b62;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.accore-forgot-link:hover {
    color: #3a0849;
    text-decoration: underline;
}

.accore-auth-submit {
    width: 100%;
    height: 48px;
    background: #4e0b62;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.accore-auth-submit:hover {
    background: #3a0849;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(78, 11, 98, 0.3);
}

.accore-auth-submit:active {
    transform: translateY(0);
}

.accore-auth-submit:disabled {
    background: rgba(78, 11, 98, 0.5);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.accore-auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: rgba(19, 52, 59, 0.4);
    font-size: 13px;
}

.accore-auth-divider::before,
.accore-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.accore-auth-alt-link {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: rgba(19, 52, 59, 0.7);
}

.accore-auth-alt-link a {
    color: #4e0b62;
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
}

.accore-auth-alt-link a:hover {
    text-decoration: underline;
}

/* Error/Success Messages */
.accore-auth-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.accore-auth-message.error {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #dc2626;
}

.accore-auth-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #16a34a;
}

/* Password Strength Indicator */
.accore-password-strength {
    margin-top: 8px;
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.accore-password-strength-bar {
    height: 100%;
    width: 0;
    transition: width 0.3s ease, background 0.3s ease;
}

.accore-password-strength-bar.weak {
    width: 33%;
    background: #dc2626;
}

.accore-password-strength-bar.medium {
    width: 66%;
    background: #f59e0b;
}

.accore-password-strength-bar.strong {
    width: 100%;
    background: #16a34a;
}

/* Terms Agreement */
.accore-terms-group {
    margin-bottom: 24px;
}

.accore-terms-group label {
    font-size: 13px;
    line-height: 1.5;
}

.accore-terms-group a {
    color: #4e0b62;
    text-decoration: none;
}

.accore-terms-group a:hover {
    text-decoration: underline;
}

/* Responsive Auth Pages */
@media (max-width: 1024px) {
    .accore-auth-branding {
        flex: 0 0 400px;
        padding: 40px;
    }
    
    .accore-auth-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .accore-auth-container {
        flex-direction: column;
    }
    
    .accore-auth-branding {
        flex: none;
        min-height: 280px;
        padding: 32px;
    }
    
    .accore-auth-hero {
        justify-content: flex-end;
    }
    
    .accore-auth-hero h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .accore-auth-hero p {
        font-size: 14px;
    }
    
    .accore-auth-features {
        display: none;
    }
    
    .accore-auth-form-panel {
        padding: 32px 24px;
    }
    
    .accore-auth-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .accore-auth-branding {
        min-height: 220px;
        padding: 24px;
    }
    
    .accore-auth-hero h1 {
        font-size: 24px;
    }
    
    .accore-auth-form-panel {
        padding: 24px 16px;
    }
    
    .accore-auth-form {
        padding: 20px;
        border-radius: 8px;
    }
    
    .accore-form-row {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/*--------------------------------------------------------------
# Auth Page Layout Overrides
--------------------------------------------------------------*/
/* Hide header and footer on auth pages for full-screen layout */
.accore-auth-page .site-header,
.accore-auth-page .site-footer,
.accore-auth-page .site-branding,
.accore-auth-page #masthead,
.accore-auth-page #colophon {
    display: none !important;
}

.accore-auth-page .site-content,
.accore-auth-page .site-main,
.accore-auth-page #primary,
.accore-auth-page #content {
    padding: 0;
    margin: 0;
    max-width: none;
}

.accore-auth-page .entry-content {
    margin: 0;
    padding: 0;
}

/* WooCommerce form overrides for auth page */
.accore-auth-page .woocommerce-form-login,
.accore-auth-page .woocommerce-form-register {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

.accore-auth-page .woocommerce-notices-wrapper {
    max-width: 400px;
    margin: 0 auto 20px;
}

/* Hide default WooCommerce breadcrumbs on auth pages */
.accore-auth-page .woocommerce-breadcrumb {
    display: none;
}

/* ==========================================================================
   WOOCOMMERCE PAGES - AG-UI Layout Integration
   ========================================================================== */

/* WooCommerce pages with AG-UI sidebar: full viewport height with padding for header and sidebar */
body.woocommerce-page #content.site-content,
body.woocommerce-cart #content.site-content,
body.woocommerce-checkout #content.site-content,
body.woocommerce-account #content.site-content {
    min-height: 100vh !important;
    height: 100vh !important;
    padding-top: 114px !important;  /* 54px header + 60px extra */
    padding-left: 132px !important; /* 72px icon-bar + 60px extra */
    box-sizing: border-box !important;
}

/* Reset WooCommerce default content wrapper styling */
body.woocommerce-account .woocommerce,
body.woocommerce-account .woocommerce-MyAccount-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    float: none !important;
    width: 100% !important;
    max-width: 740px !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.woocommerce-account .woocommerce-account {
    display: block !important;
}

body.woocommerce-account .entry-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ==========================================================================
   WOOCOMMERCE ORDERS - Figma Design 5:5031
   ========================================================================== */

.accore-orders {
    width: 100%;
}

.accore-orders__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #13343b;
    margin: 0 0 4px 0;
}

.accore-orders__divider {
    width: 100%;
    height: 1px;
    background: #E5E8E6;
    border: none;
    margin: 0;
}

.accore-orders__list {
    display: flex;
    flex-direction: column;
}

.accore-orders__item {
    display: grid;
    grid-template-columns: 83px 1fr 80px 50px 80px 90px auto;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
}

.accore-orders__item-image {
    width: 83px;
    height: 83px;
}

.accore-orders__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.accore-orders__item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.accore-orders__item-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #13343b;
    text-decoration: none;
}

.accore-orders__item-name:hover {
    color: #4e0b62;
}

.accore-orders__item-order-num {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: rgba(19, 52, 59, 0.5);
}

.accore-orders__item-price {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #13343b;
}

.accore-orders__item-qty {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(19, 52, 59, 0.6);
}

.accore-orders__item-total {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #13343b;
}

/* Order Status Badge */
.accore-orders__item-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: capitalize;
    white-space: nowrap;
}

.accore-orders__item-status--processing {
    color: #3b82f6;
}

.accore-orders__item-status--completed {
    color: #16a34a;
}

.accore-orders__item-status--pending {
    color: #d97706;
}

.accore-orders__item-status--on-hold {
    color: #7c3aed;
}

.accore-orders__item-status--cancelled,
.accore-orders__item-status--failed {
    color: #dc2626;
}

.accore-orders__item-status--refunded {
    color: #6b7280;
}

/* Actions */
.accore-orders__item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accore-orders__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
    height: 36px;
    padding: 0 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.accore-orders__btn--cancel {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #13343b;
}

.accore-orders__btn--cancel:hover {
    background: #f5f5f5;
    color: #13343b;
}

.accore-orders__btn--view {
    background: #4e0b62;
    border: none;
    color: #fff;
}

.accore-orders__btn--view:hover {
    background: #3d0950;
    color: #fff;
}

.accore-orders__btn--pay {
    background: #d97706;
    border: none;
    color: #fff;
}

.accore-orders__btn--pay:hover {
    background: #b45309;
    color: #fff;
}

/* Empty State */
.accore-orders__empty {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 0;
}

.accore-orders__empty-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #13343b;
    margin: 0;
}

.accore-orders__btn--shop {
    background: #4e0b62;
    border: none;
    color: #fff;
    padding: 0 30px;
}

.accore-orders__btn--shop:hover {
    background: #3d0950;
    color: #fff;
}

/* Responsive Orders */
@media (max-width: 1200px) {
    .accore-orders__item {
        grid-template-columns: 70px 1fr auto auto;
        gap: 16px;
    }
    
    .accore-orders__item-image {
        width: 70px;
        height: 70px;
    }
    
    .accore-orders__item-qty,
    .accore-orders__item-total {
        display: none;
    }
}

@media (max-width: 768px) {
    .accore-orders__item {
        grid-template-columns: 60px 1fr;
        gap: 12px;
    }
    
    .accore-orders__item-image {
        width: 60px;
        height: 60px;
        grid-row: span 2;
    }
    
    .accore-orders__item-price {
        display: none;
    }
    
    .accore-orders__item-status {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .accore-orders__item-actions {
        grid-column: 1 / -1;
        margin-top: 10px;
    }
    
    .accore-orders__btn--cancel,
    .accore-orders__btn--track,
    .accore-orders__btn--view,
    .accore-orders__btn--pay,
    .accore-orders__btn--reorder {
        width: 100%;
    }
}

/* ==========================================================================
   WOOCOMMERCE ACCOUNT DETAILS - Figma Design 5:5083
   ========================================================================== */

.accore-account {
    max-width: 740px;
    width: 100%;
}

.accore-account__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.08px;
    color: #13343b;
    margin: 0 0 4px 0;
    height: 38px;
}

.accore-account__divider {
    width: 740px;
    height: 1px;
    background: #E5E8E6;
    border: none;
    margin: 0 0 24px 0;
}
.woocommerce-cart table.cart th {
    background-color: initial;
    font-weight: var(--font-medium);
    padding: var(--space-5);
    border-radius: 0;
    border: none;
}
/* Card Styles */
.accore-account__card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 27px;
    margin-bottom: 23px;
    background: transparent;
}

.accore-account__card--address {
    margin-bottom: 23px;
}

.accore-account__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

.accore-account__card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0.08px;
    color: #13343b;
    margin: 0;
}

/* Edit Button */
.accore-account__edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 32px;
    padding: 5px 15px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 70px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.08px;
    color: #13343b;
    transition: all 0.2s ease;
}

.accore-account__edit-btn:hover {
    background: #f5f5f5;
}

.accore-account__edit-btn svg {
    width: 14px;
    height: 14px;
}

/* Card Content Grid */
.accore-account__card-content {
    display: grid;
    gap: 16px;
}

.accore-account__field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.accore-account__field {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.accore-account__field--full {
    grid-column: 1 / -1;
}

.accore-account__label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
    letter-spacing: 0.08px;
    color: #13343b;
    opacity: 0.5;
}

.accore-account__label .required {
    color: #ef4444;
}

.accore-account__value {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0.08px;
    color: #13343b;
}

/* Form Inputs */
.accore-account__form {
    display: grid;
    gap: 16px;
}

.accore-account__input {
    width: 100%;
    height: 44px;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #13343b;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accore-account__input:focus {
    border-color: #4e0b62;
    box-shadow: 0 0 0 3px rgba(78, 11, 98, 0.1);
}

.accore-account__input::placeholder {
    color: rgba(19, 52, 59, 0.5);
}

.accore-account__textarea {
    height: auto;
    min-height: 80px;
    resize: vertical;
}

.accore-account__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='%2313343b' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Form Actions */
.accore-account__form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 8px;
}

.accore-account__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.accore-account__btn--cancel {
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #13343b !important;
}

.accore-account__btn--cancel:hover {
    background: #f5f5f5 !important;
    color: #13343b !important;
}

.accore-account__btn--save {
    background: #4e0b62 !important;
    border: none !important;
    color: #fff !important;
}

.accore-account__btn--save:hover {
    background: #3d0950 !important;
}

/* WooCommerce Notices Styling */
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-notice {
    max-width: 740px;
    margin: 0 0 20px 0;
    padding: 16px 20px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 20px;
    border: none;
}

.woocommerce-account .woocommerce-message {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.woocommerce-account .woocommerce-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.woocommerce-account .woocommerce-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.woocommerce-account .woocommerce-error li {
    list-style: none;
    margin: 0;
}

/* Input validation states */
.accore-account__input.has-error,
.accore-account__input:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

.accore-account__input.has-error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ==========================================================================
   PASSWORD CHANGE CARD (Edit Account Page)
   ========================================================================== */

.accore-account__password-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.accore-account__password-wrap .accore-account__input {
    padding-right: 44px;
}

.accore-account__password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: rgba(19, 52, 59, 0.4);
    line-height: 0;
    transition: color 0.2s;
}

.accore-account__password-toggle:hover {
    color: rgba(19, 52, 59, 0.7);
}

.accore-account__hint {
    font-size: 13px;
    color: rgba(19, 52, 59, 0.5);
    margin: -4px 0 16px;
}

.accore-account__password-message {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.accore-account__password-message.is-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.accore-account__password-message.is-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* ==========================================================================
   MEMBERSHIP CARD - COMPACT (Edit Account Page)
   ========================================================================== */

/* Membership card header with badge */
.accore-account__card--membership .accore-account__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accore-membership__badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

/* Compact membership content */
.accore-membership-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.accore-membership-compact__info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accore-membership-compact__plan {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: #13343b;
}

.accore-membership-compact__plan--none {
    font-weight: 400;
    color: rgba(19, 52, 59, 0.5);
}

.accore-membership-compact__price {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: rgba(19, 52, 59, 0.6);
    padding-left: 12px;
    border-left: 1px solid rgba(19, 52, 59, 0.1);
}

.accore-membership-compact__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.accore-membership-compact__link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: #20808d;
    text-decoration: none;
    transition: color 0.15s ease;
}

.accore-membership-compact__link:hover {
    color: #1a6b76;
    text-decoration: underline;
}

.accore-membership-compact__link--primary {
    color: #20808d;
    font-weight: 600;
}

.accore-membership-compact__link--danger {
    color: rgba(220, 38, 38, 0.7);
        background: transparent !important;
}

.accore-membership-compact__link--danger:hover {
    color: #dc2626;
}

/* Button styled as link (for cancel membership) */
button.accore-membership-compact__link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

button.accore-membership-compact__link:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive compact membership */
@media (max-width: 600px) {
    .accore-membership-compact {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .accore-membership-compact__info {
        flex-wrap: wrap;
    }
    
    .accore-membership-compact__price {
        border-left: none;
        padding-left: 0;
    }
    
    .accore-membership-compact__actions {
        gap: 12px;
    }
}

/* Responsive Account */
@media (max-width: 768px) {
    .accore-account__divider {
        width: 100%;
    }
    
    .accore-account__field-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .accore-account__card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .accore-account__form-actions {
        flex-direction: column;
    }
    
    .accore-account__btn {
        width: 100%;
    }
}

/* ==========================================================================
   WOOCOMMERCE MY ACCOUNT - Global Styles for All Pages
   ========================================================================== */

/* Reset all WooCommerce account default styles */
.woocommerce-account .woocommerce-MyAccount-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    float: none !important;
    width: 100% !important;
    max-width: 740px !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ==========================================================================
   ADDRESSES PAGE - Accore Custom Template
   ========================================================================== */

/* Main container */
.accore-addresses {
    max-width: 740px;
}

/* Page Title */
.accore-addresses__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.08px;
    color: #13343b;
    margin: 0 0 16px 0;
}

/* Divider */
.accore-addresses__divider {
    border: none;
    border-top: 1px solid #E5E8E6;
    margin: 0 0 24px 0;
}

/* Description text */
.accore-addresses__description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(19, 52, 59, 0.7);
    margin: 0 0 24px 0;
}

/* Grid for address cards */
.accore-addresses__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Individual address card */
.accore-addresses__card {
    display: flex;
    flex-direction: column;
}

/* Card header with title and button */
.accore-addresses__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

/* Card title */
.accore-addresses__card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0.08px;
    color: #13343b;
    margin: 0;
}

/* Edit/Add button */
.accore-addresses__edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 32px;
    padding: 5px 15px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 70px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.08px;
    color: #13343b;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.accore-addresses__edit-btn:hover {
    background: #f5f5f5;
    text-decoration: none;
}

.accore-addresses__edit-btn svg {
    flex-shrink: 0;
}

/* Card content area */
.accore-addresses__card-content {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    flex: 1;
}

/* Address text */
.accore-addresses__card-content address {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #13343b;
    font-style: normal;
    margin: 0;
}

/* Empty state */
.accore-addresses__empty {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 14px;
    line-height: 20px;
    color: rgba(19, 52, 59, 0.5);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .accore-addresses__grid {
        grid-template-columns: 1fr;
    }
}

/* Dashboard content styling */
.woocommerce-account .woocommerce-MyAccount-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #13343b;
}

.woocommerce-account .woocommerce-MyAccount-content a {
    color: #4e0b62;
    text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
    text-decoration: underline;
}

/* Forms in edit-address page */
.woocommerce-account .woocommerce-address-fields .form-row {
    margin-bottom: 16px;
}

.woocommerce-account .woocommerce-address-fields label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
    letter-spacing: 0.08px;
    color: #13343b;
    opacity: 0.7;
    display: block;
    margin-bottom: 4px;
}

.woocommerce-account .woocommerce-address-fields label .required {
    color: #ef4444;
}

.woocommerce-account .woocommerce-address-fields input[type="text"],
.woocommerce-account .woocommerce-address-fields input[type="email"],
.woocommerce-account .woocommerce-address-fields input[type="tel"],
.woocommerce-account .woocommerce-address-fields select,
.woocommerce-account .woocommerce-address-fields textarea,
.woocommerce-account .woocommerce-EditAccountForm input[type="text"],
.woocommerce-account .woocommerce-EditAccountForm input[type="email"],
.woocommerce-account .woocommerce-EditAccountForm input[type="password"],
.woocommerce-account .woocommerce-EditAccountForm select {
    width: 100%;
    height: 44px;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #13343b;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce-account .woocommerce-address-fields input:focus,
.woocommerce-account .woocommerce-address-fields select:focus,
.woocommerce-account .woocommerce-EditAccountForm input:focus,
.woocommerce-account .woocommerce-EditAccountForm select:focus {
    border-color: #4e0b62 !important;
    box-shadow: 0 0 0 3px rgba(78, 11, 98, 0.1) !important;
}

/* Save button */
.woocommerce-account .woocommerce-address-fields button[type="submit"],
.woocommerce-account .woocommerce-EditAccountForm button[type="submit"] {
    background: #4e0b62 !important;
    border: none !important;
    color: #fff !important;
    height: 44px;
    padding: 0 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
}

.woocommerce-account .woocommerce-address-fields button[type="submit"]:hover,
.woocommerce-account .woocommerce-EditAccountForm button[type="submit"]:hover {
    background: #3d0950 !important;
}

/* ==========================================================================
   EDIT ADDRESS FORM PAGE
   ========================================================================== */

/* Form page title */
.woocommerce-account .woocommerce-MyAccount-content > h3:first-child {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.08px;
    color: #13343b;
    margin: 0 0 24px 0;
}

/* Form container */
.woocommerce-account .woocommerce-address-fields {
    max-width: 740px;
}

/* Form rows - two columns on desktop */
.woocommerce-account .woocommerce-address-fields__field-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

/* Full width rows */
.woocommerce-account .woocommerce-address-fields .form-row-wide {
    grid-column: 1 / -1;
}

/* First/last rows */
.woocommerce-account .woocommerce-address-fields .form-row-first,
.woocommerce-account .woocommerce-address-fields .form-row-last {
    grid-column: auto;
}

/* Hide optional labels on some fields */
.woocommerce-account .woocommerce-address-fields .optional {
    display: none;
}

/* Responsive form */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce-address-fields__field-wrapper {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-account .woocommerce-address-fields .form-row-first,
    .woocommerce-account .woocommerce-address-fields .form-row-last {
        grid-column: 1;
    }
}

/* ==========================================================================
   EDIT ADDRESS FORM - Billing / Shipping
   ========================================================================== */

/* Main container */
.accore-edit-address {
    max-width: 740px;
}

/* Page Title */
.accore-edit-address__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.08px;
    color: #13343b;
    margin: 0 0 16px 0;
}

/* Divider */
.accore-edit-address__divider {
    border: none;
    border-top: 1px solid #E5E8E6;
    margin: 0 0 24px 0;
}

/* Form */
.accore-edit-address__form {
    background: transparent;
}

/* Fields container - grid layout */
.accore-edit-address__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 32px;
}

/* Single field */
.accore-edit-address__field {
    display: flex;
    flex-direction: column;
}

/* Full width field */
.accore-edit-address__field--full {
    grid-column: 1 / -1;
}

/* Field label */
.accore-edit-address__field label,
.accore-edit-address__fields .form-row label {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    letter-spacing: 0.08px !important;
    color: rgba(19, 52, 59, 0.7) !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.accore-edit-address__fields .form-row label .required {
    color: #ef4444;
}

.accore-edit-address__fields .form-row label .optional {
    display: none;
}

/* Input fields */
.accore-edit-address__fields input[type="text"],
.accore-edit-address__fields input[type="email"],
.accore-edit-address__fields input[type="tel"],
.accore-edit-address__fields select,
.accore-edit-address__fields textarea {
    width: 100% !important;
    height: 44px !important;
    padding: 10px 16px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #13343b !important;
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.accore-edit-address__fields textarea {
    height: auto !important;
    min-height: 100px !important;
    resize: vertical !important;
}

.accore-edit-address__fields input:focus,
.accore-edit-address__fields select:focus,
.accore-edit-address__fields textarea:focus {
    border-color: #4e0b62 !important;
    box-shadow: 0 0 0 3px rgba(78, 11, 98, 0.1) !important;
}

/* Select2 override for country/state selects - handled by global styles */
.accore-edit-address__fields .select2-container {
    width: 100% !important;
}

/* Form actions */
.accore-edit-address__actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

/* Buttons */
.accore-edit-address__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.accore-edit-address__btn--cancel {
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #13343b !important;
}

.accore-edit-address__btn--cancel:hover {
    background: #f5f5f5 !important;
    color: #13343b !important;
    text-decoration: none !important;
}

.accore-edit-address__btn--save {
    background: #4e0b62 !important;
    border: none !important;
    color: #fff !important;
}

.accore-edit-address__btn--save:hover {
    background: #3d0950 !important;
}

/* WooCommerce form-row overrides for this template */
.accore-edit-address__fields .form-row {
    margin: 0 !important;
    padding: 0 !important;
}

.accore-edit-address__fields .form-row-first,
.accore-edit-address__fields .form-row-last {
    width: 100% !important;
    float: none !important;
}

.accore-edit-address__fields .form-row-wide {
    grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 768px) {
    .accore-edit-address__fields {
        grid-template-columns: 1fr;
    }
    
    .accore-edit-address__field--full,
    .accore-edit-address__fields .form-row-wide {
        grid-column: 1;
    }
    
    .accore-edit-address__actions {
        flex-direction: column;
    }
    
    .accore-edit-address__btn {
        width: 100%;
    }
}

/* ==========================================================================
   DASHBOARD PAGE - My Account
   ========================================================================== */

/* Main container */
.accore-dashboard {
    max-width: 740px;
}

/* Page Title */
.accore-dashboard__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.08px;
    color: #13343b;
    margin: 0 0 16px 0;
}

/* Divider */
.accore-dashboard__divider {
    border: none;
    border-top: 1px solid #E5E8E6;
    margin: 0 0 24px 0;
}

/* Welcome message */
.accore-dashboard__welcome {
    margin-bottom: 32px;
}

.accore-dashboard__welcome p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #13343b;
    margin: 0 0 12px 0;
}

.accore-dashboard__welcome p:last-child {
    margin-bottom: 0;
}

.accore-dashboard__welcome a {
    color: #4e0b62;
    text-decoration: none;
}

.accore-dashboard__welcome a:hover {
    text-decoration: underline;
}

/* Grid for cards */
.accore-dashboard__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

/* Cards */
.accore-dashboard__card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    background: transparent;
}

.accore-dashboard__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.accore-dashboard__card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #13343b;
    margin: 0;
}

.accore-dashboard__card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #4e0b62;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.accore-dashboard__card-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.accore-dashboard__card-content {
    /* Content styles */
}

/* Orders list */
.accore-dashboard__orders-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.accore-dashboard__order-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accore-dashboard__order-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.accore-dashboard__order-item:first-child {
    padding-top: 0;
}

.accore-dashboard__order-number {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #13343b;
}

.accore-dashboard__order-date {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(19, 52, 59, 0.6);
}

.accore-dashboard__order-status {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: capitalize;
}

.accore-dashboard__order-status--completed {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.accore-dashboard__order-status--processing {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.accore-dashboard__order-status--pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.accore-dashboard__order-status--on-hold {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.accore-dashboard__order-status--cancelled,
.accore-dashboard__order-status--failed {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.accore-dashboard__order-status--refunded {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.accore-dashboard__order-total {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #13343b;
}

/* Account info */
.accore-dashboard__account-info {
    /* Account info styles */
}
.accore-dokan-dashboard #wp-media-modal .media-menu-item {
	color: black;
}
.accore-dashboard__account-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #13343b;
    margin: 0 0 4px 0;
}

.accore-dashboard__account-email {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(19, 52, 59, 0.7);
    margin: 0;
}

/* Empty state */
.accore-dashboard__empty {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 14px;
    line-height: 20px;
    color: rgba(19, 52, 59, 0.5);
    margin: 0;
}

/* Addresses section */
.accore-dashboard__addresses {
    margin-top: 32px;
}

.accore-dashboard__section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #13343b;
    margin: 0 0 16px 0;
}

.accore-dashboard__addresses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Address cards */
.accore-dashboard__address-card {
    display: flex;
    flex-direction: column;
}

.accore-dashboard__address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.accore-dashboard__address-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #13343b;
    margin: 0;
}

.accore-dashboard__edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 5px 15px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 70px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.08px;
    color: #13343b;
    text-decoration: none;
    transition: all 0.2s ease;
}

.accore-dashboard__edit-btn:hover {
    background: #f5f5f5;
    text-decoration: none;
}

.accore-dashboard__address-content {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 16px;
    flex: 1;
}

.accore-dashboard__address-content address {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #13343b;
    font-style: normal;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .accore-dashboard__grid,
    .accore-dashboard__addresses-grid {
        grid-template-columns: 1fr;
    }
    
    .accore-dashboard__order-item {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .accore-dashboard__order-date {
        text-align: right;
    }
    
    .accore-dashboard__order-status {
        grid-column: 1;
    }
    
    .accore-dashboard__order-total {
        text-align: right;
    }
}

/* ==========================================================================
   SELECT2 GLOBAL STYLES - WooCommerce Dropdowns
   ========================================================================== */

/* Container */
.woocommerce-account .select2-container {
    width: 100% !important;
}

/* Selection box */
.woocommerce-account .select2-container--default .select2-selection--single {
    height: 44px !important;
    padding: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    background: #fff !important;
    outline: none !important;
    display: flex !important;
    align-items: center !important;
}

.woocommerce-account .select2-container--default .select2-selection--single:focus,
.woocommerce-account .select2-container--default.select2-container--focus .select2-selection--single,
.woocommerce-account .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #4e0b62 !important;
    box-shadow: 0 0 0 3px rgba(78, 11, 98, 0.1) !important;
}

/* Rendered text inside selection */
.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px !important;
    padding-left: 16px !important;
    padding-right: 40px !important;
    color: #13343b !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
}

/* Placeholder text */
.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgba(19, 52, 59, 0.5) !important;
}

/* Arrow */
.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
    right: 16px !important;
    top: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #13343b transparent transparent transparent !important;
    border-width: 5px 5px 0 5px !important;
}

.woocommerce-account .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #13343b transparent !important;
    border-width: 0 5px 5px 5px !important;
}

/* Dropdown container - GLOBAL (appended to body) */
.select2-container--default .select2-dropdown {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    margin-top: 4px !important;
    z-index: 999999 !important;
}

.select2-container--default .select2-dropdown--above {
    margin-top: 0 !important;
    margin-bottom: 4px !important;
}

/* Search box inside dropdown */
.select2-container--default .select2-search--dropdown {
    padding: 12px !important;
    background: #f8f9fa !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    height: 40px !important;
    padding: 8px 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 6px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: #13343b !important;
    outline: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #4e0b62 !important;
    box-shadow: 0 0 0 2px rgba(78, 11, 98, 0.1) !important;
}

/* Results list */
.select2-container--default .select2-results {
    padding: 0 !important;
}

.select2-container--default .select2-results__options {
    max-height: 250px !important;
}

/* Individual options */
.select2-container--default .select2-results__option {
    padding: 12px 16px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    line-height: 20px !important;
    color: #13343b !important;
    background: #fff !important;
    transition: background-color 0.15s ease !important;
}

/* Highlighted option (hover/keyboard) */
.select2-container--default .select2-results__option--highlighted,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option.select2-results__option--highlighted,
.select2-container--default .select2-results__option--selectable:hover {
    background: #f3e8f7 !important;
    color: #4e0b62 !important;
}

/* Selected option */
.select2-container--default .select2-results__option--selected,
.select2-container--default .select2-results__option[aria-selected=true] {
    background: #4e0b62 !important;
    color: #fff !important;
}

/* Selected + highlighted */
.select2-container--default .select2-results__option[aria-selected=true].select2-results__option--highlighted {
    background: #3d0950 !important;
    color: #fff !important;
}

/* Option groups */
.select2-container--default .select2-results__group {
    padding: 10px 16px 6px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: rgba(19, 52, 59, 0.5) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Loading message */
.select2-container--default .select2-results__option--load-more,
.select2-container--default .select2-results__message {
    color: rgba(19, 52, 59, 0.5) !important;
    font-style: italic !important;
}

/* ==========================================================================
   HIDE UNWANTED ELEMENTS ON MY ACCOUNT
   ========================================================================== */

/* Hide AI Shopping Assistant from dashboard */
.woocommerce-account .ai-shopping-assistant,
.woocommerce-account .woocommerce-MyAccount-content > .ai-assistant,
.woocommerce-account [class*="ai-shopping"],
.woocommerce-account [class*="ai-assistant"] {
    display: none !important;
}

/* Hide wishlist items section */
.woocommerce-account .wishlist-items,
.woocommerce-account [class*="wishlist"],
.woocommerce-account .dashboard-wishlist,
.woocommerce-account .yith-wcwl-wishlist {
    display: none !important;
}

/* Hide duplicate welcome sections if any */
.woocommerce-account .woocommerce-MyAccount-content > .welcome-section:not(:first-of-type) {
    display: none !important;
}

/* ==========================================================================
   WOOCOMMERCE CART PAGE - Figma Design 5:5190
   ========================================================================== */

/* Cart Page Layout - Full viewport with dark sidebar */
body.woocommerce-cart #content.site-content {
    min-height: 100vh !important;
    height: 100vh !important;
    padding-top: 114px !important;  /* 54px header + 60px extra */
    padding-left: 132px !important; /* 72px icon-bar + 60px extra */
    box-sizing: border-box !important;
    overflow-y: auto !important;
    position: relative !important;
}

/* Hide cart icon on cart page - header */
body.woocommerce-cart .accore-agui-header__cart,
body.woocommerce-cart .accore-agui-header__right {
    display: none !important;
}

/* Hide cart icon on cart page - icon bar */
body.woocommerce-cart .agui-icon-bar__cart-link {
    display: none !important;
}

.accore-cart-page {
    width: 100%;
    min-height: calc(100vh - 114px);
    position: relative;
    display: flex;
    justify-content: center;
}

/* Main Cart Content Area */
.accore-cart-page__main {
    max-width: 740px;
    margin-right: 390px;
    width: 100%;
}

/* Empty cart page - full width centered */
.accore-cart-page--empty {
    padding-right: 0;
}

.accore-cart-page__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.08px;
    color: #13343b;
    margin: 0 0 4px 0;
    height: 38px;
}

.accore-cart-page__divider {
    width: 740px;
    height: 1px;
    background: #E5E8E6;
    border: none;
    margin: 0 0 24px 0;
}

/* Free Shipping Banner */
.accore-cart-page__free-shipping-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: #165299;
    border-radius: 6px;
    margin-bottom: 24px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.08px;
}

.accore-cart-page__free-shipping-banner svg {
    flex-shrink: 0;
}

.accore-cart-page__free-shipping-banner--success {
    background-color: #165299;
}

/* Cart Table */
.accore-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
    background: transparent;
}

.accore-cart-table thead th {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #13343b;
    text-transform: none;
    letter-spacing: 0.08px;
    text-align: left;
    padding: 0 16px 16px 0;
    border-bottom: 1px solid rgba(19, 52, 59, 0.1);
}

.accore-cart-table thead th:first-child {
    padding-left: 0;
}

.accore-cart-table thead th.product-price,
.accore-cart-table thead th.product-quantity,
.accore-cart-table thead th.product-subtotal {
    text-align: center;
}

.accore-cart-table tbody tr {
    border-bottom: 1px solid rgba(19, 52, 59, 0.1);
}

.accore-cart-table tbody td {
    padding: 24px 16px;
    vertical-align: middle;
    background: transparent;
}

.accore-cart-table tbody td:first-child {
    padding-left: 0;
}

.accore-cart-table tbody td.product-price,
.accore-cart-table tbody td.product-quantity,
.accore-cart-table tbody td.product-subtotal {
    text-align: center;
}

/* Cart Product Cell */
.accore-cart-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.accore-cart-product__image {
    width: 83px;
    height: 83px;
    flex-shrink: 0;
    border-radius: 7px;
    overflow: hidden;
    background: #fff;
}

.accore-cart-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accore-cart-product__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.accore-cart-product__name {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #13343b;
    letter-spacing: 0.08px;
}

.accore-cart-product__name a {
    color: inherit;
    text-decoration: none;
}

.accore-cart-product__name a:hover {
    text-decoration: underline;
}

.accore-cart-product__remove {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: rgba(19, 52, 59, 0.5);
    text-decoration: none;
}

.accore-cart-product__remove:hover {
    color: #dc2626;
    text-decoration: underline;
}

/* Price and Subtotal Cells */
.accore-cart-table .product-price,
.accore-cart-table .product-subtotal {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #13343b;
    letter-spacing: 0.08px;
}

/* Remove Item Cell */
.accore-cart-table .product-remove {
    text-align: center;
    width: 40px;
}

.accore-cart-product__remove-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.accore-cart-product__remove-icon:hover {
    transform: scale(1.1);
}

.accore-cart-product__remove-icon svg {
    width: 24px;
    height: 24px;
}

/* Quantity Selector */
.accore-cart-table .quantity {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    padding: 10px;
}

.accore-cart-table .quantity .qty {
    width: 30px;
    height: 20px;
    text-align: center;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #13343b;
    background: transparent;
    -moz-appearance: textfield;
    letter-spacing: 0.08px;
}

.accore-cart-table .quantity .qty::-webkit-outer-spin-button,
.accore-cart-table .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Quantity +/- buttons */
.accore-qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #13343b;
    padding: 0;
    line-height: 1;
}

.accore-qty-btn:hover {
    color: #4e0b62;
}

/* Cart Actions Row */
.accore-cart-page__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.accore-cart-page__coupon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accore-cart-page__coupon input[type="text"] {
    width: 227px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(19, 52, 59, 0.1);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #13343b;
    background: #fff;
    letter-spacing: 0.16px;
}

.accore-cart-page__coupon input[type="text"]::placeholder {
    color: rgba(19, 52, 59, 0.56);
}

.accore-cart-page__coupon input[type="text"]:focus {
    outline: none;
    border-color: #4e0b62;
}

.accore-cart-page__buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Cart Buttons */
.accore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    letter-spacing: 0.16px;
}

.accore-btn--primary {
    background-color: #4e0b62;
    color: #fff;
}

.accore-btn--primary:hover {
    background-color: #3d0950;
    color: #fff;
}

.accore-btn--dark {
    background-color: #1d0225;
    color: #fff;
}

.accore-btn--dark:hover {
    background-color: #13343b;
    color: #fff;
}

.accore-btn--outline {
    background-color: transparent;
    color: #13343b;
    border: 1px solid #E5E8E6;
}

.accore-btn--outline:hover {
    background-color: #f5f5f5;
    border-color: #13343b;
}

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

/* ==========================================================================
   CART SIDEBAR (Dark)
   ========================================================================== */

.accore-cart-page__sidebar {
    position: fixed;
    top: 54px;
    right: 0;
    width: 390px;
    height: calc(100vh - 54px);
    background-color: #13343b;
    overflow-y: auto;
    z-index: 100;
    box-shadow: -18px 0px 17.9px 0px rgba(0, 0, 0, 0.05);
}

/* Hide sidebar on empty cart page */
.accore-cart-page--empty .accore-cart-page__sidebar {
    display: none !important;
}

.accore-cart-sidebar {
    padding: 40px 32px;
    color: #fff;
}

.accore-cart-sidebar__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    margin: 0 0 32px 0;
}

.accore-cart-sidebar__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.accore-cart-sidebar__label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.7);
}

.accore-cart-sidebar__value {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    color: #fff;
}

/* Shipping Section */
.accore-cart-sidebar__section {
    margin-bottom: 20px;
}

.accore-cart-sidebar__section > .accore-cart-sidebar__label {
    display: block;
    margin-bottom: 12px;
}

.accore-cart-sidebar__shipping-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accore-cart-sidebar__shipping-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 0;
}

.accore-cart-sidebar__shipping-option input[type="radio"] {
    display: none;
}

.accore-cart-sidebar__shipping-radio {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s ease;
}

.accore-cart-sidebar__shipping-option input[type="radio"]:checked + .accore-cart-sidebar__shipping-radio {
    border-color: #fff;
}

.accore-cart-sidebar__shipping-option input[type="radio"]:checked + .accore-cart-sidebar__shipping-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
}

.accore-cart-sidebar__shipping-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: #fff;
    flex: 1;
}

.accore-cart-sidebar__shipping-cost {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.7);
}

.accore-cart-sidebar__no-shipping {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Shipping Address */
.accore-cart-sidebar__address {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.accore-cart-sidebar__address-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.accore-cart-sidebar__change-address {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
    text-decoration: underline;
}

.accore-cart-sidebar__change-address:hover {
    color: rgba(255, 255, 255, 0.8);
}

.accore-cart-sidebar__divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 24px 0;
}

/* Total Row */
.accore-cart-sidebar__row--total {
    margin-bottom: 32px;
}

.accore-cart-sidebar__row--total .accore-cart-sidebar__label {
    font-weight: 600;
    color: #fff;
}

.accore-cart-sidebar__value--total {
    font-size: 18px;
    font-weight: 700;
}

/* Checkout Button */
.accore-cart-sidebar__checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    background-color: #fff;
    color: #4e0b62;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 48px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.accore-cart-sidebar__checkout-btn:hover {
    background-color: #f5f5f5;
    color: #3d0950;
}

.accore-cart-sidebar__checkout-btn svg {
    flex-shrink: 0;
}

/* ==========================================================================
   CART PAGE RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .accore-cart-page__sidebar {
        width: 350px;
    }
}

@media (max-width: 1024px) {
    body.woocommerce-cart #content.site-content {
        padding-left: 72px !important;
        padding-right: 0 !important;
        height: auto !important;
        min-height: 100vh !important;
        overflow: visible !important;
    }
    
    .accore-cart-page__main {
        max-width: 100%;
    }
    
    .accore-cart-page__sidebar {
        position: fixed;
        width: 320px;
    }
    
    .accore-cart-page__divider {
        width: 100%;
    }
}

@media (max-width: 768px) {
    body.woocommerce-cart #content.site-content {
        padding-left: 0 !important;
        padding-top: 54px !important;
    }
    
    .accore-cart-page__main {
        padding: 24px 16px;
    }
    
    .accore-cart-page__sidebar {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: auto;
    }
    
    .accore-cart-page__actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .accore-cart-page__coupon {
        flex-direction: column;
    }
    
    .accore-cart-page__coupon input[type="text"] {
        width: 100%;
    }
    
    .accore-cart-page__buttons {
        flex-direction: column;
    }
    
    .accore-cart-page__buttons .accore-btn {
        width: 100%;
    }
    
    /* Mobile table layout */
    .accore-cart-table thead {
        display: none;
    }
    
    .accore-cart-table tbody tr {
        display: flex;
        flex-wrap: wrap;
        padding: 16px 0;
    }
    
    .accore-cart-table tbody td {
        padding: 8px 0;
    }
    
    .accore-cart-table tbody td.product-name {
        width: 100%;
    }
    
    .accore-cart-table tbody td.product-price,
    .accore-cart-table tbody td.product-quantity,
    .accore-cart-table tbody td.product-subtotal {
        width: 33.333%;
        text-align: center;
    }
    
    .accore-cart-table tbody td.product-price::before {
        content: 'Price';
        display: block;
        font-size: 11px;
        color: rgba(19, 52, 59, 0.5);
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .accore-cart-table tbody td.product-quantity::before {
        content: 'Qty';
        display: block;
        font-size: 11px;
        color: rgba(19, 52, 59, 0.5);
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .accore-cart-table tbody td.product-subtotal::before {
        content: 'Subtotal';
        display: block;
        font-size: 11px;
        color: rgba(19, 52, 59, 0.5);
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
}

/* ==========================================================================
   EMPTY CART PAGE
   ========================================================================== */

.accore-cart-page--empty .accore-cart-page__main {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}

.accore-empty-cart {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 60px 20px;
}

.accore-empty-cart__icon {
    margin-bottom: 24px;
}

.accore-empty-cart__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #13343b;
    margin: 0 0 8px 0;
}

.accore-empty-cart__text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgba(19, 52, 59, 0.6);
    margin: 0 0 24px 0;
}

.accore-empty-cart__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 32px;
    background-color: #4e0b62;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.accore-empty-cart__btn:hover {
    background-color: #3d0950;
    color: #fff;
}

.accore-cart-sidebar__checkout-btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ==========================================================================
   CUSTOM QUANTITY SELECTOR
   ========================================================================== */

.accore-quantity {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #E5E8E6;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.accore-quantity__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #13343b;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.accore-quantity__btn:hover {
    background-color: #f5f5f5;
}

.accore-quantity__btn:active {
    background-color: #e5e5e5;
}

.accore-quantity__btn svg {
    display: block;
}

.accore-quantity input.qty {
    width: 40px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #E5E8E6;
    border-right: 1px solid #E5E8E6;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #13343b;
    background: transparent;
    -moz-appearance: textfield;
    padding: 0;
    margin: 0;
}

.accore-quantity input.qty::-webkit-outer-spin-button,
.accore-quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.accore-quantity input.qty:focus {
    outline: none;
    background: #fafafa;
}

.accore-quantity__value {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #13343b;
}

/* Override default WooCommerce quantity styles on cart page */
.accore-cart-table .quantity {
    border: none;
    background: transparent;
}

.accore-cart-table .quantity .accore-quantity {
    margin: 0 auto;
}


/* ==========================================================================
   USER COUPONS - MY ACCOUNT PAGE
   Design from Figma: node-id=7-5249
   ========================================================================== */

/* Hide other plugins' coupon content when on coupons endpoint */
.woocommerce-account.woocommerce-page .woocommerce-MyAccount-content > *:not(.accore-coupons-page) {
    /* Allow all content by default */
}

/* When coupons page is present, hide everything except it */
.woocommerce-account .woocommerce-MyAccount-content:has(.accore-coupons-page) > *:not(.accore-coupons-page) {
    display: none !important;
}

.accore-coupons-page {
    padding: 0;
    display: block !important;
}

.accore-coupons-page__title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    color: #232027;
    margin: 0 0 16px 0;
}

.accore-coupons-page__divider {
    border: none;
    border-top: 1px solid #ece7f8;
    margin: 0 0 24px 0;
}

.accore-coupons-page__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.accore-coupons-page__empty svg {
    margin-bottom: 16px;
    opacity: 0.6;
}

.accore-coupons-page__empty-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: rgba(19, 52, 59, 0.5);
    margin: 0;
}

/* Coupons Grid */
.accore-coupons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
span.accore-coupon-card__desc-text {
    height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
/* Coupon Card */
.accore-coupon-card {
    display: flex;
    width: 358px;
    height: 205px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0px 4.182px 8.364px -3px rgba(35, 39, 47, 0.12),
        0px 2.091px 4.182px -3px rgba(35, 39, 47, 0.04);
    background: #fff;
}

.accore-coupon-card--disabled {
    opacity: 0.6;
}

/* Left Purple Section */
.accore-coupon-card__left {
    width: 42px;
    min-width: 42px;
    background-color: #4e0b62;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.accore-coupon-card__left-text {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    white-space: nowrap;
}

/* Right Content Section */
.accore-coupon-card__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #fff;
}

.accore-coupon-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.accore-coupon-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.accore-coupon-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.accore-coupon-card__label {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #232027;
}

.accore-coupon-card__code {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: #5b5760;
    letter-spacing: 0.5px;
}

.accore-coupon-card__logo {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.accore-coupon-card__logo svg {
    width: 100%;
    height: 100%;
}

.accore-coupon-card__description {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 auto 0;
}

.accore-coupon-card__desc-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #393540;
}

.accore-coupon-card__terms {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #4e0b62;
    text-decoration: none;
}

.accore-coupon-card__terms:hover {
    text-decoration: underline;
}

/* Copy Code Button */
.accore-coupon-card__copy-btn {
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ece7f8;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #393540;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 12px;
}

.accore-coupon-card__copy-btn:hover {
    background: #f8f6fc;
    border-color: #4e0b62;
    color: #4e0b62;
}

.accore-coupon-card__copy-btn.copied {
    background: #4e0b62;
    border-color: #4e0b62;
    color: #fff;
}

/* Status Labels */
.accore-coupon-card__status {
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin-top: 12px;
}

.accore-coupon-card__status--expired {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.accore-coupon-card__status--used {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

/* Responsive */
@media (max-width: 768px) {
    .accore-coupon-card {
        width: 100%;
        max-width: 358px;
    }
    
    .accore-coupons-grid {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .accore-coupon-card {
        height: auto;
        min-height: 179px;
    }
    
    .accore-coupon-card__right {
        padding: 16px;
    }
    
    .accore-coupon-card__label {
        font-size: 18px;
    }
}

/* ==========================================================================
   CHECKOUT PAGE STYLES - Figma Design 5:5119
   Same structure as Cart Page with dark sidebar (390px width)
   ========================================================================== */

/* Prevent horizontal overflow on checkout page */
body.woocommerce-checkout,
html.woocommerce-checkout {
    overflow-x: hidden !important;
}

/* Checkout Page Layout - Full viewport with dark sidebar (same as cart) */
body.woocommerce-checkout #content.site-content {
    min-height: 100vh !important;
    height: 100vh !important;
    padding-top: 114px !important;  /* 54px header + 60px extra */
    padding-left: 132px !important; /* 72px icon-bar + 60px extra */
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    position: relative !important;
}

/* Hide cart icon on checkout page - header */
body.woocommerce-checkout .accore-agui-header__cart,
body.woocommerce-checkout .accore-agui-header__right {
    display: none !important;
}

/* Hide cart icon on checkout page - icon bar */
body.woocommerce-checkout .agui-icon-bar__cart-link {
    display: none !important;
}

/* Reset parent wrappers on checkout page */
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout article {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Checkout Wrapper */
.accore-checkout-wrapper {
    width: 100%;
    min-height: calc(100vh - 114px);
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

/* Main Checkout Layout - Form is the flex container */
.accore-checkout-page,
form.accore-checkout-page,
.woocommerce-checkout.accore-checkout-page {
    width: 100% !important;
    min-height: calc(100vh - 114px) !important;
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    margin-right: 390px !important;
}

.accore-checkout-page__main {
    max-width: 740px;
    width: 100%;
    padding: 0px;
    padding-bottom: 60px;
    box-sizing: border-box;
}

/* Sidebar - Fixed position like cart */
.accore-checkout-page__sidebar {
    position: fixed;
    top: 54px;
    right: 0;
    width: 390px;
    height: calc(100vh - 54px);
    background-color: #13343b;
    overflow-y: auto;
    z-index: 100;
    box-shadow: -18px 0px 17.9px 0px rgba(0, 0, 0, 0.05);
}

/* Checkout Title */
.accore-checkout-page__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #13343b;
    margin: 0 0 6px 0;
    letter-spacing: 0.08px;
}

/* Dividers */
.accore-checkout-page__divider {
    border: none;
    height: 1px;
    background-color: rgba(19, 52, 59, 0.1);
    margin: 0 0 24px 0;
}

.accore-checkout-page__section-divider {
    border: none;
    height: 1px;
    background-color: rgba(19, 52, 59, 0.1);
    margin: 26px 0;
    width: 100%;
}

/* Free Shipping Banner */
.accore-checkout-page__free-shipping-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #165299;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.08px;
    margin: 0;
}

.accore-checkout-page__free-shipping-banner svg {
    flex-shrink: 0;
}

/* Checkout Fields Container */
.accore-checkout-fields {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px 20px !important;
    width: 100% !important;
    max-width: 740px !important;
}

.accore-checkout-fields__billing,
.accore-checkout-fields__shipping {
    display: contents !important;
}

.accore-checkout-fields__billing .woocommerce-billing-fields,
.accore-checkout-fields__shipping .woocommerce-shipping-fields {
    display: contents !important;
}

.accore-checkout-fields__notes {
    margin-top: 0;
    grid-column: span 2 !important;
}

/* WooCommerce Field Overrides */
.accore-checkout-page .woocommerce-billing-fields h3,
.accore-checkout-page .woocommerce-shipping-fields h3,
.accore-checkout-page .woocommerce-additional-fields h3 {
    display: none !important;
}

.accore-checkout-page .woocommerce-billing-fields,
.accore-checkout-page .woocommerce-shipping-fields {
    display: contents !important;
}

/* Additional fields (Order notes) - block display for proper full width */
.accore-checkout-page .woocommerce-additional-fields {
    display: block !important;
    width: 100% !important;
    grid-column: 1 / -1 !important;
    text-align: left !important;
}

.accore-checkout-page .woocommerce-billing-fields__field-wrapper,
.accore-checkout-page .woocommerce-shipping-fields__field-wrapper {
    display: contents !important;
}

.accore-checkout-page .form-row {
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    width: 100% !important;
}

.accore-checkout-page .form-row-wide {
    grid-column: span 2 !important;
}

.accore-checkout-page .form-row-first,
.accore-checkout-page .form-row-last {
    grid-column: span 1 !important;
    width: 100% !important;
    float: none !important;
}

/* Labels */
.accore-checkout-page label {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #13343b;
    letter-spacing: 0.08px;
    display: block;
    margin-bottom: 8px;
}

.accore-checkout-page label .optional {
    font-size: 9px;
    font-weight: 400;
    color: rgba(19, 52, 59, 0.6);
}

.accore-checkout-page .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

/* Input Fields */
.accore-checkout-page input[type="text"],
.accore-checkout-page input[type="email"],
.accore-checkout-page input[type="tel"],
.accore-checkout-page input[type="number"],
.accore-checkout-page input[type="password"],
.accore-checkout-page select,
.accore-checkout-page textarea {
    width: 100%;
    height: 50px;
    padding: 15px 20px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #13343b;
    letter-spacing: 0.08px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accore-checkout-page textarea {
    height: 120px;
    resize: vertical;
}

.accore-checkout-page input[type="text"]:focus,
.accore-checkout-page input[type="email"]:focus,
.accore-checkout-page input[type="tel"]:focus,
.accore-checkout-page input[type="number"]:focus,
.accore-checkout-page input[type="password"]:focus,
.accore-checkout-page select:focus,
.accore-checkout-page textarea:focus {
    outline: none;
    border-color: #4e0b62;
    box-shadow: 0 0 0 3px rgba(78, 11, 98, 0.1);
}

.accore-checkout-page input::placeholder,
.accore-checkout-page textarea::placeholder {
    color: rgba(19, 52, 59, 0.4);
}

/* Select Dropdown */
.accore-checkout-page .select2-container--default .select2-selection--single {
    height: 50px;
    padding: 15px 20px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.accore-checkout-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 20px;
    padding: 0;
    color: #13343b;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.accore-checkout-page .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    right: 12px;
}

/* Coupon Section */
.accore-checkout-page__coupon-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.accore-checkout-page__coupon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.accore-checkout-coupon-input {
    width: 227px !important;
    height: 44px !important;
    padding: 6px 18px !important;
    background-color: #fff !important;
    border: 1px solid rgba(19, 52, 59, 0.1) !important;
    border-radius: 8px !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400;
    font-size: 16px !important;
    line-height: 32px !important;
    color: #13343b !important;
    letter-spacing: 0.16px !important;
}

.accore-checkout-coupon-input::placeholder {
    color: rgba(19, 52, 59, 0.56) !important;
}

/* Buttons */
.accore-checkout-page .accore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 20px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.accore-checkout-page .accore-btn--primary {
    background-color: #4e0b62;
    color: #fff;
}

.accore-checkout-page .accore-btn--primary:hover {
    background-color: #3d0950;
}

.accore-checkout-page .accore-btn--dark {
    background-color: #1d0225;
    color: #fff;
}

.accore-checkout-page .accore-btn--dark:hover {
    background-color: #13011a;
}

/* ==========================================================================
   CHECKOUT SIDEBAR - Dark (#13343b) - Same as Cart
   ========================================================================== */

.accore-checkout-sidebar {
    padding: 32px;
    color: #fff;
}

.accore-checkout-sidebar__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #fff;
    margin: 0 0 24px 0;
    letter-spacing: 0.08px;
}

/* Rows */
.accore-checkout-sidebar__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.accore-checkout-sidebar__label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 36px;
    color: #fff;
    letter-spacing: 0.08px;
}

.accore-checkout-sidebar__value {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 36px;
    color: rgba(255, 255, 255, 0.48);
    letter-spacing: 0.08px;
}

/* Dividers */
.accore-checkout-sidebar__divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 16px 0;
}

.accore-checkout-sidebar__divider--thick {
    height: 2px;
    margin: 24px 0;
}

/* Shipping Section */
.accore-checkout-sidebar__section {
    margin-bottom: 16px;
}

.accore-checkout-sidebar__section > .accore-checkout-sidebar__label {
    display: block;
    margin-bottom: 8px;
}

.accore-checkout-sidebar__shipping-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.accore-checkout-sidebar__shipping-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    justify-content: flex-end;
}

.accore-checkout-sidebar__shipping-option input[type="radio"] {
    display: none;
}

.accore-checkout-sidebar__shipping-radio {
    width: 11px;
    height: 11px;
    border: 1.5px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s ease;
    order: 2;
}

.accore-checkout-sidebar__shipping-option input[type="radio"]:checked + .accore-checkout-sidebar__shipping-radio {
    border-color: #fff;
    background-color: #fff;
}

.accore-checkout-sidebar__shipping-option input[type="radio"]:checked + .accore-checkout-sidebar__shipping-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background-color: #13343b;
    border-radius: 50%;
}

.accore-checkout-sidebar__shipping-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 36px;
    color: rgba(255, 255, 255, 0.48);
    order: 1;
}

.accore-checkout-sidebar__no-shipping {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Discount Row (shown when coupon applied) */
.accore-checkout-sidebar__row--discount {
    margin-bottom: 8px;
}
.woocommerce-message {
    display: none;
}
.accore-checkout-sidebar__row--discount .accore-checkout-sidebar__value {
    color: #4ade80;
}
.woocommerce-notices-wrapper {
    display: none;
}
li.woocommerce-SavedPaymentMethods-token {
    display: flex;
    /* justify-content: center; */
    align-items: center;
}
ul.woocommerce-SavedPaymentMethods.wc-saved-payment-methods {
    margin-top: 20px !important;
}
/* Shipping Address Display */
.accore-checkout-sidebar__address-section {
    margin-bottom: 16px;
}
li.woocommerce-SavedPaymentMethods-new {
    display: flex;
    align-items: center;
}
li.woocommerce-SavedPaymentMethods-new label {
    color: inherit;
    margin: auto;
    margin-left: 0;
}
li.woocommerce-SavedPaymentMethods-token label {
    color: inherit;
    margin: auto;
    margin-left: 0;
}
.accore-checkout-sidebar__address-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 36px;
    color: #fff;
    letter-spacing: 0.08px;
}

.accore-checkout-sidebar__address-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.48);
    display: block;
    letter-spacing: 0.08px;
}

.accore-checkout-sidebar__change-address {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 36px;
    color: rgba(255, 255, 255, 0.48);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.accore-checkout-sidebar__change-address:hover {
    color: #fff;
}

/* Payment Methods */
.accore-checkout-sidebar__payment-section {
    margin-bottom: 16px;
}

.accore-checkout-sidebar__payment-methods {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.accore-checkout-sidebar__payment-method {
    margin: 0;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.accore-checkout-sidebar__payment-method:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.accore-checkout-sidebar__payment-method.selected,
.accore-checkout-sidebar__payment-method.active {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.accore-checkout-sidebar__payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 0;
    font-weight: 400;
}

.accore-checkout-sidebar__payment-option input[type="radio"] {
    display: none;
}

.accore-checkout-sidebar__payment-radio {
    width: 11px;
    height: 11px;
    border: 1.5px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s ease;
}

.accore-checkout-sidebar__payment-option input[type="radio"]:checked + .accore-checkout-sidebar__payment-radio {
    border-color: #fff;
    background-color: #fff;
}

.accore-checkout-sidebar__payment-option input[type="radio"]:checked + .accore-checkout-sidebar__payment-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background-color: #13343b;
    border-radius: 50%;
}

.accore-checkout-sidebar__payment-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
    letter-spacing: 0.08px;
}

.accore-checkout-sidebar__payment-icon {
    margin-left: auto;
}

.accore-checkout-sidebar__payment-icon img {
    max-height: 20px;
    width: auto;
}

.accore-checkout-sidebar__payment-description {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.48);
    padding: 8px 0 12px 23px;
    letter-spacing: 0.08px;
}

.accore-checkout-sidebar__payment-description p {
    margin: 0;
}

.accore-checkout-sidebar__payment-description a {
    color: rgba(255, 255, 255, 0.48);
    text-decoration: underline;
    opacity: 0.7;
}

.accore-checkout-sidebar__payment-description a:hover {
    color: #fff;
    opacity: 1;
}

.accore-checkout-sidebar__no-payment {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.5);
}
fieldset#wc-stripe-upe-form {
    border: none;
    margin-top: 20px;
}
.accore-checkout-sidebar__payment-description p {
    font-size: 12px;
}
.accore-checkout-sidebar__payment-description.payment_box.payment_method_stripe {
    padding: 0 !important;
}
html body .accore-checkout-page .form-row label {
    color: #515151 !important;
    font-weight: normal !important;
}
html body .accore-checkout-page aside.accore-checkout-page__sidebar .form-row label {
    color: rgba(255, 255, 255, 0.48) !important;
    font-weight: normal !important;
}
p.form-row.woocommerce-SavedPaymentMethods-saveNew.woocommerce-validated {
    display: flex !important;
}
li.accore-checkout-sidebar__payment-method.wc_payment_method.payment_method_stripe fieldset {
    border: initial;
}
.accore-checkout-page #payment {
    padding: 0;
}
p.form-row.woocommerce-SavedPaymentMethods-saveNew.woocommerce-validated {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px !important;
}
li.accore-checkout-sidebar__payment-method.wc_payment_method.payment_method_stripe {
    border: initial !important;
}
/* Privacy Policy */
.accore-checkout-sidebar__privacy {
    margin-bottom: 8px;
}
span.accore-checkout-sidebar__payment-radio {
    display: none;
}
.accore-checkout-sidebar__privacy-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.48);
    margin: 0;
    letter-spacing: 0.08px;
}

.accore-checkout-sidebar__privacy-link {
    color: rgba(255, 255, 255, 0.48);
    text-decoration: underline;
}

.accore-checkout-sidebar__privacy-link:hover {
    color: #fff;
}

/* Terms & Conditions */
.accore-checkout-sidebar__terms {
    margin-bottom: 8px;
}

.accore-checkout-sidebar__terms .woocommerce-terms-and-conditions-wrapper {
    margin: 0;
}

.accore-checkout-sidebar__terms .woocommerce-privacy-policy-text {
    display: none;
}

.accore-checkout-sidebar__terms .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    letter-spacing: 0.08px;
}

.accore-checkout-sidebar__terms .woocommerce-form__label-for-checkbox a {
    color: #fff;
    text-decoration: underline;
}

.accore-checkout-sidebar__terms .woocommerce-form__label-for-checkbox a:hover {
    text-decoration: none;
}

/* Custom Checkbox for Terms */
.accore-checkout-sidebar__terms input[type="checkbox"] {
    display: none;
}

.accore-checkout-sidebar__terms .woocommerce-form__label-for-checkbox::before {
    content: '';
    width: 11px;
    height: 11px;
    border: 1.5px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
    transition: all 0.2s ease;
}

.accore-checkout-sidebar__terms input[type="checkbox"]:checked + .woocommerce-form__label-for-checkbox::before {
    background-color: #fff;
    border-color: #fff;
}

/* Total Row */
.accore-checkout-sidebar__row--total {
    margin-bottom: 24px;
}

.accore-checkout-sidebar__row--total .accore-checkout-sidebar__label {
    font-weight: 700;
}

.accore-checkout-sidebar__value--total {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.48);
}

/* Place Order Button */
.accore-checkout-sidebar__place-order {
    margin-top: 16px;
}

.accore-checkout-sidebar__place-order-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    height: 44px !important;
    background-color: #fff !important;
    color: #4e0b62 !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 32px !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    letter-spacing: 0.16px !important;
}

.accore-checkout-sidebar__place-order-btn:hover {
    background-color: #f5f5f5 !important;
    color: #3d0950 !important;
}

.accore-checkout-sidebar__arrow {
    font-size: 18px;
    margin-left: 4px;
}

/* Hide default WooCommerce elements */
.accore-checkout-page #payment .form-row,
.accore-checkout-page #payment > .place-order {
    display: none;
}

.accore-checkout-page .woocommerce-additional-fields h3 {
    display: none;
}

/* CRITICAL: Force Place Order button visibility regardless of payment gateway */
.accore-checkout-sidebar__place-order {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.accore-checkout-sidebar__place-order #place_order,
.accore-checkout-sidebar__place-order .accore-checkout-sidebar__place-order-btn,
#place_order.accore-checkout-sidebar__place-order-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    pointer-events: auto !important;
}

/* PayPal/other gateway's native buttons container */
.accore-checkout-sidebar__gateway-buttons {
    display: none;
    margin-top: 16px;
}

.accore-checkout-sidebar__gateway-buttons .ppc-button,
.accore-checkout-sidebar__gateway-buttons [id^="ppc-button"] {
    width: 100% !important;
    min-height: 44px !important;
}

/* Style native Apple Pay / Google Pay buttons inside payment box */
.accore-checkout-sidebar__payment-description .ppc-button,
.accore-checkout-sidebar__payment-description [id^="ppc-button"],
.payment_method_ppcp-googlepay .payment_box .ppc-button,
.payment_method_ppcp-applepay .payment_box .ppc-button {
    width: 100% !important;
    min-height: 48px !important;
    margin-top: 12px !important;
    border-radius: 8px !important;
}

/* Hint text for native buttons */
.accore-native-button-hint {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   ORDER PAY PAGE (Pay for existing order)
   ========================================================================== */

.accore-order-pay-wrapper {
    display: flex;
    min-height: 100vh;
}

.accore-order-pay-page {
    display: flex;
    width: 100%;
}

.accore-order-pay__main {
    flex: 1;
    padding: 48px 64px;
    background-color: transparent !important;
    padding-top: 0 !important;
}

.accore-order-pay__sidebar {
    width: 400px;
    min-width: 400px;
}

/* Order Summary Section */
.accore-order-pay__summary {
    margin-top: 24px;
}

.accore-order-pay__section-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #13343b;
    margin: 0 0 20px 0;
}

/* Order Items */
.accore-order-pay__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accore-order-pay__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid rgba(19, 52, 59, 0.1);
}

.accore-order-pay__item-image {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.accore-order-pay__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accore-order-pay__item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.accore-order-pay__item-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #13343b;
    line-height: 1.4;
}

.accore-order-pay__item-vendor {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(19, 52, 59, 0.6);
}

.accore-order-pay__item-vendor a {
    color: #20808d;
    text-decoration: none;
}

.accore-order-pay__item-vendor a:hover {
    text-decoration: underline;
}

.accore-order-pay__item-qty {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(19, 52, 59, 0.7);
    padding: 0 16px;
}

.accore-order-pay__item-total {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #13343b;
    min-width: 80px;
    text-align: right;
}

/* Order Pay Responsive */
@media (max-width: 1200px) {
    .accore-order-pay__sidebar {
        width: 350px;
        min-width: 350px;
    }
    
    .accore-order-pay__main {
        padding: 32px 48px;
    }
}

@media (max-width: 1024px) {
    .accore-order-pay-wrapper {
        flex-direction: column;
    }
    
    .accore-order-pay-page {
        flex-direction: column;
    }
    
    .accore-order-pay__main {
        padding: 24px 32px;
        padding-bottom: 32px;
    }
    
    .accore-order-pay__sidebar {
        width: 100%;
        min-width: 100%;
        position: relative;
    }
}

@media (max-width: 768px) {
    .accore-order-pay__main {
        padding: 20px 16px;
    }
    
    .accore-order-pay__item {
        flex-wrap: wrap;
        padding: 12px;
    }
    
    .accore-order-pay__item-image {
        width: 48px;
        height: 48px;
    }
    
    .accore-order-pay__item-details {
        flex: 1;
        min-width: calc(100% - 80px);
    }
    
    .accore-order-pay__item-qty,
    .accore-order-pay__item-total {
        padding-top: 8px;
    }
}

/* ==========================================================================
   CHECKOUT PAGE RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .accore-checkout-page__sidebar {
        width: 350px;
    }
    
    .accore-checkout-wrapper {
        width: calc(100% - 350px);
    }
}

@media (max-width: 1024px) {
    .accore-checkout-wrapper {
        width: 100%;
        padding-bottom: 400px;
    }
    
    .accore-checkout-page__main {
        max-width: 100%;
        padding: 32px;
    }
    
    .accore-checkout-page__sidebar {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        max-height: 60vh;
    }
    
    .accore-checkout-fields {
        grid-template-columns: 1fr !important;
    }
    
    .accore-checkout-page .form-row-wide,
    .accore-checkout-page .form-row-first,
    .accore-checkout-page .form-row-last {
        grid-column: span 1 !important;
    }
}

@media (max-width: 768px) {
    .accore-checkout-page__main {
        padding: 24px 16px;
    }
    
    .accore-checkout-sidebar {
        padding: 24px 16px;
    }
    
    .accore-checkout-page__title {
        font-size: 20px;
    }
    
    .accore-checkout-sidebar__title {
        font-size: 20px;
    }
    
    .accore-checkout-page__coupon-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .accore-checkout-page__coupon {
        flex-direction: column;
    }
    
    .accore-checkout-coupon-input {
        width: 100% !important;
    }
}

/* Hide WC default checkout payment area (we use our custom one in sidebar) */
.accore-checkout-page #payment {
    background: transparent;
    border: none;
    border-radius: 0;
}

.accore-checkout-page #payment ul.payment_methods {
    border: none;
    padding: 0;
}

.accore-checkout-page #payment div.payment_box {
    background: transparent;
    color: rgba(255, 255, 255, 0.48);
}

.accore-checkout-page #payment div.payment_box::before {
    display: none;
}

/* ==========================================================================
   CHECKOUT NOTIFICATION TOAST
   ========================================================================== */

.accore-checkout-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    padding: 16px 24px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.accore-checkout-notification.visible {
    transform: translateX(0);
}

.accore-checkout-notification--success {
    background-color: #13343b;
    color: #fff;
}

.accore-checkout-notification--error {
    background-color: #d32f2f;
    color: #fff;
}

.accore-checkout-notification--info {
    background-color: #1976d2;
    color: #fff;
}

/* ==========================================================================
   CHECKOUT LOADING STATES
   ========================================================================== */

.accore-btn.loading,
.accore-checkout-apply-coupon.loading,
.accore-checkout-remove-coupons.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.accore-btn.loading::after,
.accore-checkout-apply-coupon.loading::after,
.accore-checkout-remove-coupons.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: accore-spin 0.8s linear infinite;
}

@keyframes accore-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   WOOCOMMERCE DEFAULT OVERRIDES FOR CHECKOUT
   Hide/style all default WooCommerce elements to match Figma design
   ========================================================================== */

/* Hide WooCommerce coupon toggle completely */
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.accore-checkout-wrapper .woocommerce-form-coupon-toggle,
.woocommerce-form-coupon-toggle {
    display: none !important;
}

/* Hide WooCommerce default coupon form */
.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon,
.accore-checkout-wrapper .checkout_coupon.woocommerce-form-coupon {
    display: none !important;
}

/* WooCommerce Info Notices */
.woocommerce-checkout .woocommerce-info,
.accore-checkout-wrapper .woocommerce-info,
.accore-checkout-page .woocommerce-info {
    display: none !important;
}

/* WooCommerce Error/Success Messages */
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.accore-checkout-wrapper .woocommerce-error,
.accore-checkout-wrapper .woocommerce-message,
.accore-checkout-page .woocommerce-error,
.accore-checkout-page .woocommerce-message {
    background-color: #13343b !important;
    border: none !important;
    border-radius: 8px !important;
    color: #fff !important;
    padding: 16px 24px !important;
    margin: 0 0 24px 0 !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    line-height: 20px !important;
    list-style: none !important;
}

.woocommerce-checkout .woocommerce-error::before,
.woocommerce-checkout .woocommerce-message::before,
.accore-checkout-wrapper .woocommerce-error::before,
.accore-checkout-wrapper .woocommerce-message::before {
    display: none !important;
}

.woocommerce-checkout .woocommerce-error li,
.woocommerce-checkout .woocommerce-message li {
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-checkout .woocommerce-error {
    background-color: #d32f2f !important;
}

/* Hide default WooCommerce order review heading */
.accore-checkout-page #order_review_heading {
    display: none !important;
}

/* Hide the default WooCommerce order review table in main area */
.accore-checkout-page .woocommerce-checkout-review-order-table {
    display: none !important;
}

/* Reset all WooCommerce form field borders and backgrounds */
.woocommerce-checkout .woocommerce-input-wrapper input,
.woocommerce-checkout .woocommerce-input-wrapper select,
.woocommerce-checkout .woocommerce-input-wrapper textarea,
.accore-checkout-page .woocommerce-input-wrapper input,
.accore-checkout-page .woocommerce-input-wrapper select,
.accore-checkout-page .woocommerce-input-wrapper textarea {
    width: 100% !important;
    height: 50px !important;
    padding: 15px 20px !important;
    background-color: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    color: #13343b !important;
    letter-spacing: 0.08px !important;
    box-shadow: none !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.accore-checkout-page .woocommerce-input-wrapper textarea {
    height: 120px !important;
    resize: vertical !important;
}

.woocommerce-checkout .woocommerce-input-wrapper input:focus,
.woocommerce-checkout .woocommerce-input-wrapper select:focus,
.woocommerce-checkout .woocommerce-input-wrapper textarea:focus,
.accore-checkout-page .woocommerce-input-wrapper input:focus,
.accore-checkout-page .woocommerce-input-wrapper select:focus,
.accore-checkout-page .woocommerce-input-wrapper textarea:focus {
    border-color: #4e0b62 !important;
    box-shadow: 0 0 0 3px rgba(78, 11, 98, 0.1) !important;
}

/* Select2 Dropdown Styling */
.woocommerce-checkout .select2-container,
.accore-checkout-page .select2-container {
    width: 100% !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single,
.accore-checkout-page .select2-container--default .select2-selection--single {
    height: 50px !important;
    padding: 0 20px !important;
    background-color: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered,
.accore-checkout-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px !important;
    padding: 0 !important;
    color: #13343b !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow,
.accore-checkout-page .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
    right: 12px !important;
    top: 0 !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__placeholder,
.accore-checkout-page .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgba(19, 52, 59, 0.4) !important;
}

/* Select2 Dropdown Menu */
.select2-dropdown {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
}

.select2-results__option {
    padding: 12px 20px !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    color: #13343b !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #4e0b62 !important;
    color: #fff !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: rgba(78, 11, 98, 0.1) !important;
    color: #4e0b62 !important;
}

/* WooCommerce Form Row Validation */
.woocommerce-checkout .woocommerce-invalid input,
.woocommerce-checkout .woocommerce-invalid select,
.accore-checkout-page .woocommerce-invalid input,
.accore-checkout-page .woocommerce-invalid select {
    border-color: #d32f2f !important;
}

.woocommerce-checkout .woocommerce-validated input,
.woocommerce-checkout .woocommerce-validated select,
.accore-checkout-page .woocommerce-validated input,
.accore-checkout-page .woocommerce-validated select {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

/* Password Visibility Toggle */
.woocommerce-checkout .show-password-input,
.accore-checkout-page .show-password-input {
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 15px !important;
}

/* WooCommerce Required Asterisk */
.woocommerce-checkout abbr.required,
.accore-checkout-page abbr.required {
    color: #d32f2f !important;
    text-decoration: none !important;
    border: none !important;
}

/* Hide ship to different address checkbox styling */
.woocommerce-checkout #ship-to-different-address {
    margin: 24px 0 !important;
}

.woocommerce-checkout #ship-to-different-address label {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    cursor: pointer !important;
}

.woocommerce-checkout #ship-to-different-address input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 4px !important;
    cursor: pointer !important;
}

/* WooCommerce Login Form on Checkout */
.woocommerce-checkout .woocommerce-form-login-toggle {
    display: none !important;
}

.woocommerce-checkout .woocommerce-form-login {
    display: none !important;
}

/* Hide create account checkbox if it appears */
.woocommerce-checkout .create-account {
    margin-top: 16px !important;
}

.woocommerce-checkout .create-account label {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

/* Form row spacing */
.accore-checkout-page .form-row {
    margin-bottom: 0 !important;
}

.accore-checkout-page p.form-row {
    margin-bottom: 0 !important;
}

/* Label styling override */
.accore-checkout-page .form-row label {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    color: #13343b !important;
    letter-spacing: 0.08px !important;
    display: block !important;
    margin-bottom: 8px !important;
}

.accore-checkout-page .form-row label .optional {
    font-size: 9px !important;
    font-weight: 400 !important;
    color: rgba(19, 52, 59, 0.6) !important;
}

/* Override WooCommerce blockUI overlay */
.woocommerce-checkout .blockUI.blockOverlay {
    background-color: rgba(252, 252, 249, 0.7) !important;
}

.woocommerce-checkout .blockUI.blockMsg {
    border: none !important;
    background: transparent !important;
}

/* Loader/spinner styling */
.woocommerce-checkout .loader {
    display: none !important;
}

/* Hide default billing/shipping fields heading */
.accore-checkout-page .woocommerce-billing-fields > h3,
.accore-checkout-page .woocommerce-shipping-fields > h3,
.accore-checkout-page .woocommerce-additional-fields > h3 {
    display: none !important;
}

/* Shipping methods in main content area - hide since we show in sidebar */
.accore-checkout-page #shipping_method {
    display: none !important;
}

/* Account fields wrapper */
.accore-checkout-page .woocommerce-account-fields {
    grid-column: span 2 !important;
    margin-top: 16px !important;
}

/* ==========================================================================
   ADDITIONAL WOOCOMMERCE CHECKOUT FIELD GRID OVERRIDES
   ========================================================================== */

/* Ensure field wrapper takes full grid */
.accore-checkout-page .woocommerce-billing-fields__field-wrapper {
    display: contents !important;
}

.accore-checkout-page .woocommerce-shipping-fields__field-wrapper {
    display: contents !important;
}

/* Specific field widths based on Figma */
.accore-checkout-page #billing_email_field,
.accore-checkout-page #billing_company_field,
.accore-checkout-page #billing_country_field,
.accore-checkout-page #billing_address_1_field,
.accore-checkout-page #billing_address_2_field,
.accore-checkout-page #order_comments_field {
    grid-column: span 2 !important;
}

.accore-checkout-page #billing_first_name_field,
.accore-checkout-page #billing_last_name_field,
.accore-checkout-page #billing_city_field,
.accore-checkout-page #billing_state_field,
.accore-checkout-page #billing_postcode_field,
.accore-checkout-page #billing_phone_field {
    grid-column: span 1 !important;
}
.woocommerce-shipping-fields, .woocommerce-shipping-fields:before, .woocommerce-shipping-fields:after {
    display: none !important;
    margin: 0;
    padding: 0;
}
/* Country field full width */
.accore-checkout-page #billing_country_field {
    grid-column: span 2 !important;
}

/* Notes field styling - Full width with left-aligned label */
.accore-checkout-page .woocommerce-additional-fields,
.accore-checkout-page .woocommerce-additional-fields__field-wrapper {
    display: block !important;
    width: 100% !important;
    grid-column: 1 / -1 !important;
}

.accore-checkout-page #order_comments_field {
    margin-top: 0px !important;
    width: 100% !important;
    text-align: left !important;
}

.accore-checkout-page #order_comments_field label {
    text-align: left !important;
    display: block !important;
    width: 100% !important;
    margin-bottom: 8px !important;
}

.accore-checkout-page #order_comments {
    min-height: 120px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* ==========================================================================
   PAID MEMBERSHIPS PRO - CHECKOUT PAGE STYLES
   Matching Accore theme design with dark sidebar
   ========================================================================== */

.accore-pmpro-checkout-wrapper {
    width: 100%;
    min-height: calc(100vh - 114px);
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-bg-secondary);
}

/* Hide default PMPro wrapper styling */
.accore-pmpro-checkout-wrapper .pmpro {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Main Checkout Layout */
.accore-pmpro-checkout {
    width: 100%;
    min-height: calc(100vh - 114px);
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    max-width: 100%;
    margin-right: 390px;
}

.accore-pmpro-checkout__main {
    max-width: 740px;
    width: 100%;
    padding: 40px;
    padding-bottom: 60px;
    box-sizing: border-box;
    margin-right: 390px;
}

/* Sidebar - Fixed position like WooCommerce checkout */
.accore-pmpro-checkout__sidebar {
    position: fixed;
    top: 54px;
    right: 0;
    width: 390px;
    height: calc(100vh - 54px);
    background-color: #13343b;
    overflow-y: auto;
    z-index: 100;
    box-shadow: -18px 0px 17.9px 0px rgba(0, 0, 0, 0.05);
}

/* Admin bar adjustment */
.admin-bar .accore-pmpro-checkout__sidebar {
    top: 86px;
    height: calc(100vh - 86px);
}

/* Page Title */
.accore-pmpro-checkout__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #13343b;
    margin: 0 0 16px 0;
    letter-spacing: 0.08px;
}

/* Dividers */
.accore-pmpro-checkout__divider {
    border: none;
    height: 1px;
    background-color: rgba(19, 52, 59, 0.1);
    margin: 26px 0;
    width: 100%;
}

/* Messages */
.accore-pmpro-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
}

.accore-pmpro-message--pmpro_error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.accore-pmpro-message--pmpro_success {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.accore-pmpro-checkout__review-notice {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

/* Sections */
.accore-pmpro-section {
    margin-bottom: 0;
}

.accore-pmpro-section__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #13343b;
    margin: 0 0 20px 0;
}

/* Logged in user info */
.accore-pmpro-logged-in {
    background-color: rgba(32, 128, 141, 0.08);
    padding: 16px 20px;
    border-radius: 10px;
}

.accore-pmpro-logged-in p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #13343b;
    margin: 0;
}

.accore-pmpro-logged-in__actions {
    margin-top: 8px !important;
}

.accore-pmpro-logged-in__actions a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Form Fields Grid */
.accore-pmpro-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.accore-pmpro-field {
    display: flex;
    flex-direction: column;
}

.accore-pmpro-field--half {
    grid-column: span 1;
}

.accore-pmpro-field--third {
    grid-column: span 1;
}

.accore-pmpro-field--full {
    grid-column: span 2;
}

/* Labels */
.accore-pmpro-field label {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #13343b;
    letter-spacing: 0.08px;
    display: block;
    margin-bottom: 8px;
}

.accore-pmpro-field label .required {
    color: #ef4444;
}

.accore-pmpro-field label .optional {
    font-size: 11px;
    font-weight: 400;
    color: rgba(19, 52, 59, 0.5);
}

/* Input Fields */
.accore-pmpro-input,
.accore-pmpro-select {
    width: 100%;
    height: 50px;
    padding: 15px 20px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #13343b;
    letter-spacing: 0.08px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.accore-pmpro-input:focus,
.accore-pmpro-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(32, 128, 141, 0.1);
}

.accore-pmpro-input::placeholder {
    color: rgba(19, 52, 59, 0.4);
}

/* Login Link */
.accore-pmpro-login-link {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-secondary);
    margin-top: 16px;
}

.accore-pmpro-login-link a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Accepted Cards */
.accore-pmpro-accepted-cards {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

/* Discount Code */
.accore-pmpro-discount {
    margin-top: 20px;
}

.accore-pmpro-discount > label {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #13343b;
    display: block;
    margin-bottom: 8px;
}

.accore-pmpro-discount__input-wrapper {
    display: flex;
    gap: 10px;
}

.accore-pmpro-discount__input-wrapper .accore-pmpro-input {
    flex: 1;
}

.accore-pmpro-discount__message {
    margin-top: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 20px;
}

/* ==========================================================================
   PMPRO SIDEBAR STYLES
   ========================================================================== */

.accore-pmpro-sidebar {
    padding: 32px;
    color: #fff;
}

.accore-pmpro-sidebar__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #fff;
    margin: 0 0 24px 0;
    letter-spacing: 0.08px;
}

/* Level Info */
.accore-pmpro-sidebar__level {
    margin-bottom: 0;
}

.accore-pmpro-sidebar__level-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    margin: 0 0 8px 0;
}

.accore-pmpro-sidebar__level-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.7);
}

.accore-pmpro-sidebar__level-desc p {
    margin: 0 0 8px 0;
}

.accore-pmpro-sidebar__level-desc ul {
    margin: 0;
    padding-left: 20px;
}

.accore-pmpro-sidebar__level-desc li {
    margin-bottom: 4px;
}

/* Dividers */
.accore-pmpro-sidebar__divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 16px 0;
}

.accore-pmpro-sidebar__divider--thick {
    height: 2px;
    margin: 20px 0;
}

/* Rows */
.accore-pmpro-sidebar__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.accore-pmpro-sidebar__label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
    letter-spacing: 0.08px;
}

.accore-pmpro-sidebar__value {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.08px;
    text-align: right;
}

.accore-pmpro-sidebar__row--discount .accore-pmpro-sidebar__value {
    color: #22c55e;
}

.accore-pmpro-sidebar__row--total .accore-pmpro-sidebar__label,
.accore-pmpro-sidebar__row--total .accore-pmpro-sidebar__value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

/* Terms of Service Checkbox */
.accore-pmpro-sidebar__tos {
    margin-bottom: 0;
}

.accore-pmpro-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.accore-pmpro-checkbox input[type="checkbox"] {
    display: none;
}

.accore-pmpro-checkbox__mark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.accore-pmpro-checkbox input[type="checkbox"]:checked + .accore-pmpro-checkbox__mark {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.accore-pmpro-checkbox input[type="checkbox"]:checked + .accore-pmpro-checkbox__mark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.accore-pmpro-checkbox__text {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.accore-pmpro-checkbox__text a {
    color: #fff;
    text-decoration: underline;
}

/* Privacy Notice */
.accore-pmpro-sidebar__privacy {
    margin-bottom: 0;
}

.accore-pmpro-sidebar__privacy p {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.accore-pmpro-sidebar__privacy a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

/* Buttons */
.accore-pmpro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    padding: 0 24px;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.accore-auth__message--error {
    margin: auto !important;
}
.accore-pmpro-btn--primary {
    background-color: var(--color-accent);
    color: #fff;
}

.accore-pmpro-btn--primary:hover {
    background-color: var(--color-accent-hover);
}

.accore-pmpro-btn--secondary {
    background-color: var(--color-primary);
    color: #fff;
}

.accore-pmpro-btn--secondary:hover {
    background-color: var(--color-primary-hover);
}

.accore-pmpro-btn--full {
    width: 100%;
}

.accore-pmpro-btn__arrow {
    font-size: 18px;
}

/* Submit Section */
.accore-pmpro-sidebar__submit {
    margin-top: 0;
}

/* ==========================================================================
   PMPRO CHECKOUT RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1200px) {
    .accore-pmpro-checkout {
        margin-right: 350px;
    }
    
    .accore-pmpro-checkout__sidebar {
        width: 350px;
    }
}

@media (max-width: 1024px) {
    .accore-pmpro-checkout {
        flex-direction: column;
        margin-right: 0;
    }
    
    .accore-pmpro-checkout__main {
        max-width: 100%;
        padding: 32px;
    }
    
    .accore-pmpro-checkout__sidebar {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: auto;
    }
    
    .admin-bar .accore-pmpro-checkout__sidebar {
        top: auto;
        height: auto;
    }
}

@media (max-width: 768px) {
    .accore-pmpro-checkout__main {
        padding: 24px 16px;
    }
    
    .accore-pmpro-checkout__title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .accore-pmpro-fields {
        grid-template-columns: 1fr;
    }
    
    .accore-pmpro-field--half,
    .accore-pmpro-field--third,
    .accore-pmpro-field--full {
        grid-column: span 1;
    }
    
    .accore-pmpro-sidebar {
        padding: 24px 16px;
    }
    
    .accore-pmpro-sidebar__title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .accore-pmpro-discount__input-wrapper {
        flex-direction: column;
    }
}

/* ==========================================================================
   HIDE DEFAULT PMPRO STYLES
   ========================================================================== */

.accore-pmpro-checkout-wrapper .pmpro_card,
.accore-pmpro-checkout-wrapper .pmpro_card_content,
.accore-pmpro-checkout-wrapper .pmpro_form_fields,
.accore-pmpro-checkout-wrapper .pmpro_cols-2 {
    all: unset;
    display: block;
}

.accore-pmpro-checkout-wrapper .pmpro_btn,
.accore-pmpro-checkout-wrapper input[type="submit"].pmpro_btn {
    display: none;
}

/* ==========================================================================
   PMPRO FREE PLAN CHECKOUT STYLES
   ========================================================================== */

.accore-pmpro-free-plan {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, rgba(32, 128, 141, 0.06) 0%, rgba(32, 128, 141, 0.02) 100%);
    border-radius: 16px;
    margin: 24px 0 32px 0;
    border: 1px solid rgba(32, 128, 141, 0.1);
}

.accore-pmpro-free-plan__icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.accore-pmpro-free-plan__icon svg {
    display: block;
}

.accore-pmpro-free-plan h2.accore-pmpro-free-plan__title,
h2.accore-pmpro-free-plan__title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 28px !important;
    line-height: 36px !important;
    color: #13343b !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    border: none !important;
}

.accore-pmpro-free-plan p.accore-pmpro-free-plan__description,
p.accore-pmpro-free-plan__description {
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px !important;
    line-height: 26px !important;
    color: rgba(19, 52, 59, 0.7) !important;
    margin: 0 auto 32px auto !important;
    max-width: 480px;
}

.accore-pmpro-free-plan__benefits {
    background: #fff;
    border-radius: 12px;
    padding: 28px 36px;
    display: inline-block;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    min-width: 280px;
}

.accore-pmpro-free-plan h3.accore-pmpro-free-plan__benefits-title,
h3.accore-pmpro-free-plan__benefits-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    line-height: 18px !important;
    color: rgba(19, 52, 59, 0.5) !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
}

ul.accore-pmpro-free-plan__list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

ul.accore-pmpro-free-plan__list li {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 15px !important;
    line-height: 22px !important;
    color: #13343b !important;
    padding: 0 !important;
    margin: 0 !important;
}

ul.accore-pmpro-free-plan__list li::before {
    display: none !important;
}

ul.accore-pmpro-free-plan__list li svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

/* Your Account Section for Free Plans */
.accore-pmpro-section h2.accore-pmpro-section__title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 26px !important;
    color: #13343b !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    border: none !important;
}

.accore-pmpro-logged-in {
    background: #fff;
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(19, 52, 59, 0.08);
}

.accore-pmpro-logged-in p {
    margin: 0 0 8px 0 !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 15px !important;
    line-height: 24px !important;
    color: #13343b !important;
}

.accore-pmpro-logged-in p:last-child {
    margin-bottom: 0 !important;
}

.accore-pmpro-logged-in__email {
    color: rgba(19, 52, 59, 0.6) !important;
    font-size: 14px !important;
}

.accore-pmpro-logged-in__note {
    color: rgba(19, 52, 59, 0.6) !important;
    font-size: 14px !important;
    margin-top: 4px !important;
}

.accore-pmpro-logged-in__actions {
    margin-top: 16px !important;
    padding-top: 16px;
    border-top: 1px solid rgba(19, 52, 59, 0.1);
}

.accore-pmpro-logged-in__actions a {
    color: #20808d !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 14px !important;
}

.accore-pmpro-logged-in__actions a:hover {
    text-decoration: underline !important;
}
.woocommerce-account .woocommerce-MyAccount-content a.accore-orders__btn {
    color: #ffffff !important;
}
/* Free Plan Responsive */
@media (max-width: 768px) {
    .accore-pmpro-free-plan {
        padding: 32px 20px;
        margin: 16px 0 24px 0;
    }
    
    h2.accore-pmpro-free-plan__title {
        font-size: 22px !important;
        line-height: 30px !important;
    }
    
    .accore-pmpro-free-plan__benefits {
        padding: 24px;
        min-width: auto;
        width: 100%;
        box-sizing: border-box;
    }
}

span.accore-checkout-sidebar__payment-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 25px;
}
label.accore-checkout-sidebar__payment-option {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
/* ==========================================================================
   PMPRO PAYMENT METHOD SECTION
   Styled to match WooCommerce checkout form
   ========================================================================== */

/* Reset default PMPro fieldset and card styles */
span.pmpro_btn-submit-checkout-paypal-image {
    display: none !important;
}
.accore-pmpro-checkout__main #pmpro_payment_method,
.accore-pmpro-checkout__main fieldset.pmpro_form_fieldset {
    border: none;
    padding: 0;
    margin: 0 0 24px 0;
    background: transparent;
    min-inline-size: auto;
}

.accore-pmpro-checkout__main #pmpro_payment_method .pmpro_card,
.accore-pmpro-checkout__main fieldset .pmpro_card {
    all: unset;
    display: block;
    background: #fff;
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(19, 52, 59, 0.08);
    box-sizing: border-box;
}

.accore-pmpro-checkout__main #pmpro_payment_method .pmpro_card_content,
.accore-pmpro-checkout__main fieldset .pmpro_card_content {
    all: unset;
    display: block;
}

/* Legend / Section Heading */
.accore-pmpro-checkout__main #pmpro_payment_method legend,
.accore-pmpro-checkout__main fieldset legend.pmpro_form_legend {
    padding: 0;
    margin: 0 0 20px 0;
    float: none;
    width: 100%;
    display: block;
}

.accore-pmpro-checkout__main #pmpro_payment_method .pmpro_form_heading,
.accore-pmpro-checkout__main fieldset .pmpro_form_heading {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 26px !important;
    color: #13343b !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* Payment Method Radio Container */
.accore-pmpro-checkout__main .pmpro_form_fields {
    all: unset;
    display: block;
}

.accore-pmpro-checkout__main .pmpro_form_field-radio {
    margin: 0;
    padding: 0;
}

.accore-pmpro-checkout__main .pmpro_form_field-radio-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual Radio Option */
.accore-pmpro-checkout__main .pmpro_form_field-radio-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(19, 52, 59, 0.03);
    border: 1px solid rgba(19, 52, 59, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 !important;
}

.accore-pmpro-checkout__main .pmpro_form_field-radio-item:hover {
    background: rgba(19, 52, 59, 0.05);
    border-color: rgba(19, 52, 59, 0.2);
}

/* Selected State */
.accore-pmpro-checkout__main .pmpro_form_field-radio-item:has(input:checked) {
    background: rgba(32, 128, 141, 0.08);
    border-color: #20808d;
}

/* Custom Radio Button Styling */
.accore-pmpro-checkout__main .pmpro_form_field-radio-item input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(19, 52, 59, 0.3);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin: 0;
    transition: all 0.2s ease;
}

.accore-pmpro-checkout__main .pmpro_form_field-radio-item input[type="radio"]:checked {
    border-color: #20808d;
    background: #fff;
}

.accore-pmpro-checkout__main .pmpro_form_field-radio-item input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #20808d;
    border-radius: 50%;
}

.accore-pmpro-checkout__main .pmpro_form_field-radio-item input[type="radio"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(32, 128, 141, 0.2);
}

/* Radio Label */
.accore-pmpro-checkout__main .pmpro_form_field-radio-item label,
.accore-pmpro-checkout__main .pmpro_form_field-radio-item .pmpro_form_label {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    line-height: 22px !important;
    color: #13343b !important;
    cursor: pointer !important;
    margin: 0 !important;
    flex: 1;
}

/* PayPal Express Checkout Button */
.accore-pmpro-checkout__main #pmpro_paypalexpress_checkout {
    margin-top: 24px;
}

.accore-pmpro-checkout__main .pmpro_btn-submit-checkout-paypal,
.accore-pmpro-checkout__main #pmpro_btn-submit-paypalexpress {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 50px;
    padding: 0 24px;
    background: #0070ba !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.accore-pmpro-checkout__main .pmpro_btn-submit-checkout-paypal:hover,
.accore-pmpro-checkout__main #pmpro_btn-submit-paypalexpress:hover {
    background: #005ea6 !important;
}

.accore-pmpro-checkout__main .pmpro_btn-submit-checkout-paypal-image {
    display: inline-block;
    width: 80px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 26'%3E%3Cpath fill='%23ffffff' d='M12.8 3.2h-8.3c-.6 0-1.1.4-1.2 1L0 22.5c-.1.4.3.8.7.8h4c.6 0 1.1-.4 1.2-1l.9-5.4c.1-.6.6-1 1.2-1h2.7c5.5 0 8.7-2.7 9.5-7.9.4-2.3 0-4.1-1.1-5.4-1.2-1.4-3.4-2.1-6.3-2.1zM14 11c-.5 2.9-2.8 2.9-5 2.9h-1.3l.9-5.5c0-.3.3-.6.7-.6h.6c1.5 0 3 0 3.7.9.4.5.5 1.3.4 2.3zm23.8-.2h-4c-.3 0-.6.3-.7.6l-.2 1.1-.3-.4c-.9-1.3-2.8-1.7-4.8-1.7-4.5 0-8.3 3.4-9 8.2-.4 2.4.2 4.6 1.5 6.2 1.2 1.4 3 2 5.1 2 3.6 0 5.6-2.3 5.6-2.3l-.2 1.1c-.1.4.3.8.7.8h3.6c.6 0 1.1-.4 1.2-1l2.1-13.8c.1-.4-.3-.8-.6-.8zm-5.6 7.9c-.4 2.3-2.2 3.9-4.5 3.9-1.2 0-2.1-.4-2.7-1.1-.6-.7-.8-1.7-.6-2.9.3-2.3 2.2-3.9 4.5-3.9 1.1 0 2 .4 2.6 1.1.7.8.9 1.8.7 2.9zm27.7-7.9h-4c-.4 0-.7.2-.9.5l-5.2 7.6-2.2-7.3c-.1-.5-.6-.8-1.1-.8h-3.9c-.5 0-.8.5-.7.9l4.1 12.1-3.9 5.5c-.3.5 0 1.1.6 1.1h4c.4 0 .7-.2.9-.5l12.5-18c.3-.5 0-1.1-.6-1.1z'/%3E%3Cpath fill='%23ffffff' d='M73.4 3.2h-8.3c-.6 0-1.1.4-1.2 1l-3.3 18.3c-.1.4.3.8.7.8h4.2c.4 0 .8-.3.8-.7l.9-5.7c.1-.6.6-1 1.2-1h2.7c5.5 0 8.7-2.7 9.5-7.9.4-2.3 0-4.1-1.1-5.4-1.2-1.4-3.4-2.1-6.3-2.1zm1.2 7.8c-.5 2.9-2.8 2.9-5 2.9h-1.3l.9-5.5c0-.3.3-.6.7-.6h.6c1.5 0 3 0 3.7.9.4.5.6 1.3.4 2.3zm23.8-.2h-4c-.3 0-.6.3-.7.6l-.2 1.1-.3-.4c-.9-1.3-2.8-1.7-4.8-1.7-4.5 0-8.3 3.4-9 8.2-.4 2.4.2 4.6 1.5 6.2 1.2 1.4 3 2 5.1 2 3.6 0 5.6-2.3 5.6-2.3l-.2 1.1c-.1.4.3.8.7.8h3.6c.6 0 1.1-.4 1.2-1l2.1-13.8c.1-.4-.2-.8-.6-.8zm-5.6 7.9c-.4 2.3-2.2 3.9-4.5 3.9-1.2 0-2.1-.4-2.7-1.1-.6-.7-.8-1.7-.6-2.9.3-2.3 2.2-3.9 4.5-3.9 1.1 0 2 .4 2.6 1.1.7.8.9 1.8.7 2.9z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* General PMPRO Form Styling in checkout */
.accore-pmpro-checkout__main .pmpro_form_field {
    margin-bottom: 0;
}

/* PMPRO Payment Method Responsive */
@media (max-width: 768px) {
    .accore-pmpro-checkout__main #pmpro_payment_method .pmpro_card,
    .accore-pmpro-checkout__main fieldset .pmpro_card {
        padding: 20px;
    }
    
    .accore-pmpro-checkout__main .pmpro_form_field-radio-item {
        padding: 14px 16px;
    }
    
    .accore-pmpro-checkout__main .pmpro_form_field-radio-item label {
        font-size: 14px !important;
    }
}