/* Pomonah B2B Nutraceutical Suite - Main Styles */

:root {
    --pomonah-primary:   #0B3D2E;
    --pomonah-secondary: #C8A951;
    --pomonah-dark:      #1a1a1a;
    --pomonah-light:     #f8f9fa;
    --pomonah-white:     #ffffff;
    --pomonah-gray:      #6c757d;
    --border-radius:     12px;
    --shadow:            0 5px 20px rgba(0,0,0,0.1);
    --transition:        all 0.3s ease;
}

/* ── Hero ──────────────────────────────── */
.pomonah-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    background: linear-gradient(135deg, #0B3D2E 0%, #0a2a20 100%);
    color: white;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}
.hero-content { flex: 1; padding-right: 50px; z-index: 2; }
.hero-content h1 { font-size: 48px; font-family: 'Poppins', sans-serif; margin-bottom: 20px; line-height: 1.2; }
.hero-content p  { font-size: 18px; opacity: 0.9; max-width: 550px; }
.hero-buttons    { display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap; }

/* ── Buttons ──────────────────────────── */
.pomonah-btn,
.pomonah-btn-primary {
    background: var(--pomonah-secondary);
    color: var(--pomonah-primary);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}
.pomonah-btn:hover,
.pomonah-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,169,81,0.4);
    color: var(--pomonah-primary);
}
.pomonah-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}
.pomonah-btn-outline:hover { background: rgba(255,255,255,0.1); color: white; }

/* ── Trust Bar ────────────────────────── */
.trust-bar {
    background: var(--pomonah-dark);
    padding: 20px 5%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.trust-item { color: var(--pomonah-secondary); font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.trust-item i { font-size: 18px; }

/* ── Products Grid ────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 5%;
}
.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.product-image          { height: 250px; overflow: hidden; }
.product-image img      { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-card-body      { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-card-body h3   { font-size: 16px; font-family: 'Poppins', sans-serif; color: var(--pomonah-primary); margin-bottom: 10px; }
.product-specs          { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 15px; }
.product-specs span     { background: var(--pomonah-light); padding: 4px 10px; border-radius: 20px; font-size: 12px; color: var(--pomonah-gray); }
.btn-details, .btn-quote { display: block; text-align: center; padding: 10px; border-radius: 8px; cursor: pointer; font-weight: 600; margin-top: 8px; transition: var(--transition); text-decoration: none; }
.btn-details  { border: 2px solid var(--pomonah-primary); color: var(--pomonah-primary); background: transparent; }
.btn-details:hover { background: var(--pomonah-primary); color: white; }
.btn-quote    { background: var(--pomonah-secondary); color: var(--pomonah-primary); border: none; }
.btn-quote:hover  { opacity: 0.9; }

/* ── Why Choose Us ────────────────────── */
.why-choose            { background: var(--pomonah-light); padding: 60px 5%; text-align: center; }
.why-choose h2         { font-size: 36px; font-family: 'Poppins', sans-serif; color: var(--pomonah-primary); }
.features-grid         { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-top: 40px; }
.feature-item          { padding: 30px 20px; background: white; border-radius: var(--border-radius); box-shadow: var(--shadow); }
.feature-item i        { font-size: 48px; color: var(--pomonah-secondary); }
.feature-item h3       { margin: 16px 0 8px; font-family: 'Poppins', sans-serif; color: var(--pomonah-primary); }

/* ── Inquiry Form ─────────────────────── */
.pomonah-inquiry-wrapper {
    max-width: 680px;
    margin: 40px auto;
    padding: 50px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.pomonah-inquiry-wrapper h3 { font-size: 28px; font-family: 'Poppins', sans-serif; color: var(--pomonah-primary); margin-bottom: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus { outline: none; border-color: var(--pomonah-primary); }
.form-grid textarea { grid-column: 1 / -1; resize: vertical; }
#form-message .success { color: #2d7a4f; background: #e9f7ef; padding: 12px 16px; border-radius: 8px; margin-top: 16px; }
#form-message .error   { color: #c0392b; background: #fdf0ef; padding: 12px 16px; border-radius: 8px; margin-top: 16px; }

/* ── Certifications ────────────────────── */
.certifications-bar { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; padding: 40px 5%; background: var(--pomonah-primary); }
.cert-badge { display: flex; align-items: center; gap: 8px; color: var(--pomonah-secondary); font-weight: 600; background: rgba(255,255,255,0.05); padding: 10px 20px; border-radius: 30px; border: 1px solid rgba(200,169,81,0.3); }

/* ── WhatsApp Floating Button ─────────── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 9998;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; box-shadow: 0 6px 25px rgba(37,211,102,0.5); }

/* ── Chatbot ──────────────────────────── */
#pomonah-chatbot { position: fixed; bottom: 100px; right: 30px; z-index: 9997; }
#chat-toggle {
    background: var(--pomonah-primary);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(11,61,46,0.3);
    font-size: 22px;
    transition: var(--transition);
}
#chat-toggle:hover { transform: scale(1.05); }
#chat-window {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    flex-direction: column;
}
.chat-header {
    background: var(--pomonah-primary);
    color: white;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
#chat-close { cursor: pointer; font-size: 20px; opacity: 0.8; }
#chat-close:hover { opacity: 1; }
#chat-messages { height: 260px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.bot-msg, .user-msg { padding: 10px 14px; border-radius: 12px; font-size: 13px; line-height: 1.5; max-width: 85%; }
.bot-msg  { background: var(--pomonah-light); color: var(--pomonah-dark); align-self: flex-start; border-bottom-left-radius: 4px; }
.user-msg { background: var(--pomonah-primary); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-input-row { display: flex; gap: 8px; padding: 12px; border-top: 1px solid #eee; }
#chat-input { flex: 1; padding: 9px 14px; border: 1.5px solid #ddd; border-radius: 20px; font-size: 13px; }
#chat-input:focus { outline: none; border-color: var(--pomonah-primary); }
#chat-send { background: var(--pomonah-primary); color: white; border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
#chat-send:hover { background: #0d4f3a; }

/* ── Price Calculator ─────────────────── */
.price-calculator { background: white; border-radius: var(--border-radius); padding: 30px; box-shadow: var(--shadow); margin: 20px 0; }
.price-calculator h3 { font-family: 'Poppins', sans-serif; color: var(--pomonah-primary); margin-bottom: 20px; }
.calculator-row { margin-bottom: 16px; }
.calculator-row label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--pomonah-dark); }
.calculator-row select { width: 100%; padding: 10px 14px; border: 1.5px solid #ddd; border-radius: 8px; }
.calculator-result { display: flex; justify-content: space-between; align-items: center; padding: 16px; background: var(--pomonah-light); border-radius: 10px; margin: 20px 0; }
.estimated-price { font-size: 22px; font-weight: 700; color: var(--pomonah-primary); }

/* ── Bulk Pricing Table (WooCommerce) ─── */
.pomonah-bulk-pricing { margin: 20px 0; padding: 20px; background: var(--pomonah-light); border-radius: 10px; border-left: 4px solid var(--pomonah-secondary); }
.pomonah-bulk-pricing h4 { margin-bottom: 12px; color: var(--pomonah-primary); }
.pomonah-bulk-pricing table { width: 100%; border-collapse: collapse; }
.pomonah-bulk-pricing th, .pomonah-bulk-pricing td { padding: 8px 12px; text-align: left; border-bottom: 1px solid #ddd; }
.pomonah-bulk-pricing th { font-weight: 700; color: var(--pomonah-primary); }

/* ── Social Share ─────────────────────── */
.pomonah-social-share { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.pomonah-social-share a { color: white; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition); }
.pomonah-social-share a:nth-child(2) { background: #0077b5; }
.pomonah-social-share a:nth-child(3) { background: #1da1f2; }
.pomonah-social-share a:nth-child(4) { background: #25d366; }
.pomonah-social-share a:hover { opacity: 0.85; transform: scale(1.1); }

/* ── Language Switcher ────────────────── */
.pomonah-lang-switcher { list-style: none; display: flex; gap: 10px; padding: 0; margin: 0; }
.pomonah-lang-switcher a { padding: 4px 12px; border-radius: 20px; text-decoration: none; font-size: 13px; border: 1px solid #ddd; color: var(--pomonah-dark); }
.pomonah-lang-switcher .active a { background: var(--pomonah-primary); color: white; border-color: var(--pomonah-primary); }

/* ── Responsive ───────────────────────── */
@media (max-width: 768px) {
    .pomonah-hero          { flex-direction: column; text-align: center; padding: 50px 5%; }
    .hero-content          { padding-right: 0; }
    .hero-content h1       { font-size: 32px; }
    .hero-buttons          { justify-content: center; }
    .form-grid             { grid-template-columns: 1fr; }
    .pomonah-inquiry-wrapper { padding: 30px 20px; }
    .products-grid         { grid-template-columns: 1fr; }
    .trust-bar             { justify-content: flex-start; }
    #chat-window           { width: 280px; }
}
