/* ============================================================
   BULK ORDER SYSTEM — REDESIGNED UI
   Color Scheme: #000021 bg | #00ffbb accent | #ffffff text
   Aesthetic: Dark-tech / cyberpunk-clean / editorial
   ============================================================ */



*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #000021;
    --bg-card: #00001a;
    --bg-glass: rgba(0, 0, 33, 0.85);
    --accent: #00ffbb;
    --accent-dim: rgba(0, 255, 187, 0.12);
    --accent-glow: rgba(0, 255, 187, 0.25);
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.5);
    --border: rgba(0, 255, 187, 0.2);
    --border-hot: rgba(0, 255, 187, 0.6);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    
}

/* ── Hide theme breadcrumb ── */
.page-id-26324 .breadcrumb-title-wrapper,
.page-id-26322 .breadcrumb-title-wrapper {
    display: none !important;
}

.page-id-2807 #pxl-main {
    padding-top: 100px !important;
}

.entry-header {
    display: none;
}

/* ── Base ── */
body {
    background-color: var(--bg);
    font-family: var(--font-display);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════
   LAYOUT WRAPPER
═══════════════════════════════════════════ */
.bos_section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

/* ═══════════════════════════════════════════
   HERO / HEADER SECTION
═══════════════════════════════════════════ */
.commonsection.bosfdiv {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 52px 48px;
    overflow: hidden;
    text-align: center;
    margin-top: 32px;
}





.bosfdiv h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    position: relative;
}

.bosfdiv p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    font-family: var(--font-mono);
    font-weight: 300;
}

/* ═══════════════════════════════════════════
   GENERIC SECTION CARD
═══════════════════════════════════════════ */
.commonsection {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 32px;
    position: relative;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.commonsection:hover {
    border-color: var(--border-hot);
    box-shadow: 0 0 40px rgba(0, 255, 187, 0.06);
}

.commonsection>h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.commonsection>h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}

/* ═══════════════════════════════════════════
   TWO-COLUMN CONTAINER
═══════════════════════════════════════════ */
.bos_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ═══════════════════════════════════════════
   INPUT CARDS (left / right / secondary)
═══════════════════════════════════════════ */
.bos-left,
.bos_right,
.bos-secondary {
    background: rgba(0, 255, 187, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color var(--transition), background var(--transition);
}

.bos-left:hover,
.bos_right:hover,
.bos-secondary:hover {
    border-color: var(--accent);
    background: rgba(0, 255, 187, 0.055);
}

.bos-left h3,
.bos_right h3,
.bos-secondary h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bos-left p,
.bos_right p,
.bos-secondary p {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    line-height: 1.6;
}

.bos-secondary {
    grid-column: 1 / -1;
    max-width: 100% !important;
}

.bos_left_h3 {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.bos_main_bnt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.bos_main_bnt:hover {
    background: var(--accent);
    color: var(--bg);
    box-shadow: 0 0 20px var(--accent-glow);
}

.bos_sec_btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.bos_sec_btn a {
    color: var(--bg);
    text-decoration: none;
}

.bos_sec_btn:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.bos_sec_btn:hover a {
    color: var(--accent);
}

.bos_btn {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════
   ENERGY / HERO BUTTON
═══════════════════════════════════════════ */
.energy-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 52px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.35s ease;
    animation: floaty 3.5s ease-in-out infinite;
}

.energy-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(0, 255, 187, 0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.energy-btn:hover::before {
    transform: translateX(100%);
}

.energy-btn:hover {
    background: var(--accent);
    color: var(--bg);
    box-shadow: 0 0 40px rgba(0, 255, 187, 0.4), 0 0 80px rgba(0, 255, 187, 0.15);
    animation: none;
    transform: translateY(-2px);
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ═══════════════════════════════════════════
   INPUTS (global)
═══════════════════════════════════════════ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="file"],
select,
textarea {
    background: rgba(0, 255, 187, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 13px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

input::placeholder,
textarea::placeholder {
    color: rgba(0, 255, 187, 0.4);
    font-size: 12px;
}

/* file input styling */
input[type="file"] {
    padding: 8px 10px;
    width: 100%;
    cursor: pointer;
    color: var(--text-muted);
}

input[type="file"]::-webkit-file-upload-button {
    background: var(--accent-dim);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 5px 14px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

input[type="file"]::-webkit-file-upload-button:hover {
    background: var(--accent);
    color: var(--bg);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300ffbb' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px !important;
    cursor: pointer;
}

option {
    background: var(--bg-card);
    color: var(--text);
}

/* number inputs — show spinner */
input[type="number"] {
    -moz-appearance: textfield;
    appearance: auto;
    -webkit-appearance: number-input;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
    height: auto;
}

/* ═══════════════════════════════════════════
   NOTE / WARNING BAR
═══════════════════════════════════════════ */
.note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 187, 0.06);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 12px 16px;
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    margin-bottom: 16px;
}

.note strong {
    color: var(--accent);
}

/* ═══════════════════════════════════════════
   MANUAL SKU
═══════════════════════════════════════════ */
#manual-sku {
    padding: 10px 14px !important;
    width: 100% !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    background: rgba(0, 255, 187, 0.04) !important;
    color: var(--accent) !important;
    font-family: var(--font-mono) !important;
    font-size: 13px !important;
    letter-spacing: 0.05em;
}

#manual-sku:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px var(--accent-dim) !important;
}

#manual-sku::placeholder {
    color: rgba(0, 255, 187, 0.35) !important;
}

/* ═══════════════════════════════════════════
   SEARCH INPUT & RESULTS
═══════════════════════════════════════════ */
#search-input {
    width: 100% !important;
    padding: 11px 16px !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    background: rgba(0, 255, 187, 0.04) !important;
    color: var(--accent) !important;
    font-family: var(--font-mono) !important;
    font-size: 13px !important;
    transition: border-color var(--transition), box-shadow var(--transition);
    margin-bottom: 0 !important;
}

#search-input:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px var(--accent-dim) !important;
}

#search-input::placeholder {
    color: rgba(0, 255, 187, 0.35) !important;
}

.bossearchreslt {
    margin-top: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px;
    height: 240px;
    max-height: 240px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.bossearchreslt::-webkit-scrollbar {
    width: 4px;
}

.bossearchreslt::-webkit-scrollbar-track {
    background: transparent;
}

.bossearchreslt::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 99px;
}

/* ═══════════════════════════════════════════
   SEARCH RESULT CARDS
═══════════════════════════════════════════ */
.boxsearchproduct {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(0, 255, 187, 0.03);
    transition: all var(--transition);
}

.boxsearchproduct:hover {
    border-color: var(--accent);
    background: rgba(0, 255, 187, 0.07);
}

.boxsearchproduct img {
    width: 56px !important;
    height: 56px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.boxsearchproduct>div:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.boxsearchproduct p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 2px 0 !important;
    font-family: var(--font-mono);
    line-height: 1.4;
}

.boxsearchproduct p:first-child {
    font-size: 13px !important;
    font-family: var(--font-display);
    font-weight: 600 !important;
    color: var(--text) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bos_itapara {
    font-size: 11px !important;
    color: var(--text-muted) !important;
    font-family: var(--font-mono) !important;
}

.page-id-28392 .variation-select {
    width: 100%;
    margin-top: 6px;
    padding: 5px 32px 5px 10px !important;
    font-size: 12px !important;
    border: 1px solid white;
}
.page-id-28392 select {
    height: 60px;
    color: white;
}

/* ═══════════════════════════════════════════
   RAISE REQUEST SECTION
═══════════════════════════════════════════ */
#raise-request-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rr-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(0, 255, 187, 0.03);
    transition: all var(--transition);
}

.rr-item:hover {
    border-color: var(--accent);
}

.rr-item img {
    width: 80px !important;
    height: 80px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: var(--bg);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.rr-item>div:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.rr-item .rr-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 4px;
}

.rr-item .rr-meta {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.rr-variation {
    margin-top: 8px;
    width: 100%;
    padding: 6px 32px 6px 10px !important;
    font-size: 12px !important;
}

.rr-qty {
    width: 64px !important;
    padding: 6px 8px !important;
    border: 1px solid var(--accent) !important;
    border-radius: 6px !important;
    background: rgba(0, 255, 187, 0.06) !important;
    color: var(--accent) !important;
    text-align: center;
    font-family: var(--font-mono) !important;
    font-size: 14px !important;
    font-weight: 600;
}

/* qty column */
.rr-item>div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.rr-item label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* center raise button */
.boi-submit-wrap,
#raise-request-block>div[style*="text-align:center"],
#raise-request-block>div[style*="text-align: center"] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* ═══════════════════════════════════════════
   ORDER SUMMARY TABLE
═══════════════════════════════════════════ */
.order-summary {
    width: 100%;
    overflow-x: auto;
}

.order-summary-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
}

.order-summary-table th {
    background: rgba(0, 255, 187, 0.1);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
}

.order-summary-table td {
    padding: 12px 16px;
    color: var(--text);
    font-size: 13px;
    font-family: var(--font-mono);
    border-bottom: 1px solid rgba(0, 255, 187, 0.07);
}

.order-summary-table tr:last-child td {
    border-bottom: none;
}

.order-summary-table tr:hover td {
    background: rgba(0, 255, 187, 0.04);
}

/* ═══════════════════════════════════════════
   BOI FORM WRAPPER (Offer/Request form page)
═══════════════════════════════════════════ */
.boi-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 40px !important;
    position: relative;
}

.boi-form-wrapper.commonsection h2 {
    font-size: clamp(24px, 4vw, 38px) !important;
    color: var(--accent) !important;
    text-align: center !important;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.boi-form-wrapper h3 {
    font-size: 14px !important;
    font-weight: 600;
    color: var(--text) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.boi-form-wrapper .action-card {
    background: rgba(0, 255, 187, 0.03);
    border: 1px solid var(--border);
}

/* select type */
.boi-form-wrapper select[name="customer_type"] {
    width: 100%;
    padding: 12px 40px 12px 16px !important;
    font-size: 14px !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    background: rgba(0, 255, 187, 0.04) !important;
    color: var(--text) !important;
}

/* two-col inputs */
.boi-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px !important;
    margin-top: 12px !important;
}
.boi-one-col{
    display: grid;
    grid-template-columns:  1fr;
    gap: 12px !important;
    margin-top: 12px !important;
}

.boi-two-col input,
.boi-two-col select {
    width: 100% !important;
    padding: 11px 14px !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    background: rgba(0, 255, 187, 0.04) !important;
    color: var(--text) !important;
    font-family: var(--font-mono) !important;
    font-size: 13px !important;
}

.boi-two-col input:focus,
.boi-two-col select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px var(--accent-dim) !important;
}

.boi-two-col input::placeholder {
    color: rgba(0, 255, 187, 0.35) !important;
}

.namefield {
    border-radius: var(--radius-sm) !important;
}

/* textarea */
.boi-form-wrapper textarea {
    width: 100% !important;
    min-height: 100px;
    padding: 12px 14px !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    background: rgba(0, 255, 187, 0.04) !important;
    color: var(--text) !important;
    font-family: var(--font-mono) !important;
    font-size: 13px !important;
    resize: vertical;
}

.boi-form-wrapper textarea::placeholder {
    color: rgba(0, 255, 187, 0.35) !important;
}

/* product table in offer form */
.boi-product-tablediv {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--radius);
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.boi-product-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.boi-product-table thead tr {
    background: rgba(0, 255, 187, 0.1);
}

.boi-product-table thead th {
    color: var(--accent) !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border) !important;
    border-right: none !important;
    border-top: none !important;
    border-left: none !important;
}

.boi-product-table tbody td {
    padding: 11px 14px;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 12px;
    border-bottom: 1px solid rgba(0, 255, 187, 0.07) !important;
    border-right: none !important;
    border-left: none !important;
    vertical-align: middle;
}

.boi-product-table tbody tr:hover td {
    background: rgba(0, 255, 187, 0.04);
}

.boi-product-table tbody tr:last-child td {
    border-bottom: none !important;
}

.boi-product-table th,
.boi-product-table td {
    border: none !important;
}

.inputqu {
    padding: 6px 8px !important;
    width: 64px !important;
    text-align: center;
    border: 1px solid var(--accent) !important;
    border-radius: 6px !important;
    background: rgba(0, 255, 187, 0.06) !important;
    color: var(--accent) !important;
    font-family: var(--font-mono) !important;
}

/* submit button */
.boi-submit-btn {
    padding: 14px 56px !important;
    font-family: var(--font-display) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent) !important;
    background: var(--bg-card) !important;
    border: 1px solid var(--accent) !important;
    border-radius: var(--radius) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.boi-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(0, 255, 187, 0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.boi-submit-btn:hover::before {
    transform: translateX(100%);
}

.boi-submit-btn:hover {
    background: var(--accent) !important;
    color: var(--bg) !important;
    box-shadow: 0 0 30px var(--accent-glow);
}

.boi-submit-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

/* ═══════════════════════════════════════════
   SUCCESS BANNER
═══════════════════════════════════════════ */
.boi-success {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: rgba(0, 255, 187, 0.08);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    animation: fadeIn 0.5s ease-in-out;
    margin-bottom: 16px;
}

.boi-msg {
    display: none;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 13px;
}

/* ═══════════════════════════════════════════
   CART / REMOVE BUTTONS (WC overrides)
═══════════════════════════════════════════ */
.remove-item {
    background: transparent !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    color: var(--text-muted) !important;
    padding: 5px 10px !important;
    cursor: pointer;
    transition: all var(--transition);
}

.remove-item:hover {
    border-color: #ff4f6a !important;
    color: #ff4f6a !important;
}

.update-qty {
    border: 1px solid var(--accent) !important;
    border-radius: var(--radius-sm) !important;
    color: var(--accent) !important;
    padding: 6px 12px !important;
    cursor: pointer;
    background: transparent !important;
    transition: all var(--transition);
}

.update-qty:hover {
    background: var(--accent-dim) !important;
}

/* ═══════════════════════════════════════════
   PRODUCT DETAIL / BIS
═══════════════════════════════════════════ */
.bis_product_buy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 16px;
    margin-top: 20px;
}

.left_bor {
    border-left: 2px solid var(--accent);
    padding: 4px 18px;
    text-align: center;
}

.center {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: var(--accent);
}

.center2 {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   FLOATING CART BUTTON
═══════════════════════════════════════════ */
.floating-action {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: var(--bg-card) !important;
    border: 1px solid var(--accent) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 187, 0.2);
}

.floating-action:hover {
    background: var(--accent) !important;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 255, 187, 0.4);
}

.floating-action .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--bg);
    font-size: 11px;
    font-weight: 800;
    font-family: var(--font-mono);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ═══════════════════════════════════════════
   TOAST SYSTEM
═══════════════════════════════════════════ */
#boi-toast-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.boi-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    min-width: 240px;
    max-width: 340px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
}

.boi-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.boi-toast.success {
    background: rgba(0, 255, 187, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.boi-toast.error {
    background: rgba(255, 79, 106, 0.1);
    border: 1px solid rgba(255, 79, 106, 0.5);
    color: #ff6b80;
}

.boi-toast.info {
    background: rgba(0, 140, 255, 0.1);
    border: 1px solid rgba(0, 140, 255, 0.4);
    color: #5ab3ff;
}

.boi-toast span {
    flex: 1;
}

/* View Cart link inside toast */
.boi-toast a {
    flex-shrink: 0;
    padding: 4px 12px;
    border-radius: 6px;
    background: var(--accent);
    color: var(--bg);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════ */
.boi-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    height: 100%;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.boi-sidebar.open {
    right: 0;
}

.boi-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

#boi-sidebar-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color var(--transition);
}

#boi-sidebar-close:hover {
    color: var(--accent);
}

.boi-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.boi-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 255, 187, 0.07);
}

.boi-sidebar-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--bg);
}

.boi-sidebar-item .info h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin: 0 0 4px;
}

.boi-sidebar-item .info span {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.boi-sidebar-footer {
    padding: 16px;
    border-top: 1px solid var(--border);
}

.boi-view-cart-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: var(--accent);
    color: var(--bg);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    transition: all var(--transition);
}

.boi-view-cart-btn:hover {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

/* ═══════════════════════════════════════════
   SEARCH RESULT "divofsearchresult"
═══════════════════════════════════════════ */
.divofsearchresult {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-6px);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.commonsection {
    animation: slideUp 0.4s ease both;
}

.commonsection:nth-child(2) {
    animation-delay: 0.05s;
}

.commonsection:nth-child(3) {
    animation-delay: 0.10s;
}

.commonsection:nth-child(4) {
    animation-delay: 0.15s;
}

.commonsection:nth-child(5) {
    animation-delay: 0.20s;
}

/* ═══════════════════════════════════════════
   SECOND_BOS_SECTION override
═══════════════════════════════════════════ */
.second_bos_section {
    margin-bottom: 0 !important;
}

/* ═══════════════════════════════════════════
   EMOJI / WP SMILEY
═══════════════════════════════════════════ */
img.wp-smiley,
img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1.3em !important;
    margin: 0 !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .bos_section {
        padding: 0 12px 40px;
        gap: 14px;
    }

    .commonsection.bosfdiv {
        padding: 36px 24px;
    }

    .commonsection {
        padding: 20px 18px;
    }

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

    .bos-secondary {
        grid-column: 1 / -1;
    }

    .boi-form-wrapper {
        padding: 24px 18px !important;
    }

    .boi-two-col {
        grid-template-columns: 1fr;
    }

    .boi-two-col input,
    .boi-two-col select {
        width: 100% !important;
    }

    .boi-submit-btn {
        padding: 14px 32px !important;
        width: 100% !important;
    }

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

    .bossearchreslt {
        height: 220px;
    }

    .rr-item {
        flex-wrap: wrap;
    }

    .energy-btn {
        padding: 14px 32px;
        font-size: 13px;
    }

    .floating-action {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .boi-sidebar {
        width: 100%;
        right: -110%;
    }
}

@media (max-width: 425px) {
    .bos_btn {
        flex-direction: column;
    }

    .bos_main_bnt,
    .bos_sec_btn {
        width: 100%;
        justify-content: center;
    }

    .commonsection>h2 {
        font-size: 16px;
    }

    .bosfdiv h2 {
        font-size: 24px;
    }

    .boi-product-tablediv {
        overflow-x: auto;
    }

    .rr-item>div:last-child {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 320px) {
    .bos_section {
        padding: 0 8px 30px;
    }
}

.boi-toast,
.boi-toast.success,
.boi-toast.error,
.boi-toast.info {
    background: #000029 !important;
    color: #fff !important;
    border: 1px solid rgba(0, 255, 187, 0.3) !important;
}