/*
Theme Name: Bizdomly
Theme URI: https://bizdomly.com
Author: Bizdomly
Author URI: https://bizdomly.com
Description: A modern, elegant agency theme for ecommerce development companies. Built as a block theme with full site editing support.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.5
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: bizdomly
Tags: full-site-editing, block-patterns, wide-blocks, custom-colors, custom-logo, editor-style

Bizdomly - Ecommerce Development Company Theme
*/

/* Base Resets */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Ensure proper layout */
.wp-site-blocks {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    column-count: unset !important;
    columns: unset !important;
}

.wp-site-blocks > * {
    display: block;
    max-width: 100%;
    column-count: unset !important;
    columns: unset !important;
}

body,
html {
    column-count: unset !important;
    columns: unset !important;
}

main.wp-block-group {
    display: block !important;
    column-count: unset !important;
    columns: unset !important;
}

.wp-block-group.hero-section,
.wp-block-group.services-section,
.wp-block-group.stats-section,
.wp-block-group.cta-section {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    column-count: unset !important;
    columns: unset !important;
}

/* Custom Properties - mirroring theme.json for CSS usage */
:root {
    --bizdomly-black: #1a1a1a;
    --bizdomly-dark-gray: #3a3a3a;
    --bizdomly-gray: #555555;
    --bizdomly-light-gray: #888888;
    --bizdomly-border: rgba(0, 0, 0, 0.08);
    --bizdomly-background: #FAFAF9;
    --bizdomly-white: #ffffff;
    --bizdomly-accent: #E0FF66;
}

/* Typography */
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--bizdomly-black);
    background: var(--bizdomly-background);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

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

@keyframes gentlePulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-fade-up-delay-1 {
    animation: fadeUp 0.8s ease-out 0.1s forwards;
    opacity: 0;
}

.animate-fade-up-delay-2 {
    animation: fadeUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-up-delay-3 {
    animation: fadeUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

/* Navigation Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 16px 48px;
    background: rgba(250, 250, 249, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bizdomly-border);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--bizdomly-black);
}

.site-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.site-logo-text {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--bizdomly-black);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bizdomly-black);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Desktop Navigation with Dropdown */
.header-nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    position: relative;
    list-style: none;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .dropdown-arrow,
.nav-item.has-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    margin: 0;
    z-index: 100;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #1a1a1a;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--bizdomly-black);
    color: var(--bizdomly-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--bizdomly-black);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    border-color: rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 18px 36px;
    border-radius: 10px;
    font-size: 15px;
}

.btn-xl {
    padding: 20px 48px;
    border-radius: 12px;
    font-size: 16px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: gentlePulse 4s ease-in-out infinite;
}

.hero-bg-shape-1 {
    top: 15%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 200, 195, 0.3) 0%, transparent 70%);
}

.hero-bg-shape-2 {
    bottom: 20%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(180, 180, 175, 0.25) 0%, transparent 70%);
    animation-delay: 2s;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(42px, 5.5vw, 84px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 32px;
}

.hero-title.has-xx-large-font-size {
    font-size: clamp(42px, 5.5vw, 84px) !important;
}

@media (max-width: 1280px) {
    .hero-title,
    .hero-title.has-xx-large-font-size {
        font-size: 54px !important;
    }
}

@media (max-width: 1024px) {
    .hero-title,
    .hero-title.has-xx-large-font-size {
        font-size: 46px !important;
    }
}

.hero-title em {
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--bizdomly-gray);
    max-width: 540px;
    margin-bottom: 48px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Services Section */
.services-section {
    padding: 120px 48px;
    background: var(--bizdomly-white);
}

.section-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--bizdomly-light-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 80px;
}

.section-title em {
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--bizdomly-white);
    border: 1px solid var(--bizdomly-border);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: var(--bizdomly-background);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 20px;
}

.service-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--bizdomly-gray);
    margin-bottom: 28px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-feature-tag {
    font-size: 12px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    color: var(--bizdomly-gray);
}

/* Stats Section */
.stats-section {
    padding: 100px 48px;
    background: var(--bizdomly-black);
    color: var(--bizdomly-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
}

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

.stat-number {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    padding: 140px 48px;
    background: var(--bizdomly-background);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.15;
}

.cta-title em {
    font-style: italic;
}

.cta-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--bizdomly-gray);
    margin-bottom: 40px;
}

/* ===================
   Blog Styles
   =================== */

/* Featured Post Card */
.featured-post-card {
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.featured-post-card .wp-block-post-featured-image {
    height: 100%;
    min-height: 400px;
}

.featured-post-card .wp-block-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-card .wp-block-post-title a {
    text-decoration: none;
    color: var(--bizdomly-black);
    transition: color 0.3s ease;
}

.featured-post-card .wp-block-post-title a:hover {
    color: var(--bizdomly-gray);
}

/* Blog Post Cards */
.blog-post-card {
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-post-card .wp-block-post-featured-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-post-card .wp-block-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post-card:hover .wp-block-post-featured-image img {
    transform: scale(1.05);
}

.blog-post-card .wp-block-post-title a {
    text-decoration: none;
    color: var(--bizdomly-black);
    transition: color 0.3s ease;
}

.blog-post-card .wp-block-post-title a:hover {
    color: var(--bizdomly-gray);
}

/* Blog Category Tags */
.blog-category-tag a {
    display: inline-block;
    padding: 4px 12px;
    background: #E0FF66;
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-category-tag a:hover {
    background: #1a1a1a;
    color: #E0FF66;
}

/* Blog Grid */
.blog-posts-grid .wp-block-post-template {
    gap: 32px;
}

/* Read More Link */
.wp-block-read-more {
    color: var(--bizdomly-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wp-block-read-more:hover {
    color: var(--bizdomly-gray);
}

/* Pagination */
.wp-block-query-pagination {
    gap: 8px;
}

.wp-block-query-pagination-numbers,
.wp-block-query-pagination-previous,
.wp-block-query-pagination-next {
    font-size: 14px;
}

.wp-block-query-pagination-numbers .page-numbers {
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--bizdomly-gray);
    transition: all 0.3s ease;
}

.wp-block-query-pagination-numbers .page-numbers:hover,
.wp-block-query-pagination-numbers .page-numbers.current {
    background: #1a1a1a;
    color: #fff;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .featured-post-card .wp-block-columns {
        flex-direction: column;
    }

    .featured-post-card .wp-block-column {
        flex-basis: 100% !important;
    }

    .featured-post-card .wp-block-post-featured-image {
        min-height: 300px;
        border-radius: 20px 20px 0 0 !important;
    }

    .blog-posts-grid .wp-block-post-template {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .blog-posts-grid .wp-block-post-template {
        grid-template-columns: 1fr !important;
    }

    .blog-hero {
        padding-top: 80px !important;
    }
}

/* ===================
   Single Post Styles
   =================== */

/* Featured Image */
.single-post-featured-image .wp-block-post-featured-image {
    overflow: hidden;
}

.single-post-featured-image .wp-block-post-featured-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

/* Content Typography */
.single-post-content {
    font-size: 18px;
    line-height: 1.8;
}

.single-post-content p {
    margin-bottom: 1.5em;
}

.single-post-content h2 {
    margin-top: 2em;
    margin-bottom: 0.75em;
}

.single-post-content h3 {
    margin-top: 1.75em;
    margin-bottom: 0.5em;
}

.single-post-content blockquote {
    border-left: 3px solid #E0FF66;
    padding-left: 24px;
    margin: 2em 0;
    font-style: italic;
    font-size: 20px;
    color: var(--bizdomly-gray);
}

.single-post-content ul,
.single-post-content ol {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

.single-post-content li {
    margin-bottom: 0.5em;
}

.single-post-content img {
    border-radius: 12px;
    margin: 2em 0;
}

.single-post-content a {
    color: var(--bizdomly-black);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.single-post-content a:hover {
    color: var(--bizdomly-gray);
}

/* Post Tags */
.single-post-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--bizdomly-gray);
    font-size: 13px;
    border-radius: 20px;
    text-decoration: none;
    margin: 4px;
    transition: all 0.3s ease;
}

.single-post-tags a:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

/* Post Navigation */
.single-post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.single-post-navigation .wp-block-post-navigation-link {
    flex: 1;
    max-width: 45%;
}

.single-post-navigation .wp-block-post-navigation-link a {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.single-post-navigation .wp-block-post-navigation-link a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.single-post-navigation .wp-block-post-navigation-link__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bizdomly-light-gray);
}

.single-post-navigation .wp-block-post-navigation-link__title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 18px;
    color: var(--bizdomly-black);
    line-height: 1.3;
}

.single-post-navigation .post-navigation-link-next {
    text-align: right;
}

/* Related Posts */
.related-posts-section {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.related-posts-grid .wp-block-post-template {
    gap: 32px;
}

/* Single Post Responsive */
@media (max-width: 1024px) {
    .related-posts-grid .wp-block-post-template {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .single-post-header {
        padding-top: 80px !important;
    }

    .single-post-content {
        font-size: 17px;
    }

    .single-post-navigation {
        flex-direction: column;
    }

    .single-post-navigation .wp-block-post-navigation-link {
        max-width: 100%;
    }

    .related-posts-grid .wp-block-post-template {
        grid-template-columns: 1fr !important;
    }
}

/* Footer */
.site-footer {
    padding: 60px 48px;
    background: var(--bizdomly-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--bizdomly-black);
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--bizdomly-light-gray);
}

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-social a {
    font-size: 14px;
    color: var(--bizdomly-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--bizdomly-black);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 16px 24px;
    }

    .hero-section,
    .services-section,
    .stats-section,
    .cta-section,
    .site-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger-line:nth-child(1) {
    transform: translateY(0);
}

.hamburger-line:nth-child(2) {
    opacity: 1;
}

.hamburger-line:nth-child(3) {
    transform: translateY(0);
}

/* Hamburger to X animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 80px 40px 40px;
    gap: 8px;
}

.mobile-nav-link {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    padding: 12px 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-nav.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-nav-link:hover {
    color: #E0FF66;
    background: #1a1a1a;
    border-radius: 8px;
}

/* Mobile Dropdown Accordion */
.mobile-nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-nav.active .mobile-nav-dropdown {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Instrument Serif', Georgia, serif;
}

.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown-menu.active {
    max-height: 300px;
}

.mobile-dropdown-menu a {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #666;
    text-decoration: none;
    padding: 10px 24px;
    transition: all 0.2s ease;
}

.mobile-dropdown-menu a:hover {
    color: #1a1a1a;
}

.mobile-nav-cta {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #1a1a1a;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 10px;
    margin-top: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-nav.active .mobile-nav-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.mobile-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Desktop nav visible, mobile toggle hidden */
.header-nav-desktop {
    display: flex;
}

/* Show mobile toggle, hide desktop nav on mobile/tablet */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: block;
    }

    .header-nav-desktop {
        display: none !important;
    }

    .site-header {
        gap: 12px;
    }
}

/* Dark mode mobile nav */
html[data-theme="dark"] .hamburger-line {
    background-color: #f5f5f5;
}

html[data-theme="dark"] .mobile-nav {
    background: rgba(20, 20, 20, 0.98);
}

html[data-theme="dark"] .mobile-nav-link {
    color: #f5f5f5;
}

html[data-theme="dark"] .mobile-nav-link:hover {
    color: #1a1a1a !important;
    background: #E0FF66;
}

html[data-theme="dark"] .mobile-nav-cta {
    color: #1a1a1a !important;
    background: #E0FF66 !important;
}

html[data-theme="dark"] .mobile-dropdown-toggle {
    color: #f5f5f5;
}

html[data-theme="dark"] .mobile-dropdown-menu a {
    color: #999;
}

html[data-theme="dark"] .mobile-dropdown-menu a:hover {
    color: #f5f5f5;
}

/* Dark mode desktop dropdown */
html[data-theme="dark"] .dropdown-menu {
    background: #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .dropdown-menu a {
    color: #f5f5f5;
}

html[data-theme="dark"] .dropdown-menu a:hover {
    background: #2a2a2a;
    color: #E0FF66;
}

html[data-theme="dark"] .nav-cta {
    background: #E0FF66 !important;
    color: #1a1a1a !important;
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 16px;
}

.dark-mode-toggle + .mobile-menu-toggle {
    margin-left: 8px;
}

.dark-mode-toggle:hover {
    border-color: #888;
}

.dark-mode-toggle svg {
    width: 20px;
    height: 20px;
}

.dark-mode-toggle .sun-icon {
    display: none;
}

.dark-mode-toggle .moon-icon {
    display: block;
}

/* Dark Mode Styles */
html[data-theme="dark"] body,
html[data-theme="dark"] .wp-site-blocks {
    background-color: #141414 !important;
    color: #f5f5f5 !important;
}

html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] h5,
html[data-theme="dark"] h6 {
    color: #f5f5f5 !important;
}

html[data-theme="dark"] .site-header.scrolled {
    background: rgba(20, 20, 20, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

html[data-theme="dark"] .site-logo-icon {
    background: linear-gradient(135deg, #e0e0e0 0%, #b0b0b0 100%) !important;
    color: #141414 !important;
}

html[data-theme="dark"] .wp-block-site-title a,
html[data-theme="dark"] .nav-link,
html[data-theme="dark"] a {
    color: #f5f5f5 !important;
}

html[data-theme="dark"] .btn-primary,
html[data-theme="dark"] .wp-block-button__link.has-black-background-color,
html[data-theme="dark"] .wp-element-button {
    background: #f5f5f5 !important;
    color: #141414 !important;
}

/* Ensure lime/accent buttons always have dark text for contrast */
html[data-theme="dark"] .wp-block-button__link.has-accent-background-color,
html[data-theme="dark"] .has-accent-background-color,
html[data-theme="dark"] [style*="background-color:#E0FF66"],
html[data-theme="dark"] [style*="background:#E0FF66"] {
    color: #1a1a1a !important;
}

html[data-theme="dark"] .btn-secondary {
    color: #f5f5f5 !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

html[data-theme="dark"] .service-card,
html[data-theme="dark"] .wp-block-group.is-style-bizdomly-service-card {
    background: #1e1e1e !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

html[data-theme="dark"] .service-card:hover,
html[data-theme="dark"] .wp-block-group.is-style-bizdomly-service-card:hover {
    background: #252525 !important;
}

html[data-theme="dark"] .service-icon {
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%) !important;
}

html[data-theme="dark"] .service-feature-tag {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #b0b0b0 !important;
}

html[data-theme="dark"] .stats-section {
    background: #1e1e1e !important;
}

html[data-theme="dark"] .services-section,
html[data-theme="dark"] .wp-block-group.has-white-background-color {
    background: #1a1a1a !important;
}

html[data-theme="dark"] .cta-section {
    background: #141414 !important;
}

html[data-theme="dark"] .site-footer {
    background: #1a1a1a !important;
    border-top-color: rgba(255, 255, 255, 0.06) !important;
}

html[data-theme="dark"] .footer-logo-icon {
    background: linear-gradient(135deg, #e0e0e0 0%, #b0b0b0 100%) !important;
    color: #141414 !important;
}

html[data-theme="dark"] .footer-social a:hover {
    color: #f5f5f5 !important;
}

html[data-theme="dark"] .nav-link::after {
    background: #f5f5f5 !important;
}

html[data-theme="dark"] .dark-mode-toggle {
    border-color: rgba(255, 255, 255, 0.2);
}

html[data-theme="dark"] .dark-mode-toggle svg {
    fill: #f5f5f5;
}

html[data-theme="dark"] .dark-mode-toggle .sun-icon {
    display: block;
}

html[data-theme="dark"] .dark-mode-toggle .moon-icon {
    display: none;
}

html[data-theme="dark"] .hero-description,
html[data-theme="dark"] .service-description,
html[data-theme="dark"] .cta-description,
html[data-theme="dark"] p {
    color: #e0e0e0 !important;
}

html[data-theme="dark"] .hero-label,
html[data-theme="dark"] .section-label {
    color: #c0c0c0 !important;
}

html[data-theme="dark"] .hero-section,
html[data-theme="dark"] .wp-block-group.is-style-bizdomly-hero,
html[data-theme="dark"] .has-background-background-color {
    background: #141414 !important;
    background-color: #141414 !important;
}

/* Dark mode blog styles */
html[data-theme="dark"] .featured-post-card,
html[data-theme="dark"] .blog-post-card {
    background: #1a1a1a !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .featured-post-card:hover,
html[data-theme="dark"] .blog-post-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .featured-post-card .wp-block-post-title a,
html[data-theme="dark"] .blog-post-card .wp-block-post-title a {
    color: #f5f5f5 !important;
}

html[data-theme="dark"] .featured-post-card .wp-block-post-title a:hover,
html[data-theme="dark"] .blog-post-card .wp-block-post-title a:hover {
    color: #E0FF66 !important;
}

html[data-theme="dark"] .blog-category-tag a {
    background: #E0FF66 !important;
    color: #1a1a1a !important;
}

html[data-theme="dark"] .blog-category-tag a:hover {
    background: #f5f5f5 !important;
    color: #1a1a1a !important;
}

html[data-theme="dark"] .wp-block-read-more {
    color: #f5f5f5 !important;
}

html[data-theme="dark"] .wp-block-read-more:hover {
    color: #E0FF66 !important;
}

html[data-theme="dark"] .wp-block-query-pagination-numbers .page-numbers {
    color: #999;
}

html[data-theme="dark"] .wp-block-query-pagination-numbers .page-numbers:hover,
html[data-theme="dark"] .wp-block-query-pagination-numbers .page-numbers.current {
    background: #E0FF66;
    color: #1a1a1a;
}

/* Dark mode single post styles */
html[data-theme="dark"] .single-post-content a {
    color: #f5f5f5;
}

html[data-theme="dark"] .single-post-content a:hover {
    color: #E0FF66;
}

html[data-theme="dark"] .single-post-content blockquote {
    color: #c0c0c0;
}

html[data-theme="dark"] .single-post-tags a {
    border-color: rgba(255, 255, 255, 0.2);
    color: #999;
}

html[data-theme="dark"] .single-post-tags a:hover {
    background: #E0FF66;
    border-color: #E0FF66;
    color: #1a1a1a;
}

html[data-theme="dark"] .single-post-navigation .wp-block-post-navigation-link a {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .single-post-navigation .wp-block-post-navigation-link a:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .single-post-navigation .wp-block-post-navigation-link__title {
    color: #f5f5f5;
}

html[data-theme="dark"] .related-posts-section {
    background: #1a1a1a !important;
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* Services Page - AI Section (always dark background) */
.ai-section,
.ai-section p,
.ai-section h2,
.ai-section h3,
.ai-section .feature-item p {
    color: #ffffff !important;
}

.ai-section .has-light-gray-color {
    color: #b0b0b0 !important;
}

.ai-section .has-accent-color {
    color: #E0FF66 !important;
}

/* Services Page - Light sections text colors */
.service-detail-section:not(.ai-section) p,
.service-detail-section:not(.ai-section) .feature-item p {
    color: var(--bizdomly-black);
}

html[data-theme="dark"] .service-detail-section:not(.ai-section) {
    background: #1a1a1a !important;
}

html[data-theme="dark"] .service-detail-section:not(.ai-section) p,
html[data-theme="dark"] .service-detail-section:not(.ai-section) h2,
html[data-theme="dark"] .service-detail-section:not(.ai-section) h3,
html[data-theme="dark"] .service-detail-section:not(.ai-section) .feature-item p {
    color: #f5f5f5 !important;
}

html[data-theme="dark"] .service-detail-section:not(.ai-section) .has-gray-color,
html[data-theme="dark"] .service-detail-section:not(.ai-section) .has-light-gray-color {
    color: #b0b0b0 !important;
}

html[data-theme="dark"] .service-detail-section:not(.ai-section) .feature-item {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Hero SVG Container */
.hero-svg-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-svg-container svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Mini decorative SVGs */
.hero-mini-svg {
    position: absolute;
    width: 125px;
    height: 125px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.hero-mini-svg svg {
    width: 100%;
    height: 100%;
}

.hero-mini-svg-1 {
    bottom: 10%;
    left: 5%;
}

.hero-mini-svg-2 {
    top: 15%;
    left: 35%;
}

@media (max-width: 782px) {
    .hero-mini-svg {
        display: none;
    }
}

/* SVG Floating animations */
@keyframes hn-float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -12px); }
}

@keyframes hn-float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -8px); }
}

@keyframes hn-float3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-6px, -10px); }
}

@keyframes hn-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes hn-dash {
    to { stroke-dashoffset: -20; }
}

.hn-float1 { animation: hn-float1 6s ease-in-out infinite; }
.hn-float2 { animation: hn-float2 5s ease-in-out infinite 0.5s; }
.hn-float3 { animation: hn-float3 7s ease-in-out infinite 1s; }
.hn-pulse { animation: hn-pulse 2s ease-in-out infinite; }
.hn-accent-line { animation: hn-dash 1.5s linear infinite; }

/* Dark mode SVG adjustments */
html[data-theme="dark"] .hero-svg-container .hn-node {
    fill: #f5f5f5;
}

html[data-theme="dark"] .hero-svg-container .hn-node-outline {
    stroke: #f5f5f5;
}

html[data-theme="dark"] .hero-svg-container .hn-line {
    stroke: rgba(255, 255, 255, 0.15);
}

/* Responsive adjustments for hero columns */
@media (max-width: 1200px) {
    .hero-section .wp-block-columns {
        gap: 40px !important;
    }

    .hero-section .wp-block-column:first-child {
        flex-basis: 60% !important;
    }

    .hero-section .wp-block-column:last-child {
        flex-basis: 40% !important;
    }

    .hero-svg-container {
        max-width: 350px;
    }
}

@media (max-width: 1024px) {
    .hero-section .wp-block-column:first-child {
        flex-basis: 65% !important;
    }

    .hero-section .wp-block-column:last-child {
        flex-basis: 35% !important;
    }

    .hero-svg-container {
        max-width: 280px;
    }
}

@media (max-width: 782px) {
    .hero-section {
        padding-top: 60px !important;
    }

    .hero-section .wp-block-columns {
        flex-direction: column-reverse;
    }

    .hero-section .wp-block-column,
    .hero-section .wp-block-column:first-child,
    .hero-section .wp-block-column:last-child {
        flex-basis: 100% !important;
    }

    .hero-svg-container {
        max-width: 350px;
        margin-bottom: 40px;
    }
}

/* ===================
   Ghostwriter Page Styles
   =================== */

/* Ghostwriter Hero */
.ghostwriter-hero {
    min-height: 90vh;
}

.ghostwriter-hero .wp-block-columns {
    min-height: 70vh;
}

/* Mockup Window */
.mockup-window {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #f8f8f8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dots .dot.red { background: #ff5f57; }
.mockup-dots .dot.yellow { background: #febc2e; }
.mockup-dots .dot.green { background: #28c840; }

.mockup-title {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-left: auto;
    margin-right: auto;
}

.mockup-content {
    display: flex;
    min-height: 320px;
}

.mockup-sidebar {
    width: 140px;
    background: #fafafa;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 0;
}

.mockup-menu-item {
    padding: 10px 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mockup-menu-item:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #1a1a1a;
}

.mockup-menu-item.active {
    background: rgba(224, 255, 102, 0.3);
    color: #1a1a1a;
    font-weight: 500;
    border-right: 2px solid #E0FF66;
}

.mockup-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.mockup-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.mockup-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    background: #fff3cd;
    color: #856404;
}

.mockup-badge.success {
    background: #d4edda;
    color: #155724;
}

.mockup-progress {
    font-size: 12px;
    font-weight: 600;
    color: #E0FF66;
    background: #1a1a1a;
    padding: 4px 10px;
    border-radius: 4px;
}

.mockup-card-title {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.mockup-card-meta {
    font-size: 12px;
    color: #888;
}

/* Workflow Steps */
.workflow-step {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.workflow-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(224, 255, 102, 0.2);
    border-radius: 6px;
}

/* Workflow Visual */
.workflow-visual {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-node {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.workflow-node:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.workflow-node.highlight {
    background: rgba(224, 255, 102, 0.15);
    border: 1px solid rgba(224, 255, 102, 0.3);
}

.workflow-node-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 20px;
}

.workflow-node.highlight .workflow-node-icon {
    background: #E0FF66;
}

.workflow-node-content {
    flex: 1;
}

.workflow-node-title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.workflow-node-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.workflow-connector {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(224, 255, 102, 0.5), rgba(224, 255, 102, 0.2));
    margin-left: 43px;
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card.featured:hover {
    background: #E0FF66 !important;
}

.pricing-card.featured:hover p,
.pricing-card.featured:hover h3,
.pricing-card.featured:hover span {
    color: #1a1a1a !important;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #E0FF66 0%, #c4e055 100%);
    border-radius: 22px;
    z-index: -1;
}

.pricing-features {
    gap: 16px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-feature.disabled {
    text-decoration: line-through;
    opacity: 0.6;
}

/* Ensure pricing card text is black in light mode */
.pricing-card p,
.pricing-card h3,
.pricing-card span {
    color: #1a1a1a;
}

.pricing-card .has-gray-color {
    color: #555555 !important;
}

.pricing-card .pricing-feature {
    color: #1a1a1a;
}

.popular-badge {
    color: #1a1a1a !important;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar p {
    color: #1a1a1a !important;
    margin: 0;
}

/* Ghostwriter Responsive */
@media (max-width: 1024px) {
    .ghostwriter-hero .wp-block-columns {
        gap: 40px !important;
    }

    .ghostwriter-workflow-detail .wp-block-columns {
        flex-direction: column;
    }

    .workflow-visual {
        margin-top: 40px;
    }
}

@media (max-width: 782px) {
    .ghostwriter-hero {
        min-height: auto;
        padding-top: 100px !important;
    }

    .ghostwriter-hero .wp-block-columns {
        flex-direction: column;
        min-height: auto;
    }

    .mockup-sidebar {
        display: none;
    }

    .mockup-content {
        min-height: 200px;
    }

    .services-grid.wp-block-columns {
        flex-direction: column;
    }

    .ghostwriter-pricing .wp-block-columns {
        flex-direction: column;
        gap: 24px;
    }

    .ghostwriter-testimonials .wp-block-columns {
        flex-direction: column;
        gap: 24px;
    }

    .workflow-visual {
        padding: 24px;
    }

    .workflow-node {
        padding: 16px;
    }

    .workflow-connector {
        margin-left: 39px;
    }
}

/* Dark Mode - Ghostwriter Page */
html[data-theme="dark"] .mockup-window {
    background: #1e1e1e;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .mockup-header {
    background: #252525;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .mockup-title {
    color: #999;
}

html[data-theme="dark"] .mockup-sidebar {
    background: #1a1a1a;
    border-right-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .mockup-menu-item {
    color: #999;
}

html[data-theme="dark"] .mockup-menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #f5f5f5;
}

html[data-theme="dark"] .mockup-menu-item.active {
    background: rgba(224, 255, 102, 0.15);
    color: #E0FF66;
}

html[data-theme="dark"] .mockup-card {
    background: #252525;
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .mockup-card-title {
    color: #f5f5f5;
}

html[data-theme="dark"] .mockup-card-meta {
    color: #777;
}

html[data-theme="dark"] .workflow-step {
    background: #1e1e1e !important;
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .workflow-step:hover {
    background: #252525 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .step-number {
    background: rgba(224, 255, 102, 0.15);
}

html[data-theme="dark"] .pricing-card {
    background: #1e1e1e !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

html[data-theme="dark"] .pricing-card p,
html[data-theme="dark"] .pricing-card h3,
html[data-theme="dark"] .pricing-card span {
    color: #f5f5f5;
}

html[data-theme="dark"] .pricing-card .has-gray-color {
    color: #b0b0b0 !important;
}

html[data-theme="dark"] .pricing-card .pricing-feature {
    color: #f5f5f5;
}

html[data-theme="dark"] .pricing-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .pricing-card.featured {
    border-color: #E0FF66 !important;
}

html[data-theme="dark"] .pricing-card.featured:hover {
    background: #E0FF66 !important;
}

html[data-theme="dark"] .pricing-card.featured:hover p,
html[data-theme="dark"] .pricing-card.featured:hover h3,
html[data-theme="dark"] .pricing-card.featured:hover span {
    color: #1a1a1a !important;
}

html[data-theme="dark"] .testimonial-card {
    background: #1e1e1e !important;
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .ghostwriter-how-it-works {
    background: #141414 !important;
}

html[data-theme="dark"] .ghostwriter-features,
html[data-theme="dark"] .ghostwriter-pricing {
    background: #1a1a1a !important;
}

html[data-theme="dark"] .ghostwriter-testimonials {
    background: #141414 !important;
}

/* ===================
   Bizdomly Ecommerce Page Styles
   =================== */

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(224, 255, 102, 0.15) 0%, rgba(224, 255, 102, 0.05) 100%);
    border: 1px solid rgba(224, 255, 102, 0.3);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

html[data-theme="dark"] .coming-soon-badge {
    color: #E0FF66;
    background: linear-gradient(135deg, rgba(224, 255, 102, 0.2) 0%, rgba(224, 255, 102, 0.05) 100%);
}

/* Ecommerce Hero Visual */
.ecom-hero-visual {
    position: relative;
    padding: 30px;
}

.ecom-chart {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

html[data-theme="dark"] .ecom-chart {
    background: #1e1e1e;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

html[data-theme="dark"] .chart-title {
    color: #f5f5f5;
}

.chart-badge {
    font-size: 12px;
    font-weight: 600;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 140px;
    padding-top: 10px;
}

.chart-bar {
    flex: 1;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    position: relative;
}

.chart-bar:nth-child(1) { height: 45%; background: #e5e5e5; }
.chart-bar:nth-child(2) { height: 60%; background: #d4d4d4; }
.chart-bar:nth-child(3) { height: 50%; background: #e5e5e5; }
.chart-bar:nth-child(4) { height: 75%; background: #d4d4d4; }
.chart-bar:nth-child(5) { height: 65%; background: #e5e5e5; }
.chart-bar:nth-child(6) { height: 85%; background: #E0FF66; }
.chart-bar:nth-child(7) { height: 95%; background: linear-gradient(to top, #E0FF66 0%, #c4e055 100%); }

html[data-theme="dark"] .chart-bar:nth-child(1) { background: #333; }
html[data-theme="dark"] .chart-bar:nth-child(2) { background: #404040; }
html[data-theme="dark"] .chart-bar:nth-child(3) { background: #333; }
html[data-theme="dark"] .chart-bar:nth-child(4) { background: #404040; }
html[data-theme="dark"] .chart-bar:nth-child(5) { background: #333; }

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    animation: float 6s ease-in-out infinite;
}

html[data-theme="dark"] .floating-card {
    background: #252525;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.floating-card-1 {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20px;
    left: 0;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-icon {
    font-size: 20px;
    margin-bottom: 6px;
}

.floating-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

html[data-theme="dark"] .floating-label {
    color: #999;
}

.floating-value {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

html[data-theme="dark"] .floating-value {
    color: #f5f5f5;
}

.floating-value.positive {
    color: #22c55e;
}

/* Ecommerce Feature Cards */
.ecom-feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.ecom-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

html[data-theme="dark"] .ecom-feature-card {
    background: #1e1e1e !important;
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .ecom-feature-card:hover {
    background: #252525 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ecom-feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(224, 255, 102, 0.2) 0%, rgba(224, 255, 102, 0.05) 100%);
    border-radius: 14px;
    font-size: 24px;
}

/* Intelligence Loop Section */
.intelligence-loop {
    position: relative;
}

.loop-step {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.loop-step:hover {
    transform: translateY(-4px);
}

.loop-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    margin: 0 auto 20px;
}

.loop-step:hover .loop-number {
    background: #E0FF66;
    color: #1a1a1a;
}

.loop-connector {
    position: absolute;
    top: 50%;
    left: 33.33%;
    width: 33.33%;
    height: 2px;
    background: linear-gradient(to right, rgba(224, 255, 102, 0.3), rgba(224, 255, 102, 0.6), rgba(224, 255, 102, 0.3));
}

.loop-connector::before,
.loop-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #E0FF66;
    border-radius: 50%;
    transform: translateY(-50%);
}

.loop-connector::before {
    left: 0;
}

.loop-connector::after {
    right: 0;
}

/* Audience Cards */
.audience-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E0FF66 0%, #c4e055 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.audience-card:hover::before {
    transform: scaleX(1);
}

html[data-theme="dark"] .audience-card {
    background: #1e1e1e !important;
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .audience-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.audience-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 16px;
    font-size: 28px;
    margin-bottom: 24px;
}

html[data-theme="dark"] .audience-icon {
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
}

.audience-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: #555;
}

html[data-theme="dark"] .audience-features li {
    color: #b0b0b0;
}

.audience-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(224, 255, 102, 0.2);
    border-radius: 50%;
    font-size: 11px;
    color: #1a1a1a;
}

html[data-theme="dark"] .audience-features li::before {
    color: #E0FF66;
    background: rgba(224, 255, 102, 0.15);
}

/* Waitlist CTA Section */
.waitlist-section {
    position: relative;
    overflow: hidden;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(224, 255, 102, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.launching-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(224, 255, 102, 0.15);
    border: 1px solid rgba(224, 255, 102, 0.3);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}

/* Ecommerce Page Responsive */
@media (max-width: 1024px) {
    .ecom-hero .wp-block-columns {
        gap: 40px !important;
    }

    .ecom-built-for .wp-block-columns {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 782px) {
    .ecom-hero {
        min-height: auto;
        padding-top: 100px !important;
    }

    .ecom-hero .wp-block-columns {
        flex-direction: column;
        min-height: auto;
    }

    .ecom-hero-visual {
        padding: 20px;
    }

    .floating-card {
        display: none;
    }

    .ecom-features .wp-block-columns {
        flex-direction: column;
    }

    .intelligence-loop .wp-block-columns {
        flex-direction: column;
        gap: 24px;
    }

    .loop-connector {
        display: none;
    }
}

/* Dark Mode - Bizdomly Ecommerce Page */
html[data-theme="dark"] .ecom-hero {
    background: #141414 !important;
}

html[data-theme="dark"] .ecom-features {
    background: #1a1a1a !important;
}

html[data-theme="dark"] .ecom-how-it-works {
    background: #1e1e1e !important;
}

html[data-theme="dark"] .ecom-built-for {
    background: #141414 !important;
}

html[data-theme="dark"] .waitlist-section {
    background: #1a1a1a !important;
}

/* ===================
   Front Page Testimonials Section
   =================== */

.testimonials-section .testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-section .testimonial-card > p:nth-child(2) {
    flex: 1;
}

/* Responsive */
@media (max-width: 782px) {
    .testimonials-section .wp-block-columns {
        flex-direction: column;
        gap: 24px;
    }
}

/* Dark mode */
html[data-theme="dark"] .testimonials-section {
    background: #1a1a1a !important;
}

html[data-theme="dark"] .testimonials-section .testimonial-card {
    background: #1e1e1e !important;
}

/* ===================
   Contact Page Styles
   =================== */

.contact-form-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-step {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Contact page responsive */
@media (max-width: 782px) {
    .contact-hero {
        padding-top: 120px !important;
    }

    .contact-form-card {
        padding: 32px 24px !important;
    }

    .contact-info-section .wp-block-columns,
    .contact-direct-section .wp-block-columns {
        flex-direction: column;
        gap: 24px;
    }
}

/* Dark mode - Contact page */
html[data-theme="dark"] .contact-form-card {
    background: #1e1e1e !important;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .contact-step {
    background: #1e1e1e !important;
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .contact-step:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .contact-info-section {
    background: #1a1a1a !important;
}

html[data-theme="dark"] .contact-direct-section {
    background: #1e1e1e !important;
}

/* ===================
   WooCommerce Styles
   =================== */

/* General WooCommerce Page Layout */
.woocommerce-page {
    padding-top: 120px;
    padding-bottom: 80px;
}

/* Shop Page Hero */
.shop-hero {
    text-align: center;
    margin-bottom: 60px;
}

/* Product Grid */
.wc-block-grid__products,
.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .wc-block-grid__products,
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wc-block-grid__products,
    .products {
        grid-template-columns: 1fr;
    }
}

/* Product Cards */
.wc-block-grid__product,
.products .product {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wc-block-grid__product:hover,
.products .product:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Product Images */
.wc-block-grid__product-image,
.woocommerce-LoopProduct-link img,
.attachment-woocommerce_thumbnail {
    border-radius: 16px 16px 0 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wc-block-grid__product:hover .wc-block-grid__product-image img,
.product:hover .woocommerce-LoopProduct-link img {
    transform: scale(1.05);
}

.wc-block-grid__product-image {
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

/* Product Title */
.wc-block-grid__product-title,
.woocommerce-loop-product__title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    padding: 20px 20px 8px;
    margin: 0;
}

.wc-block-grid__product-title a,
.woocommerce-loop-product__title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.wc-block-grid__product-title a:hover,
.woocommerce-loop-product__title a:hover {
    color: #555;
}

/* Product Price */
.wc-block-grid__product-price,
.price {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 0 20px 16px;
}

.wc-block-grid__product-price del,
.price del {
    color: #888;
    font-weight: 400;
    margin-right: 8px;
}

.wc-block-grid__product-price ins,
.price ins {
    text-decoration: none;
    color: #1a1a1a;
}

/* Add to Cart Button */
.wc-block-grid__product-add-to-cart .wp-block-button__link,
.add_to_cart_button,
.single_add_to_cart_button,
.wc-block-components-product-button__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0 20px 20px;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
.add_to_cart_button:hover,
.single_add_to_cart_button:hover,
.wc-block-components-product-button__button:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Sale Badge */
.wc-block-grid__product-onsale,
.onsale {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #E0FF66;
    color: #1a1a1a;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 10;
}

/* Star Ratings */
.wc-block-grid__product-rating,
.star-rating {
    display: flex;
    align-items: center;
    padding: 0 20px 8px;
}

.star-rating span::before,
.wc-block-grid__product-rating .wc-block-components-product-rating__stars span::before {
    color: #E0FF66;
}

/* Single Product Page */
.single-product .product {
    border: none;
    background: transparent;
}

.single-product .product:hover {
    transform: none;
    box-shadow: none;
}

.woocommerce-product-gallery {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.woocommerce-product-gallery__image img {
    border-radius: 20px;
}

.woocommerce-product-gallery__trigger {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.summary.entry-summary {
    padding-left: 48px;
}

.summary.entry-summary .product_title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.summary.entry-summary .price {
    font-size: 24px;
    padding: 0;
    margin-bottom: 24px;
}

.summary.entry-summary .woocommerce-product-details__short-description {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

/* Quantity Input */
.quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin-right: 12px;
}

.quantity .qty {
    width: 60px;
    height: 48px;
    border: none;
    text-align: center;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    -moz-appearance: textfield;
}

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

/* Product Tabs */
.woocommerce-tabs {
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.woocommerce-tabs ul.tabs li {
    margin: 0;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 12px 24px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #888;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: -1px;
}

.woocommerce-tabs ul.tabs li a:hover,
.woocommerce-tabs ul.tabs li.active a {
    color: #1a1a1a;
    border-bottom-color: #E0FF66;
}

.woocommerce-tabs .panel {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.woocommerce-tabs .panel h2 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
}

/* Related Products */
.related.products,
.up-sells.products {
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.related.products > h2,
.up-sells.products > h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

/* Cart Page */
.woocommerce-cart-form {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.woocommerce-cart-form table.cart {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-cart-form th,
.woocommerce-cart-form td {
    padding: 24px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.woocommerce-cart-form th {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    background: #fafafa;
}

.woocommerce-cart-form .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.woocommerce-cart-form .product-name a {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
}

.woocommerce-cart-form .product-name a:hover {
    color: #555;
}

.woocommerce-cart-form .product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border-radius: 8px;
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-cart-form .product-remove a:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Cart Totals */
.cart_totals {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 32px;
}

.cart_totals h2 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.cart_totals table {
    width: 100%;
}

.cart_totals th,
.cart_totals td {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart_totals th {
    font-weight: 500;
    color: #888;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: none;
}

.wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 18px 24px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Checkout Page */
.woocommerce-checkout {
    max-width: 1200px;
    margin: 0 auto;
}

.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 32px;
    margin-bottom: 24px;
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.woocommerce-checkout .form-row {
    margin-bottom: 20px;
}

.woocommerce-checkout label {
    display: block;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    transition: border-color 0.3s ease;
}

.woocommerce-checkout .input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    outline: none;
    border-color: #E0FF66;
}

/* Order Review */
#order_review {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 32px;
}

#order_review_heading {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    margin-bottom: 24px;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Payment Methods */
.woocommerce-checkout-payment {
    margin-top: 24px;
}

.wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.wc_payment_method {
    background: #fafafa;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.wc_payment_method label {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    margin: 0;
}

.wc_payment_method .payment_box {
    padding: 16px 20px;
    background: #f5f5f5;
    font-size: 14px;
    color: #555;
}

#place_order {
    display: block;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 18px 24px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

#place_order:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Mini Cart in Header */
.wc-block-mini-cart {
    position: relative;
}

.wc-block-mini-cart__button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wc-block-mini-cart__button:hover {
    opacity: 0.7;
}

.wc-block-mini-cart__badge {
    background: #E0FF66;
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.wc-block-mini-cart__drawer {
    background: #fff;
    border-radius: 20px 0 0 20px;
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.15);
}

/* WooCommerce Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
}

.woocommerce-message {
    background: rgba(224, 255, 102, 0.2);
    border: 1px solid rgba(224, 255, 102, 0.4);
    color: #1a1a1a;
}

.woocommerce-info {
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #555;
}

.woocommerce-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.woocommerce-message a,
.woocommerce-info a {
    color: #1a1a1a;
    font-weight: 500;
}

/* Empty Cart */
.cart-empty.woocommerce-info {
    text-align: center;
    padding: 60px 24px;
}

.return-to-shop {
    text-align: center;
    margin-top: 24px;
}

.return-to-shop .button {
    display: inline-flex;
    align-items: center;
    background: #1a1a1a;
    color: #fff;
    border-radius: 10px;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.return-to-shop .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Coupon Form */
.coupon {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.coupon .input-text {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    font-size: 14px;
}

.coupon .button {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon .button:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* WooCommerce Responsive */
@media (max-width: 782px) {
    .woocommerce-page {
        padding-top: 100px;
    }

    .summary.entry-summary {
        padding-left: 0;
        margin-top: 32px;
    }

    .woocommerce-cart-form {
        overflow-x: auto;
    }

    .woocommerce-cart-form table.cart {
        min-width: 600px;
    }

    .cart_totals {
        margin-top: 32px;
    }

    .woocommerce-checkout .col2-set {
        display: block;
    }

    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2 {
        width: 100%;
    }
}

/* ===================
   WooCommerce Dark Mode
   =================== */

html[data-theme="dark"] .wc-block-grid__product,
html[data-theme="dark"] .products .product {
    background: #1e1e1e;
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .wc-block-grid__product:hover,
html[data-theme="dark"] .products .product:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .wc-block-grid__product-title,
html[data-theme="dark"] .woocommerce-loop-product__title,
html[data-theme="dark"] .wc-block-grid__product-title a,
html[data-theme="dark"] .woocommerce-loop-product__title a {
    color: #f5f5f5;
}

html[data-theme="dark"] .wc-block-grid__product-price,
html[data-theme="dark"] .price,
html[data-theme="dark"] .wc-block-grid__product-price ins,
html[data-theme="dark"] .price ins {
    color: #f5f5f5;
}

html[data-theme="dark"] .wc-block-grid__product-add-to-cart .wp-block-button__link,
html[data-theme="dark"] .add_to_cart_button,
html[data-theme="dark"] .single_add_to_cart_button {
    background: #E0FF66;
    color: #1a1a1a;
}

html[data-theme="dark"] .wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
html[data-theme="dark"] .add_to_cart_button:hover,
html[data-theme="dark"] .single_add_to_cart_button:hover {
    background: #f5f5f5;
}

html[data-theme="dark"] .summary.entry-summary .product_title {
    color: #f5f5f5;
}

html[data-theme="dark"] .summary.entry-summary .woocommerce-product-details__short-description {
    color: #b0b0b0;
}

html[data-theme="dark"] .woocommerce-tabs {
    border-top-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .woocommerce-tabs ul.tabs {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .woocommerce-tabs ul.tabs li a {
    color: #888;
}

html[data-theme="dark"] .woocommerce-tabs ul.tabs li a:hover,
html[data-theme="dark"] .woocommerce-tabs ul.tabs li.active a {
    color: #f5f5f5;
}

html[data-theme="dark"] .woocommerce-tabs .panel {
    color: #b0b0b0;
}

html[data-theme="dark"] .woocommerce-tabs .panel h2 {
    color: #f5f5f5;
}

html[data-theme="dark"] .related.products > h2,
html[data-theme="dark"] .up-sells.products > h2 {
    color: #f5f5f5;
}

html[data-theme="dark"] .related.products,
html[data-theme="dark"] .up-sells.products {
    border-top-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .woocommerce-cart-form,
html[data-theme="dark"] .cart_totals,
html[data-theme="dark"] .woocommerce-billing-fields,
html[data-theme="dark"] .woocommerce-shipping-fields,
html[data-theme="dark"] .woocommerce-additional-fields,
html[data-theme="dark"] #order_review {
    background: #1e1e1e;
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .woocommerce-cart-form th {
    background: #252525;
    color: #999;
}

html[data-theme="dark"] .woocommerce-cart-form th,
html[data-theme="dark"] .woocommerce-cart-form td {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .woocommerce-cart-form .product-name a {
    color: #f5f5f5;
}

html[data-theme="dark"] .woocommerce-cart-form .product-remove a {
    background: #252525;
    color: #999;
}

html[data-theme="dark"] .woocommerce-cart-form .product-remove a:hover {
    background: #E0FF66;
    color: #1a1a1a;
}

html[data-theme="dark"] .cart_totals h2,
html[data-theme="dark"] .woocommerce-billing-fields h3,
html[data-theme="dark"] .woocommerce-shipping-fields h3,
html[data-theme="dark"] .woocommerce-additional-fields h3,
html[data-theme="dark"] #order_review_heading {
    color: #f5f5f5;
}

html[data-theme="dark"] .cart_totals th,
html[data-theme="dark"] .cart_totals td {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .cart_totals .order-total th,
html[data-theme="dark"] .cart_totals .order-total td {
    color: #f5f5f5;
}

html[data-theme="dark"] .wc-proceed-to-checkout .checkout-button,
html[data-theme="dark"] #place_order {
    background: #E0FF66;
    color: #1a1a1a;
}

html[data-theme="dark"] .wc-proceed-to-checkout .checkout-button:hover,
html[data-theme="dark"] #place_order:hover {
    background: #f5f5f5;
}

html[data-theme="dark"] .woocommerce-checkout label {
    color: #f5f5f5;
}

html[data-theme="dark"] .woocommerce-checkout .input-text,
html[data-theme="dark"] .woocommerce-checkout select,
html[data-theme="dark"] .woocommerce-checkout textarea {
    background: #252525;
    border-color: rgba(255, 255, 255, 0.15);
    color: #f5f5f5;
}

html[data-theme="dark"] .wc_payment_method {
    background: #252525;
}

html[data-theme="dark"] .wc_payment_method label {
    color: #f5f5f5;
}

html[data-theme="dark"] .wc_payment_method .payment_box {
    background: #1a1a1a;
    color: #b0b0b0;
}

html[data-theme="dark"] .woocommerce-message {
    background: rgba(224, 255, 102, 0.15);
    border-color: rgba(224, 255, 102, 0.3);
    color: #f5f5f5;
}

html[data-theme="dark"] .woocommerce-info {
    background: #252525;
    border-color: rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
}

html[data-theme="dark"] .return-to-shop .button {
    background: #E0FF66;
    color: #1a1a1a;
}

html[data-theme="dark"] .coupon .input-text {
    background: #252525;
    border-color: rgba(255, 255, 255, 0.15);
    color: #f5f5f5;
}

html[data-theme="dark"] .coupon .button {
    color: #f5f5f5;
    border-color: rgba(255, 255, 255, 0.2);
}

html[data-theme="dark"] .coupon .button:hover {
    background: #E0FF66;
    color: #1a1a1a;
    border-color: #E0FF66;
}

html[data-theme="dark"] .quantity {
    border-color: rgba(255, 255, 255, 0.15);
}

html[data-theme="dark"] .quantity .qty {
    background: #252525;
    color: #f5f5f5;
}

html[data-theme="dark"] .wc-block-mini-cart__drawer {
    background: #1e1e1e;
}

html[data-theme="dark"] .wc-block-mini-cart__badge {
    background: #E0FF66;
    color: #1a1a1a;
}

/* ==========================================================================
   Product Features List
   ========================================================================== */

.product-features {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    transition: all 0.3s ease;
}

.product-features:hover {
    border-color: #d0d0d0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-features h4 {
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.product-features .feature-item p:first-child {
    color: #22c55e;
    font-weight: 700;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    font-size: 14px !important;
}

.product-features .feature-item p:last-child {
    margin: 0;
    line-height: 1.5;
}

/* Dark mode for product features */
html[data-theme="dark"] .product-features {
    background: linear-gradient(135deg, #252525 0%, #1e1e1e 100%);
    border-color: rgba(255, 255, 255, 0.1) !important;
}

html[data-theme="dark"] .product-features:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .product-features h4 {
    color: #f5f5f5;
}

html[data-theme="dark"] .product-features .feature-item p:first-child {
    background: rgba(224, 255, 102, 0.15);
    color: #E0FF66;
}

html[data-theme="dark"] .product-features .feature-item p:last-child {
    color: #a0a0a0;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bizdomly-white);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-question {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--bizdomly-black);
    padding: 24px 28px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--bizdomly-light-gray);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--bizdomly-gray);
    margin: 0;
}

/* OpenClaw Page - Checklist Icons */
.checklist-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checklist-icon p {
    margin: 0;
    line-height: 1;
}

/* FAQ and checklist dark text fixes */
.faq-question {
    color: var(--bizdomly-black) !important;
}

.faq-answer p {
    color: var(--bizdomly-black) !important;
}

.checklist-icon p {
    color: var(--bizdomly-black) !important;
}

/* Force light theme styles for FAQ and checklist in dark mode */
html[data-theme="dark"] .faq-item {
    background: var(--bizdomly-white);
}

html[data-theme="dark"] .faq-question {
    color: var(--bizdomly-black) !important;
}

html[data-theme="dark"] .faq-question::after {
    color: var(--bizdomly-light-gray);
}

html[data-theme="dark"] .faq-answer p {
    color: var(--bizdomly-black) !important;
}

html[data-theme="dark"] .checklist-icon {
    background-color: var(--bizdomly-accent) !important;
}

html[data-theme="dark"] .checklist-icon p {
    color: var(--bizdomly-black) !important;
}

/* ========================================
   Free Audit & Thank You Pages
   ======================================== */

.site-header-minimal {
    padding: 24px 48px;
}

/* Audit Hero Banner */
.audit-hero-badge {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E0FF66;
}

.audit-hero em {
    font-family: var(--wp--preset--font-family--instrument-serif);
    font-style: italic;
}

.audit-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.audit-hero-stat {
    text-align: center;
}

.audit-hero-stat-number {
    display: block;
    font-family: var(--wp--preset--font-family--instrument-serif);
    font-size: 32px;
    color: #E0FF66;
    line-height: 1;
    margin-bottom: 6px;
}

.audit-hero-stat-label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Thank You Page */
.thankyou-checkmark {
    text-align: center;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .audit-hero {
        padding-top: 100px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 48px !important;
    }

    .audit-hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .audit-page {
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-top: 48px !important;
    }

    .thankyou-page {
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .site-header-minimal {
        padding: 20px 20px;
    }
}
