/**
 * cigar·MOBILE Public Styles
 */

.cmob-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.cmob-product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.cmob-product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cmob-product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    margin-bottom: 12px;
}

.cmob-product-card h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
}

.cmob-product-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #8b0000;
    margin-bottom: 12px;
}

.cmob-product-card .description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.cmob-product-card .add-to-cart {
    display: inline-block;
    background: #8b0000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.cmob-product-card .add-to-cart:hover {
    background: #6b0000;
}

.cmob-cart-table,
.cmob-checkout-form {
    width: 100%;
    max-width: 600px;
    margin: 20px 0;
}

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

.cmob-cart-table th,
.cmob-cart-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.cmob-cart-total {
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
}

.cmob-form-field {
    margin-bottom: 15px;
}

.cmob-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.cmob-form-field input,
.cmob-form-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cmob-submit-button {
    background: #8b0000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.cmob-submit-button:hover {
    background: #6b0000;
}
