/*
Theme Name:   NBPlugins Custom Theme
Theme URI:    https://netbuy.co.il/
Description:  Custom marketing theme for Netbuy License Server
Author:       Netbuy
Author URI:   https://netbuy.co.il/
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  nbplugins-custom-theme
*/

/* ============================================
   GLOBAL STYLES - PROFESSIONAL MARKETING DESIGN
   ============================================ */

:root {
    /* Modern Blue Gradient Theme */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #7c3aed;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;

    /* Neutral Colors */
    --text-dark: #1f2937;
    --text-color: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-lighter: #ffffff;
    --border-color: #e5e7eb;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-lighter);
}

/* ============================================
   TYPOGRAPHY - MODERN & BOLD
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2rem;
    color: var(--text-dark);
}

h4 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    color: var(--text-color);
}

.has-large-font-size {
    font-size: 1.5rem !important;
    line-height: 1.6;
    color: var(--text-color);
}

.has-extra-large-font-size {
    font-size: 3rem !important;
    font-weight: 800;
    line-height: 1.1;
}

/* ============================================
   CONTENT CONTAINER
   ============================================ */

.site-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .site-content {
        padding: 40px 20px;
    }
}

/* ============================================
   BUTTONS - MODERN GRADIENT STYLE
   ============================================ */

.wp-block-button {
    margin: 0.5rem;
}

.wp-block-button__link {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.wp-block-button__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wp-block-button__link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.wp-block-button__link:hover::before {
    opacity: 1;
}

.wp-block-button__link:active {
    transform: translateY(-1px);
}

/* Outline Button Style */
.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

/* Secondary Button */
.wp-block-button.is-style-secondary .wp-block-button__link {
    background: var(--gradient-secondary);
}

.wp-block-buttons {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .wp-block-button__link {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   COLUMNS & GRID
   ============================================ */

.wp-block-columns {
    gap: 30px;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .wp-block-columns {
        flex-direction: column;
    }
}

/* ============================================
   FEATURE BOXES - MODERN CARDS
   ============================================ */

.wp-block-group {
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-lighter);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.wp-block-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wp-block-group:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.wp-block-group:hover::before {
    opacity: 1;
}

.has-white-background-color {
    background-color: var(--bg-lighter) !important;
}

.has-light-gray-background-color {
    background-color: var(--bg-light) !important;
}

/* Product showcase box with special styling */
.wp-block-group[style*="border"] {
    border: 2px solid var(--border-color) !important;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(249,250,251,1) 100%);
}

.wp-block-group[style*="border"]:hover {
    border-color: var(--primary-color) !important;
}

/* ============================================
   PRICING CARDS - PREMIUM DESIGN
   ============================================ */

/* Most popular badge - Stunning gradient */
.wp-block-group .has-text-color.has-background[style*="#0073aa"],
.wp-block-group .has-text-color.has-background[style*="#2563eb"] {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    background: var(--gradient-success) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Pricing amount - Big and bold */
.wp-block-group .has-extra-large-font-size {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5rem 0;
    font-weight: 900;
}

/* Pricing list - Clean checkmarks */
.wp-block-group ul {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.wp-block-group ul li {
    padding: 12px 0;
    position: relative;
    padding-left: 35px;
    font-size: 1.05rem;
    color: var(--text-color);
}

.wp-block-group ul li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Most popular pricing card - STAND OUT */
.wp-block-group[style*="border-width:3px"] {
    position: relative;
    border: 3px solid transparent !important;
    background: linear-gradient(var(--bg-lighter), var(--bg-lighter)) padding-box,
                var(--gradient-primary) border-box !important;
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.wp-block-group[style*="border-width:3px"]::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.1;
    filter: blur(20px);
}

.wp-block-group[style*="border-width:3px"]:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-2xl);
}

@media (max-width: 768px) {
    .wp-block-group[style*="border-width:3px"] {
        transform: scale(1);
    }

    .wp-block-group[style*="border-width:3px"]:hover {
        transform: scale(1.02);
    }
}

/* ============================================
   LISTS
   ============================================ */

ul {
    margin-bottom: 1.5rem;
}

ul li {
    margin-bottom: 0.5rem;
}

/* Checkmark list style */
.is-style-checkmark li:before,
ul li:has(strong):before {
    content: "✅ ";
    margin-right: 8px;
}

/* ============================================
   TABLES
   ============================================ */

.wp-block-table {
    margin: 2rem 0;
    width: 100%;
}

.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
}

.wp-block-table th,
.wp-block-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.wp-block-table th {
    background-color: var(--light-gray);
    font-weight: 600;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(even) {
    background-color: var(--light-gray);
}

.wp-block-table td a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.wp-block-table td a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .wp-block-table {
        overflow-x: auto;
        display: block;
    }

    .wp-block-table table {
        min-width: 600px;
    }
}

/* ============================================
   SPACERS
   ============================================ */

.wp-block-spacer {
    clear: both;
}

/* ============================================
   TEXT ALIGNMENT
   ============================================ */

.has-text-align-center {
    text-align: center;
}

.has-text-align-left {
    text-align: left;
}

.has-text-align-right {
    text-align: right;
}

/* ============================================
   EMOJI ICONS
   ============================================ */

.has-extra-large-font-size:only-child {
    font-size: 3rem !important;
    margin-bottom: 1rem;
    filter: grayscale(0);
}

/* ============================================
   HOMEPAGE HERO SECTION - STUNNING!
   ============================================ */

/* Add gradient background to hero */
.page-id-2 .entry-content > *:nth-child(1),
.page-id-2 .entry-content > *:nth-child(2),
.page-id-2 .entry-content > *:nth-child(3) {
    position: relative;
    z-index: 1;
}

.page-id-2 .entry-content::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 600px;
    background: linear-gradient(135deg, rgba(37,99,235,0.05) 0%, rgba(124,58,237,0.05) 100%);
    border-radius: 0 0 50% 50% / 0 0 100px 100px;
    z-index: 0;
    pointer-events: none;
}

.page-id-2 h1:first-of-type {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.03em;
}

/* Subtitle/tagline styling */
.page-id-2 .entry-content > p:first-of-type {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    text-align: center;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Hero buttons */
.page-id-2 .entry-content > .wp-block-buttons:first-of-type {
    justify-content: center;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .page-id-2 .entry-content::before {
        height: 400px;
    }

    .page-id-2 h1:first-of-type {
        margin-top: 2rem;
    }
}

/* ============================================
   PRODUCT PAGE STYLES
   ============================================ */

/* Feature sections with modern styling */
.wp-block-heading + .wp-block-list {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    margin-top: 1.5rem;
}

/* FAQ sections - Accordion-style */
h4 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-left: 30px;
}

h4::before {
    content: '❓';
    position: absolute;
    left: 0;
    font-size: 1.25rem;
    filter: grayscale(0);
}

h4 + p {
    background: var(--bg-light);
    padding: 24px;
    border-left: 4px solid var(--accent-color);
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

h4 + p::before {
    content: '💡';
    position: absolute;
    left: -2px;
    top: -12px;
    font-size: 1.5rem;
    background: var(--bg-lighter);
    padding: 4px 8px;
    border-radius: 8px;
}

/* ============================================
   DOCUMENTATION PAGE STYLES
   ============================================ */

/* Ordered lists for step-by-step guides */
.wp-block-list.has-background {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
}

ol {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

ol li {
    counter-increment: step-counter;
    padding-left: 40px;
    position: relative;
    margin-bottom: 1rem;
}

ol li:before {
    content: counter(step-counter);
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
}

/* ============================================
   SUPPORT PAGE STYLES
   ============================================ */

/* Contact information box */
.wp-block-paragraph strong + br + strong {
    display: inline-block;
    margin-top: 1rem;
}

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

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .wp-block-group {
        padding: 20px;
    }

    .wp-block-button__link {
        display: block;
        text-align: center;
    }
}

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

a:focus,
button:focus,
.wp-block-button__link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .wp-block-button,
    .wp-block-buttons {
        display: none;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wp-block-group,
.wp-block-columns {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   CUSTOM UTILITIES
   ============================================ */

/* Shadow utilities */
.shadow-sm {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Hover shadow */
.hover-shadow:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================
   HEADER & FOOTER (Hello Elementor specific)
   ============================================ */

/* Ensure content doesn't hide behind header */
.site-content {
    min-height: calc(100vh - 200px);
}

/* Style the menu if needed */
.site-header .menu a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s;
}

.site-header .menu a:hover {
    color: var(--primary-color);
}

/* ============================================
   RTL SUPPORT (for Hebrew if needed)
   ============================================ */

[dir="rtl"] ol li {
    padding-left: 0;
    padding-right: 40px;
}

[dir="rtl"] ol li:before {
    left: auto;
    right: 0;
}

[dir="rtl"] .wp-block-group ul li {
    padding-left: 0;
    padding-right: 25px;
}

[dir="rtl"] .wp-block-group ul li:before {
    left: auto;
    right: 0;
}

/* ============================================
   CALL TO ACTION SECTIONS
   ============================================ */

/* Centered CTA sections with gradient background */
.has-text-align-center.wp-block-group,
.wp-block-group.has-text-align-center {
    background: var(--gradient-primary);
    padding: 60px 40px;
    border-radius: 24px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.has-text-align-center.wp-block-group h2,
.has-text-align-center.wp-block-group h3,
.has-text-align-center.wp-block-group p {
    color: #ffffff;
}

.has-text-align-center.wp-block-group::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.has-text-align-center.wp-block-group::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.has-text-align-center.wp-block-group > * {
    position: relative;
    z-index: 1;
}

/* White buttons in CTA sections */
.has-text-align-center.wp-block-group .wp-block-button__link {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.has-text-align-center.wp-block-group .wp-block-button__link:hover {
    background: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SECTION SPACING & DIVIDERS
   ============================================ */

/* Add breathing room between sections */
.entry-content > h2 {
    margin-top: 5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.entry-content > h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.has-text-align-center.entry-content > h2::after,
.has-text-align-center > h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================
   BADGES & LABELS
   ============================================ */

.wp-block-group .has-small-font-size {
    display: inline-block;
    background: var(--gradient-secondary);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

/* ============================================
   IMPROVED TABLES
   ============================================ */

.wp-block-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.wp-block-table thead {
    background: var(--gradient-primary);
}

.wp-block-table th {
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    padding: 20px 15px;
}

.wp-block-table tbody tr {
    transition: background-color 0.2s ease;
}

.wp-block-table tbody tr:hover {
    background-color: rgba(37, 99, 235, 0.05);
}

/* ============================================
   SCROLL ANIMATIONS (Optional Enhancement)
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
    .wp-block-group,
    .wp-block-columns > .wp-block-column {
        animation: fadeInUp 0.6s ease-out backwards;
    }

    .wp-block-columns > .wp-block-column:nth-child(2) {
        animation-delay: 0.1s;
    }

    .wp-block-columns > .wp-block-column:nth-child(3) {
        animation-delay: 0.2s;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */

@media (max-width: 768px) {
    .has-text-align-center.wp-block-group {
        padding: 40px 24px;
    }

    .entry-content > h2 {
        margin-top: 3rem;
    }

    .wp-block-group {
        padding: 24px;
    }

    .wp-block-group ul li {
        font-size: 1rem;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* GPU acceleration for animations */
.wp-block-button__link,
.wp-block-group {
    will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   FULL WIDTH OVERRIDE - IMPORTANT!
   ============================================ */

/* Force 100% width on all elements */
@media (min-width: 1200px) {
    .page-header .entry-title,
    .site-footer .footer-inner,
    .site-footer:not(.dynamic-footer),
    .site-header .header-inner,
    .site-header:not(.dynamic-header),
    body:not([class*=elementor-page-]) .site-main {
        max-width: 100% !important;
        width: 100%;
    }
}

/* Full width for all pages */
.site-main,
.site-content,
.entry-content {
    max-width: 100% !important;
    width: 100%;
}

/* ============================================
   LANDING PAGE STYLES (front-page.php)
   ============================================ */

/* Hide default page title on landing page */
.landing-page .entry-header {
    display: none;
}

.landing-page .entry-content {
    padding: 0;
    max-width: 100%;
    margin: 0;
}

/* Remove default content padding */
.landing-page {
    padding: 0;
}

/* Hero Section */
.hero-section {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: var(--bg-lighter);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Plugin Section */
.plugin-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.plugin-card {
    background: var(--bg-lighter);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.plugin-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.plugin-icon {
    font-size: 4rem;
    line-height: 1;
}

.plugin-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.plugin-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.plugin-meta span {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-color);
    background: var(--bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
}

.plugin-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.plugin-features h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.features-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--success-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span {
    color: var(--text-color);
    line-height: 1.7;
}

.plugin-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: var(--bg-lighter);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-lighter);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-success);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.amount {
    font-weight: 800;
    line-height: 1;
}

.plan-description {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.plan-features svg {
    width: 20px;
    height: 20px;
    color: var(--success-color);
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

/* Why Section */
.why-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-lighter);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Documentation CTA Section */
.docs-cta-section {
    padding: 80px 20px;
    background: var(--bg-lighter);
}

.docs-cta-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.docs-cta-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.docs-cta-card p {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Support Section */
.support-section {
    padding: 80px 20px;
    background: var(--gradient-primary);
}

.support-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.support-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.support-card p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.support-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.support-section .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.support-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.support-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-color);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .features-section,
    .plugin-section,
    .pricing-section,
    .why-section,
    .docs-cta-section,
    .support-section {
        padding: 60px 20px;
    }

    .plugin-card {
        padding: 2rem;
    }

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

    .plugin-actions {
        flex-direction: column;
        width: 100%;
    }

    .plugin-actions .btn {
        width: 100%;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* ============================================
   END OF CUSTOM STYLES
   ============================================ */

/* ============================================
   LANDING PAGE CUSTOM STYLES - v2.0
   ============================================ */

/* Assistant Font */
body {
    font-family: 'Assistant', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Glass Effect for Header */
.glass-effect {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Feature Cards Hover Effect */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Pricing Card Hover */
.pricing-card {
    transition: all 0.3s ease-in-out;
}

.pricing-card:hover {
    transform: scale(1.05);
}

/* FAQ Accordion Arrow */
.faq-item[open] summary .arrow {
    transform: rotate(180deg);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Animated Hero Background */
.animated-hero-bg {
    background: linear-gradient(45deg, #eff6ff, #dbeafe, #eff6ff);
    background-size: 400% 400%;
    animation: gradient-animation 15s ease infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Curved Section Separator */
.curved-separator {
    position: relative;
}

.curved-separator::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -50px;
    width: 200%;
    height: 100px;
    background: #F9FAFB;
    border-radius: 50%;
}

/* Pulse Shadow Animation */
@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.animated-popular {
    animation: pulse-shadow 2s infinite;
}

/* ============================================
   END OF LANDING PAGE STYLES
   ============================================ */

/* WooCommerce Blocks cart checkout button */
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff !important;
    background: var(--primary-color);
    border-radius: 0.75rem;
    border: none;
    text-decoration: none !important;
    box-shadow: var(--shadow-md);
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover,
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:focus {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}



body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img,
.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
    margin: 0 -10px;
}

.woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
    margin: 0 -10px;
}
.woocommerce-cart .lg\:py-24 {
    padding-top: 1rem;
}

.woocommerce-checkout .wc-block-checkout__form {
    margin: 0;
    max-width: 85%;
}

.woocommerce-cart .wc-block-grid.wp-block-product-new.wp-block-woocommerce-product-new.wc-block-product-new.has-4-columns {
    display: none;
}

/* Override Tailwind max-width for full width */
.max-w-3xl {
    max-width: 100%;
}

/* Remove focus borders from header icons */
#header a:focus,
#header button:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Modern My Account & Login Styling */
.woocommerce-account,
body.woocommerce-page.woocommerce-account {
    background: #f8fafc;
    min-height: 80vh;
    padding: 3rem 0;
}

/* Login & Register & Reset Password Forms */
.woocommerce-form-login,
.woocommerce-form-register,
.woocommerce-form.woocommerce-form-login.login,
.woocommerce-ResetPassword {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
    padding: 2.5rem;
    max-width: 480px;
    margin: 2rem auto !important;
}

.woocommerce-form-login h2,
.woocommerce-form-register h2,
.woocommerce-form.woocommerce-form-login.login h2,
.woocommerce-ResetPassword h2 {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    text-align: center !important;
}

.woocommerce-form-login .woocommerce-form-row,
.woocommerce-form-register .woocommerce-form-row,
.woocommerce-ResetPassword .woocommerce-form-row {
    margin-bottom: 1.25rem;
}

/* Center form rows only on lost password page, not edit account */
.woocommerce-ResetPassword p.woocommerce-form-row.woocommerce-form-row--first.form-row.form-row-first,
.woocommerce-ResetPassword .woocommerce-form-row.woocommerce-form-row--last.form-row.form-row-last {
    margin: 0 auto;
    float: none;
}

.woocommerce-form-login label,
.woocommerce-form-register label,
.woocommerce-ResetPassword label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.woocommerce-form-login input[type="text"],
.woocommerce-form-login input[type="password"],
.woocommerce-form-login input[type="email"],
.woocommerce-form-register input[type="text"],
.woocommerce-form-register input[type="password"],
.woocommerce-form-register input[type="email"],
.woocommerce-ResetPassword input[type="text"],
.woocommerce-ResetPassword input[type="password"],
.woocommerce-ResetPassword input[type="email"],
.woocommerce-Input.woocommerce-Input--text.input-text {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background: #f8fafc;
    font-size: 1rem;
    transition: all 0.2s ease;
    text-align: center;
}

.woocommerce-form-login input[type="text"]:focus,
.woocommerce-form-login input[type="password"]:focus,
.woocommerce-form-login input[type="email"]:focus,
.woocommerce-form-register input[type="text"]:focus,
.woocommerce-form-register input[type="password"]:focus,
.woocommerce-form-register input[type="email"]:focus,
.woocommerce-ResetPassword input[type="text"]:focus,
.woocommerce-ResetPassword input[type="password"]:focus,
.woocommerce-ResetPassword input[type="email"]:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.woocommerce-form-login .woocommerce-Button,
.woocommerce-form-login button[type="submit"],
.woocommerce-form-register .woocommerce-Button,
.woocommerce-form-register button[type="submit"],
.woocommerce-ResetPassword .woocommerce-Button,
.woocommerce-ResetPassword button[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #ffffff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    margin-top: 0.5rem;
}

.woocommerce-form-login .woocommerce-Button:hover,
.woocommerce-form-login button[type="submit"]:hover,
.woocommerce-form-register .woocommerce-Button:hover,
.woocommerce-form-register button[type="submit"]:hover,
.woocommerce-ResetPassword .woocommerce-Button:hover,
.woocommerce-ResetPassword button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.woocommerce-form-login .woocommerce-LostPassword,
.woocommerce-form-login .woocommerce-privacy-policy-text {
    margin-top: 1rem;
    text-align: center;
}

.woocommerce-form-login .woocommerce-LostPassword a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.woocommerce-form-login .woocommerce-LostPassword a:hover {
    color: #7c3aed;
}

.woocommerce-form-login .woocommerce-form-login__rememberme {
    margin-top: 1rem;
}

.woocommerce-form-login .woocommerce-form-login__rememberme label {
    display: inline;
    font-weight: 500;
    margin-left: 0.5rem;
}

/* Two column layout for login/register */
.woocommerce .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
}

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

/* Edit Address page - stack addresses vertically */
.woocommerce-account .u-columns.woocommerce-Addresses.col2-set.addresses {
    display: block;
}

.woocommerce-account .u-columns.woocommerce-Addresses.col2-set.addresses .col-1,
.woocommerce-account .u-columns.woocommerce-Addresses.col2-set.addresses .col-2 {
    width: 100%;
    margin-bottom: 2rem;
}

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

    .woocommerce-form-login,
    .woocommerce-form-register {
        padding: 1.5rem;
    }
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin: 0;
    border-bottom: 1px solid #e2e8f0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 1rem 1.5rem;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: #f1f5f9;
    color: #2563eb;
    padding-left: 1.75rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #ffffff;
    font-weight: 600;
}

.woocommerce-account .woocommerce-MyAccount-content {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    padding: 2rem;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.woocommerce-account .woocommerce-MyAccount-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.woocommerce-account .woocommerce-orders-table,
.woocommerce-account .woocommerce-table--order-details {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.5rem 0;
}

.woocommerce-account .woocommerce-orders-table thead th,
.woocommerce-account .woocommerce-table--order-details thead th {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 600;
    padding: 1rem;
    border: none;
    text-align: left;
}

.woocommerce-account .woocommerce-orders-table thead th:first-child {
    border-top-left-radius: 0.5rem;
}

.woocommerce-account .woocommerce-orders-table thead th:last-child {
    border-top-right-radius: 0.5rem;
}

.woocommerce-account .woocommerce-orders-table tbody td,
.woocommerce-account .woocommerce-table--order-details tbody td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.woocommerce-account .woocommerce-orders-table tbody tr:hover {
    background: #f8fafc;
}

.woocommerce-account .woocommerce-button,
.woocommerce-account button.button,
.woocommerce-account input[type="submit"] {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.woocommerce-account .woocommerce-button:hover,
.woocommerce-account button.button:hover,
.woocommerce-account input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.woocommerce-account .woocommerce-form-row input,
.woocommerce-account .woocommerce-form-row textarea,
.woocommerce-account .woocommerce-form-row select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background: #f8fafc;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.woocommerce-account .woocommerce-form-row input:focus,
.woocommerce-account .woocommerce-form-row textarea:focus,
.woocommerce-account .woocommerce-form-row select:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.woocommerce-account .woocommerce-form-row label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0f172a;
    font-weight: 600;
}

.woocommerce-account .woocommerce-Address {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.woocommerce-account .woocommerce-Address-title h3 {
    color: #0f172a;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.woocommerce-account .woocommerce-Address address {
    color: #475569;
    line-height: 1.7;
}

.woocommerce-account .woocommerce-Message {
    background: #dbeafe;
    border-left: 4px solid #2563eb;
    color: #1e40af;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.woocommerce-account .woocommerce-info {
    background: #dbeafe;
    border-left: 4px solid #2563eb;
    color: #1e40af;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.woocommerce-account .woocommerce-error {
    background: #fee2e2;
    border-left: 4px solid #dc2626;
    color: #991b1b;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Payment Methods page styling */
.woocommerce-account .woocommerce-PaymentMethods {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.5rem 0;
}

.woocommerce-account .woocommerce-PaymentMethods thead th {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 600;
    padding: 1rem;
    border: none;
    text-align: left;
}

.woocommerce-account .woocommerce-PaymentMethods thead th:first-child {
    border-top-left-radius: 0.5rem;
}

.woocommerce-account .woocommerce-PaymentMethods thead th:last-child {
    border-top-right-radius: 0.5rem;
}

.woocommerce-account .woocommerce-PaymentMethods tbody td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.woocommerce-account .woocommerce-PaymentMethods tbody tr:hover {
    background: #f8fafc;
}

/* RTL Support for WooCommerce Cart/Checkout in Hebrew */
html[dir="rtl"] tr.cart-subtotal,
html[dir="rtl"] tr.order-total,
html[dir="rtl"] th.product-name,
html[dir="rtl"] td.product-name,
html[dir="rtl"] td.product-total {
    text-align: right;
}

html[dir="rtl"] .woocommerce-checkout #payment ul.payment_methods li {
    text-align: right;
}

/* RTL styles for My Account pages */
html[dir="rtl"] .woocommerce-account .woocommerce-MyAccount-navigation {
    float: right;
}

html[dir="rtl"] .woocommerce-account .woocommerce-MyAccount-content {
    float: left;
}

html[dir="rtl"] .woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    padding-left: 1.5rem;
    padding-right: 1.75rem;
}

html[dir="rtl"] .woocommerce-account .woocommerce-MyAccount-navigation ul {
    text-align: right;
}

html[dir="rtl"] .woocommerce-account .woocommerce-MyAccount-navigation ul li {
    text-align: right;
}

html[dir="rtl"] .woocommerce-MyAccount-content {
    text-align: right;
}

html[dir="rtl"] .woocommerce-MyAccount-content h2,
html[dir="rtl"] .woocommerce-MyAccount-content h3 {
    text-align: right;
}

html[dir="rtl"] .woocommerce-MyAccount-content p,
html[dir="rtl"] .woocommerce-MyAccount-content address {
    text-align: right;
}

html[dir="rtl"] .woocommerce-MyAccount-content table {
    direction: rtl;
}

html[dir="rtl"] .woocommerce-MyAccount-content table th,
html[dir="rtl"] .woocommerce-MyAccount-content table td {
    text-align: right;
}

html[dir="rtl"] .woocommerce-MyAccount-content .woocommerce-form-row {
    text-align: right;
}

html[dir="rtl"] .woocommerce-MyAccount-content label {
    text-align: right;
    display: block;
}

html[dir="rtl"] .woocommerce-MyAccount-content input,
html[dir="rtl"] .woocommerce-MyAccount-content textarea,
html[dir="rtl"] .woocommerce-MyAccount-content select {
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .woocommerce-orders-table,
html[dir="rtl"] .woocommerce-table--order-details {
    direction: rtl;
}

html[dir="rtl"] .woocommerce-orders-table th,
html[dir="rtl"] .woocommerce-orders-table td,
html[dir="rtl"] .woocommerce-table--order-details th,
html[dir="rtl"] .woocommerce-table--order-details td {
    text-align: right;
}

html[dir="rtl"] .woocommerce-customer-details address {
    text-align: right;
}

html[dir="rtl"] .woocommerce-Addresses {
    direction: rtl;
}

html[dir="rtl"] .woocommerce-Address {
    text-align: right;
}

html[dir="rtl"] .woocommerce-Address-title h3 {
    text-align: right;
}

html[dir="rtl"] .woocommerce-Addresses-addresses {
    direction: rtl;
}

html[dir="rtl"] .woocommerce-form-login,
html[dir="rtl"] .woocommerce-form-register,
html[dir="rtl"] .woocommerce-ResetPassword,
html[dir="rtl"] .woocommerce-form.woocommerce-form-login.login {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .woocommerce-form-login label,
html[dir="rtl"] .woocommerce-form-register label,
html[dir="rtl"] .woocommerce-ResetPassword label {
    text-align: right;
}

html[dir="rtl"] .woocommerce-form-login h2,
html[dir="rtl"] .woocommerce-form-register h2,
html[dir="rtl"] .woocommerce-ResetPassword h2 {
    text-align: center !important;
}

html[dir="rtl"] .woocommerce-form-login input,
html[dir="rtl"] .woocommerce-form-register input,
html[dir="rtl"] .woocommerce-ResetPassword input {
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .woocommerce-form-login p,
html[dir="rtl"] .woocommerce-form-register p,
html[dir="rtl"] .woocommerce-ResetPassword p {
    text-align: right;
}

html[dir="rtl"] .woocommerce-EditAccountForm {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .woocommerce-EditAccountForm label {
    text-align: right;
}

/* RTL for Checkout and Order Received Pages */
html[dir="rtl"] .woocommerce-checkout,
html[dir="rtl"] .woocommerce-order-received {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .woocommerce-checkout h3,
html[dir="rtl"] .woocommerce-checkout h2,
html[dir="rtl"] .woocommerce-order-received h2,
html[dir="rtl"] .woocommerce-order-received h3 {
    text-align: right;
}

html[dir="rtl"] .woocommerce-checkout p,
html[dir="rtl"] .woocommerce-order-received p {
    text-align: right;
}

html[dir="rtl"] .woocommerce-checkout label,
html[dir="rtl"] .woocommerce-order-received label {
    text-align: right;
}

html[dir="rtl"] .woocommerce-checkout input,
html[dir="rtl"] .woocommerce-checkout select,
html[dir="rtl"] .woocommerce-checkout textarea {
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .woocommerce-order-received .woocommerce-order,
html[dir="rtl"] .woocommerce-order-received .woocommerce-order-details,
html[dir="rtl"] .woocommerce-order-received .woocommerce-customer-details {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .woocommerce-order-received .woocommerce-order-overview {
    text-align: right;
}

html[dir="rtl"] .woocommerce-order-received .woocommerce-order-overview li {
    text-align: right;
}

html[dir="rtl"] .woocommerce-order-received .woocommerce-table--order-details {
    direction: rtl;
}

html[dir="rtl"] .woocommerce-order-received .woocommerce-table--order-details th,
html[dir="rtl"] .woocommerce-order-received .woocommerce-table--order-details td {
    text-align: right;
}

html[dir="rtl"] .woocommerce-order-received address {
    text-align: right;
}

html[dir="rtl"] .woocommerce-checkout .woocommerce-billing-fields h3,
html[dir="rtl"] .woocommerce-checkout .woocommerce-additional-fields h3 {
    text-align: right;
}

html[dir="rtl"] .woocommerce-checkout #order_review_heading {
    text-align: right;
}

html[dir="rtl"] .woocommerce-checkout .woocommerce-checkout-review-order {
    direction: rtl;
}

html[dir="rtl"] .woocommerce-checkout .woocommerce-checkout-review-order table {
    direction: rtl;
}

html[dir="rtl"] .woocommerce-checkout .woocommerce-checkout-review-order th,
html[dir="rtl"] .woocommerce-checkout .woocommerce-checkout-review-order td {
    text-align: right;
}

html[dir="rtl"] .woocommerce-thankyou-order-received {
    text-align: right;
}

html[dir="rtl"] .woocommerce-notice,
html[dir="rtl"] .woocommerce-info,
html[dir="rtl"] .woocommerce-error,
html[dir="rtl"] .woocommerce-message {
    text-align: right;
    direction: rtl;
}

