/* ===================================
   DODO PLUGINS - MAIN STYLES
   =================================== */

:root {
    --dodo-primary: #0a1f5c;
    --dodo-primary-light: #1a3a8f;
    --dodo-accent: #e8a430;
    --dodo-accent-hover: #d4922a;
    --dodo-text: #1a1a1a;
    --dodo-text-light: #555;
    --dodo-text-muted: #777;
    --dodo-bg: #ffffff;
    --dodo-bg-light: #f8f9fa;
    --dodo-peach: #fde8d8;
    --dodo-green: #e2f5d0;
    --dodo-blue: #d0ecff;
    --dodo-yellow: #fde68a;
    --dodo-skyblue: #bae6fd;
    --dodo-pink: #fecdd3;
    --dodo-card-peach: #ffe4c9;
    --dodo-lavender: #ddd6fe;
    --dodo-mint: #bbf7d0;
    --dodo-radius: 16px;
    --dodo-radius-sm: 8px;
    --dodo-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    --dodo-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.1);
    --dodo-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --dodo-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body.dodoplugins-front {
    font-family: var(--dodo-font);
    color: var(--dodo-text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.dodoplugins-front .site-header,
body.dodoplugins-front .site-footer,
body.dodoplugins-front #page > .site-content > .ast-container,
body.dodoplugins-front .site-info {
    display: none;
}

.dodo-site-wrapper {
    width: 100%;
    overflow-x: hidden;
}

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

/* ===================================
   HEADER
   =================================== */

.dodo-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow var(--dodo-transition);
}

.dodo-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.dodo-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.dodo-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.dodo-nav-list li a {
    display: block;
    padding: 8px 16px;
    color: var(--dodo-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--dodo-radius-sm);
    transition: all var(--dodo-transition);
    letter-spacing: -0.01em;
}

.dodo-nav-list li a:hover {
    color: var(--dodo-primary);
    background: var(--dodo-bg-light);
}

.dodo-header-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.dodo-cart-icon,
.dodo-account-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--dodo-text);
    text-decoration: none;
    border-radius: 50%;
    transition: all var(--dodo-transition);
    position: relative;
}

.dodo-cart-icon:hover,
.dodo-account-icon:hover {
    background: var(--dodo-bg-light);
    color: var(--dodo-primary);
}

.dodo-cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--dodo-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.dodo-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.dodo-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dodo-text);
    border-radius: 2px;
    transition: all var(--dodo-transition);
}

/* ===================================
   HERO SECTION
   =================================== */

.dodo-hero {
    padding: 180px 0 120px;
    text-align: center;
    background: var(--dodo-bg);
}

.dodo-hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dodo-text);
    margin: 0 auto 24px;
    max-width: 800px;
}

.dodo-hero-subtitle {
    font-size: 18px;
    color: var(--dodo-text-light);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.dodo-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   =================================== */

.dodo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--dodo-transition);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: -0.01em;
    min-width: 160px;
}

.dodo-btn-primary {
    background: var(--dodo-accent);
    color: #1a1a1a;
    border-color: var(--dodo-accent);
}

.dodo-btn-primary:hover {
    background: var(--dodo-accent-hover);
    border-color: var(--dodo-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 164, 48, 0.3);
}

.dodo-btn-outline {
    background: transparent;
    color: var(--dodo-text);
    border-color: var(--dodo-text);
}

.dodo-btn-outline:hover {
    background: var(--dodo-text);
    color: #fff;
    transform: translateY(-2px);
}

.dodo-btn-light {
    background: var(--dodo-peach);
    color: #1a1a1a;
    border-color: var(--dodo-peach);
}

.dodo-btn-light:hover {
    background: #fcd5b8;
    border-color: #fcd5b8;
    transform: translateY(-2px);
}

.dodo-btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.dodo-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.dodo-btn-cart {
    background: transparent;
    color: var(--dodo-text);
    border-color: var(--dodo-text);
    padding: 10px 24px;
    font-size: 14px;
    min-width: 120px;
}

.dodo-btn-cart:hover {
    background: var(--dodo-text);
    color: #fff;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.dodo-services {
    padding: 80px 0 100px;
    background: var(--dodo-bg);
}

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

.dodo-service-card {
    padding: 48px 36px;
    border-radius: var(--dodo-radius);
    text-align: center;
    transition: all var(--dodo-transition);
}

.dodo-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dodo-shadow-hover);
}

.dodo-service-peach {
    background: var(--dodo-peach);
}

.dodo-service-green {
    background: var(--dodo-green);
}

.dodo-service-blue {
    background: var(--dodo-blue);
}

.dodo-service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.dodo-service-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.dodo-service-card p {
    font-size: 15px;
    color: var(--dodo-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   SECTION TITLES
   =================================== */

.dodo-section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    text-align: center;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
    line-height: 1.15;
}

.dodo-section-subtitle {
    font-size: 16px;
    color: var(--dodo-text-light);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 8px;
    line-height: 1.7;
}

.dodo-section-subtitle:last-of-type {
    margin-bottom: 48px;
}

/* ===================================
   EXPERTISE SECTION
   =================================== */

.dodo-expertise {
    padding: 100px 0;
    background: var(--dodo-bg);
}

.dodo-expertise-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.dodo-expertise-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dodo-expertise-card {
    padding: 32px 28px;
    border-radius: var(--dodo-radius);
    transition: all var(--dodo-transition);
}

.dodo-expertise-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--dodo-shadow-hover);
}

.dodo-expertise-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.dodo-expertise-card p {
    font-size: 14px;
    color: var(--dodo-text-light);
    line-height: 1.7;
    margin: 0;
}

.dodo-card-yellow {
    background: var(--dodo-yellow);
}

.dodo-card-skyblue {
    background: var(--dodo-skyblue);
}

.dodo-card-pink {
    background: var(--dodo-pink);
}

.dodo-card-peach {
    background: var(--dodo-card-peach);
}

.dodo-card-lavender {
    background: var(--dodo-lavender);
}

.dodo-card-mint {
    background: var(--dodo-mint);
}

.dodo-expertise-image {
    border-radius: var(--dodo-radius);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.dodo-expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   CTA SECTION
   =================================== */

.dodo-cta {
    padding: 80px 0;
    background: var(--dodo-bg);
}

.dodo-cta-inner {
    background: var(--dodo-primary);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    color: #fff;
}

.dodo-cta-inner h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    margin: 0 0 24px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.dodo-cta-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto 12px;
    line-height: 1.7;
}

.dodo-cta-inner p:last-of-type {
    margin-bottom: 36px;
}

.dodo-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.dodo-testimonials {
    padding: 100px 0;
    background: var(--dodo-bg);
}

.dodo-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.dodo-testimonial-card {
    padding: 48px 40px;
    border-radius: var(--dodo-radius);
    text-align: center;
    transition: all var(--dodo-transition);
}

.dodo-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dodo-shadow-hover);
}

.dodo-testimonial-yellow {
    background: var(--dodo-yellow);
}

.dodo-testimonial-green {
    background: var(--dodo-green);
}

.dodo-testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dodo-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dodo-testimonial-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.dodo-testimonial-role {
    font-size: 14px;
    color: var(--dodo-text-muted);
    display: block;
    margin-bottom: 20px;
}

.dodo-testimonial-text {
    font-size: 15px;
    color: var(--dodo-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   PRODUCTS SECTION
   =================================== */

.dodo-products {
    padding: 80px 0 100px;
    background: var(--dodo-bg);
}

.dodo-products .dodo-section-title {
    margin-bottom: 48px;
}

.dodo-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.dodo-product-card {
    background: var(--dodo-bg);
    border-radius: var(--dodo-radius);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding: 24px;
    transition: all var(--dodo-transition);
    position: relative;
}

.dodo-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dodo-shadow-hover);
    border-color: transparent;
}

.dodo-product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 1;
}

.dodo-product-image {
    width: 100%;
    height: 200px;
    border-radius: var(--dodo-radius-sm);
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--dodo-bg-light);
}

.dodo-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dodo-product-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.dodo-product-price {
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.dodo-price-old {
    text-decoration: line-through;
    color: var(--dodo-text-muted);
    font-size: 14px;
}

.dodo-price-new {
    font-size: 18px;
    font-weight: 700;
    color: var(--dodo-text);
}

/* WooCommerce overrides */
.dodo-products .woocommerce ul.products,
.dodo-products .woocommerce ul.products.columns-1,
.dodo-products .woocommerce ul.products.columns-2,
.dodo-products .woocommerce ul.products.columns-3,
.dodo-products .woocommerce ul.products.columns-4,
.dodo-products .woocommerce ul.products.columns-5,
.dodo-products .woocommerce ul.products.columns-6 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.dodo-products .woocommerce ul.products::before,
.dodo-products .woocommerce ul.products::after {
    display: none !important;
    content: none !important;
}

.dodo-products .woocommerce ul.products li.product,
.dodo-products .woocommerce ul.products li.product.type-product {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 24px !important;
    float: none !important;
    clear: none !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--dodo-radius);
    transition: all var(--dodo-transition);
    text-align: center;
}

.dodo-products .woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: var(--dodo-shadow-hover);
    border-color: transparent;
}

.dodo-products .woocommerce ul.products li.product a img {
    border-radius: var(--dodo-radius-sm);
    margin-bottom: 8px !important;
}

.dodo-products .woocommerce ul.products li.product .onsale {
    background: #dc2626;
    color: #fff;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
}

.dodo-products .woocommerce ul.products li.product .button,
.dodo-products .woocommerce ul.products li.product a.button,
.dodo-products .woocommerce ul.products li.product a.add_to_cart_button {
    background: transparent;
    color: var(--dodo-text);
    border: 2px solid var(--dodo-text);
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all var(--dodo-transition);
    display: inline-block;
    margin-top: 8px;
}

.dodo-products .woocommerce ul.products li.product .button:hover,
.dodo-products .woocommerce ul.products li.product a.button:hover,
.dodo-products .woocommerce ul.products li.product a.add_to_cart_button:hover {
    background: var(--dodo-text);
    color: #fff;
}

/* ===================================
   FOOTER
   =================================== */

.dodo-footer {
    background: #0f172a;
    color: #fff;
    padding: 80px 0 0;
}

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

.dodo-footer-logo img {
    height: 36px;
    width: auto;
    display: block;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.dodo-footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

.dodo-footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}

.dodo-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dodo-footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.dodo-footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--dodo-transition);
}

.dodo-footer-col ul li a:hover {
    color: #fff;
}

.dodo-social-links {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.dodo-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--dodo-transition);
}

.dodo-social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.dodo-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.dodo-footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===================================
   SCROLL TO TOP
   =================================== */

.dodo-scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dodo-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--dodo-transition);
    box-shadow: 0 4px 16px rgba(10, 31, 92, 0.3);
    z-index: 999;
}

.dodo-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dodo-scroll-top:hover {
    background: var(--dodo-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10, 31, 92, 0.4);
}

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

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

.dodo-animate {
    opacity: 0;
    transform: translateY(30px);
}

.dodo-animate.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.dodo-animate.delay-1 { animation-delay: 0.1s; }
.dodo-animate.delay-2 { animation-delay: 0.2s; }
.dodo-animate.delay-3 { animation-delay: 0.3s; }
.dodo-animate.delay-4 { animation-delay: 0.4s; }
.dodo-animate.delay-5 { animation-delay: 0.5s; }
.dodo-animate.delay-6 { animation-delay: 0.6s; }
