/* store styles */

.om-card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
  margin: auto;
  text-align: center;
  font-family: arial;
}

.om-price {
  color: #f04b22;
  font-size: 22px;
  font-weight: 700;
}

.om-card button {
  border: none;
  outline: 0;
  padding: 12px;
  color: white;
  background-color: green;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
}

.om-card button:hover {
  opacity: 0.7;
}

        .om-header {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
        }
        
        .om-products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .om-product-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: transform 0.2s;
            overflow: hidden;
        }
        
        .om-product-card:hover {
            transform: translateY(-2px);
        }
        
        .om-product-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }
        
        .om-product-content {
            padding: 20px;
        }
        
        .om-product-title {
            font-size: 1.2em;
            font-weight: bold;
            margin: 0 0 10px 0;
            color: #333;
        }
        
        .om-product-price {
            font-size: 1.3em;
            font-weight: bold;
            color: #2c5aa0;
            margin: 0 0 15px 0;
        }
        
        .om-product-description {
            color: #666;
            margin: 0 0 20px 0;
            line-height: 1.4;
        }
        
        .om-add-to-cart-btn {
            background: #635bff;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            transition: background-color 0.2s;
        }
        
        .om-add-to-cart-btn:hover {
            background: #5a52d5;
        }
        
        .om-cart-section {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .om-cart-header {
            font-size: 1.3em;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }
        
        .om-cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .om-cart-item:last-child {
            border-bottom: none;
        }
        
        .om-cart-item-name {
            font-weight: 500;
        }
        
        .om-cart-item-price {
            color: #2c5aa0;
            font-weight: bold;
        }
        
        .om-remove-btn {
            background: #dc3545;
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
        }
        
        .om-remove-btn:hover {
            background: #c82333;
        }
        
        .om-cart-total {
            font-size: 1.2em;
            font-weight: bold;
            text-align: right;
            margin: 15px 0;
            color: #333;
        }
        
        .om-checkout-btn {
            background: #28a745;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 18px;
            width: 100%;
            margin-top: 10px;
            transition: background-color 0.2s;
        }
        
        .om-checkout-btn:hover {
            background: #218838;
        }
        
        .om-checkout-btn:disabled {
            background: #6c757d;
            cursor: not-allowed;
        }
        
        .om-empty-cart {
            text-align: center;
            color: #666;
            font-style: italic;
            padding: 20px;
        }
        
        .om-cart-count {
            background: #dc3545;
            color: white;
            border-radius: 50%;
            padding: 2px 8px;
            font-size: 12px;
            margin-left: 5px;
        }