/* bmp-styles.css */
.bmp-wrapper { width: 100%; max-width: 1400px; margin: 0 auto; font-family: "brandon-grotesque", sans-serif; overflow: hidden; padding: 20px 0; }
.bmp-wrapper * { font-family: "brandon-grotesque", sans-serif; }

/* Logo increased by 30% */
.bmp-logo { max-width: 350px; margin: 0 auto 2.5rem auto; display: block; }

.bmp-header { text-align: center; margin-bottom: 2rem; }
.bmp-header h2 {
    font-size: 1.9rem;
    margin-bottom: 0;
    color: #2a2a2a !important;
    font-weight: bold;
    padding-top: 10px !important;
}
.bmp-header p { font-size: 1.1rem; color: #4a4a4a; font-style: italic; margin-top: 0; }

/* Progress Bar */
.bmp-progress-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 0rem;
}
.bmp-step-indicator { margin: 0 1.5rem; font-size: 1rem; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s; cursor: pointer; margin-bottom: -.5px;}
.bmp-step-indicator:hover { color: #444; }
.bmp-step-indicator.active { color: #000; border-bottom: 2px solid #000; padding-bottom: 0.5rem; }

/* Step Animations */
.bmp-step { display: none; opacity: 0; transform: translateY(15px); transition: opacity 0.4s ease, transform 0.4s ease; }
.bmp-step.active { display: block; opacity: 1; transform: translateY(0); }

/* Recipe Card Grid */
.bmp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.bmp-card { position: relative; background: #fff; border: 1px solid #e5e5e5; border-radius: 4px; text-align: center; cursor: pointer; transition: all 0.3s ease; display: flex; flex-direction: column; overflow: hidden; }
.bmp-card:hover { box-shadow: 0 8px 16px rgba(0,0,0,0.06); transform: translateY(-2px); }

/* Info Button - Expanding Pill */
.bmp-info-btn { position: absolute; top: 10px; right: 10px; height: 30px; min-width: 30px; background: #fff; color: #000; border: 1px solid #e5e5e5; border-radius: 15px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; z-index: 10; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 2px 6px rgba(0,0,0,0.12); padding: 0 10px; box-sizing: border-box; overflow: hidden; white-space: nowrap; }
.bmp-info-btn .bmp-i-icon { font-weight: bold; font-family: serif !important; font-style: italic; font-size: 14px; }
.bmp-info-btn .bmp-info-text { max-width: 0; opacity: 0; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); font-family: "brandon-grotesque", sans-serif; font-size: 11px; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; overflow: hidden; display: inline-block; vertical-align: middle; }
.bmp-info-btn:hover { border-color: #000; padding: 0 14px; }
.bmp-info-btn:hover .bmp-info-text { max-width: 120px; opacity: 1; margin-left: 8px; }

/* Selected State */
.bmp-card.selected { background-color: #eaffdd; border-color: #b9e0a5; box-shadow: 0 4px 12px rgba(185, 224, 165, 0.4); }

/* Compact Image */
.bmp-img-wrap img { width: 100%; height: 200px; object-fit: cover; border-bottom: 1px solid #f0f0f0; }

/* Compact Content & Variations */
.bmp-card-content { padding: 1rem; display: flex; flex-direction: column; flex-grow: 1; justify-content: space-between; }
.bmp-card h3 { font-size: 1.15rem; margin: 0 0 0.25rem 0; line-height: 1.2; color: #000 !important; font-weight: 700; flex-grow: 1; padding-top: 5px !important;}
.bmp-price { font-weight: bold; margin-bottom: 0.75rem; color: #333; font-size: 1.05rem; }

.bmp-variation-select { width: 100%; padding: 8px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 3px; font-family: inherit; font-size: 0.9rem; cursor: pointer; }

/* Simple Text Underline Button */
.bmp-select-btn { background: transparent; color: #6b6b6b; border: none; text-decoration: underline; text-transform: uppercase; font-size: 0.75rem; font-weight: bold; letter-spacing: 1px; width: 100%; transition: 0.2s; padding: 5px 0; margin-top: auto; }
.bmp-card.selected .bmp-select-btn { text-decoration: none; color: #000; }

/* Summary Layout */
.bmp-summary-wrapper { max-width: 800px; margin: 0 auto; background: #fff; border: 1px solid #e5e5e5; border-radius: 4px; padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.bmp-summary-container { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.5rem; }
.bmp-summary-item { display: flex; align-items: center; gap: 15px; padding: 10px 15px; background: #fdfdfd; border: 1px solid #eee; border-radius: 4px; }
.bmp-summary-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; }
.bmp-summary-details { flex-grow: 1; text-align: left; }
.bmp-summary-details h4 { margin: 0 0 3px 0; font-size: 1.1rem; color: #000 !important; font-weight: 700; padding-top: 3px !important;}
.bmp-summary-price { font-weight: bold; font-size: 1.05rem; color: #333; }

.bmp-summary-totals { text-align: right; border-top: 1px solid #e2e2e2; padding-top: 1rem; font-size: 1.1rem; margin-bottom: 1.5rem; }
.bmp-final-total { font-size: 1.4rem; font-weight: bold; color: #000; margin-top: 10px; }

/* TrustIndex Widget */
.bmp-trustindex-widget {
    background-color: transparent;
    color: #ffffff;
    padding: 0;
    border-radius: 4px;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom:5px;
}
.ti-widget-container {
    background: #1b063f;
    border-radius: 17px;
}
/* Actions */
.bmp-actions { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #dcdcdc; padding-top: 1.5rem; }
.btn-primary, .btn-secondary { padding: 12px 25px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: bold; cursor: pointer; transition: 0.3s; border-radius: 2px; }
.btn-primary { background: #000; color: #fff; border: 2px solid #000; margin-left: auto; }
.btn-primary:hover { background: #333; border-color: #333; }
.btn-primary:disabled { background: #ccc; border-color: #ccc; cursor: not-allowed; }
.btn-secondary { background: transparent; color: #000; border: none; text-decoration: underline; padding-left: 0; }
.button#bmp-submit-cart {
font-size:1.1rem !important;
}

/* Responsive overrides */
@media (max-width: 1024px) { .bmp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .bmp-progress-container { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .bmp-step-indicator.active { border-bottom: none; font-weight: bold; }
    .bmp-summary-item { flex-direction: column; text-align: center; }
    .bmp-summary-details, .bmp-summary-totals { text-align: center; }
}
@media (max-width: 480px) { .bmp-grid { grid-template-columns: 1fr; } }
