.adms-store {
    max-width: 1100px;
    margin: 0 auto;
}

.adms-store-notice {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.adms-store-notice p {
    margin: 0;
}

.adms-store-notice-success {
    background: #e6f4ea;
    color: #1e7e34;
}

.adms-store-notice-info {
    background: #e7f3fc;
    color: #2271b1;
}

.adms-store-notice-error {
    background: #fbeaea;
    color: #b32d2e;
}

.adms-store-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 32px;
}

.adms-store-products {
    flex: 2;
    min-width: 280px;
}

.adms-store-cart {
    flex: 1;
    min-width: 260px;
    border: 1px solid #a8d4f0;
    border-radius: 6px;
    padding: 16px;
}

.adms-store-cart h2 {
    margin-top: 0;
}

.adms-store-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.adms-store-product {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 16px;
}

.adms-store-product h3 {
    margin: 8px 0 4px;
}

.adms-store-product-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
}

.adms-store-product-description {
    font-size: 13px;
    color: #555;
}

.adms-store-product-price {
    font-weight: 600;
    font-size: 16px;
}

.adms-store-out-of-stock {
    color: #b32d2e;
    font-weight: 600;
}

.adms-store-product form,
.adms-store-cart-table form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.adms-store-cart-table {
    width: 100%;
    border-collapse: collapse;
}

.adms-store-cart-table th,
.adms-store-cart-table td {
    padding: 8px 4px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
}

.adms-store-cart-total {
    text-align: right;
    font-size: 16px;
    margin: 16px 0;
}
