/* Виджет в меню/шапке */
.sms-cart-widget-btn {
    display: inline-flex;
    align-items: center;
    background: #0073aa;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}
.sms-cart-widget-btn:hover {
    background: #005177;
}

/* Кнопка "Купить" */
.sms-add-to-cart-btn {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.2s;
}
.sms-add-to-cart-btn:hover {
    background: #218838;
}

/* Корзина */
#sms-cart-app {
    max-width: 700px;
    margin: 20px auto;
    font-family: inherit;
}
.sms-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}
.sms-table th, .sms-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}
.sms-qty-input {
    width: 60px;
    padding: 5px;
}
.sms-del-btn {
    background: transparent;
    border: none;
    color: #cc0000;
    font-size: 18px;
    cursor: pointer;
}

/* Доставка и итог */
.sms-delivery-section {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}
.sms-radio-label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
}
.sms-totals {
    text-align: right;
    margin-bottom: 30px;
}

/* Форма заказа */
.sms-form-group {
    margin-bottom: 15px;
}
.sms-form-group input {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#sms-submit-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}
#sms-submit-btn:hover {
    background: #005177;
}
.sms-success-box {
    background: #e7f4e8;
    color: #0e5a14;
    padding: 20px;
    border-radius: 6px;
}
.sms-error-msg {
    color: #d9534f;
    margin-top: 10px;
}



/* Сетка витрины каталога */
.sms-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin: 25px 0;
}
.sms-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.sms-card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.sms-card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.sms-card-title {
    font-size: 16px;
    margin: 0 0 10px 0;
    font-weight: 600;
}
.sms-card-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
    flex-grow: 1;
}
.sms-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.sms-card-price {
    font-weight: bold;
    font-size: 18px;
    color: #1e293b;
}