/* ============================= */
/* GLOBAL SECTION */
/* ============================= */

:root {
    --color-bg-dark: #0f172a;
    --color-header-bg: #111827;
    --color-text-light: #e2e8f0;
    --color-text-muted: #94a3b8;
    --color-text-subtitle: #cbd5e1;
    --color-accent: #a855f7;
    --color-accent-alt: #3b82f6;
    --color-highlight: #C6F44F;
    --color-star: #facc15;
    --color-monthly-bg: #16a34a;
}

.help-block {
    color: #ef4444;
    font-size: 13px;
    margin-bottom: 5px;
}

.odauth2-error {
    text-align: justify;
    color: #ef4444;
    font-size: 13px;
    margin-bottom: 10px;
}

.section {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

.section h1 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(90deg, #C6F44F, #d9fb54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-align: center;
}

.section p.subtitle {
    color: var(--color-text-subtitle);
    font-size: 18px;
    margin-bottom: 60px;
    text-align: center;
}


/* ============================= */
/* PRICING TABLE CARD */
/* ============================= */

.pricing-card {
    background: var(--color-bg-dark);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* SCROLL WRAPPER */
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Scroll bar styling */
.table-container::-webkit-scrollbar {
    height: 6px;
}

.table-container::-webkit-scrollbar-thumb {
    background: var(--color-highlight);
    border-radius: 10px;
}

table {
    width: 100%;
    min-width: 750px;
    border-collapse: collapse;
    color: white;
    text-align: center;
}

th,
td {
    padding: 18px 15px;
    font-size: 14px;
}

/* Header */
th {
    font-weight: 600;
    background: var(--color-header-bg);
}

th:nth-child(2) {
    color: var(--color-highlight);
}

/* First column */
td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* Highlight OpenDukan column */
td:nth-child(2) {
    background: rgba(198, 244, 79, 0.08);
    color: var(--color-highlight);
    font-weight: 600;
}

/* Row borders */
tr:not(:last-child) td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Monthly highlight row */
.monthly td {
    background: var(--color-monthly-bg);
    color: white !important;
    font-weight: 600;
}


/* ============================= */
/* TESTIMONIAL SECTION */
/* ============================= */

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    width: 320px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border: 1px solid rgba(218, 253, 85, 0.7);
    box-shadow: 0 0 20px rgba(218, 253, 85, 0.7);
}

.stars {
    color: var(--color-star);
    margin-bottom: 15px;
    font-size: 18px;
}

.review {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-accent-alt);
}

.profile h4 {
    color: #d2d8df;
    font-size: 16px;
    font-weight: 600;
}

.profile span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.mb-50 {
    margin-bottom: 50px;
}


/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media(max-width:768px) {

    .pricing-card {
        padding: 20px;
    }

    th,
    td {
        padding: 14px 10px;
        font-size: 13px;
    }

    .section h1 {
        font-size: 30px;
    }

}


/* ===============================
   Premium Comparison Section
   Prefix: odcmp2-
=============================== */

/* Section */

.odcmp2-section {
    color: #ffffff;
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

/* Title */

.odcmp2-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
}

.odcmp2-title span {
    color: #C6F44F;
}

/* Card */

.odcmp2-card {
    background: #111827;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Table */

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

.odcmp2-table th,
.odcmp2-table td {
    padding: 18px 20px;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Header */

.odcmp2-table th {
    font-weight: 700;
    background: #1f2937;
}

/* Feature column */

.odcmp2-feature {
    text-align: left;
    font-weight: 600;
    color: #94a3b8;
}

/* Highlight OpenDukan */

.odcmp2-open {
    background: rgba(198, 244, 79, 0.08);
    color: #C6F44F;
    font-weight: 700;
}

/* Other columns */

.odcmp2-dukaan {
    background: rgba(59, 130, 246, 0.08);
}

.odcmp2-woo {
    background: rgba(239, 68, 68, 0.08);
}

/* Highlight row */

.odcmp2-highlight td {
    background: #16a34a;
    font-weight: 700;
}

/* Hover row effect */

.odcmp2-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Winner badge */

.odcmp2-badge {
    background: #C6F44F;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 6px;
}

/* Stars */

.odcmp2-star {
    color: #facc15;
}

/* ===============================
   Mobile Layout
=============================== */
@media(max-width:768px) {
    .odcmp2-card {
        background: #111827;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .odcmp2-table {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        /* border-collapse: collapse; */
    }

    .odcmp2-table th,
    .odcmp2-table td {
        padding: 10px 5px;
        font-size: 12px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        width: 10px;
        /* padding: 0; */
        max-width: 10px;
        min-width: 10px;
        font-weight: 400 !important;
    }

    .odcmp2-table th {
        font-weight: 700 !important;
        padding: 20px 5px !important;
    }

    .odcmp2-table th {
        position: relative;
    }

    .odcmp2-table th .odcmp2-badge {
        position: absolute;
        bottom: -10px;
        left: 10px;
        display: none;
    }
}

/* ===============================
   Testimonials Section
   Prefix: odtest-
=============================== */

/* body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: white;
} */

/* Section */

.odtest-section {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

/* Heading */

.odtest-heading {
    text-align: center;
    margin-bottom: 60px;
}

.odtest-title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
}

.odtest-title span {
    color: #C6F44F;
}

.odtest-sub {
    color: #94a3b8;
    margin-top: 10px;
}

/* Grid */

.odtest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Card */

.odtest-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.3s;
    position: relative;
}

.odtest-card:hover {
    transform: translateY(-6px);
    border-color: #C6F44F;
}

/* Quote icon */

.odtest-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    opacity: 0.1;
}

/* Stars */

.odtest-stars {
    color: #facc15;
    font-size: 14px;
    margin-bottom: 12px;
}

/* Review */

.odtest-text {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 18px;
}

/* Profile */

.odtest-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.odtest-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.odtest-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.odtest-role {
    font-size: 12px;
    color: #94a3b8;
}

/* Stats */

.odtest-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.odtest-stat {
    background: #111827;
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.odtest-number {
    font-size: 26px;
    font-weight: 800;
    color: #C6F44F;
}

.odtest-label {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 6px;
}

/* Mobile */

@media(max-width:768px) {

    .odtest-title {
        font-size: 30px;
    }

    .odtest-section {
        padding: 60px 18px;
    }

}




/* Section */
.od-section {
    padding: 100px 20px;
    /* background:linear-gradient(135deg,#0b1120,#0f172a); */
}

.od-container {
    max-width: 1200px;
    margin: auto;
}

/* Badge */
.od-badge {
    display: inline-block;
    background: #C6F44F;
    color: #0b1120;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 25px;
}

/* Heading */
.od-heading {
    color: #ffffff;
    ;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.od-heading span {
    color: #C6F44F;
}

/* Subtitle */
.od-subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin-bottom: 60px;
}

/* Grid Layout */
.od-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Feature Cards */
.od-cards {
    display: grid;
    gap: 25px;
}

.od-card {
    background: #111827;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
    position: relative;
}

.od-card:hover {
    transform: translateY(-8px);
    border: 1px solid #C6F44F;
    box-shadow: 0 0 30px rgba(198, 244, 79, 0.2);
}

.od-icon {
    width: 45px;
    height: 45px;
    background: rgba(198, 244, 79, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 20px;
    color: #C6F44F;
}

.od-card h3 {
    color: #d2d8df;
    font-size: 18px;
    margin-bottom: 10px;
}

.od-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Responsive */
@media(max-width:900px) {
    .od-grid {
        grid-template-columns: 1fr;
    }

    .od-heading {
        font-size: 32px;
    }
}


/* Section */
.odc-section {
    padding: 100px 20px;
    /* background:linear-gradient(135deg,#0b1120,#111827); */
}

.odc-container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.odc-header {
    text-align: center;
    margin-bottom: 70px;
}

.odc-header h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
}

.odc-header span {
    color: #C6F44F;
}

.odc-header p {
    color: #94a3b8;
    margin-top: 15px;
    font-size: 17px;
}

/* Layout */
.odc-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

/* Timeline Feature List */
.odc-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.odc-feature::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 40px;
    width: 2px;
    height: 100%;
    background: rgba(198, 244, 79, 0.2);
}

.odc-icon {
    min-width: 30px;
    height: 30px;
    background: #C6F44F;
    color: #0b1120;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-top: 5px;
}

.odc-content h3 {
    color: #d2d8df;
    margin: 0;
    font-size: 18px;
    margin-bottom: 8px;
}

.odc-content p {
    margin: 0;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

/* CTA Panel */
.odc-cta {
    background: #111827;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 40px;
    height: fit-content;
}

.odc-cta h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 15px;
}

.odc-cta p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 30px;
}

.odc-btn {
    display: inline-block;
    background: #C6F44F;
    color: #0b1120;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.odc-btn:hover {
    background: #a3e635;
}

/* Responsive */
@media(max-width:900px) {

    .odc-layout {
        grid-template-columns: 1fr;
    }

    .odc-cta {
        position: relative;
        top: 0;
    }

    .odc-header h2 {
        font-size: 30px;
    }
}


.odf-section {
    padding: 110px 20px;
    /* background:linear-gradient(135deg,#0b1120,#111827); */
}

.odf-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.odf-header {
    text-align: center;
    margin-bottom: 80px;
}

.odf-header h2 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
}

.odf-highlight {
    color: #C6F44F;
}

.odf-subtitle {
    margin-top: 20px;
    color: #94a3b8;
    font-size: 18px;
}

/* FEATURE GRID */
.odf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* FEATURE CARD */
.odf-card {
    background: #111827;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.odf-card:hover {
    transform: translateY(-8px);
    border: 1px solid #C6F44F;
    box-shadow: 0 0 35px rgba(198, 244, 79, 0.2);
}

/* ICON */
.odf-icon {
    width: 45px;
    height: 45px;
    background: rgba(198, 244, 79, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #C6F44F;
    margin-bottom: 20px;
}

.odf-card h3 {
    color: #d2d8df;
    font-size: 20px;
    margin-bottom: 12px;
}

.odf-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.odf-card ul li {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.odf-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #C6F44F;
    font-size: 12px;
}

/* TRUST BLOCK */
.odf-trust {
    text-align: center;
    margin-top: 90px;
}

.odf-trust h4 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 15px;
}

.odf-trust span {
    color: #C6F44F;
}

.odf-trust p {
    color: #94a3b8;
    max-width: 700px;
    margin: auto;
    font-size: 15px;
    margin-bottom: 35px;
}

/* BUTTON */
.odf-btn {
    display: inline-block;
    background: #C6F44F;
    color: #0b1120;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.odf-btn:hover {
    background: #a3e635;
}

/* RESPONSIVE */
@media(max-width:900px) {

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

    .odf-header h2 {
        font-size: 32px;
    }
}


.odu-section {
    padding: 110px 20px;
    /* background:linear-gradient(135deg,#0b1120,#111827); */
}

.odu-container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.odu-header {
    text-align: center;
    margin-bottom: 80px;
}

.odu-header h2 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 800;
}

.odu-highlight {
    color: #C6F44F;
}

.odu-subtitle {
    color: #94a3b8;
    margin-top: 15px;
    font-size: 17px;
}

/* Layout */
.odu-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Big Feature Card */
.odu-main-card {
    background: #111827;
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.odu-main-card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(198, 244, 79, 0.15);
    top: -80px;
    right: -80px;
    border-radius: 50%;
}

.odu-main-card h3 {
    color: #d2d8df;
    font-size: 26px;
    margin-bottom: 20px;
}

.odu-main-card p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 30px;
}

.odu-stats {
    display: flex;
    gap: 40px;
}

.odu-stat {
    text-align: center;
}

.odu-stat h4 {
    color: #C6F44F;
    font-size: 24px;
    margin-bottom: 5px;
}

.odu-stat span {
    font-size: 13px;
    color: #94a3b8;
}

/* Feature List */
.odu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.odu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #111827;
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.odu-item:hover {
    border: 1px solid #C6F44F;
    box-shadow: 0 0 25px rgba(198, 244, 79, 0.15);
}

.odu-icon {
    width: 35px;
    height: 35px;
    background: rgba(198, 244, 79, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C6F44F;
    font-size: 16px;
}

.odu-item span {
    color: #ffffff;
    font-size: 15px;
}

/* CTA */
.odu-cta {
    margin-top: 90px;
    text-align: center;
}

.odu-btn {
    display: inline-block;
    background: #C6F44F;
    color: #0b1120;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.odu-btn:hover {
    background: #a3e635;
}

/* Responsive */
@media(max-width:950px) {

    .odu-layout {
        grid-template-columns: 1fr;
    }

    .odu-header h2 {
        font-size: 32px;
    }

}

.odb-section {
    padding: 110px 20px;
    /* background:linear-gradient(135deg,#0b1120,#111827); */
}

.odb-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.odb-header {
    text-align: center;
    margin-bottom: 90px;
}

.odb-header h2 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 800;
}

.odb-highlight {
    color: #C6F44F;
}

.odb-subtitle {
    margin-top: 15px;
    color: #94a3b8;
    font-size: 17px;
}

/* LAYOUT */
.odb-layout {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 30px;
    align-items: center;
}

/* Divider */
.odb-divider {
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #444, #C6F44F, #444);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(198, 244, 79, 0.4);
}

/* Card */
.odb-card {
    background: #111827;
    padding: 45px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.odb-card h3 {
    color: #d2d8df;
    font-size: 22px;
    margin-bottom: 25px;
}

/* Stat Row */
.odb-row {
    margin-bottom: 25px;
}

.odb-row strong {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #94a3b8;
}

.odb-value {
    font-size: 24px;
    font-weight: 700;
}

/* Colors */
.odb-bad {
    color: #ff6b6b;
}

.odb-good {
    color: #C6F44F;
}

/* CTA */
.odb-cta {
    text-align: center;
    margin-top: 100px;
}

.odb-btn {
    display: inline-block;
    background: #C6F44F;
    color: #0b1120;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.odb-btn:hover {
    background: #a3e635;
}

/* Responsive */
@media(max-width:950px) {

    .odb-layout {
        grid-template-columns: 1fr;
    }

    .odb-divider {
        display: none;
    }

    .odb-header h2 {
        font-size: 30px;
    }
}

.odpp-section {
    padding: 100px 20px;
    text-align: center;
}

.odpp-header h2 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
}

.odpp-highlight {
    background: linear-gradient(90deg, #C6F44F, #9ef01a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.odpp-subtitle {
    color: #b0b3c6;
    margin-top: 15px;
}

/* Toggle */
.odpp-toggle {
    margin: 40px auto 80px;
    width: 220px;
    height: 50px;
    background: #1b1325;
    border-radius: 50px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.odpp-slider {
    position: absolute;
    width: 110px;
    height: 40px;
    background: linear-gradient(90deg, #C6F44F, #9ef01a);
    border-radius: 50px;
    left: 105px;
    /* Yearly active */
    top: 5px;
    transition: 0.3s;
}

.odpp-toggle span {
    width: 50%;
    z-index: 2;
    font-weight: 600;
    color: #aaa;
}

.odpp-active {
    color: #000 !important;
}

/* Cards */

.odpp-plans {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top:50px;
}

.odpp-card {
    background: #140f1d;
    width: 330px;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    position: relative;
}

.odpp-card:hover {
    transform: translateY(-10px);
    border: 1px solid #C6F44F;
    box-shadow: 0 0 40px rgba(198, 244, 79, 0.3);
}

.odpp-card h3 {
    color: #d2d8df;
    margin-bottom: 15px;
    font-size: 18px;
}

.odpp-price {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.odpp-duration {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 25px;
}

.odpp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.odpp-features li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
}

.odpp-features li::before {
    content: "✔ ";
    color: #C6F44F;
}

/* Highlighted Card */
.odpp-featured {
    background: linear-gradient(180deg, #4a005f, #2b0036);
    border: 1px solid #ffb703;
}

.odpp-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ffb703, #fb8500);
    padding: 6px 15px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* Best Value */
.odpp-best {
    background: linear-gradient(180deg, #4a2c00, #2b1a00);
    border: 1px solid #9b5de5;
}

.odpp-best-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #9b5de5, #7209b7);
    padding: 6px 15px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* Button */
.odpp-btn {
    display: block;
    background: linear-gradient(90deg, #C6F44F, #9ef01a);
    color: #000;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.odpp-footer {
    margin-top: 60px;
    font-size: 14px;
    color: #aaa;
}

@media(max-width:1000px) {
    .odpp-plans {
        flex-direction: column;
        align-items: center;
    }
}

.odres2-section {
    padding: 100px 20px;
}

.odres2-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.odres2-header {
    margin-bottom: 60px;
}

.odres2-header h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
}

.odres2-highlight {
    background: linear-gradient(90deg, #C6F44F, #9ef01a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.odres2-subtitle {
    color: #94a3b8;
    margin-top: 10px;
}

/* Stats Grid */

.odres2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* Card */

.odres2-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 20px;
    border-radius: 20px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.odres2-card:hover {
    transform: translateY(-8px);
    border: 1px solid #C6F44F;
    box-shadow: 0 0 40px rgba(198, 244, 79, 0.3);
}

/* Decorative Glow */

.odres2-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(198, 244, 79, 0.15);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    filter: blur(40px);
}

/* Number */

.odres2-number {
    font-size: 40px;
    font-weight: 800;
    color: #C6F44F;
    margin-bottom: 10px;
}

.odres2-label {
    color: #cbd5e1;
    font-size: 16px;
}

@media(max-width:768px) {
    .odres2-header h2 {
        font-size: 28px;
    }
}



.odfaq2-section {
    padding: 100px 20px;
    max-width: 900px;
    margin: auto;
}

.odfaq2-header {
    text-align: center;
    margin-bottom: 60px;
}

.odfaq2-header h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
}

.odfaq2-highlight {
    background: linear-gradient(90deg, #C6F44F, #9ef01a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.odfaq2-subtitle {
    color: #94a3b8;
    margin-top: 10px;
}

/* Accordion */

.odfaq2-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.odfaq2-item:hover {
    border: 1px solid #C6F44F;
}

.odfaq2-question {
    color: #d2d8df;
    padding: 22px 25px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.odfaq2-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #C6F44F;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: 0.3s;
}

.odfaq2-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
}

.odfaq2-answer p {
    margin-bottom: 20px;
}

/* Active */

.odfaq2-item.active .odfaq2-answer {
    max-height: 200px;
}

.odfaq2-item.active .odfaq2-icon {
    transform: rotate(45deg);
}

/* CTA Box */

.odfaq2-cta {
    margin-top: 80px;
    background: linear-gradient(135deg, #C6F44F, #84cc16);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: #000;
}

.odfaq2-cta h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.odfaq2-cta p {
    margin-bottom: 25px;
}

.odfaq2-btn {
    background: #000;
    color: #C6F44F;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

@media(max-width:768px) {
    .odfaq2-header h2 {
        font-size: 30px;
    }
}


/*Start signup page css*/

.odauth2-wrapper {
    margin: 0;
    font-family: 'Inter', sans-serif;
    /* background:radial-gradient(circle at top,#0f172a,#020617); */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: white;
    padding: 40px 20px;
}

.odauth2-box {
    width: 420px;
    max-width: 95%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 60px rgba(198, 244, 79, 0.15);
    text-align: center;
}

.odauth2-box h2 {
    color: white;
    margin-bottom: 10px;
    font-weight: 800;
}

.odauth2-highlight {
    color: #C6F44F;
}

.odauth2-sub {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Inputs */

.odauth2-input {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 12px;
    border: none;
    background: #1f2937;
    color: white;
    outline: none;
}

.odauth2-input:focus {
    border: 1px solid #C6F44F;
}

/* Button */

.odauth2-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #C6F44F;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.odauth2-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(198, 244, 79, 0.3);
}

/* OTP */

.odauth2-otp {
    display: none;
}

.odauth2-otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.odauth2-otp-inputs input {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border-radius: 10px;
    border: none;
    background: #1f2937;
    color: white;
}

.odauth2-otp-inputs input:focus {
    border: 1px solid #C6F44F;
    outline: none;
}

.odauth2-small {
    margin-top: 15px;
    font-size: 13px;
    color: #94a3b8;
    cursor: pointer;
}

.odlogin-wrapper {
    font-family: 'Inter', sans-serif;
    /* background:radial-gradient(circle at top,#0f172a,#020617); */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    color: white;
}

/* Card */

.odlogin-card {
    width: 420px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 60px rgba(198, 244, 79, 0.15);
}

.odlogin-logo {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
}

.odlogin-logo span {
    color: #C6F44F;
}

.odlogin-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.odlogin-subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 30px;
}

/* Inputs */

.odlogin-input {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 12px;
    border: none;
    background: #1f2937;
    color: white;
    outline: none;
}

.odlogin-input:focus {
    border: 1px solid #C6F44F;
}

/* Remember + Forgot */

.odlogin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 20px;
    color: #94a3b8;
}

.odlogin-row a {
    color: #C6F44F;
    text-decoration: none;
}

/* Button */

.odlogin-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #C6F44F;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.odlogin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(198, 244, 79, 0.3);
}

/* Footer */

.odlogin-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #94a3b8;
}

.odlogin-footer a {
    color: #C6F44F;
    text-decoration: none;
    font-weight: 600;
}

@media(max-width:480px) {
    .odlogin-card {
        padding: 35px;
    }

    .odauth2-box {
        padding: 20px;
    }

    .odforgot-card {
        padding: 20px;
    }
}


.odforgot-wrapper {
    font-family: 'Inter', sans-serif;
    /* background:radial-gradient(circle at top,#0f172a,#020617); */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    color: white;
}

.odforgot-card {
    width: 420px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 60px rgba(198, 244, 79, 0.15);
    text-align: center;
}

.odforgot-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.odforgot-logo span {
    color: #C6F44F;
}

.odforgot-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.odforgot-sub {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 25px;
}

/* Inputs */

.odforgot-input {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 12px;
    border: none;
    background: #1f2937;
    color: white;
    outline: none;
}

.odforgot-input:focus {
    border: 1px solid #C6F44F;
}

/* OTP */

.odforgot-otp-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.odforgot-otp-box input {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border-radius: 10px;
    border: none;
    background: #1f2937;
    color: white;
}

.odforgot-otp-box input:focus {
    border: 1px solid #C6F44F;
    outline: none;
}

/* Button */

.odforgot-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #C6F44F;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.odforgot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(198, 244, 79, 0.3);
}

.odforgot-step {
    display: none;
}

.odforgot-step.active {
    display: block;
}

.odforgot-small {
    font-size: 13px;
    margin-top: 15px;
    color: #94a3b8;
    cursor: pointer;
}


.odsuccess-wrapper {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #0f172a, #020617);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    color: white;
}

.odsuccess-card {
    width: 500px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 80px rgba(198, 244, 79, 0.15);
    position: relative;
    overflow: hidden;
}

/* Glow effect */

.odsuccess-card::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(198, 244, 79, 0.15);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    filter: blur(60px);
}

/* Success Circle */

.odsuccess-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #C6F44F;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
    animation: odsuccessPop 0.6s ease;
}

@keyframes odsuccessPop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Text */

.odsuccess-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

.odsuccess-sub {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 25px;
}

.odsuccess-url {
    background: #1f2937;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 30px;
    color: #C6F44F;
}

/* Button */

.odsuccess-btn {
    display: inline-block;
    background: #C6F44F;
    color: #000;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.odsuccess-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(198, 244, 79, 0.3);
}

/* Secondary Link */

.odsuccess-link {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
}

.odsuccess-link:hover {
    color: #C6F44F;
}


.odsetup-wrapper {
    font-family: 'Inter', sans-serif;
    /* background:radial-gradient(circle at top,#0f172a,#020617); */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    color: white;
}

.odsetup-card {
    width: 700px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 80px rgba(198, 244, 79, 0.15);
}

/* Progress */

.odsetup-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.odsetup-step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.odsetup-step-indicator.active {
    background: #C6F44F;
    color: #000;
    font-weight: 700;
}

/* Step Content */

.odsetup-step {
    display: none;
}

.odsetup-step.active {
    display: block;
}

.odsetup-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Inputs */

.odsetup-input {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 12px;
    border: none;
    background: #1f2937;
    color: white;
}

.odsetup-input:focus {
    border: 1px solid #C6F44F;
    outline: none;
}

/* URL Preview */

.odsetup-url-preview {
    background: #111827;
    padding: 12px;
    border-radius: 12px;
    color: #C6F44F;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Category Grid */

.odsetup-categories {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); */
    gap: 15px;
    margin-bottom: 20px;
}

.odsetup-category {
    background: #1f2937;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.odsetup-category:hover,
.odsetup-category.active {
    background: #C6F44F;
    color: #000;
}

/* Buttons */

.odsetup-btn {
    padding: 12px 22px;
    border-radius: 12px;
    border: none;
    background: #C6F44F;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
}

.odsetup-btn-secondary {
    background: #374151;
    color: white;
    margin-right: 10px;
}

/* Logo Preview */

.odsetup-logo-preview {
    margin-bottom: 15px;
}

.odsetup-logo-preview img {
    max-width: 100px;
    border-radius: 10px;
}

/* =====================================
   OpenDukan Free Trial Activation
   Prefix: odtrial-
===================================== */

.odtrial-wrapper {
    font-family: 'Inter', sans-serif;
    /* background:radial-gradient(circle at top,#0f172a,#020617); */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    color: white;
}

.odtrial-card {
    width: 650px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 80px rgba(198, 244, 79, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glow */

.odtrial-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(198, 244, 79, 0.15);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    filter: blur(80px);
}

/* Badge */

.odtrial-badge {
    display: inline-block;
    background: #C6F44F;
    color: #000;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 25px;
}

.odtrial-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.odtrial-sub {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 35px;
}

/* Benefits */

.odtrial-benefits {
    text-align: left;
    margin-bottom: 40px;
}

.odtrial-benefits li {
    list-style: none;
    margin-bottom: 12px;
    font-size: 15px;
}

.odtrial-benefits li::before {
    content: "✔ ";
    color: #C6F44F;
    font-weight: bold;
}

/* Countdown */

.odtrial-countdown {
    background: #111827;
    padding: 12px 18px;
    border-radius: 12px;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 30px;
    color: #C6F44F;
}

/* Buttons */

.odtrial-btn {
    display: inline-block;
    background: #C6F44F;
    color: #000;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    margin-bottom: 15px;
}

.odtrial-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(198, 244, 79, 0.3);
}

.odtrial-link {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
}

.odtrial-link:hover {
    color: #C6F44F;
}

@media(max-width:600px) {
    .odtrial-card {
        padding: 40px 25px;
    }

    .odtrial-title {
        font-size: 24px;
    }
}


/* ======================================
   OpenDukan Dashboard with Sidebar
   Prefix: oddash2-
====================================== */

.oddash2-layout {
    display: flex;
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    min-height: 100vh;
    color: white;
}

/* Sidebar */

.oddash2-sidebar {
    width: 250px;
    background: #111827;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.oddash2-logo {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 40px;
}

.oddash2-logo span {
    color: #C6F44F;
}

.oddash2-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oddash2-menu li {
    margin-bottom: 12px;
}

.oddash2-menu a {
    text-decoration: none;
    color: #94a3b8;
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    transition: 0.3s;
}

.oddash2-menu a:hover,
.oddash2-menu a.active {
    background: #C6F44F;
    color: #000;
    font-weight: 600;
}

.oddash2-sidebar-footer {
    font-size: 13px;
    color: #94a3b8;
}

/* Main Content */

.oddash2-main {
    flex: 1;
    padding: 40px;
}

/* Header */

.oddash2-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.oddash2-title {
    font-size: 24px;
    font-weight: 800;
}

.oddash2-btn {
    background: #C6F44F;
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
}

/* Stats */

.oddash2-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.oddash2-card {
    background: #111827;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.oddash2-card h3 {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.oddash2-card p {
    font-size: 24px;
    font-weight: 800;
    color: #C6F44F;
}

/* Empty State */

/* Empty State */

.oddash-empty {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.oddash-empty-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.oddash-empty-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.oddash-empty-sub {
    color: #94a3b8;
    margin-bottom: 30px;
}

/* Action Buttons */

.oddash-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.oddash-secondary {
    background: #1f2937;
    color: white;
}

.oddash-btn {
    background: #C6F44F;
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.oddash-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(198, 244, 79, 0.3);
}

.oddash-secondary {
    background: #1f2937;
    color: white;
}

/* Mobile */

@media(max-width:900px) {

    .oddash2-sidebar {
        position: fixed;
        left: -290px;
        top: 0;
        height: 100%;
        transition: 0.3s;
        z-index: 999;
    }

    .oddash2-sidebar.active {
        left: 0;
    }

    .oddash2-main {
        padding: 20px;
        width: 100%;
    }

    .oddash2-toggle {
        display: block;
        cursor: pointer;
        margin-bottom: 20px;
        color: #C6F44F;
        font-weight: 700;
    }
}

@media(min-width:901px) {
    .oddash2-toggle {
        display: none;
    }
}

/* Sidebar v3 Icon Style */

.oddash3-sidebar {
    width: 250px;
    background: #111827;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.oddash3-logo {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 40px;
}

.oddash3-logo span {
    color: #C6F44F;
}

.oddash3-menu {
    list-style: none;
    padding: 0;
}

.oddash3-menu li {
    margin-bottom: 10px;
}

.oddash2-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #94a3b8;
    transition: 0.3s;
}

.oddash2-menu a svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
}

.oddash2-menu a:hover,
.oddash2-menu a.active {
    background: #C6F44F;
    color: #000;
    font-weight: 600;
}

.oddash3-menu a {
    position: relative;
}

.oddash3-badge {
    background: #C6F44F;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: auto;
    min-width: 20px;
    text-align: center;
}

/* Optional Red Style */
.oddash3-badge.alert {
    background: #ef4444;
    color: #fff;
}

/* ==============================
   Header Alignment Fix
   Prefix: oddash5-
============================== */

.oddash5-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.oddash5-left h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0;
}

.oddash5-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Profile */

.oddash5-profile {
    position: relative;
}

.oddash5-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111827;
    padding: 8px 14px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s;
}

.oddash5-trigger:hover {
    background: #1f2937;
}

.oddash5-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.oddash5-info {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.oddash5-name {
    font-weight: 600;
}

.oddash5-role {
    color: #94a3b8;
}

.oddash5-arrow {
    color: #C6F44F;
    font-size: 14px;
}

/* Dropdown */

.oddash5-dropdown {
    position: absolute;
    right: 0;
    top: 55px;
    background: #111827;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 200px;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.oddash5-dropdown a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #cbd5e1;
    font-size: 14px;
}

.oddash5-dropdown a:hover {
    background: #C6F44F;
    color: #000;
}

.oddash5-dropdown hr {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 8px 0;
}

.oddash5-logout {
    color: #ef4444 !important;
}

/* Add Product Button */

.oddash5-btn {
    background: #C6F44F;
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.oddash5-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(198, 244, 79, 0.3);
}

/* Mobile Fix */

@media(max-width:768px) {
    .oddash5-info {
        font-size: 10px;
    }

    .oddash5-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .oddash5-right {
        width: 100%;
        justify-content: space-between;
    }
}


/* ======================================
   OpenDukan Add Product Page
   Prefix: odprod-
====================================== */

.odprod-wrapper {
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    min-height: 100vh;
    /* padding:40px; */
    color: white;
}

.odprod-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
}

.odprod-grid {
    /* display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px; */
    display: flex;
    gap: 30px;
}

.odprod-left {
    width: 60%;
}

.odprod-right {
    width: 40%;
}

.odprod-card {
    background: #111827;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.odprod-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.odprod-input,
.odprod-textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: none;
    background: #1f2937;
    color: white;
}

.odprod-input:focus,
.odprod-textarea:focus {
    outline: none;
    border: 1px solid #C6F44F;
}

.odprod-row {
    display: flex;
    gap: 15px;
}

.odprod-discount {
    font-size: 13px;
    color: #C6F44F;
    margin-bottom: 10px;
}

/* Image Upload */

.odprod-upload {
    border: 2px dashed #374151;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 15px;
}

.odprod-preview {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.odprod-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

/* Toggle */

.odprod-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.odprod-switch {
    position: relative;
    width: 45px;
    height: 22px;
    background: #374151;
    border-radius: 20px;
    cursor: pointer;
}

.odprod-switch::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

.odprod-switch.active {
    background: #C6F44F;
}

.odprod-switch.active::after {
    left: 24px;
}

/* Button */

.odprod-btn {
    background: #C6F44F;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.odprod-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(198, 244, 79, 0.3);
}

.odvariant-card button {
    background: #C6F44F;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
}

.odvariant-section {
    margin-bottom: 15px;
}

.odvariant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.odvariant-item {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.odvariant-item input {
    flex: 1;
}

.odvariant-item button {
    background: #ef4444;
    color: white;
}

.odvariant-preview {
    margin-top: 15px;
    background: #1f2937;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
    color: #C6F44F;
}

/* ==============================
   Styled Select Box
   Prefix: odcat2-
============================== */

.odcat2-wrapper {
    margin-bottom: 15px;
}

.odcat2-label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #94a3b8;
}

.odcat2-select {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: #1f2937;
    color: white;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23C6F44F' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
}

.odcat2-select:focus {
    outline: none;
    border: 1px solid #C6F44F;
}

/* ==============================
   WhatsApp Preview
   Prefix: odwa-
============================== */

.odwa-card {
    margin-top: 20px;
}

.odwa-phone {
    background: #0b141a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.odwa-header {
    background: #202c33;
    padding: 12px;
    font-size: 14px;
    color: #C6F44F;
}

.odwa-chat {
    padding: 20px;
    background: #111b21;
}

.odwa-message {
    background: #005c4b;
    padding: 12px 15px;
    border-radius: 15px 15px 0 15px;
    max-width: 80%;
    font-size: 14px;
    line-height: 1.5;
    color: white;
}

@media(max-width:900px) {
    .odprod-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .odprod-left,
    .odprod-right {
        width: 100%;
    }
}


/* ==============================
Customize Store
Prefix: odcustom-
============================== */
.odcustom-wrapper {
    background: #0f172a;
    min-height: 100vh;
    /* padding:40px 20px; */
    font-family: 'Inter', sans-serif;
    color: white;
}

.odcustom-container {
    /* max-width:1100px;
    margin:auto; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media(max-width:900px) {
    .odcustom-container {
        grid-template-columns: 1fr;
    }
}

/* Form */
.odcustom-card {
    background: #111827;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.odcustom-title {
    font-size: 22px;
    font-weight: 800;
    /* margin-bottom:20px; */
}

.odcustom-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    background: #1f2937;
    color: white;
}

.odcustom-label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    color: #94a3b8;
}

/* Upload */
.odcustom-upload {
    background: #1f2937;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 15px;
}

/* Color */
.odcustom-color {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
}

/* Button */
.odcustom-btn {
    width: 100%;
    padding: 14px;
    background: #C6F44F;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
}

/* Preview */
.odcustom-preview {
    background: #111827;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.odcustom-banner {
    height: 220px;
    background: linear-gradient(45deg, #6366f1, #a855f7);
}

.odcustom-preview-body {
    padding: 20px;
    text-align: center;
}

.odcustom-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-top: -40px;
    border: 3px solid #111827;
    object-fit: cover;
}

.odcustom-name {
    font-size: 20px;
    font-weight: 800;
    margin-top: 10px;
}

.odcustom-desc {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 5px;
}

.odcustom-btn-preview {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    background: #C6F44F;
}

.odcustom-subtitle {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.store-actions {
    text-align: center;
    margin-top: 20px;
}

.qr-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    display: inline-block;
}

.store-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.visit-btn {
    background: #b6f34a;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.print-btn {
    background: #444;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
}


/* ==============================
   Product List Page
   Prefix: odprod-
============================== */

.odprod-wrapper {
    background: #0f172a;
    min-height: 100vh;
    /* padding: 30px; */
    font-family: 'Inter', sans-serif;
    color: white;
}

.odprod-container {
    /* max-width: 1100px;
    margin: auto; */
}

/* Header */

.odprod-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.odprod-title {
    font-size: 24px;
    font-weight: 800;
}

.odprod-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.odprod-search {
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #1f2937;
    color: white;
}

.odprod-btn {
    background: #C6F44F;
    color: #000;
    padding: 10px 18px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
}

/* Table */

.odprod-table {
    width: 100%;
    background: #111827;
    border-radius: 15px;
    overflow: hidden;
}

.odprod-table th,
.odprod-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.odprod-table th {
    color: #94a3b8;
    font-size: 13px;
    text-align: left;
}

/* Product */

.odprod-product {
    display: flex;
    align-items: center;
    gap: 10px;
}

.odprod-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

/* Status */

.odprod-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.status-active {
    background: #22c55e;
    color: #000;
}

.status-draft {
    background: #f59e0b;
    color: #000;
}

/* Actions */

.odprod-action-btn {
    background: #1f2937;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    font-size: 12px;
    margin-right: 5px;
}

/* Pagination */

.odprod-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.odprod-page {
    padding: 8px 12px;
    background: #1f2937;
    border-radius: 10px;
    cursor: pointer;
}

.odprod-page.active {
    background: #C6F44F;
    color: #000;
    font-weight: 700;
}

/* Mobile */

@media(max-width:768px) {

    .odprod-table th:nth-child(3),
    .odprod-table td:nth-child(3) {
        display: none;
    }

}

/* Navigation arrows */

.odprod-nav {
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.variant-table {
    width: 100%;
    margin-top: 10px;
    border-collapse: collapse;
}

.variant-table th,
.variant-table td {
    padding: 10px;
    border-bottom: 1px solid #333;
    text-align: left;
}

.variant-table input {
    width: 80px;
    padding: 5px;
}

.variant-table button {
    background: red;
    color: #fff;
    border: none;
    padding: 5px 8px;
    border-radius: 6px;
    cursor: pointer;
}


.variant-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.variant-table thead {
    background: #0f172a;
}

.variant-table th {
    padding: 12px;
    font-size: 13px;
    color: #a3e635;
    text-align: left;
}

.variant-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.variant-table tr {
    background: #1e293b;
}

.variant-table tr:hover {
    background: #273449;
}

.variant-table input {
    width: 90px;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #374151;
    background: #0f172a;
    color: #fff;
    text-align: center;
}

.variant-label {
    font-weight: 500;
    color: #e5e7eb;
}

.delete-btn {
    background: #ef4444;
    border: none;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.delete-btn:hover {
    background: #dc2626;
}

.odvariant-preview {
    max-height: 350px;
    overflow-y: auto;
}

.badge {
    background: #334155;
    padding: 4px 8px;
    border-radius: 6px;
    margin-right: 5px;
    font-size: 12px;
}


/* Container spacing */
#attributeContainer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Row layout */
.attribute-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Input columns */
.attr-col {
    flex: 1;
}

/* Inputs */
.attr-name,
.attr-values {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: none;
    background: #1f2a37;
    color: #fff;
    font-size: 14px;
}

/* Remove button */
.attr-action {
    display: flex;
    align-items: center;
}

.remove-btn {
    background: #b7ef4b;
    border: none;
    color: #000;
    font-weight: bold;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
}

/* Add button */
.add-attr-btn {
    margin-top: 12px;
    background: #b7ef4b;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.odprod-btn {
    background: #C6F44F;
    color: #000;
    padding: 10px 18px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
}


.img-box {
    position: relative;
    display: inline-block;
    margin: 6px;
}

.img-box img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
}

/* ❌ button */
.remove-img-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    cursor: pointer;
}

.img-box:hover .remove-img-btn {
    transform: scale(1.1);
}



/* =========================
   OpenDukan About Page
   Prefix: odabout-
========================= */

.odabout-wrapper {
    font-family: 'Inter', sans-serif;
    background: #020617;
    color: white;
    padding: 60px 20px;
}

/* Container */
.odabout-container {
    max-width: 1100px;
    margin: auto;
}

/* Hero */
.odabout-hero {
    text-align: center;
    margin-bottom: 60px;
}

.odabout-title {
    font-size: 42px;
    font-weight: 800;
}

.odabout-highlight {
    color: #C6F44F;
}

.odabout-sub {
    color: #94a3b8;
    margin-top: 10px;
    font-size: 16px;
}

/* Section */
.odabout-section {
    margin-bottom: 60px;
}

/* Grid */
.odabout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.odabout-card {
    background: #0f172a;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Headings */
.odabout-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Text */
.odabout-text {
    color: #94a3b8;
    line-height: 1.7;
}

/* Features */
.odabout-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.odabout-feature {
    background: #0f172a;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.odabout-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

/* CTA */
.odabout-cta {
    text-align: center;
    margin-top: 50px;
}

.odabout-btn {
    background: #C6F44F;
    color: #000;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
}

/* Mobile */
@media(max-width:768px) {

    .odabout-title {
        font-size: 28px;
    }

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

    .odabout-features {
        grid-template-columns: 1fr;
    }

}


/* Founder */
.odabout-founder {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #0f172a;
    padding: 20px;
    border-radius: 20px;
}

.odabout-founder-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.odabout-founder-name {
    font-weight: 700;
    margin-bottom: 8px;
}

/* Trust */
.odabout-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.odabout-trust-circle {
    position: relative;
    width: 80px;
    height: 80px;
}

.odabout-trust-bg {
    fill: none;
    stroke: #374151;
    stroke-width: 6;
}

.odabout-trust-progress {
    fill: none;
    stroke: #C6F44F;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 214;
}

.odabout-trust-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 800;
    color: #C6F44F;
}

/* Stats */
.odabout-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.odabout-stat {
    background: #0f172a;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.odabout-stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #C6F44F;
}

.odabout-stat-label {
    font-size: 13px;
    color: #94a3b8;
}

/* Mobile */
@media(max-width:768px) {

    .odabout-founder {
        flex-direction: column;
        text-align: center;
    }

    .odabout-stats {
        grid-template-columns: 1fr 1fr;
    }

}

/* ===========================
   OpenDukan Privacy Policy
   Prefix: odpolicy-
=========================== */
.odpolicy-wrapper {
    font-family: 'Inter', sans-serif;
    background: #020617;
    color: white;
    /* padding: 60px 20px; */
}

/* Container */
.odpolicy-container {
    max-width: 900px;
    margin: auto;
    padding: 50px 20px;
}

/* Title */
.odpolicy-title {
    font-size: 34px;
    font-weight: 800;
}

.odpolicy-sub {
    color: #94a3b8;
    margin-bottom: 30px;
}

/* Section Card */
.odpolicy-section {
    margin-bottom: 25px;
    background: #0f172a;
    padding: 20px;
    border-radius: 12px;
}

/* Heading */
.odpolicy-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #C6F44F;
}

/* Text */
.odpolicy-text {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 14px;
}

/* List FIXED */
.odpolicy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.odpolicy-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #e2e8f0;
    line-height: 1.6;
}

/* Custom Bullet */
.odpolicy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #C6F44F;
    font-size: 18px;
}

/* Footer */
.odpolicy-footer {
    margin-top: 40px;
    font-size: 13px;
    color: #94a3b8;
    text-align: center;
}

/* Mobile */
@media(max-width:768px) {
    .odpolicy-title {
        font-size: 26px;
    }
}


/* ===========================
   OpenDukan Terms Page
   Prefix: odterms-
=========================== */

.odterms-wrapper {
    font-family: 'Inter', sans-serif;
    background: #020617;
    color: white;
    /* padding: 60px 20px; */
}

/* Container */
.odterms-container {
    max-width: 900px;
    margin: auto;
    padding: 50px 20px;
}

/* Title */
.odterms-title {
    font-size: 34px;
    font-weight: 800;
}

.odterms-sub {
    color: #94a3b8;
    margin-bottom: 30px;
}

/* Section */
.odterms-section {
    background: #0f172a;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Heading */
.odterms-heading {
    font-size: 20px;
    font-weight: 700;
    color: #C6F44F;
    margin-bottom: 10px;
}

/* Text */
.odterms-text {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
}

/* List */
.odterms-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.odterms-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #e2e8f0;
}

/* Custom bullet */
.odterms-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #C6F44F;
}

/* Footer */
.odterms-footer {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 40px;
}

/* Mobile */
@media(max-width:768px) {
    .odterms-title {
        font-size: 26px;
    }
}

/* ===========================
   OpenDukan Refund Policy
   Prefix: odrefund-
=========================== */

.odrefund-wrapper {
    font-family: 'Inter', sans-serif;
    background: #020617;
    color: white;
    /* padding: 60px 20px; */
}

/* Container */
.odrefund-container {
    max-width: 900px;
    margin: auto;
    padding: 50px 20px;
}

/* Title */
.odrefund-title {
    font-size: 34px;
    font-weight: 800;
}

.odrefund-sub {
    color: #94a3b8;
    margin-bottom: 30px;
}

/* Section */
.odrefund-section {
    background: #0f172a;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Heading */
.odrefund-heading {
    font-size: 20px;
    font-weight: 700;
    color: #C6F44F;
    margin-bottom: 10px;
}

/* Text */
.odrefund-text {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
}

/* List */
.odrefund-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.odrefund-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #e2e8f0;
}

/* Custom Bullet */
.odrefund-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #C6F44F;
}

/* Footer */
.odrefund-footer {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 40px;
}

/* Mobile */
@media(max-width:768px) {
    .odrefund-title {
        font-size: 26px;
    }
}


/* ===========================
   OpenDukan Contact Page
   Prefix: odcontact-
=========================== */

.odcontact-wrapper {
    font-family: 'Inter', sans-serif;
    background: #020617;
    color: white;
    /* padding: 60px 20px; */
}

/* Container */
.odcontact-container {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
}

/* Title */
.odcontact-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
}

.odcontact-sub {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 40px;
}

/* Grid */
.odcontact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Left Info */
.odcontact-info {
    background: #0f172a;
    padding: 30px;
    border-radius: 20px;
}

.odcontact-box {
    margin-bottom: 20px;
}

.odcontact-label {
    font-size: 14px;
    color: #94a3b8;
}

.odcontact-value {
    font-size: 16px;
    font-weight: 600;
}

/* Buttons */
.odcontact-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.odcontact-wa {
    background: #25D366;
    color: white;
}

.odcontact-email {
    background: #C6F44F;
    color: #000;
}

/* Form */
.odcontact-form {
    background: #0f172a;
    padding: 30px;
    border-radius: 20px;
}

.odcontact-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    background: #1f2937;
    color: white;
}

.odcontact-textarea {
    height: 120px;
    resize: none;
}

.odcontact-submit {
    width: 100%;
    background: #C6F44F;
    color: #000;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
}

/* Footer */
.odcontact-footer {
    margin-top: 40px;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
}

/* Mobile */
@media(max-width:768px) {

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

    .odcontact-title {
        font-size: 26px;
    }

}


.od-payment-page {
    /* padding: 20px; */
    color: #fff;
}

.od-pay-card {
    background: #1c2a3a;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.od-pay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.od-pay-card input {
    width: 100%;
    margin: 5px 0;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: #0f1c2b;
    color: #fff;
}

.od-pay-textarea {
    height: 100px;
    resize: none;
    width: 100%;
    margin: 5px 0;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: #0f1c2b;
    color: #fff;
}

.od-save-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #b6f23c;
    font-weight: 600;
    color: #000;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 22px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    background-color: #444;
    border-radius: 20px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked+.slider {
    background: #c6f44f;
}

input:checked+.slider:before {
    transform: translateX(22px);
}


/* ==============================
         Advanced Orders
         Prefix: odorderx-
         ============================== */
.odorder-wrapper {
    background: #0f172a;
    min-height: 100vh;
    /* padding: 30px; */
    font-family: 'Inter', sans-serif;
    color: white;
}

.odorder-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.odorder-title {
    font-size: 24px;
    font-weight: 800;
}

.odorder-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.odorder-input,
.odorder-select {
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #1f2937;
    color: white;
}

/* Table */
.odorder-table {
    width: 100%;
    border-collapse: collapse;
    background: #111827;
    border-radius: 15px;
    overflow: hidden;
}

.odorder-table th,
.odorder-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.odorder-table th {
    color: #94a3b8;
    font-size: 13px;
}

.odorder-row {
    cursor: pointer;
    transition: 0.2s;
}

.odorder-row:hover {
    background: #1f2937;
}

/* Status */
.odorder-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pending {
    background: #f59e0b;
    color: #000;
}

.paid {
    background: #22c55e;
    color: #000;
}

.delivered {
    background: #3b82f6;
    color: #fff;
}

/* Drawer */
/* FIX: Drawer text visibility */
.odorderx-drawer {
    color: #e5e7eb;
    /* light text */
}

.odorderx-drawer h3 {
    color: #ffffff;
}

.odorderx-drawer p {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 8px;
}

/* Timeline fix */
.odorderx-step {
    color: #94a3b8;
    font-size: 14px;
}

.odorderx-step.completed {
    color: #C6F44F;
    font-weight: 600;
}

/* Dropdown fix */
.odorderx-select {
    color: #fff;
    background: #1f2937;
}

/* Label fix */
.odorderx-drawer label {
    color: #94a3b8;
    font-size: 13px;
    margin-top: 10px;
    display: block;
}

.odorderx-drawer {
    position: fixed;
    right: -400px;
    top: 0;
    width: 360px;
    height: 100%;
    background: #111827;
    padding: 20px;
    transition: 0.3s;
    overflow: auto;
    z-index: 999;
}

.odorderx-drawer.active {
    right: 0;
}

.odorderx-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
}

.odorderx-overlay.active {
    display: block;
}

/* Timeline */
.odorderx-timeline {
    margin-top: 20px;
}

.odorderx-step {
    padding-left: 20px;
    position: relative;
    margin-bottom: 15px;
}

.odorderx-step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    background: #C6F44F;
    border-radius: 50%;
}

.odorderx-step.completed {
    color: #C6F44F;
}

/* Dropdown */
.odorderx-select {
    width: 100%;
    padding: 10px;
    background: #1f2937;
    border: none;
    color: white;
    border-radius: 10px;
    margin-top: 10px;
}

/* WhatsApp */
.odorderx-wa {
    background: #25D366;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 25px;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
}

/* Payment */
.odorderx-paid {
    color: #22c55e;
    font-weight: 700;
}

.odorderx-unpaid {
    color: #ef4444;
    font-weight: 700;
}


.odblog-wrapper {
    background: #0f172a;
    min-height: 100vh;
    /* padding:30px; */
    font-family: 'Inter', sans-serif;
    color: white;
}

.odblog-container {
    max-width: 1200px;
    margin: auto;
    padding: 10px 10px;
}

/* ===== HERO ===== */
.blog-hero {
    padding: 60px 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: 42px;
}

.blog-hero span {
    color: #c6ff3d;
}

.blog-hero p {
    opacity: 0.7;
    margin-top: 10px;
}

/* ===== SEARCH ===== */
.blog-search {
    margin-top: 30px;
}

.blog-search input {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: #162537;
    color: #fff;
}

/* ===== CATEGORY ===== */
.blog-categories {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.blog-chip {
    padding: 8px 14px;
    background: #162537;
    border-radius: 20px;
    cursor: pointer;
}

.blog-chip.active {
    background: #c6ff3d;
    color: #000;
}

/* ===== FEATURED ===== */
.featured-blog {
    display: flex;
    gap: 20px;
    background: #162537;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
}

.featured-blog img {
    width: 50%;
    object-fit: cover;
}

.featured-content {
    padding: 20px;
}

.featured-content h2 {
    margin: 0;
}

.featured-content p {
    opacity: 0.7;
}

.read-btn {
    margin-top: 10px;
    display: inline-block;
    padding: 10px 18px;
    background: #c6ff3d;
    color: #000;
    border-radius: 8px;
}

/* ===== BLOG GRID ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.blog-card {
    background: #162537;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-content {
    padding: 15px;
}

.blog-content h3 {
    font-size: 18px;
}

.blog-meta {
    font-size: 12px;
    opacity: 0.6;
}

.blog-content p {
    opacity: 0.7;
    font-size: 14px;
}

.blog-btn {
    margin-top: 10px;
    display: inline-block;
    padding: 8px 14px;
    background: #c6ff3d;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
}

/* ===== MOBILE ===== */
@media(max-width:768px) {
    .featured-blog {
        flex-direction: column;
    }

    .featured-blog img {
        width: 100%;
    }
}

.od-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.od-page {
    padding: 10px 14px;
    background: #1e2a38;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    min-width: 40px;
    text-align: center;
}

.od-page:hover {
    background: #c6ff3d;
    color: #000;
}

.od-page.active {
    background: #c6ff3d;
    color: #000;
    font-weight: bold;
}

.od-page.disabled {
    opacity: 0.4;
    pointer-events: none;
}


/* ==============================
   OpenDukan Blog Details (Premium UI)
============================== */
.odblog-wrapper {
    background: #0f172a;
    min-height: 100vh;
    /* padding:30px; */
    font-family: 'Inter', sans-serif;
    color: white;
}

/* CONTAINER */

.odblog-container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* HERO */

.odblog-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.odblog-hero img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.odblog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.odblog-category {
    background: #C6F44F;
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
}

.odblog-title {
    font-size: 30px;
    font-weight: 800;
}

.odblog-meta {
    margin-top: 8px;
    font-size: 14px;
    color: #cbd5e1;
}

/* CONTENT */

.odblog-content {
    margin-top: 30px;
}

.odblog-content p {
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 15px;
}

.odblog-content h2 {
    margin-top: 25px;
    font-size: 22px;
}

/* LIST */

.odblog-content ul {
    margin-top: 10px;
    padding-left: 18px;
}

.odblog-content li {
    margin-bottom: 8px;
}

/* QUOTE */

.odblog-quote {
    background: #111827;
    padding: 15px;
    border-left: 4px solid #C6F44F;
    border-radius: 10px;
    margin: 20px 0;
}

/* SHARE */

.odblog-share {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.odblog-share button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.odblog-fb {
    background: #1877F2;
    color: #fff;
}

.odblog-wa {
    background: #25D366;
    color: #fff;
}

.odblog-tw {
    background: #1DA1F2;
    color: #fff;
}

/* RELATED */

.odblog-related {
    margin-top: 40px;
}

.odblog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.odblog-card {
    background: #111827;
    border-radius: 15px;
    overflow: hidden;
}

.odblog-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.odblog-card div {
    padding: 10px;
}

.odblog-card h4 {
    margin: 0;
    font-size: 16px;
}

.odblog-link {
    text-decoration: none;
    color: #fff;
}

.odblog-related h2 {
    margin-bottom: 20px;
}

/* MOBILE */

@media(max-width:768px) {

    .odblog-title {
        font-size: 20px;
    }

    .odblog-hero img {
        height: 220px;
    }

    .odblog-meta {
        font-size: 12px;
    }

    .odblog-content h2 {
        font-size: 18px;
    }

    .odblog-content p {
        font-size: 14px;
    }

    .odblog-share {
        flex-direction: column;
    }

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

}


.tab-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    background: #1b1325;
    padding: 5px;
    border-radius: 50px;
}

.tab-buttons button {
    width: 100px;
    padding: 12px;
    border: none;
    background: transparent;
    color: #ffffffab;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
}


.tab-buttons button.active {
    background: linear-gradient(90deg, #C6F44F, #9ef01a);
    border-radius: 50px;
    color: #000 !important;
}

/* Tab Content */
.tab-content {
    display: none;
    border-top: none;
    animation: fadeIn 0.3s ease-in-out;
    margin-bottom: 50px;
}

.tab-content.active {
    display: block;
}

.slide-control-btn {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==============================
Account Settings
Prefix: odacc-
============================== */

.odacc-wrapper {
    background: #0f172a;
    min-height: 100vh;
    /* padding: 30px; */
    font-family: 'Inter', sans-serif;
    color: white;
}

.odacc-container {
    /* max-width: 900px; */
    margin: auto;
}

.odacc-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
}

/* Tabs */
.odacc-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.odacc-tab {
    padding: 10px 18px;
    background: #1f2937;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
}

.odacc-tab.active {
    background: #C6F44F;
    color: #000;
}

/* Card */
.odacc-card {
    background: #111827;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Input */
.odacc-label {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 5px;
    display: block;
}

.odacc-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    background: #1f2937;
    color: white;
}

/* Profile Image */
.odacc-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.odacc-upload {
    width: 92%;
    background: #1f2937;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

/* Button */
.odacc-btn {
    background: #C6F44F;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
}

/* Hide Sections */
.odacc-section {
    display: none;
}

.odacc-section.active {
    display: block;
}

@media(max-width:768px) {
    .odacc-upload {
        width: 100%;
    }
}


/* ==============================
    Billing Page
    Prefix: odbill-
    ============================== */
.odbill-wrapper {
    background: #0f172a;
    min-height: 100vh;
    /* padding: 30px; */
    font-family: 'Inter', sans-serif;
    color: white;
}

.odbill-container {
    /* max-width: 1100px; */
    margin: auto;
}

/* Title */
.odbill-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Current Plan */
.odbill-current {
    background: #111827;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.odbill-plan-name {
    font-size: 18px;
    font-weight: 700;
}

.odbill-status {
    background: #22c55e;
    color: #000;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.odbill-btn {
    background: #C6F44F;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
}

/* Plans */
.odbill-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.odbill-card {
    background: #111827;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.odbill-price {
    font-size: 26px;
    font-weight: 800;
    color: #C6F44F;
    margin: 10px 0;
}

.odbill-feature {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 5px;
}

.odbill-card button {
    margin-top: 10px;
    width: 100%;
}

/* Table */
.odbill-table {
    width: 100%;
    background: #111827;
    border-radius: 15px;
    overflow: hidden;
}

.odbill-table th,
.odbill-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.odbill-table th {
    color: #94a3b8;
    font-size: 13px;
}


/* ==============================
    Review Page
    Prefix: odreview-
    ============================== */

.odreview-wrapper{
    /* padding:20px; */
    color:#fff;
}

/* HEADER */
.odreview-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.odreview-title{
    font-size:24px;
    font-weight:800;
}

.odreview-controls{
    display:flex;
    gap:10px;
}

.odreview-controls input,
.odreview-controls select{
    background:#1e2a3a;
    border:none;
    padding:10px;
    border-radius:8px;
    color:#fff;
}

/* STATS */
.odreview-stats{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.stat-box{
    flex:1;
    background:#162233;
    padding:15px;
    border-radius:12px;
    text-align:center;
}

.stat-box b{
    display:block;
    font-size:20px;
    color:#b6f13a;
}

/* LIST */
.odreview-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* ITEM */
.odreview-item{
    margin-bottom: 10px;
    background:#162233;
    padding:15px;
    border-radius:12px;
}

/* TOP */
.odreview-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.odreview-user{
    display:flex;
    gap:10px;
}

.avatar{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#b6f13a;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

.name{
    font-weight:bold;
}

.badge{
    background:#b6f13a;
    color:#000;
    padding:2px 6px;
    border-radius:6px;
    font-size:12px;
    margin-left:5px;
}

.date{
    font-size:12px;
    color:#aaa;
}

/* RATING */
.rating{
    color:#FFD700;
}

/* PRODUCT */
.odreview-product{
    font-size:13px;
    color:#aaa;
    margin:5px 0;
}

/* TEXT */
.odreview-text{
    margin:10px 0;
}

/* ACTIONS */
.odreview-actions{
    display:flex;
    gap:10px;
}

.odreview-actions button{
    border:none;
    padding:8px 12px;
    border-radius:8px;
    cursor:pointer;
}

.approve{ background:#28c76f; }
.disapprove{ background:#ff6b6b; }
.reply{ background:#00cfe8; }
.delete{ background:#ea5455; }

/* REPLY BOX */
.odreview-reply-box{
    display:none;
    margin-top:10px;
}

.odreview-reply-box input{
    width:70%;
    padding:8px;
    border-radius:8px;
    border:none;
}

.odreview-reply-box button{
    padding:8px 12px;
    background:#b6f13a;
    border:none;
    border-radius:8px;
}

/* MOBILE */
@media(max-width:768px){

    .odreview-header{
        flex-direction:column;
        gap:10px;
        align-items:flex-start;
    }

    .odreview-stats{
        flex-direction:column;
    }

}

/* =========================
   OpenDukan Terms Page
========================= */

.odterms-wrapper{
    background:#0f172a;
    min-height:100vh;
    padding:60px 20px;
    font-family:'Inter',sans-serif;
    color:#e2e8f0;
}

.odterms-container{
    max-width:1000px;
    margin:auto;
    background:#111827;
    border-radius:24px;
    padding:50px;
    border:1px solid rgba(255,255,255,0.06);
    box-shadow:0 20px 50px rgba(0,0,0,0.35);
}

.odterms-badge{
    display:inline-block;
    background:rgba(198,244,79,0.12);
    color:#C6F44F;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.odterms-title{
    font-size:42px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:15px;
    color:white;
}

.odterms-sub{
    color:#94a3b8;
    font-size:16px;
    margin-bottom:40px;
}

.odterms-section{
    margin-bottom:40px;
}

.odterms-section h2{
    font-size:24px;
    font-weight:700;
    color:#C6F44F;
    margin-bottom:18px;
}

.odterms-section p{
    line-height:1.9;
    font-size:15px;
    color:#cbd5e1;
    margin-bottom:15px;
}

.odterms-section ul{
    padding-left:20px;
}

.odterms-section ul li{
    margin-bottom:12px;
    line-height:1.8;
    color:#d1d5db;
}

.odterms-highlight{
    background:#1f2937;
    border-left:4px solid #C6F44F;
    padding:20px;
    border-radius:14px;
    margin-top:20px;
    line-height:1.8;
}

.odterms-contact{
    background:linear-gradient(135deg,#C6F44F,#9FE870);
    padding:25px;
    border-radius:18px;
    color:#000;
    margin-top:40px;
}

.odterms-contact h3{
    margin-top:0;
    font-size:22px;
}

.odterms-contact p{
    margin:8px 0;
    color:#000;
    font-weight:500;
}

.odterms-footer{
    text-align:center;
    margin-top:40px;
    color:#64748b;
    font-size:14px;
}

/* MOBILE */

@media(max-width:768px){

    .odterms-container{
        padding:30px 22px;
    }

    .odterms-title{
        font-size:30px;
    }

    .odterms-section h2{
        font-size:20px;
    }

}





.od-legal-section{
    width:100%;
    /* padding:60px 20px; */
    /* background:#020b2d; */
    font-family:Arial, sans-serif;
}

.od-legal-container{
    max-width:1100px;
    margin:auto;
}

.od-legal-card{
    background:#fff5f5;
    /* border:2px solid #ffb3b3; */
    border-radius:20px;
    padding:40px;
    color:#2b2b2b;
    line-height:1.8;
}

.od-legal-card h2{
    font-size:32px;
    margin-bottom:25px;
    color:#c40000;
    line-height:1.4;
}

.od-legal-card h3{
    font-size:24px;
    margin-top:35px;
    margin-bottom:15px;
    color:#111;
}

.od-legal-card h4{
    font-size:20px;
    margin-bottom:15px;
}

.od-legal-card p{
    font-size:16px;
    margin-bottom:18px;
    color:#000;
}

.od-legal-card ul{
    padding-left:25px;
    margin-bottom:20px;
}

.od-legal-card ul li{
    margin-bottom:14px;
    font-size:16px;
    color:#000;
}

.od-legal-card strong{
    color:#000;
}

.od-legal-box{
    background:#fff;
    border:1px solid #ffc6c6;
    padding:25px;
    border-radius:14px;
    margin:25px 0;
}

.od-legal-box a{
    color:#d10000;
    text-decoration:none;
    font-weight:600;
}

.od-legal-warning{
    margin-top:35px;
    background:#ffdfdf;
    border-left:6px solid #ff0000;
    padding:20px;
    border-radius:12px;
    font-size:15px;
    font-weight:700;
    color:#8b0000;
    line-height:1.7;
}

/* MOBILE */

@media(max-width:768px){

    .od-legal-section{
        padding:30px 15px;
    }

    .od-legal-card{
        padding:25px 18px;
    }

    .od-legal-card h2{
        font-size:24px;
    }

    .od-legal-card h3{
        font-size:20px;
    }

    .od-legal-card p,
    .od-legal-card ul li{
        font-size:15px;
    }

}

.od-legal-section{
    /* background:#fff; */
    padding:20px;
    border-radius:20px;
    margin-top:30px;
    /* border:1px solid #eee; */
    color:#222;
    line-height:1.8;
    font-family:Arial, sans-serif;
}

.od-legal-section h2{
    font-size:24px;
    margin-bottom:25px;
    color:#C6F44F;
}

.od-legal-section h3{
    font-size:20px;
    margin-top:15px;
    margin-bottom:15px;
    color:#C6F44F;
}

.od-legal-section p{
    font-size:16px;
    margin-bottom:15px;
    color:#d1d5db;
}

.od-legal-section ul{
    margin:15px 0;
    padding-left:20px;
}

.od-legal-section ul li{
    margin-bottom:12px;
    color:#d1d5db;
    font-size:16px;
}

.od-legal-card{
    background:#f8f8f8;
    border-left:5px solid #c8f031;
    padding:20px;
    border-radius:14px;
    margin:20px 0;
}

.od-legal-card ul li{
    color:#000 !important;
}

.od-legal-note{
    background:#eefbe1;
    padding:18px;
    border-radius:12px;
    border:1px solid #c8f031;
    margin-top:20px;
    color:#222;
    font-weight:500;
}

.od-legal-warning{
    background:#fff3f3;
    border:1px solid #ffbcbc;
    color:#c20000;
    padding:18px;
    border-radius:12px;
    margin-top:20px;
    font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

    .od-legal-section{
        padding:20px;
    }

    .od-legal-section h2{
        font-size:28px;
    }

    .od-legal-section h3{
        font-size:20px;
    }

    .od-legal-section p,
    .od-legal-section ul li{
        font-size:15px;
    }

}


/* =========================
OPENDUKAN PRIVACY POLICY CSS
========================= */

.od-privacy-wrapper{
    /* background:#f7f7f7; */
    padding:60px 20px;
}

.od-privacy-container{
    max-width:1100px;
    margin:auto;
}

.od-privacy-container h1{
    font-size:42px;
    margin-bottom:10px;
    color:#C6F44F;
    font-weight:800;
}

.od-privacy-date{
    color:#cbd5e1;
    margin-bottom:30px;
    font-size:15px;
}

.od-privacy-container p{
    color:#cbd5e1;
    font-size:16px;
    line-height:1.9;
}

.od-privacy-box{
    /* background:#fff; */
    /* border-radius:18px; */
    /* padding:35px; */
    margin-top:30px;
    /* border:1px solid #eee; */
}

.od-privacy-box h2{
    font-size:26px;
    margin-bottom:18px;
    color:#C6F44F;
}

.od-privacy-box ul{
    margin-top:15px;
    padding-left:22px;
}

.od-privacy-box ul li{
    margin-bottom:12px;
    line-height:1.7;
    color:#cbd5e1;
}

.od-privacy-note{
    background:#eefbe1;
    border:1px solid #c8f031;
    padding:18px;
    border-radius:12px;
    margin-top:20px;
    color:#222;
}

.od-warning{
    /* background:#fff4f4;
    border:1px solid #ffbdbd; */
}

.od-warning h2{
    /* color:#c40000; */
}

.od-contact-box{
    /* background:#f7f7f7;
    padding:20px;
    border-radius:12px; */
    margin-top:15px;
    line-height:2;
}

/* MOBILE */

@media(max-width:768px){

    .od-privacy-wrapper{
        padding:30px 15px;
    }

    .od-privacy-container h1{
        font-size:30px;
    }

    .od-privacy-box{
        padding:22px;
    }

    .od-privacy-box h2{
        font-size:21px;
    }

    .od-privacy-container p,
    .od-privacy-box ul li{
        font-size:15px;
    }

}