/* =============================================
   WZN Custom Styles
   ============================================= */

/* Get Started Button */
.wzn-get-started-btn {
    background: linear-gradient(135deg, #0b6b3a, #17ab54) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(23, 171, 84, 0.3);
    transition: all 0.3s ease !important;
}
.wzn-get-started-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(23, 171, 84, 0.4);
    color: #fff !important;
}
.wzn-hero-page .wzn-get-started-btn {
    background: #fff !important;
    color: #17ab54 !important;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}
.wzn-hero-page .wzn-get-started-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
    color: #17ab54 !important;
}
.wzn-hero-page .navbar.fixed .wzn-get-started-btn {
    background: #fff !important;
    color: #17ab54 !important;
}

/* Hero Section */
.wzn-hero-section {
    background: linear-gradient(135deg, #0b6b3a 0%, #17ab54 50%, #1ed760 100%);
    padding-top: 80px;
    width: 100%;
    border-radius: 0 !important;
}

/* Navbar overrides for gradient pages */
.wzn-hero-page .navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.wzn-hero-page .navbar .nav-link { color: #fff !important; }
.wzn-hero-page .navbar .nav-link:hover,
.wzn-hero-page .navbar .nav-link.active { color: #d4fce3 !important; }
.wzn-hero-page .navbar .btn-primary {
    background: #fff !important;
    color: #17ab54 !important;
    border-color: #fff !important;
}
.wzn-hero-page .navbar .hamburger span,
.wzn-hero-page .navbar .hamburger span::before,
.wzn-hero-page .navbar .hamburger span::after { background: #fff; }
.wzn-hero-page .navbar .navbar-brand img {
    content: url("../../images/logo_white.png");
}

/* Fixed/sticky navbar on scroll */
.wzn-hero-page .navbar.fixed {
    background: linear-gradient(135deg, #0b6b3a 0%, #17ab54 50%, #1ed760 100%) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.wzn-hero-page .navbar.fixed .nav-link { color: #fff !important; }
.wzn-hero-page .navbar.fixed .nav-link:hover,
.wzn-hero-page .navbar.fixed .nav-link.active { color: #d4fce3 !important; }
.wzn-hero-page .navbar.fixed .btn-primary {
    background: #fff !important;
    color: #17ab54 !important;
    border-color: #fff !important;
}
.wzn-hero-page .navbar.fixed .hamburger span,
.wzn-hero-page .navbar.fixed .hamburger span::before,
.wzn-hero-page .navbar.fixed .hamburger span::after { background: #fff; }

/* =============================================
   Subscriptions Page
   ============================================= */

.wzn-sub-section { background: #f8faf9; }
.wzn-step-label {
    font-size: 13px;
    font-weight: 700;
    color: #17ab54;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.wzn-step-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

/* Category selector cards */
.wzn-cat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    text-align: left;
    height: 100%;
}
.wzn-cat-card:hover { border-color: #17ab54; background: #f0faf5; }
.wzn-cat-card.active { border-color: #17ab54; background: #f0faf5; }
.wzn-cat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0faf5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wzn-cat-card.active .wzn-cat-icon { background: #17ab54; color: #fff; }
.wzn-cat-icon i { font-size: 22px; color: #17ab54; }
.wzn-cat-card.active .wzn-cat-icon i { color: #fff; }
.wzn-cat-info h5 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin: 0 0 2px 0; }
.wzn-cat-info p { font-size: 13px; color: #6b7280; margin: 0; }
.wzn-cat-check {
    margin-left: auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.wzn-cat-card.active .wzn-cat-check { background: #17ab54; border-color: #17ab54; }
.wzn-cat-check i { font-size: 14px; color: #fff; opacity: 0; transition: opacity 0.2s; }
.wzn-cat-card.active .wzn-cat-check i { opacity: 1; }

/* Plan cards */
.wzn-plan-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.25s ease;
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.wzn-plan-card:hover {
    border-color: #17ab54;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(23, 171, 84, 0.1);
}
.wzn-plan-card.active { border-color: #17ab54; background: #f0faf5; }
.wzn-plan-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wzn-plan-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.wzn-plan-card:hover .wzn-plan-thumb img { transform: scale(1.05); }
.wzn-plan-thumb-placeholder { color: #d1d5db; font-size: 48px; }
.wzn-plan-body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.wzn-plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.wzn-plan-title { font-size: 18px; font-weight: 700; color: #1a1a2e; margin: 0; }
.wzn-plan-day-badge {
    background: #f0faf5;
    color: #17ab54;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.wzn-plan-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}
.wzn-plan-price-row .wzn-plan-price { margin-bottom: 0; }
.wzn-plan-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-left: auto; }
.wzn-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    background: #fff;
    transition: all 0.2s ease;
}
.wzn-plan-badge i { color: #17ab54; font-size: 16px; }
.wzn-plan-card:hover .wzn-plan-badge { border-color: #c6f0d5; background: #f0faf5; }
.wzn-plan-price { margin-bottom: 16px; }
.wzn-plan-price .amount { font-size: 28px; font-weight: 800; color: #17ab54; }
.wzn-plan-price .currency { font-size: 14px; font-weight: 600; color: #17ab54; }
.wzn-plan-price .period { font-size: 13px; color: #9ca3af; }
.wzn-plan-divider { height: 1px; background: #e5e7eb; margin: 0 0 16px 0; }
.wzn-plan-features { list-style: none; padding: 0; margin: 0; }
.wzn-plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: #374151;
}
.wzn-plan-features li i { color: #17ab54; font-size: 18px; flex-shrink: 0; }
.wzn-plan-desc { font-size: 13px; color: #6b7280; margin-top: 12px; }

/* Tab content transition */
.wzn-tab-content { display: none; animation: wznFadeIn 0.3s ease; }
.wzn-tab-content.active { display: block; }
@keyframes wznFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Inquiry Modal */
.wzn-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.wzn-modal-overlay.show { display: flex; animation: wznFadeIn 0.2s ease; }
.wzn-modal {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: wznSlideUp 0.3s ease;
}
@keyframes wznSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.wzn-modal-icon { margin-bottom: 16px; }
.wzn-modal-icon i { font-size: 48px; color: #17ab54; }
.wzn-modal-title { font-size: 20px; font-weight: 700; color: #1a1a2e; margin: 0 0 8px 0; }
.wzn-modal-text { font-size: 15px; color: #6b7280; margin: 0 0 24px 0; }
.wzn-modal-text strong { color: #17ab54; }
.wzn-modal-actions { display: flex; gap: 12px; justify-content: center; }
.wzn-modal-btn {
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}
.wzn-modal-btn-cancel { background: #f3f4f6; color: #374151; }
.wzn-modal-btn-cancel:hover { background: #e5e7eb; }
.wzn-modal-btn-confirm {
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.wzn-modal-btn-confirm:hover { background: #1fb855; }
.wzn-modal-btn-confirm i { font-size: 18px; }

/* =============================================
   Account Pages
   ============================================= */

.wzn-account-section { background: #f8faf9; }

/* Sidebar */
.wzn-account-sidebar {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}
.wzn-account-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px;
    background: linear-gradient(135deg, #0b6b3a, #17ab54);
}
.wzn-account-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wzn-account-user h5 { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 2px 0; }
.wzn-account-user p { font-size: 13px; color: rgba(255, 255, 255, 0.8); margin: 0; }
.wzn-account-nav { display: flex; flex-direction: column; padding: 8px; }
.wzn-account-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
    text-decoration: none;
}
.wzn-account-nav-item:hover { background: #f0faf5; color: #17ab54; }
.wzn-account-nav-item.active { background: #f0faf5; color: #17ab54; font-weight: 600; }
.wzn-account-nav-item i { font-size: 20px; width: 24px; text-align: center; }
.wzn-account-logout { color: #ef4444; margin-top: 4px; border-top: 1px solid #f3f4f6; padding-top: 12px; }
.wzn-account-logout:hover { background: #fef2f2; color: #dc2626; }

/* Account content card */
.wzn-account-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
}
.wzn-account-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}
.wzn-account-card .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}
.wzn-account-card .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 15px;
    transition: all 0.25s ease;
}
.wzn-account-card .form-control:focus {
    border-color: #17ab54;
    box-shadow: 0 0 0 4px rgba(23, 171, 84, 0.1);
}
.wzn-account-btn {
    background: linear-gradient(135deg, #0b6b3a, #17ab54) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 28px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #fff !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(23, 171, 84, 0.3);
}
.wzn-account-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(23, 171, 84, 0.4);
}

/* Dashboard quick-access cards */
.wzn-dash-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.25s ease;
    text-decoration: none;
    display: block;
    height: 100%;
}
.wzn-dash-card:hover {
    border-color: #17ab54;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(23, 171, 84, 0.1);
}
.wzn-dash-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f0faf5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.wzn-dash-icon i { font-size: 24px; color: #17ab54; }
.wzn-dash-card h4 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.wzn-dash-card p { font-size: 14px; color: #6b7280; margin: 0; line-height: 1.5; }
.wzn-dash-arrow {
    color: #17ab54;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
}
.wzn-welcome-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
}
.wzn-welcome-card h3 { font-size: 22px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.wzn-welcome-card p { font-size: 15px; color: #6b7280; margin: 0; }

/* Address cards */
.wzn-address-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    transition: all 0.25s ease;
}
.wzn-address-card:hover { border-color: #17ab54; }
.wzn-address-card h5 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.wzn-address-card p { font-size: 14px; color: #6b7280; margin-bottom: 4px; }
.wzn-address-card .wzn-address-note {
    font-size: 13px; color: #9ca3af; margin-top: 8px;
    word-wrap: break-word; white-space: normal; overflow-wrap: break-word;
}

/* Subscription table */
.wzn-table-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}
.wzn-table-card table { width: 100%; min-width: 700px; }
.wzn-table-card thead tr { background: #f8faf9; }
.wzn-table-card thead th {
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.wzn-table-card tbody td {
    padding: 14px 20px;
    font-size: 14px;
    color: #374151;
    border-top: 1px solid #f3f4f6;
}
.wzn-table-card tbody tr:hover { background: #f0faf5; }

/* =============================================
   Floating Buttons (WhatsApp + Get Started)
   ============================================= */

.floating_buttons {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating_buttons > a,
.floating_buttons > .progress-wrap {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.floating_whatsapp_icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
    animation: floatingPulse 2s infinite;
}

@keyframes floatingPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating_book_btn {
    padding: 12px 24px !important;
    font-size: 14px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    height: 46px;
    display: flex !important;
    align-items: center;
}

.floating_buttons .progress-wrap {
    position: static !important;
    width: 46px !important;
    height: 46px !important;
    margin: 0 !important;
    bottom: auto !important;
    right: auto !important;
}

@media (max-width: 768px) {
    .floating_buttons {
        left: 10%;
        right: 10%;
        width: 80%;
        justify-content: center;
    }

    .floating_book_btn {
        flex: 1;
    }

    .floating_buttons .progress-wrap {
        display: flex !important;
    }
}

/* =============================================
   Home Page
   ============================================= */

/* Hero */
.wzn-home-hero {
    padding-top: 100px;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Decorative background shapes */
.wzn-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: #fff;
}
.wzn-hero-shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    animation: wzn-float 8s ease-in-out infinite;
}
.wzn-hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px;
    animation: wzn-float 6s ease-in-out infinite reverse;
}
@keyframes wzn-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Hero title */
.wzn-hero-title {
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.wzn-hero-highlight {
    position: relative;
    display: inline-block;
}
.wzn-hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    z-index: -1;
}

/* Hero buttons */
.wzn-hero-btn-primary {
    background: #fff !important;
    color: #17ab54 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease !important;
}
.wzn-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.wzn-hero-btn-outline {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s ease !important;
}
.wzn-hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #fff !important;
    transform: translateY(-2px);
}

/* Hero image grid */
.wzn-hero-grid-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: #fff;
    transition: all 0.4s ease;
}
.wzn-hero-grid-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}
.wzn-hero-grid-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.wzn-hero-grid-img:hover img {
    transform: scale(1.06);
}
.wzn-hero-grid-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    padding: 12px 10px;
    margin: 0;
}

/* Hero badge */
.wzn-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero trust indicators */
.wzn-hero-trust {
    padding-top: 4px;
}

.wzn-section-badge {
    display: inline-block;
    background: #f0faf5;
    color: #17ab54;
    border: 1px solid #17ab54;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 30px;
}

/* Stats Bar */
.wzn-stats-bar {
    background: #fff;
    padding: 40px 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}
.wzn-stat-item { padding: 10px; }
.wzn-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #17ab54;
    margin-bottom: 2px;
}
.wzn-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin: 0;
}

/* Meal Cards */
.wzn-meal-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}
.wzn-meal-card:hover {
    border-color: #17ab54;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(23, 171, 84, 0.12);
}
.wzn-meal-img {
    height: 200px;
    overflow: hidden;
}
.wzn-meal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.wzn-meal-card:hover .wzn-meal-img img {
    transform: scale(1.08);
}
.wzn-meal-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    padding: 14px 16px;
    margin: 0;
    text-align: center;
}

/* Why Choose Us Cards */
.wzn-why-card {
    background: #f8faf9;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}
.wzn-why-card:hover {
    border-color: #17ab54;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(23, 171, 84, 0.1);
    background: #fff;
}
.wzn-why-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0b6b3a, #17ab54);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}
.wzn-why-card:hover .wzn-why-icon {
    transform: scale(1.1);
}
.wzn-why-icon i {
    font-size: 26px;
    color: #fff;
}

/* Step Cards */
.wzn-step-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    height: 100%;
    transition: all 0.3s ease;
}
.wzn-step-card:hover {
    border-color: #17ab54;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(23, 171, 84, 0.1);
}
.wzn-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b6b3a, #17ab54);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Menu Item Detail */
.wzn-detail-img-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}
.wzn-detail-main-img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: block;
    background: #f8faf9;
}
.wzn-detail-thumb {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}
.wzn-detail-thumb:hover {
    border-color: #17ab54;
}
.wzn-detail-thumb img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
}

/* Landing Header */
.wzn-landing-header {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}
.wzn-landing-nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
}
.wzn-landing-nav-link:hover {
    color: #17ab54;
}

/* Landing Page */
.wzn-landing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px 16px;
    text-decoration: none;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}
.wzn-landing-card:hover {
    border-color: #17ab54;
    box-shadow: 0 8px 24px rgba(23, 171, 84, 0.1);
    transform: translateY(-3px);
    color: #17ab54;
}
.wzn-landing-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f0faf5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wzn-landing-icon i {
    font-size: 24px;
    color: #17ab54;
}
.wzn-landing-section-card {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px 32px;
}
.wzn-landing-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px 16px;
    text-decoration: none;
    color: #1a1a2e;
    font-size: 14px;
    transition: all 0.3s ease;
    height: 100%;
}
.wzn-landing-contact-card:hover {
    border-color: #17ab54;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(23, 171, 84, 0.1);
    color: #1a1a2e;
}
.wzn-landing-contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b6b3a, #17ab54);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.wzn-landing-contact-icon i {
    font-size: 22px;
    color: #fff;
}
.wzn-landing-icon-sm {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f0faf5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wzn-landing-icon-sm i {
    font-size: 20px;
    color: #17ab54;
}
.wzn-landing-social {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #17ab54;
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.wzn-landing-social:hover {
    background: linear-gradient(135deg, #0b6b3a, #17ab54);
    border-color: #17ab54;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(23, 171, 84, 0.25);
}
.wzn-landing-app-card {
    background: linear-gradient(135deg, #0b6b3a 0%, #17ab54 50%, #1ed760 100%);
    border-radius: 20px;
    padding: 36px 28px;
}
.wzn-landing-store-btn {
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: inline-block;
    transition: all 0.3s ease;
    overflow: hidden;
}
.wzn-landing-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.wzn-landing-store-btn img {
    display: block;
}

/* Landing Delivery Buttons */
.wzn-landing-delivery-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
}
.wzn-landing-delivery-btn:hover {
    transform: translateY(-4px);
}
.wzn-landing-delivery-btn:hover .wzn-delivery-logo {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.wzn-delivery-logo {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.wzn-delivery-name {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    transition: color 0.2s ease;
}
.wzn-landing-delivery-btn:hover .wzn-delivery-name {
    color: #17ab54;
}

/* Contact Items */
.wzn-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.wzn-contact-item:last-of-type { border-bottom: none; }
.wzn-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f0faf5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wzn-contact-icon i {
    font-size: 20px;
    color: #17ab54;
}

/* Consultation Cards */
.wzn-consult-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}
.wzn-consult-card:hover {
    border-color: #17ab54;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(23, 171, 84, 0.1);
}
.wzn-consult-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.wzn-consult-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.wzn-consult-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}
.wzn-consult-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 24px;
}
.wzn-consult-meta i {
    color: #17ab54;
    margin-right: 4px;
}
.wzn-consult-sep {
    color: #e5e7eb;
}
.wzn-consult-btn {
    background: linear-gradient(135deg, #0b6b3a, #17ab54) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(23, 171, 84, 0.3);
}
.wzn-consult-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 171, 84, 0.4);
}
.wzn-consult-btn-outline {
    background: #fff !important;
    color: #17ab54 !important;
    border: 2px solid #17ab54 !important;
    box-shadow: none;
}
.wzn-consult-btn-outline:hover {
    background: #f0faf5 !important;
    box-shadow: 0 6px 20px rgba(23, 171, 84, 0.15);
}

/* CTA Section */
.wzn-cta-section {
    background: linear-gradient(135deg, #0b6b3a 0%, #17ab54 50%, #1ed760 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .wzn-home-hero { min-height: auto; padding-top: 80px; }
    .wzn-home-hero .wzn-hero-title { font-size: 2rem; }
    .wzn-hero-shape-1 { width: 250px; height: 250px; }
    .wzn-hero-shape-2 { width: 150px; height: 150px; }
    .wzn-hero-grid-img img { height: 160px; }
    .wzn-hero-grid-title { font-size: 14px; padding: 8px; }
    .wzn-hero-trust { gap: 8px !important; }
    .wzn-stat-number { font-size: 24px; }
    .wzn-meal-img { height: 150px; }
    .wzn-meal-name { font-size: 13px; padding: 10px 12px; }
}
