.sw-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sw-product-card {
    border: 1px solid #eee;
    padding: 20px;
    width: calc(33.333% - 20px);
    box-sizing: border-box;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

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

.sw-product-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.sw-product-title {
    font-size: 1.2em;
    margin: 10px 0;
}

.sw-product-price-wrapper {
    margin-bottom: 15px;
}

.sw-regular-price.sw-strikethrough {
    text-decoration: line-through;
    color: #777;
    font-size: 0.9em;
    margin-right: 8px;
}

.sw-sale-price.sw-prominent {
    color: #c00;
    font-weight: bold;
    font-size: 1.2em;
}

.sw-price {
    font-weight: bold;
    color: #333;
}

.sw-cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border: 2px solid #2c3e50;
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    border-radius: 4px;
    display: none;
}

.sw-cart-notification a {
    display: inline-block;
    margin-top: 10px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 0.9em;
}

.sw-product-group {
    margin-bottom: 50px;
}

.sw-product-group h2 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

/* Cart & Checkout */
.sw-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.sw-cart-table th, .sw-cart-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.sw-cart-footer {
    background: #f9f9f9;
    padding: 25px;
    border: 1px solid #eee;
    margin-top: 30px;
}

.sw-cart-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.sw-form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
}

.sw-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.sw-form-group {
    flex: 1;
}

.sw-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.sw-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.sw-form-group input.error {
    border-color: red;
}

.sw-option-group {
    margin-bottom: 10px;
}

/* Persistent Cart Hint */
.sw-persistent-cart-hint {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2c3e50;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 10000;
    transition: transform 0.3s ease;
}

.sw-persistent-cart-hint:hover {
    transform: scale(1.05);
}

.sw-persistent-cart-hint a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sw-cart-icon {
    font-size: 1.2em;
}

.sw-cart-count {
    background: #e74c3c;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    min-width: 15px;
    text-align: center;
}

.sw-back-to-catalog .button.sw-back-button {
    text-decoration: none;
    padding: 8px 15px;
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    display: inline-block;
    transition: all 0.3s ease;
}

.sw-back-to-catalog .button.sw-back-button:hover {
    background: #eee;
    border-color: #ccc;
}

@media (max-width: 768px) {
    .sw-product-card {
        width: calc(50% - 20px);
    }
    .sw-form-row {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .sw-product-card {
        width: 100%;
    }
}
