/* D&B Bites Menu - White Background Version */
.dbbm-tab-menu-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #ffffff;
    color: #333333;
}

/* Header with Orange-Yellow Gradient */
.dbbm-tab-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c42 30%, #ffb347 60%, #ffcc00 100%);
    color: #ffffff;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.dbbm-header-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dbbm-tab-header h1 {
    font-size: 52px;
    margin: 0 0 10px 0;
    font-weight: 800;
    color: #ffffff;
}

.dbbm-tagline {
    font-size: 18px;
    margin: 0;
    color: #ffffff;
}

/* Category Tabs */
.dbbm-category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.dbbm-tab-btn {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    padding: 12px 28px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    color: #666666;
}

.dbbm-tab-btn.active,
.dbbm-tab-btn:hover {
    background: #ff8c42;
    color: #ffffff;
    border-color: #ff8c42;
}

/* Products Grid */
.dbbm-products-grid {
    display: grid;
    gap: 25px;
    margin-top: 20px;
}

/* Product Card */
.dbbm-grid-product-card {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dbbm-grid-product-card:hover {
    transform: translateY(-5px);
    border-color: #ff8c42;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.dbbm-card-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.dbbm-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.out-of-stock-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 10px;
}

.dbbm-card-details {
    flex: 1;
    padding: 15px;
}

.dbbm-card-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333333;
    font-weight: 700;
}

.dbbm-card-description {
    color: #666666;
    font-size: 13px;
    margin-bottom: 12px;
}

.dbbm-card-price {
    font-size: 20px;
    font-weight: bold;
    color: #ff8c42;
    margin-bottom: 12px;
}

.dbbm-card-buttons {
    display: flex;
    gap: 10px;
}

.dbbm-card-add-to-cart,
.dbbm-card-view-details {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.dbbm-card-add-to-cart {
    background: #ff8c42;
    color: #ffffff;
}

.dbbm-card-add-to-cart:hover {
    background: #e67e22;
    color: #ffffff;
}

.dbbm-card-view-details {
    background: #6c757d;
    color: #ffffff;
}

.dbbm-card-view-details:hover {
    background: #5a6268;
    color: #ffffff;
}

/* Pickup Info */
.dbbm-tab-pickup-info {
    margin-top: 50px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 16px;
    text-align: center;
    border-left: 4px solid #ff8c42;
}

.dbbm-tab-pickup-info h3 {
    margin: 0 0 10px 0;
    color: #ff8c42;
}

/* Modal */
.dbbm-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.dbbm-modal-content {
    background: #ffffff;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.dbbm-modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.dbbm-modal-close:hover {
    color: #ff8c42;
}

.dbbm-modal-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 25px;
}

.dbbm-modal-gallery img {
    width: 100%;
    border-radius: 12px;
}

.dbbm-modal-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    overflow-x: auto;
}

.dbbm-modal-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.dbbm-modal-info h2 {
    margin-top: 0;
    color: #333;
}

.dbbm-modal-price {
    font-size: 24px;
    font-weight: bold;
    color: #ff8c42;
    margin: 15px 0;
}

.dbbm-modal-add-to-cart {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: #ff8c42;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
    .dbbm-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .dbbm-tab-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .dbbm-tab-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    .dbbm-modal-product {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .dbbm-products-grid {
        grid-template-columns: 1fr !important;
    }
}
body.pagelayer-body p {
  font-family: Poppins;
  font-size: 13px !important;
}
body.pagelayer-body h3 {
  font-family: Poppins;
  font-size: 20px !important;
}
body.pagelayer-body h2 {
  font-family: Poppins;
  font-size: 25px !important;
  font-weight: 500;
}
body.pagelayer-body p {
  font-family: Poppins;
  font-size: 10px !important;
}
.dbbm-final-buttons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    text-align: center !important;
}

.dbbm-final-add, 
.dbbm-final-view {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 100px !important;
    padding: 6px 16px !important;
    margin: 0 !important;
    text-align: center !important;
}