/*
Theme Name: Prompt Master AI
Author: Team Prompt Master
Description: A futuristic Bangladeshi AI landing page theme.
Version: 1.0
*/

:root {
    --bg-dark: #0a0f1c; /* Deep Futuristic Dark */
    --primary-green: #00ff84; /* BD Green Vibe */
    --accent-cyan: #00f0ff;
    --alert-red: #ff2e63;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --font-heading: 'Hind Siliguri', sans-serif;
    --font-body: 'Noto Sans Bengali', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: 0.3s;
}

.glass-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 255, 132, 0.2);
}

/* Neon Button */
.btn-neon {
    background: linear-gradient(45deg, var(--primary-green), #00cc6a);
    color: #000;
    padding: 15px 40px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 15px rgba(0, 255, 132, 0.4);
    transition: transform 0.2s;
}

.btn-neon:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 132, 0.7);
}
/* -----------------------------------------------------------
   FINAL FIX: FORCE SIDE-BY-SIDE LAYOUT
   ----------------------------------------------------------- */

/* ১. কুপন বক্স এবং অপ্রয়োজনীয় টাইটেল লুকানো (ক্লিন লুকের জন্য) */
.custom-homepage-checkout .woocommerce-form-coupon-toggle,
.custom-homepage-checkout .woocommerce-additional-fields,
.custom-homepage-checkout #order_review_heading {
    display: none !important;
}

/* ২. মেইন ফর্ম কন্টেইনারকে ফ্লেক্স করা */
.custom-homepage-checkout form.checkout.woocommerce-checkout {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 40px !important;
    justify-content: space-between !important;
}

/* ৩. বাম পাশ (বিলিং ডিটেইলস) */
.custom-homepage-checkout #customer_details {
    flex: 1 1 55% !important; /* ৫৫% জায়গা নেবে */
    width: auto !important;
    min-width: 300px !important;
    float: none !important;
}

.custom-homepage-checkout .col-1, 
.custom-homepage-checkout .col-2 {
    max-width: 100% !important;
    width: 100% !important;
    float: none !important;
    flex: none !important;
}

/* ৪. ডান পাশ (অর্ডার রিভিউ ও পেমেন্ট) */
.custom-homepage-checkout #order_review {
    flex: 1 1 35% !important; /* ৩৫% জায়গা নেবে */
    width: auto !important;
    min-width: 300px !important;
    float: none !important;
    clear: none !important;
    
    /* ডান পাশের কার্ড ডিজাইন */
    background: #1e293b; 
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #334155;
    height: fit-content;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ৫. টাইটেল ডিজাইন (Billing Details & Your Order) */
.custom-homepage-checkout h3 {
    color: white !important;
    font-size: 20px !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
    border-bottom: 1px solid #334155;
    padding-bottom: 10px;
    display: block !important;
}

/* ৬. ইনপুট ফিল্ড ডিজাইন */
.custom-homepage-checkout label {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.custom-homepage-checkout input.input-text {
    background: #0f172a !important;
    border: 1px solid #334155 !important;
    color: white !important;
    padding: 12px 15px !important;
    border-radius: 8px !important;
    width: 100%;
}

.custom-homepage-checkout input.input-text:focus {
    border-color: #00ff84 !important;
    outline: none;
}

/* ৭. টেবিল ডিজাইন (অর্ডার সামারি) */
.custom-homepage-checkout table.shop_table {
    border: none !important;
    margin-bottom: 20px;
}

.custom-homepage-checkout table.shop_table th,
.custom-homepage-checkout table.shop_table td {
    border-top: 1px solid #334155 !important;
    background: transparent !important;
    color: #cbd5e1;
    padding: 10px 0;
}

.custom-homepage-checkout table.shop_table tfoot tr.order-total th,
.custom-homepage-checkout table.shop_table tfoot tr.order-total td {
    color: #00ff84 !important;
    font-weight: bold;
    font-size: 18px;
    border-top: 2px solid #334155 !important;
}

/* ৮. পেমেন্ট সেকশন */
.custom-homepage-checkout #payment {
    background: transparent !important;
    padding: 0 !important;
}

.custom-homepage-checkout #payment ul.payment_methods {
    border: none !important;
    padding: 0 !important;
    margin-bottom: 15px;
}

.custom-homepage-checkout #payment ul.payment_methods li {
    background: #0f172a;
    border: 1px solid #334155;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    color: white;
}

/* বাটন ডিজাইন */
.custom-homepage-checkout #place_order {
    background-color: #00ff84 !important;
    color: #000000 !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    padding: 15px !important;
    border-radius: 50px !important;
    width: 100%;
    margin-top: 10px;
    text-transform: uppercase;
    transition: transform 0.2s;
}

.custom-homepage-checkout #place_order:hover {
    background-color: white !important;
    transform: scale(1.02);
}

/* ৯. মোবাইল রেস্পন্সিভ (মোবাইলে নিচে নিচে দেখাবে) */
@media (max-width: 900px) {
    .custom-homepage-checkout form.checkout.woocommerce-checkout {
        flex-direction: column !important;
    }
    .custom-homepage-checkout #customer_details, 
    .custom-homepage-checkout #order_review {
        width: 100% !important;
        flex: auto !important;
    }
}