/* WooCommerce Page Specific Styles - Prefixed with mz-woo */

.mz-woo-page {
    padding-bottom: var(--mz-section-gap);
}

/* Hero Section */
.mz-woo-hero {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.mz-woo-hero-wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 60px;
}

.mz-woo-hero-image {
    flex: 1;
    max-width: 550px;
}

/* Hero Visual Illustration */
.mz-woo-hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 500px;
    margin: 0 auto;
}

/* Floating Spec Tags */
.mz-woo-hero-floating-tags {
    position: absolute;
    left: -40px;
    top: 25%;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mz-woo-hero-float-tag {
    background: var(--mz-white);
    border: 1px solid var(--mz-border-color);
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: mz-pulse 2s infinite;
    box-shadow: var(--mz-shadow-sm);
}

.mz-woo-hero-float-tag svg {
    width: 20px;
    height: 20px;
    color: var(--mz-primary);
    flex-shrink: 0;
}

.mz-woo-hero-float-tag span:last-child {
    font-size: 12px;
    font-family: var(--mz-font-bold);
    color: var(--mz-text-dark);
    white-space: nowrap;
}

/* Background Accent */
.mz-woo-hero-visual-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 137, 138, 0.05);
    border-radius: 50%;
    scale: 1.1;
    filter: blur(48px);
}

.mz-woo-hero-visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(12deg);
    width: 80%;
    height: 80%;
    border: 2px solid rgba(189, 201, 200, 0.3);
    border-radius: 12px;
    transition: transform 0.7s ease;
}

.mz-woo-hero-visual:hover .mz-woo-hero-visual-ring {
    transform: translate(-50%, -50%) rotate(6deg);
}

/* Main Image Container */
.mz-woo-hero-visual-main {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: var(--mz-white);
    border: 1px solid var(--mz-border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mz-woo-hero-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Speed Indicators */
.mz-woo-hero-float-speed {
    position: absolute;
    padding: 12px 16px;
    background: var(--mz-white);
    border: 1px solid var(--mz-border-color);
    border-radius: 12px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: mz-bounce 3s infinite;
    box-shadow: var(--mz-shadow-sm);
}

.mz-woo-hero-float-speed-top {
    top: -24px;
    right: -24px;
    animation-duration: 3s;
}

.mz-woo-hero-float-speed-bottom {
    bottom: -24px;
    left: -24px;
    animation-duration: 4s;
}

.mz-woo-hero-float-speed svg {
    width: 24px;
    height: 24px;
}

.mz-woo-hero-float-speed-top svg {
    color: var(--mz-primary);
}

.mz-woo-hero-float-speed-bottom svg {
    color: var(--mz-primary);
}

.mz-woo-hero-float-label {
    font-size: 12px;
    font-family: var(--mz-font-bold);
    color: var(--mz-text-light);
    display: block;
}

.mz-woo-hero-float-value {
    font-size: 16px;
    font-family: var(--mz-font-bold);
    display: block;
}

.mz-woo-hero-float-speed-top .mz-woo-hero-float-value {
    color: var(--mz-primary);
}

.mz-woo-hero-float-speed-bottom .mz-woo-hero-float-value {
    color: var(--mz-primary);
}

@keyframes mz-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.mz-woo-hero-content {
    flex: 1;
}

/* Hero Badge */
.mz-woo-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--mz-white);
    border-radius: 9999px;
    border: 1px solid var(--mz-border-color);
    margin-bottom: 20px;
    font-size: 13px;
    font-family: var(--mz-font-bold);
    color: var(--mz-text-light);
}

.mz-woo-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--mz-primary);
    border-radius: 50%;
    animation: mz-pulse 2s infinite;
}

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

.mz-woo-hero-content h1 {
    font-size: 26px;
    color: var(--mz-text-dark);
    font-family: var(--mz-font-bold);
    margin-bottom: 15px;
    line-height: 1.4;
}

.mz-woo-hero-sub {
    font-size: var(--mz-fs-h4);
    color: var(--mz-primary);
    margin-bottom: 25px;
    font-family: var(--mz-font-bold);
}

.mz-woo-hero-content p {
    font-size: var(--mz-fs-h5);
    color: var(--mz-text-main);
    line-height: 2;
    margin-bottom: 35px;
    text-align: justify;
}

.mz-woo-hero-btns {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

/* Hero Technical Features Row */
.mz-woo-hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--mz-border-color);
}

.mz-woo-hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mz-woo-hero-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--mz-white);
    border: 1px solid var(--mz-border-color);
    color: var(--mz-primary);
    flex-shrink: 0;
    transition: var(--mz-transition);
}

.mz-woo-hero-feature-item span {
    font-size: 13px;
    font-family: var(--mz-font-bold);
    color: var(--mz-text-dark);
    white-space: nowrap;
}
.mz-woo-pricing {
    padding: var(--mz-section-gap) 0;
}

.mz-woo-plans-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mz-woo-plan-card {
    background: var(--mz-white);
    border-radius: 15px;
    border: 1px solid var(--mz-border-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: var(--mz-shadow-sm);
    transition: var(--mz-transition);
}

.mz-woo-plan-card:hover {
    box-shadow: var(--mz-shadow-md);
}

.mz-woo-plan-top {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--mz-bg-light);
}

.mz-woo-plan-title {
    width: 220px;
    text-align: center;
}

.mz-woo-plan-title h3 {
    font-size: var(--mz-fs-h2);
    color: var(--mz-text-dark);
    font-family: var(--mz-font-bold);
    margin: 0;
}

.mz-woo-plan-specs {
    flex: 1;
    display: flex;
    gap: 20px;
    padding-left: 40px;
}

.mz-woo-spec-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    text-align: left;
    direction: ltr;
    min-width: 0;
}

.mz-woo-spec-icon {
    color: var(--mz-text-main);
    background: transparent;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--mz-border-color);
}

.mz-woo-spec-icon svg {
    width: 20px;
    height: 20px;
}

.mz-woo-spec-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.mz-woo-spec-label {
    font-size: var(--mz-fs-md);
    color: var(--mz-text-dark);
    font-family: var(--mz-font-bold);
}

.mz-woo-spec-value {
    font-size: var(--mz-fs-sm);
    color: var(--mz-text-main);
    font-family: var(--mz-font-main);
    white-space: nowrap;
}

.mz-woo-spec-unit {
    font-size: var(--mz-fs-xs);
    color: var(--mz-text-muted);
}

.mz-woo-plan-bottom {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.mz-woo-plan-prices {
    flex: 1;
    background: var(--mz-bg-light);
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 10px 30px;
    align-items: center;
}

.mz-woo-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mz-woo-price-label {
    font-size: var(--mz-fs-sm);
    color: var(--mz-text-light);
    font-family: var(--mz-font-bold);
}

.mz-woo-price-item:not(:first-child) .mz-woo-price-label {
    color: var(--mz-primary);
}

.mz-woo-price-val {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--mz-fs-h3);
    color: var(--mz-primary);
    font-family: var(--mz-font-bold);
}

.mz-woo-price-old {
    font-size: var(--mz-fs-sm);
    color: var(--mz-text-light);
    text-decoration: line-through;
    font-family: 'en', var(--mz-font-main);
}

.mz-woo-price-now {
    font-size: var(--mz-fs-h4);
    color: var(--mz-text-dark);
    font-family: 'en', var(--mz-font-bold);
}

.mz-woo-plan-action {
    width: 260px;
}

/* Features Section */
.mz-woo-features {
    padding: var(--mz-section-gap) 0;
}

.mz-woo-features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.mz-woo-features-badge {
    background: var(--mz-white);
    color: var(--mz-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: var(--mz-fs-sm);
    font-family: var(--mz-font-bold);
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: var(--mz-shadow-sm);
}

.mz-woo-features-sub {
    font-size: var(--mz-fs-h3);
    color: var(--mz-text-main);
    margin-bottom: 20px;
    font-family: var(--mz-font-bold);
}

.mz-woo-features-desc {
    font-size: var(--mz-fs-md);
    color: var(--mz-text-light);
    line-height: 1.9;
}

.mz-woo-features-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.mz-woo-feature-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mz-woo-feature-item.mz-reverse {
    flex-direction: row-reverse;
}

.mz-woo-feature-item.mz-reverse .mz-btn-group {
    margin-left: 0;
    margin-right: 0;
}

.mz-woo-feature-content {
    flex: 1;
    text-align: left;
}

.mz-woo-feature-content h3 {
    font-size: var(--mz-fs-h2);
    color: var(--mz-text-dark);
    font-family: var(--mz-font-bold);
    margin-bottom: 20px;
}

.mz-woo-feature-content p {
    font-size: var(--mz-fs-md);
    color: var(--mz-text-main);
    line-height: 1.9;
    margin-bottom: 20px;
}

.mz-woo-feature-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.mz-woo-feature-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: var(--mz-fs-md);
    color: var(--mz-text-main);
}

.mz-woo-feature-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--mz-primary);
    font-family: var(--mz-font-bold);
}

.mz-woo-feature-img-box {
    flex: 1;
    max-width: 550px;
}

.mz-woo-feature-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--mz-shadow-sm);
    transition: var(--mz-transition);
}

.mz-woo-feature-img:hover {
    /* No scale */
}

/* SVG Illustrations Styling */
.mz-woo-svg-illustration {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: var(--mz-white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--mz-shadow-sm);
    border: 1px solid var(--mz-border-color);
}

.mz-woo-svg-illustration svg {
    width: 100%;
    height: auto;
    display: block;
}

.mz-woo-svg-illustration text {
    font-family: var(--mz-font-main) !important;
}

.mz-woo-svg-illustration text[font-weight="bold"] {
    font-family: var(--mz-font-bold) !important;
}

/* Info Section */
.mz-woo-info {
    padding: var(--mz-section-gap) 0;
}

.mz-woo-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mz-woo-info-card {
    background: var(--mz-white);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--mz-border-color);
    transition: var(--mz-transition);
}

.mz-woo-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--mz-primary);
}

.mz-woo-info-icon {
    color: var(--mz-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.mz-woo-info-card h4 {
    font-size: var(--mz-fs-h3);
    margin-bottom: 15px;
    font-family: var(--mz-font-bold);
}

.mz-woo-info-card p {
    font-size: var(--mz-fs-sm);
    color: var(--mz-text-main);
    line-height: 1.8;
}

/* SEO Content */
.mz-woo-seo {
    padding: var(--mz-section-gap) 0;
}

.mz-woo-seo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.mz-woo-seo-text h2 {
    font-size: var(--mz-fs-h2);
    color: var(--mz-text-dark);
    font-family: var(--mz-font-bold);
    margin-bottom: 25px;
    line-height: 1.5;
}

.mz-woo-seo-text h3 {
    font-size: var(--mz-fs-h3);
    color: var(--mz-text-main);
    font-family: var(--mz-font-bold);
    margin: 30px 0 15px;
}

.mz-woo-seo-text p {
    font-size: var(--mz-fs-lg);
    color: var(--mz-text-main);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mz-woo-seo-feat {
    background: var(--mz-bg-light);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--mz-border-color);
    position: sticky;
    top: 100px;
}

.mz-woo-seo-feat h4 {
    font-size: var(--mz-fs-h4);
    color: var(--mz-text-dark);
    font-family: var(--mz-font-bold);
    margin-bottom: 20px;
}

.mz-woo-seo-feat ul {
    list-style: none;
    padding: 0;
}

.mz-woo-seo-feat ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: var(--mz-fs-md);
    color: var(--mz-text-main);
    font-family: var(--mz-font-bold);
}

.mz-woo-seo-feat ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--mz-primary);
}

/* FAQ Section */
.mz-woo-faq {
    padding: var(--mz-section-gap) 0;
}

.mz-woo-faq-list {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mz-woo-faq-item {
    background: var(--mz-white);
    border-radius: 12px;
    border: 1px solid var(--mz-border-color);
    overflow: hidden;
    transition: var(--mz-transition);
}

.mz-woo-faq-q {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: var(--mz-fs-h5);
    font-family: var(--mz-font-bold);
    color: var(--mz-text-dark);
}

.mz-woo-faq-q svg {
    transition: var(--mz-transition);
    color: var(--mz-text-light);
}

.mz-woo-faq-a {
    padding: 0 25px 20px;
    color: var(--mz-text-main);
    line-height: 1.9;
    font-size: var(--mz-fs-md);
    display: none;
}

.mz-woo-faq-item.mz-active .mz-woo-faq-q svg {
    transform: rotate(180deg);
}

.mz-woo-faq-item.mz-active {
    box-shadow: var(--mz-shadow-sm);
    border-color: var(--mz-primary);
}

.mz-woo-faq-item.mz-active .mz-woo-faq-a {
    display: block;
}

.mz-woo-faq-item.mz-active .mz-woo-faq-q {
    color: var(--mz-primary);
}

.mz-woo-faq-item.mz-active .mz-woo-faq-q svg {
    transform: rotate(180deg);
    color: var(--mz-primary);
}

/* -----------------------------------------
   Responsive Styles
   ----------------------------------------- */

/* Tablet (Large) - 1024px */
@media (max-width: 1024px) {
    .mz-woo-hero-wrapper {
        gap: 40px;
    }

    .mz-woo-plan-specs {
        gap: 10px;
        padding-left: 20px;
    }

    .mz-woo-spec-label {
        font-size: 0.75rem;
    }

    .mz-woo-spec-value {
        font-size: 13px;
    }
}

/* Tablet (Small) - 768px */
@media (max-width: 768px) {
    .mz-woo-hero {
        padding-top: 40px !important;
        padding-bottom: 70px !important;
    }

    .mz-woo-hero-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .mz-woo-hero-image {
        width: 100%;
        max-width: 450px;
    }

    /* Hero Visual - Mobile */
    .mz-woo-hero-floating-tags {
        display: none;
    }

    .mz-woo-hero-float-speed {
        display: none;
    }

    .mz-woo-hero-visual {
        max-width: 350px;
    }

    .mz-woo-hero-content h1 {
        font-size: 1.45rem;
        line-height: 1.6;
    }

    .mz-woo-hero-sub {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .mz-woo-hero-content p {
        font-size: 14px;
        line-height: 1.8;
        text-align: center;
        margin-bottom: 30px;
    }

    .mz-woo-hero-badge {
        margin: 0 auto;
    }

    .mz-woo-hero-btns {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .mz-woo-hero-btns .mz-btn-group {
        width: 100%;
        max-width: 340px;
    }

    /* Hero Features Row - Mobile */
    .mz-woo-hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 20px;
        margin-top: 20px;
    }

    .mz-woo-hero-feature-item {
        justify-content: center;
    }

    /* Plan Layout Refactor */
    .mz-woo-plan-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-bottom: none;
        padding-bottom: 0;
    }

    .mz-woo-plan-specs {
        display: contents;
    }

    .mz-woo-spec-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        padding: 15px 0;
    }

    .mz-woo-spec-item:nth-child(1) { grid-area: 1 / 2; }
    .mz-woo-spec-item:nth-child(2) { grid-area: 1 / 1; }
    .mz-woo-spec-item:nth-child(3) { grid-area: 2 / 2; }
    .mz-woo-spec-item:nth-child(4) { grid-area: 2 / 1; }
    .mz-woo-spec-item:nth-child(5) { grid-area: 3 / 2; }
    
    .mz-woo-plan-title {
        grid-area: 3 / 1;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
    }

    .mz-woo-plan-title h3 {
        font-size: 1.25rem !important;
        font-family: var(--mz-font-bold) !important;
    }

    .mz-woo-spec-icon {
        width: 45px;
        height: 45px;
        border: 1px solid var(--mz-border-color);
        border-radius: 12px;
    }

    .mz-woo-spec-info {
        align-items: center;
        text-align: center;
    }

    .mz-woo-plan-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .mz-woo-plan-action {
        width: 100%;
        order: 1;
    }

    /* Pricing Grid 2x2 */
    .mz-woo-plan-prices {
        order: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 25px;
        direction: ltr;
    }

    .mz-woo-price-item:nth-child(4) { grid-area: 1 / 1; }
    .mz-woo-price-item:nth-child(3) { grid-area: 1 / 2; }
    .mz-woo-price-item:nth-child(2) { grid-area: 2 / 1; }
    .mz-woo-price-item:nth-child(1) { grid-area: 2 / 2; }

    .mz-woo-price-item {
        padding: 0 !important;
    }

    .mz-woo-price-now {
        font-size: 0.9rem;
    }

    .mz-woo-price-label {
        font-size: 0.7rem;
    }

    .mz-woo-price-old {
        font-size: 0.7rem;
    }

    /* Features Stacking */
    .mz-woo-feature-item, .mz-woo-feature-item.mz-reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .mz-woo-feature-content h3 {
        font-size: 1.4rem;
    }

    .mz-woo-feature-content ul li {
        text-align: left;
    }

    .mz-woo-info-grid {
        grid-template-columns: 1fr;
    }

    .mz-woo-seo-grid {
        grid-template-columns: 1fr;
    }

    .mz-woo-seo-feat {
        position: static;
    }
}

/* Mobile - 576px */
@media (max-width: 576px) {
    .mz-woo-hero-content h1 {
        font-size: 1.3rem;
    }
    
    .mz-woo-hero-features {
        grid-template-columns: 1fr;
    }
    
    .mz-woo-hero-feature-item {
        justify-content: center;
    }
}