.spc-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.spc-products-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spc-products-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spc-products-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.spc-product {
    border-radius: 16px;
    padding: 18px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spc-product-title {
    margin-top: 0;
}

.spc-product-image-wrap {
    margin-bottom: 10px;
}

.spc-product-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.spc-product-price {
    font-weight: 600;
    margin: 8px 0;
}

.spc-qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.spc-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    background: #ff7a00;
    color: #fff;
}

.spc-qty-btn.spc-qty-minus {
    background: #f0f0f0;
    color: #555;
}

.spc-qty-input {
    width: 50px;
    text-align: center;
}

.spc-booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.spc-book-button-wrap {
    text-align: center;
    margin-top: 8px;
}

.spc-button {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    background: #f6b800;
    color: #222;
    cursor: pointer;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.spc-button:hover {
    opacity: 0.9;
}

.spc-button-category {
    background: #333;
    color: #fff;
}

.spc-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

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

.spc-cart-total {
    margin-top: 10px;
}

.spc-notice,
.spc-success,
.spc-errors {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 3px;
    font-size: 14px;
}

.spc-notice {
    background: #f5f5f5;
}

.spc-success {
    background: #e6ffed;
}

.spc-errors {
    background: #ffecec;
}

.spc-errors ul {
    margin: 0;
    padding-left: 18px;
}

/* Cart icon */
.spc-cart-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.spc-cart-icon {
    font-size: 18px;
}

.spc-cart-label {
    font-size: 14px;
}

.spc-cart-count {
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #e53935;
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
    padding: 0 4px;
    display: inline-block;
}

/* Checkout layout */
.spc-checkout-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.spc-checkout-column {
    flex: 1 1 280px;
    min-width: 0;
}

.spc-checkout-summary {
    list-style: disc;
    padding-left: 20px;
}

.spc-checkout-field-group {
    margin-bottom: 20px;
}

.spc-checkout-field-group h4 {
    margin-top: 0;
}

.spc-checkout-form input[type="text"],
.spc-checkout-form input[type="email"],
.spc-checkout-form textarea,
.spc-checkout-form select {
    width: 100%;
    max-width: 420px;
}

/* Calendar styles */
.spc-calendar {
    max-width: 320px;
    background: #f7f5ff;
    border-radius: 12px;
    padding: 12px;
    font-size: 13px;
}

.spc-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.spc-calendar-month-year {
    font-weight: 600;
}

.spc-calendar-nav {
    display: flex;
    gap: 4px;
}

.spc-calendar-nav button {
    border: none;
    background: #fff;
    border-radius: 999px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    line-height: 24px;
    text-align: center;
    padding: 0;
}

.spc-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-size: 11px;
    text-align: center;
    margin-bottom: 4px;
    color: #555;
}

.spc-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.spc-calendar-day {
    border: none;
    background: #fff;
    border-radius: 8px;
    padding: 6px 0;
    font-size: 12px;
    cursor: pointer;
}

.spc-calendar-day.spc-disabled {
    opacity: 0.35;
    cursor: default;
}

.spc-calendar-day.spc-selected {
    background: #145c4c;
    color: #fff;
    font-weight: 600;
}

.spc-selected-date-label {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #555;
}

/* Photo preview gallery */
.spc-photo-preview {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.spc-photo-preview img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* Category grid */
.spc-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.spc-category-card {
    border-radius: 12px;
    padding: 16px;
    background: #f5f5f5;
}

.spc-category-title {
    margin-top: 0;
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .spc-checkout-layout {
        flex-direction: column;
    }
}
