/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 0px; 
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}


















/*  button_1 design */
.custom-button {
    display: inline-block; /* Essential for padding on <a> tags */
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-button1 {
    background-color: #a0260d;
    color: #000000;
    border: 2px solid #ffffff;
}

.custom-button1:hover {
    background-color: #ffffff;
    border-color: #000000;
    color: #a0260d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.custom-button2 {
    background-color: #000000;
    border: 2px solid #eb9e02;
    color: #ffffff;
}

.custom-button2:hover {
    background: #eb9e02;
    color: #000000;
    border: 2px solid #ffffff;
    transform: translateY(-3px);
}



.btn {
    margin-top: 10px;
}




















/* product details page */
/* all details */
.ecotours_product_details-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .ecotours_product_details-toprow {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .ecotours_product_details-imgwrap {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .ecotours_product_details-mainimg {
            width: 100%;
            height: auto;
            display: block;
        }

        .ecotours_product_details-content {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

     

        .ecotours_product_details-title {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .ecotours_product_pieces {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            color: #666;
            margin-top: 24px;
            margin-bottom: 8px;
        }

        .ecotours_product_details-shortdesc {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .ecotours_product_details-cartrow {
            display: flex;
            gap: 12px;
            margin-top: 32px;
        }

    


        .ecotours_product_details-desc {
            font-size: 14px;
            color: #555;
            line-height: 1.8;
            display: none;
        }

        .ecotours_product_details-desc.visible {
            display: block;
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 20px;
            border-radius: 5px;
            font-size: 14px;
            z-index: 9999;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            animation: slideIn 0.3s ease-in-out;
        }

        .notification-success {
            background-color: #4CAF50;
            color: #fff;
        }

        .notification-error {
            background-color: #f44336;
            color: #fff;
        }

        @keyframes slideIn {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .ecotours_product_details-toprow {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .ecotours_product_details-title {
                font-size: 24px;
            }

            .ecotours_product_details-price {
                font-size: 20px;
            }

            .ecotours_product_details-cartrow {
                flex-direction: column;
            }
        }










.ecotours_product_details-container {
  width: 100%;
  margin: 30px auto 0 auto;
  padding: 0 10px 44px 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
}

.ecotours_product_details-toprow {
  display: flex;
  gap: 38px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.ecotours_product_details-imgwrap {
    flex: 1.25;
    margin-left: 100px;
    max-width: 430px;
    min-width: 300px;
    height: auto; 
}

.ecotours_product_details-mainimg {
    box-sizing: border-box; 
    width: 100%;
    height: 100%; 
    padding: 10px; 
    object-fit: cover; 
    max-width: 430px; 
    border-radius: 10px;
    box-shadow: 0 8px 36px 0 rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
}

.ecotours_product_details-content {
  margin-left: 30px;
  flex: 1.1;
  margin-right: 100px;
  min-width: 270px;
  padding-top: 15px;
}

.ecotours_product_details-meta {
  color: #6d6d6d;
  font-size: 1rem;
  margin-bottom: 7px;
}

.ecotours_product_details-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ecotours_product_details-price {
  font-size: 1.28rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}

.ecotours_product_details-shortdesc {
  color: #232e23;
  font-size: 1.07rem;
  margin-bottom: 22px;
  line-height: 1.5;
}

.ecotours_product_pieces{
    padding-top: 5px;
    font-size: 20px;
    font-weight: 600;
}

.ecotours_product_details-cartrow {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.ecotours_product_details-tabs {
  margin: 40px auto 0 auto;
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  border-bottom: 1.5px solid #222;
  padding: 0 20px;
  flex-wrap: wrap;
}

.ecotours_product_details-tabs button {
  background: none;
  border: none;
  font-size: 24px;
  font-weight: 600;
  color: #222;
  padding: 13px 12px 0 80px;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  transition: border 0.12s, color 0.12s;
}



.ecotours_product_details-desc {
  padding: 19px 20px;
  padding-left: 80px;
  padding-right: 80px;
  color: #232e23;
  font-size: 1.09rem;
  line-height: 1.6;
  border-bottom: 1.5px solid #222;
}

/* Media Queries Updated with new Class Prefix */
@media (max-width: 900px) {
  .ecotours_product_details-toprow { flex-direction: column; gap: 20px; }
  .ecotours_product_details-imgwrap { margin: 0 auto; max-width: 90vw; }
  .ecotours_product_details-content { margin: 0 auto; padding: 10px 20px; }
}

@media (max-width: 600px) {
  .ecotours_product_details-cartrow { flex-direction: column; gap: 10px; }
  .ecotours_product_details-tabs { justify-content: center; }
}


























  /* Cart Page */
  /* Header intro */
.ecotours_cart_hero {
    background: linear-gradient(135deg, #a0260d 0%, #eb9e02 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.ecotours_cart_hero h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.ecotours_cart_container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 60px;
    box-sizing: border-box;
}

.ecotours_cart_table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.ecotours_cart_table thead {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.ecotours_cart_table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ecotours_cart_table td {
    padding: 16px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
}

.ecotours_cart_table tbody tr:last-child td {
    border-bottom: none;
}

.ecotours_cart_item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.ecotours_cart_item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0; /* Prevents image distorting/shrinking */
}

.ecotours_cart_item_info h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

.ecotours_cart_qty_input {
    width: 65px;
    padding: 8px 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    font-size: 15px; /* 15px+ prevents automatic iOS safari zoom-on-focus bugs */
    outline: none;
    box-sizing: border-box;
}

.ecotours_cart_remove {
    background: #a0260d;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.ecotours_cart_remove:hover {
    background: #c97201;
}

.ecotours_cart_totals {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    margin-bottom: 30px;
    padding: 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ecotours_cart_totals_item {
    text-align: right;
}

.ecotours_cart_totals_label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.ecotours_cart_totals_amount {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

.ecotours_cart_actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-bottom: 40px;
}

/* Base Utility Button configuration styles if attached to action wrappers */
.ecotours_cart_actions a, 
.ecotours_cart_actions button {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
}

.ecotours_cart_empty {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ecotours_cart_empty p {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
}


/* ==========================================================================
   Mobile-Friendly Responsive Screen Engine (Breakpoints Under 768px)
   ========================================================================== */

@media (max-width: 768px) {
    .ecotours_cart_hero {
        padding: 40px 16px;
        margin-bottom: 24px;
    }

    .ecotours_cart_hero h1 {
        font-size: 1.8rem;
    }

    .ecotours_cart_container {
        padding: 0 12px 40px;
    }

    /* 1. Transform Table structure completely to stacked block items */
    .ecotours_cart_table {
        box-shadow: none;
        background: transparent;
        border-radius: 0;
    }

    /* Hide standard desktop headers completely on small devices */
    .ecotours_cart_table thead {
        display: none;
    }

    .ecotours_cart_table tbody, 
    .ecotours_cart_table tr, 
    .ecotours_cart_table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    /* 2. Style each table item row as an independent modular card element */
    .ecotours_cart_table tr {
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        margin-bottom: 16px;
        padding: 16px;
        border: 1px solid #eef0f2;
    }

    .ecotours_cart_table td {
        padding: 10px 0;
        text-align: right; /* Forces values rightward */
        display: flex;
        justify-content: space-between; /* Creates clear spacing gaps */
        align-items: center;
        border-bottom: 1px dashed #eee;
        font-size: 14px;
    }

    /* Keep the product image area and details natively aligned left */
    .ecotours_cart_table td:first-child {
        padding-top: 0;
        text-align: left;
        display: block; 
        border-bottom: 1px solid #eee;
        padding-bottom: 14px;
    }

    .ecotours_cart_table tbody tr:last-child td:last-child {
        border-bottom: none;
    }

    .ecotours_cart_table td:last-child {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center; /* Center aligns the remove button at the card base */
    }

    /* 3. Inject responsive context text labels for values via CSS generated content handles */
    .ecotours_cart_table td:nth-child(2)::before {
        content: "Price:";
        font-weight: 600;
        color: #666;
    }

    .ecotours_cart_table td:nth-child(3)::before {
        content: "Quantity:";
        font-weight: 600;
        color: #666;
    }

    .ecotours_cart_table td:nth-child(4)::before {
        content: "Total:";
        font-weight: 600;
        color: #222;
    }

    .ecotours_cart_item {
        gap: 14px;
    }

    .ecotours_cart_item img {
        width: 70px;
        height: 70px;
    }

    .ecotours_cart_item_info h3 {
        font-size: 15px;
    }

    .ecotours_cart_remove {
        width: 100%;
        text-align: center;
        padding: 12px;
        margin-top: 6px;
    }

    /* 4. Layout management blocks for calculations adjustments */
    .ecotours_cart_totals {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        margin-bottom: 24px;
    }

    .ecotours_cart_totals_item {
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f1f1f1;
        padding-bottom: 10px;
    }

    .ecotours_cart_totals_item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .ecotours_cart_totals_label {
        margin-bottom: 0;
    }

    .ecotours_cart_totals_amount {
        font-size: 22px;
    }

    /* 5. Mobile Button Action Wrappers Stack Adjustments */
    .ecotours_cart_actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }

    .ecotours_cart_actions a, 
    .ecotours_cart_actions button {
        width: 100%;
        display: block;
        box-sizing: border-box;
        padding: 14px;
    }
}




















































  /* Checkout Page */
  /* everything */
  .ecotours_checkout_hero {
            background: linear-gradient(135deg, #a0260d 0%, #eb9e02 100%);
            padding: 60px 20px;
            text-align: center;
            color: white;
            margin-bottom: 40px;
        }

        .ecotours_checkout_hero h1 {
            margin: 0;
            font-size: 2.5rem;
            font-weight: 700;
        }

        .ecotours_checkout_container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px 60px;
        }

        .ecotours_checkout_wrapper {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        .ecotours_checkout_form {
            background: white;
            padding: 24px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .ecotours_checkout_form h2 {
            margin: 0 0 24px 0;
            font-size: 20px;
            color: #333;
        }

        .ecotours_checkout_form_group {
            margin-bottom: 20px;
        }

        .ecotours_checkout_form_group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
            font-size: 14px;
        }

        .ecotours_checkout_form_group input,
        .ecotours_checkout_form_group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            font-family: inherit;
            box-sizing: border-box;
        }

        .ecotours_checkout_form_group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .ecotours_checkout_form_group input:focus,
        .ecotours_checkout_form_group textarea:focus {
            outline: none;
            border-color: #c97201;
            box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
        }

        .ecotours_checkout_errors {
            background: #fee;
            border: 1px solid #fcc;
            color: #c33;
            padding: 12px;
            border-radius: 4px;
            margin-bottom: 20px;
        }

        .ecotours_checkout_errors ul {
            margin: 0;
            padding-left: 20px;
        }

        .ecotours_checkout_summary {
            background: white;
            padding: 24px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        .ecotours_checkout_summary h3 {
            margin: 0 0 24px 0;
            font-size: 18px;
            color: #333;
        }

        .ecotours_checkout_item {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid #eee;
        }

        .ecotours_checkout_item:last-of-type {
            border-bottom: none;
        }

        .ecotours_checkout_item img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 4px;
        }

        .ecotours_checkout_item_info {
            flex: 1;
        }

        .ecotours_checkout_item_name {
            font-weight: 600;
            color: #333;
            font-size: 14px;
            margin-bottom: 4px;
        }

        .ecotours_checkout_item_qty {
            font-size: 12px;
            color: #666;
        }

        .ecotours_checkout_item_price {
            font-weight: 600;
            color: #a0260d;
            text-align: right;
        }

        .ecotours_checkout_totals {
            border-top: 2px solid #c97201;
            padding-top: 16px;
            margin-top: 16px;
        }

        .ecotours_checkout_total_row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .ecotours_checkout_total_row.final {
            font-size: 18px;
            font-weight: 700;
            color: #a0260d;
        }

       

        @media (max-width: 768px) {
            .ecotours_checkout_hero h1 {
                font-size: 1.8rem;
            }

            .ecotours_checkout_wrapper {
                grid-template-columns: 1fr;
            }

            .ecotours_checkout_summary {
                position: static;
            }
        }






























        
  /* order_confirmation Page */
  /* everything */
  .ecotours_confirmation_page {
            max-width: 1000px;
            margin: 60px auto;
            padding: 0 20px 60px;
        }

        .ecotours_confirmation_page_hero {
            background: linear-gradient(135deg, #a0260d 0%, #eb9e02 100%);
            padding: 60px 20px;
            text-align: center;
            color: white;
            margin-bottom: 40px;
            border-radius: 8px;
        }

        .ecotours_confirmation_page_hero h1 {
            margin: 0;
            font-size: 2.5rem;
            font-weight: 700;
        }

        .ecotours_confirmation_page_hero p {
            margin: 12px 0 0 0;
            font-size: 16px;
            opacity: 0.95;
        }

        .ecotours_confirmation_page_content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        .ecotours_confirmation_page_card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            padding: 32px;
        }

        .ecotours_confirmation_page_section {
            margin-bottom: 32px;
        }

        .ecotours_confirmation_page_section:last-child {
            margin-bottom: 0;
        }

        .ecotours_confirmation_page_section_title {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid #ecf0f1;
        }

        .ecotours_confirmation_page_detail_row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #ecf0f1;
            font-size: 14px;
        }

        .ecotours_confirmation_page_detail_row:last-child {
            border-bottom: none;
        }

        .ecotours_confirmation_page_label {
            font-weight: 600;
            color: #555;
        }

        .ecotours_confirmation_page_value {
            color: #333;
            text-align: right;
        }

    

        .ecotours_confirmation_page_item {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #ddd;
        }

        .ecotours_confirmation_page_item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .ecotours_confirmation_page_item_img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 4px;
        }

        .ecotours_confirmation_page_item_info {
            flex: 1;
        }

 

        .ecotours_confirmation_page_payment_title {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }

        .ecotours_confirmation_page_payment_methods {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ecotours_confirmation_page_payment_option {
            display: flex;
            align-items: center;
            padding: 16px;
            border: 2px solid #ddd;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            background: white;
        }

        .ecotours_confirmation_page_payment_option:hover {
            border-color: #1abc9c;
            background: #f0fdfb;
        }

        .ecotours_confirmation_page_payment_option input[type="radio"] {
            margin-right: 12px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .ecotours_confirmation_page_payment_info {
            flex: 1;
        }

        .ecotours_confirmation_page_payment_name {
            font-weight: 600;
            color: #333;
            font-size: 15px;
            margin-bottom: 2px;
        }

        .ecotours_confirmation_page_payment_desc {
            font-size: 13px;
            color: #666;
        }

        .ecotours_confirmation_page_payment_icon {
            font-size: 24px;
            margin-right: 12px;
        }

        .ecotours_confirmation_page_amount_section {
            background: linear-gradient(135deg, #a0260d 0%, #eb9e02 100%);
            color: white;
            padding: 20px;
            border-radius: 6px;
            text-align: center;
            margin: 24px 0;
        }

        .ecotours_confirmation_page_amount_label {
            font-size: 13px;
            opacity: 0.9;
            margin-bottom: 8px;
        }

        .ecotours_confirmation_page_amount_value {
            font-size: 32px;
            font-weight: 700;
        }

        .ecotours_confirmation_page_button_group {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        

        .ecotours_confirmation_page_error {
            background: #fee;
            border: 1px solid #fcc;
            color: #c33;
            padding: 24px;
            border-radius: 8px;
            text-align: center;
        }

        .ecotours_confirmation_page_error h2 {
            margin: 0 0 12px 0;
            font-size: 20px;
        }

        .ecotours_confirmation_page_totals_sidebar {
            background: white;
            padding: 24px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        .ecotours_confirmation_page_totals_title {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }

        .ecotours_confirmation_page_totals_row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            font-size: 14px;
            border-bottom: 1px solid #ecf0f1;
        }

        .ecotours_confirmation_page_totals_row.final {
            font-size: 18px;
            font-weight: 700;
            color: #a0260d;
            border-bottom: none;
            border-top: 2px solid #c97201;
            padding-top: 16px;
            margin-top: 16px;
        }

        @media (max-width: 768px) {
            .ecotours_confirmation_page_hero h1 {
                font-size: 1.8rem;
            }

            .ecotours_confirmation_page_content {
                grid-template-columns: 1fr;
            }

            .ecotours_confirmation_page_totals_sidebar {
                position: static;
            }

            .ecotours_confirmation_page_button_group {
                flex-direction: column;
            }
        }
































  /* process_payment Page */
  /* everything */
        .ecotours_payment_page { max-width: 600px; margin: 60px auto; padding: 0 20px 60px; }
        .ecotours_payment_container { background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); padding: 40px; text-align: center; }
        .ecotours_payment_icon { font-size: 64px; margin-bottom: 20px; }
        .ecotours_payment_title { font-size: 28px; font-weight: 700; color: #333; margin-bottom: 12px; }
        .ecotours_payment_subtitle { font-size: 16px; color: #666; margin-bottom: 32px; }
        .ecotours_payment_details { background: #f5f5f5; padding: 20px; border-radius: 6px; margin-bottom: 32px; text-align: left; }
        .ecotours_payment_detail_row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #ddd; font-size: 14px; }
        .ecotours_payment_detail_row:last-child { border-bottom: none; }
        .ecotours_payment_detail_label { font-weight: 600; color: #555; }
        .ecotours_payment_detail_value { color: #333; }
        .ecotours_payment_amount { font-size: 32px; font-weight: 700; color: #000000; margin-top: 25px; padding-top: 16px; border-top: 2px solid #a0260d; }
        .ecotours_payment_method_info { background: #f5f5f5; border: 2px solid #c97201; padding: 16px; border-radius: 6px; margin: 32px 0; font-size: 14px; color: #333; line-height: 1.6; text-align: left; }
        .ecotours_payment_method_info strong { color: #a0260d; font-size: 16px; display: block; margin-bottom: 8px; }
        
        .mpesa_input_group { margin-top: 15px; text-align: left; }
        .mpesa_input_group label { font-weight: 600; font-size: 14px; color: #444; display: block; margin-bottom: 5px; }
        .mpesa_phone_field { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; }
        
        .ecotours_payment_button { display: inline-block; width: 100%; padding: 14px 32px; background: #1abc9c; color: white; border: none; border-radius: 4px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background 0.3s; text-decoration: none; margin-top: 15px; }
        .ecotours_payment_button:hover { background: #16a085; }
        .ecotours_payment_button:disabled { background: #999; cursor: not-allowed; }
        
        /* Processing Spinner Utility */
        .loading_spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,.3); border-radius: 50%; border-top-color: #fff; animation: spin 1s ease-in-out infinite; margin-right: 8px; vertical-align: middle; }
        @keyframes spin { to { transform: rotate(360deg); } }