.product-bundler-container {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.bundler-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.bundler-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.bundler-item-details {
    flex: 1;
}

.bundler-item-title {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.bundler-item-price {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.bundler-item-price del {
    color: #aaa;
    margin-right: 5px;
}

.bundler-item-price ins {
    text-decoration: none;
    color: #00a884; /* Example green color */
    font-weight: 600;
}

.bundler-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    position: relative;
}

.bundler-separator::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background-color: #e5e5e5;
    z-index: 1;
}

.bundler-separator span {
    background: #f0f2f5;
    color: #555;
    padding: 5px 10px;
    border-radius: 50%;
    font-weight: bold;
    z-index: 2;
    position: relative;
    border: 1px solid #e5e5e5;
}

.bundler-item-variations select {
    width: 100%;
    max-width: 200px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

@media (max-width: 600px) {
    .bundler-item {
        flex-direction: column;
        text-align: center;
    }
    
    .bundler-item-variations select {
        max-width: 100%;
    }
}

/* Cart - Bundled Items Styling */
.bundled-cart-item {
    opacity: 0.85;
}

.bundled-cart-item .product-name {
    font-size: 0.9em;
}

.bundled-item-indent {
    color: #999;
    margin-right: 5px;
    font-size: 1.2em;
}

.bundled-item-price {
    color: #999;
    font-style: italic;
}

/* Add indentation to bundled items */
.bundled-cart-item td {
    padding-left: 30px !important;
}

/* Grid Layout */
.product-bundler-container.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.product-bundler-container.grid-layout .bundler-item {
    flex-direction: column;
    text-align: center;
    border: 1px solid #f0f0f0;
    padding: 15px;
    border-radius: 8px;
}

.product-bundler-container.grid-layout .bundler-item-image img {
    width: 100%;
    height: 150px;
    margin-bottom: 10px;
}

.product-bundler-above-text {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #555;
}
