/* 
 * Anonindo WooCommerce Bulk Edit - Landing Site Stylesheet
 * Premium 3D Claymorphic Aesthetic
 */

:root {
    --bg-cream: #fefbf2;
    --dark-charcoal: #181818;
    --coral-orange: #fb7d52;
    --coral-shadow: #b73c18;
    --royal-blue: #005ea3;
    --royal-shadow: #004070;
    --card-bg-light: #ffffff;
    --border-color: #181818;
    --text-primary: #181818;
    --text-secondary: #5a5a5a;
    --text-light: #fefbf2;
    
    --shadow-3d: 8px 8px 0px var(--dark-charcoal);
    --shadow-3d-hover: 12px 12px 0px var(--dark-charcoal);
    --shadow-3d-active: 3px 3px 0px var(--dark-charcoal);
    
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    
    --font-outfit: 'Outfit', sans-serif;
    --font-lexend: 'Lexend', sans-serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-primary);
    font-family: var(--font-outfit);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-lexend);
    font-weight: 700;
    color: var(--dark-charcoal);
}

a {
    color: var(--royal-blue);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: var(--coral-orange);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--coral-orange);
    color: var(--text-light);
    font-family: var(--font-lexend);
    font-weight: 600;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 999px;
    border: 2px solid var(--border-color);
    box-shadow: 3px 3px 0px var(--border-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-blue {
    background-color: var(--royal-blue);
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-lexend);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--border-radius-md);
    border: 3px solid var(--border-color);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    outline: none;
    gap: 8px;
    height: 48px;
}

.btn-primary {
    background-color: var(--coral-orange);
    color: var(--text-light);
    box-shadow: var(--shadow-3d);
}

.btn-primary:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-3d-hover);
    color: var(--text-light) !important;
}

.btn-primary:active {
    transform: translate(5px, 5px);
    box-shadow: var(--shadow-3d-active);
}

.btn-secondary {
    background-color: var(--card-bg-light);
    color: var(--dark-charcoal);
    box-shadow: var(--shadow-3d);
}

.btn-secondary:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-3d-hover);
}

.btn-secondary:active {
    transform: translate(5px, 5px);
    box-shadow: var(--shadow-3d-active);
}

.btn-blue {
    background-color: var(--royal-blue);
    color: var(--text-light);
    box-shadow: var(--shadow-3d);
}

.btn-blue:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-3d-hover);
    color: var(--text-light) !important;
}

.btn-blue:active {
    transform: translate(5px, 5px);
    box-shadow: var(--shadow-3d-active);
}

/* Header Component styling */
.site-header {
    background-color: var(--card-bg-light);
    border-bottom: 4px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-lexend);
    font-weight: 800;
    font-size: 22px;
    color: var(--dark-charcoal);
}

.logo-img {
    height: 40px;
    width: auto;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 4px;
    background-color: var(--bg-cream);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-lexend);
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-charcoal);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    transition: all 0.15s ease;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(251, 125, 82, 0.1);
    color: var(--coral-orange);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.hamburger svg {
    width: 28px;
    height: 28px;
    fill: var(--dark-charcoal);
}

/* Footer Component styling */
.site-footer {
    background-color: var(--dark-charcoal);
    color: #a0a0a0;
    border-top: 4px solid var(--border-color);
    padding: 60px 0 30px 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu-list a {
    color: #a0a0a0;
    font-size: 15px;
}

.footer-menu-list a:hover {
    color: var(--text-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
}

/* Claymorphic Cards */
.clay-card {
    background-color: var(--card-bg-light);
    border: 3px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-3d);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.clay-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-3d-hover);
}

/* Input Fields & Forms */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-family: var(--font-lexend);
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-charcoal);
}

.form-control {
    background-color: #0c0c0c !important; /* recessed jet black */
    border: 2px solid #222222 !important;
    border-radius: var(--border-radius-sm) !important;
    color: #f8fafc !important;
    padding: 12px 16px !important;
    font-family: var(--font-outfit) !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.6) !important;
    transition: all 0.2s ease !important;
    width: 100%;
    outline: none;
}

.form-control:focus {
    border-color: var(--coral-orange) !important;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.7), 0 0 0 4px rgba(251, 125, 82, 0.25) !important;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Sections General */
.page-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    color: var(--coral-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 17px;
}

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

@keyframes abeFadeInUp {
    0% { transform: translateY(18px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Page Header component */
.page-header-box {
    background: linear-gradient(135deg, #181818, #2a2a2a, #181818);
    background-size: 200% 200%;
    animation: abeHeaderShift 12s ease infinite;
    color: var(--text-light);
    min-height: 220px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.page-header-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 125, 82, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.page-header-box h1 {
    color: var(--text-light);
    font-size: 40px;
    margin-bottom: 12px;
    animation: abeFadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.page-header-box p {
    color: #b0b8c4;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    animation: abeFadeInUp 1.1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
}

/* Responsive Menu styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--card-bg-light);
        border-bottom: 4px solid var(--border-color);
        padding: 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 16px;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .page-section {
        padding: 50px 0;
    }
}

/* ==========================================
   LANDING PAGES LAYOUTS AND SIZING (.abe-)
   ========================================== */

/* Hero Grid */
.abe-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.abe-hero-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-lexend);
    font-weight: 800;
}

.abe-hero-title span {
    color: var(--coral-orange);
    position: relative;
    display: inline-block;
}

.abe-hero-description {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* Premium 3D claymorphic illustrations layout */
.abe-clay-card-img {
    background: var(--card-bg-light);
    border: 3px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-3d);
    width: 100%;
    max-width: 320px; /* Scaled down for elegant layout fit */
    margin: 0 auto;
    transition: all 0.3s ease;
}

.abe-hero-image {
    max-width: 420px !important; /* Larger display for the main hero mockup */
}

.abe-clay-card-img img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    border: 2px solid var(--border-color);
    display: block;
}

.abe-clay-card-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-3d-hover);
}

/* Features Bar */
.abe-features-bar {
    background-color: var(--dark-charcoal);
    padding: 20px 0;
    color: var(--text-light);
    border: 3px solid var(--border-color);
    border-radius: var(--border-radius-md);
    margin-bottom: 60px;
    box-shadow: var(--shadow-3d);
}

.abe-features-bar-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.abe-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-lexend);
    font-weight: 600;
    font-size: 14px;
}

.abe-bar-item svg {
    fill: var(--coral-orange);
    width: 20px;
    height: 20px;
}

/* Section Header */
.abe-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.abe-section-tag {
    color: var(--coral-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
    font-size: 13px;
}

.abe-section-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.abe-section-desc {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Features Grid */
.abe-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.abe-feature-card {
    background-color: var(--card-bg-light);
    border: 3px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-3d);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.abe-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-3d-hover);
}

.abe-feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    border: 2px solid var(--border-color);
    background-color: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 0px var(--border-color);
}

.abe-feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: var(--coral-orange);
}

.abe-feature-card h3 {
    font-size: 18px;
}

.abe-feature-card p {
    color: var(--text-secondary);
    font-size: 14.5px;
}

/* Feature Alternating Highlights */
.abe-feature-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.abe-feature-row-reverse {
    grid-template-columns: 1.1fr 1fr;
}

.abe-feature-row-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.abe-feature-row-content p {
    font-size: 15.5px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.abe-feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.abe-feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
    font-size: 14.5px;
}

.abe-feature-bullets li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    fill: var(--royal-blue);
    margin-top: 2px;
}

/* Steps Workflow Box */
.abe-steps-section {
    background-color: #f6eedb;
    border: 3px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px 24px;
    margin-bottom: 80px;
    box-shadow: var(--shadow-3d);
}

.abe-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.abe-step-card {
    text-align: center;
    background: var(--card-bg-light);
    border: 3px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px 20px;
    box-shadow: var(--shadow-3d);
    position: relative;
}

.abe-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background-color: var(--coral-orange);
    color: var(--text-light);
    font-family: var(--font-lexend);
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 0px var(--border-color);
}

.abe-step-card h3 {
    margin: 12px 0 8px 0;
    font-size: 18px;
}

.abe-step-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Comparison Table Layout */
.abe-table-wrapper {
    background: var(--card-bg-light);
    border: 3px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-3d);
    overflow-x: auto;
    margin-bottom: 80px;
}

.abe-check-icon { color: #24b47e; font-weight: bold; }
.abe-cross-icon { color: #e24e4e; font-weight: bold; }

/* Call-to-action banner */
.abe-cta-card {
    background-color: var(--dark-charcoal);
    border: 3px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px 32px;
    text-align: center;
    box-shadow: var(--shadow-3d);
    color: var(--text-light);
}

.abe-cta-card h2 {
    font-size: 32px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.abe-cta-card p {
    color: #a0a0a0;
    font-size: 16px;
    margin-bottom: 24px;
}

/* Dynamic Buttons */
.abe-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.abe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-family: var(--font-lexend);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--border-radius-md);
    border: 3px solid var(--border-color);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 44px;
}

.abe-btn-primary {
    background-color: var(--coral-orange);
    color: var(--text-light);
    box-shadow: var(--shadow-3d);
}

.abe-btn-primary:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-3d-hover);
    color: var(--text-light) !important;
}

.abe-btn-primary:active {
    transform: translate(5px, 5px);
    box-shadow: var(--shadow-3d-active);
}

.abe-btn-secondary {
    background-color: var(--card-bg-light);
    color: var(--dark-charcoal);
    box-shadow: var(--shadow-3d);
}

.abe-btn-secondary:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-3d-hover);
}

.abe-btn-secondary:active {
    transform: translate(5px, 5px);
    box-shadow: var(--shadow-3d-active);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .abe-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .abe-btn-group {
        justify-content: center;
    }
    .abe-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .abe-feature-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    .abe-feature-row-reverse {
        grid-template-columns: 1fr;
    }
    .abe-feature-row-content {
        order: 1;
    }
    .abe-clay-card-img {
        margin: 0 auto;
    }
    .abe-feature-bullets {
        align-items: center;
    }
    .abe-steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .abe-hero-title {
        font-size: 30px;
    }
    .abe-features-grid {
        grid-template-columns: 1fr;
    }
    .abe-cta-card h2 {
        font-size: 26px;
    }
}

/* Floating Claymorphic Shapes for Page Header Box */
.header-shape {
    position: absolute;
    pointer-events: none;
    border: 3px solid var(--border-color);
    box-shadow: 4px 4px 0px rgba(24, 24, 24, 0.4);
    opacity: 0.85;
    z-index: 1;
    transition: transform 0.15s ease-out;
}

.shape-orange-sphere {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff9a76, #fb7d52 40%, #b73c18);
}

.shape-blue-pill {
    width: 80px;
    height: 40px;
    border-radius: 20px;
    background: radial-gradient(circle at 30% 30%, #3b82f6, #005ea3 40%, #004070);
    transform: rotate(25deg);
}

.shape-cream-sphere {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, #fefbf2 40%, #c7a75c);
}

.shape-coral-ring {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 8px solid var(--coral-orange);
    box-shadow: 3px 3px 0px var(--dark-charcoal);
}

.shape-blue-cube {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #3b82f6, #005ea3 40%, #004070);
    transform: rotate(-15deg);
    border-radius: var(--border-radius-sm);
}

/* Ensure page-header-box can contain absolute positioned elements */
.page-header-box {
    position: relative;
    overflow: hidden;
}


