.cj-webshop-wrapper {
    background: #050608;
    color: #f5f1e3;
    padding: 20px;
    border: 2px solid #bfa75e;
    max-width: 1000px;
    margin: 0 auto;
}

.cj-webshop-title {
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cj-products {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cj-product {
    border: 1px solid #7b6a3a;
    padding: 10px;
    flex: 1 1 220px;
    background: #0b0c10;
}

.cj-product-image {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
    border: 1px solid #7b6a3a;
}

.cj-product h3 {
    margin: 5px 0;
}

.cj-product-price {
    margin: 5px 0 10px;
}

.cj-product button {
    background: #7b6a3a;
    color: #050608;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
}

.cj-cart {
    margin-bottom: 20px;
}

.cj-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.cj-cart-table th,
.cj-cart-table td {
    border: 1px solid #7b6a3a;
    padding: 6px 8px;
    text-align: left;
}

.cj-checkout form input {
    width: 100%;
    max-width: 400px;
}

.cj-checkout form button {
    background: #7b6a3a;
    color: #050608;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
}

/* Popup */
.cj-order-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cj-order-popup-inner {
    background: #050608;
    border: 2px solid #bfa75e;
    padding: 20px 30px;
    text-align: center;
}

#cj-order-popup-close {
    margin-top: 10px;
    background: #7b6a3a;
    color: #050608;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
}
