body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#store-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-container {
    position: relative;
    overflow: visible; /* Stellt sicher, dass Tooltips nicht abgeschnitten werden */
}

/* Stil für die interaktiven Punkte */
.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(60, 111, 221, 0.8); /* Bulma primary color */
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.hotspot:hover {
    transform: scale(1.2);
}

.hotspot::after {
    content: "+";
    color: white;
    font-weight: bold;
}

/* Stil für die Tooltips */
.tooltip {
    position: absolute;
    z-index: 100;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    min-width: 200px;
    max-width: 300px;
}

.tooltip-content {
    margin-bottom: 10px;
}

/* Warenkorb-Stile */
.cart-container {
    flex: 1;
    margin-left: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    max-height: 600px;
    overflow-y: auto;
}

.cart-list {
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0;
}

.cart-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-remove {
    cursor: pointer;
    color: #ff3860;
}

/* Accordion Styles */
.accordion-item {
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    background-color: #f5f5f5;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-header:hover {
    background-color: #eeeeee;
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.is-active {
    padding: 1rem;
    max-height: 500px; /* Adjust as needed */
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-header.is-active .accordion-icon {
    transform: rotate(180deg);
}

.product-description {
    display: flex;
    gap: 1.5rem;
}

.product-image-container {
    flex: 0 0 150px;
}

.product-details {
    flex: 1;
}

.product-options {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dbdbdb;
}

.product-thumbnail-crop {
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    border-radius: 4px;
    border: 1px solid #dbdbdb;
}